Overwrites original value of the entity with given one, allowing further modification
(self, attributeName, value, **kwargs)
| 488 | affs.append((modifier, operator, stackingGroup, preResAmount, postResAmount, used)) |
| 489 | |
| 490 | def preAssign(self, attributeName, value, **kwargs): |
| 491 | """Overwrites original value of the entity with given one, allowing further modification""" |
| 492 | self.__preAssigns[attributeName] = value |
| 493 | self.__placehold(attributeName) |
| 494 | self.__afflict(attributeName, Operator.PREASSIGN, None, value, value, value != self.getOriginal(attributeName)) |
| 495 | |
| 496 | def increase(self, attributeName, increase, position="pre", skill=None, **kwargs): |
| 497 | """Increase value of given attribute by given number""" |
no test coverage detected