def __init__(self): super().__init__("Kirin Tor Mage", 3, CHARACTER_CLASS.MAGE, CARD_RARITY.RARE, battlecry=Battlecry( GiveAura([ AuraUntil(ManaChange(-100), CardSelector(condition=IsSecret()), CardPlayed(IsSecret())) ]), PlayerSelector()))
def __from_json__(self, source): self.source = CARD_SOURCE.from_str(source) self._query = CardQuery(conditions=[IsSecret()], source=self.source) return self
def __init__(self, source): self.source = source self._query = CardQuery(conditions=[IsSecret()], source=source)