(self, memo)
| 388 | effect.handler(fit, self, ("droneCharge",), projectionRange, effect=effect) |
| 389 | |
| 390 | def __deepcopy__(self, memo): |
| 391 | copy = Drone(self.item, self.baseItem, self.mutaplasmid) |
| 392 | copy.amount = self.amount |
| 393 | copy.amountActive = self.amountActive |
| 394 | copy.projectionRange = self.projectionRange |
| 395 | self._mutaApplyMutators(mutatorClass=MutatorDrone, targetInstance=copy) |
| 396 | return copy |
| 397 | |
| 398 | def rebase(self, item): |
| 399 | amount = self.amount |
nothing calls this directly
no test coverage detected