Move to method for damage type to allow for modifications

This commit is contained in:
Cmdr McDonald
2016-11-23 13:02:23 +00:00
parent 3b8444482f
commit 11af7f567a
3 changed files with 17 additions and 9 deletions

View File

@@ -540,4 +540,12 @@ export default class Module {
getJitter() {
return this._getModifiedValue('jitter', true);
}
/**
* Get the damage type for this module, taking in to account modifications
* @return {string} the damage types for this module; any combination of E T and K
*/
getDamageType() {
return this.type;
}
}