Formulator / schools /mo_wen /attribute.py
AngoHF's picture
5.7 commit
c255694
raw
history blame contribute delete
631 Bytes
from base.attribute import MagicalAttribute
from base.constant import *
class MoWen(MagicalAttribute):
SPIRIT_TO_ATTACK_POWER = 1895 / BINARY_SCALE
SPIRIT_TO_CRITICAL_STRIKE = 389 / BINARY_SCALE
def __init__(self):
super().__init__()
self.magical_attack_power_base += 3725
self.magical_critical_strike_base += 1279
self.pve_addition += 164
@property
def extra_magical_attack_power(self):
return int(self.spirit * self.SPIRIT_TO_ATTACK_POWER)
@property
def extra_magical_critical_strike(self):
return int(self.spirit * self.SPIRIT_TO_CRITICAL_STRIKE)