예제 #1
0
 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()))
예제 #2
0
 def __from_json__(self, source):
     self.source = CARD_SOURCE.from_str(source)
     self._query = CardQuery(conditions=[IsSecret()], source=self.source)
     return self
예제 #3
0
 def __init__(self, source):
     self.source = source
     self._query = CardQuery(conditions=[IsSecret()], source=source)