def __init__(self, attacker, werewolf_state): Abilitiy.__init__(self, attacker) self._attacker = attacker self._werewolf_state = werewolf_state self._not_transformed = ['Vampire', 'Werewolf', 'Demon']
def __init__(self, attacker): Abilitiy.__init__(self, attacker) self._attacker = attacker
def __init__(self, demons, warlock): Abilitiy.__init__(self, warlock) self._demons = demons self._warlock = warlock
def __init__(self, attacker, spell): Abilitiy.__init__(self, attacker) self._attacker = attacker self._spell = spell