Spaces:
Runtime error
Runtime error
from base.attribute import MagicalAttribute | |
from base.constant import * | |
class BingXinJue(MagicalAttribute): | |
SPIRIT_TO_ATTACK_POWER = 1946 / BINARY_SCALE | |
SPIRIT_TO_CRITICAL_STRIKE = 287 / BINARY_SCALE | |
def __init__(self): | |
super().__init__() | |
self.magical_attack_power_base += 4222 | |
def extra_magical_attack_power(self): | |
return int(self.spirit * self.SPIRIT_TO_ATTACK_POWER) | |
def extra_magical_critical_strike(self): | |
return int(self.spirit * self.SPIRIT_TO_CRITICAL_STRIKE) | |