(self)
| 327 | # Put them in the attrs tuple. |
| 328 | @property |
| 329 | def falloff(self): |
| 330 | attrs = ("falloff", "falloffEffectiveness") |
| 331 | for attr in attrs: |
| 332 | falloff = self.getModifiedItemAttr(attr, None) |
| 333 | if falloff is not None: |
| 334 | return falloff |
| 335 | |
| 336 | @property |
| 337 | def hp(self): |
nothing calls this directly
no test coverage detected