Formulator / schools /wu_fang /attribute.py
AngoHF's picture
04.27 commit
6d1ec51
raw
history blame contribute delete
603 Bytes
from base.attribute import MagicalAttribute
from base.constant import *
class WuFang(MagicalAttribute):
SPIRIT_TO_ATTACK_POWER = 1788 / BINARY_SCALE
SPIRIT_TO_OVERCOME = 481 / BINARY_SCALE
def __init__(self):
super().__init__()
self.magical_attack_power_base += 3808
self.magical_overcome_base += 1788
self.pve_addition += 51
@property
def extra_magical_attack_power(self):
return int(self.spirit * self.SPIRIT_TO_ATTACK_POWER)
@property
def extra_magical_overcome(self):
return int(self.spirit * self.SPIRIT_TO_OVERCOME)