Add 'Offence summary' and 'Defence summary' components

This commit is contained in:
Cmdr McDonald
2016-11-11 00:15:49 +00:00
parent cf6d32ea04
commit 87e903e473
7 changed files with 123 additions and 124 deletions

View File

@@ -492,4 +492,20 @@ export default class Module {
return this._getModifiedValue('hullboost');
}
/**
* Get the shield reinforcement for this module, taking in to account modifications
* @return {Number} the shield reinforcement for this module
*/
getShieldReinforcement() {
return this._getModifiedValue('shieldreinforcement');
}
/**
* Get the cells for this module, taking in to account modifications
* @return {Number} the cells for this module
*/
getCells() {
return this._getModifiedValue('cells');
}
}