Spaces:
Runtime error
Runtime error
| from base.attribute import PhysicalAttribute | |
| from base.constant import * | |
| class YinLongJue(PhysicalAttribute): | |
| AGILITY_TO_ATTACK_POWER = 1536 / BINARY_SCALE | |
| AGILITY_TO_OVERCOME = 481 / BINARY_SCALE | |
| def __init__(self): | |
| super().__init__() | |
| self.physical_attack_power_base += 3656 | |
| self.physical_overcome_base += 2081 | |
| self.pve_addition += 225 | |
| def extra_physical_attack_power(self): | |
| return int(self.agility * self.AGILITY_TO_ATTACK_POWER) | |
| def extra_physical_overcome(self): | |
| return int(self.agility * self.AGILITY_TO_OVERCOME) | |