Whether this effect is implemented in code or not, unimplemented effects simply do nothing at all when run
(self)
| 141 | |
| 142 | @property |
| 143 | def isImplemented(self): |
| 144 | """ |
| 145 | Whether this effect is implemented in code or not, |
| 146 | unimplemented effects simply do nothing at all when run |
| 147 | """ |
| 148 | if not self.__generated: |
| 149 | self.__generateHandler() |
| 150 | |
| 151 | return self.__effectDef is not None |
| 152 | |
| 153 | @property |
| 154 | def dealsDamage(self): |
nothing calls this directly
no test coverage detected