Exemple #1
0
 public override void onAuraEnds(Playfield p, Minion own)
 {
     if (own.own)
     {
         p.playerFirst.anzOwnTundrarhino--;
         foreach (Minion m in p.playerFirst.ownMinions)
         {
             if ((TAG_RACE)m.handcard.card.race == TAG_RACE.PET) p.minionLostCharge(m);
         }
     }
     else
     {
         p.playerSecond.anzOwnTundrarhino--;
         foreach (Minion m in p.playerSecond.ownMinions)
         {
             if ((TAG_RACE)m.handcard.card.race == TAG_RACE.PET) p.minionLostCharge(m);
         }
     }
 }