(tgtResists, tgtFullHp)
| 30 | |
| 31 | |
| 32 | def _buildResistProfile(tgtResists, tgtFullHp): |
| 33 | if not GraphSettings.getInstance().get('ignoreResists'): |
| 34 | emRes, thermRes, kinRes, exploRes = tgtResists |
| 35 | else: |
| 36 | emRes = thermRes = kinRes = exploRes = 0 |
| 37 | return TargetProfile(emAmount=emRes, thermalAmount=thermRes, kineticAmount=kinRes, explosiveAmount=exploRes, |
| 38 | hp=tgtFullHp) |
| 39 | |
| 40 | |
| 41 | def _typedDmgScalar(dmgTyped, applicationMult, profile): |
no test coverage detected