Ejemplo n.º 1
0
 public override void onCardPlay(Playfield p, bool ownplay, Minion target, int choice)
 {
     int damage = p.getSpellDamageDamage(p.playerFirst.ownWeaponAttack, ownplay);
     
     p.allCharsOfASideGetDamage(!ownplay, damage);
     //destroy own weapon
     p.lowerWeaponDurability(1000, true);
 }
Ejemplo n.º 2
0
//    fügt allen feinden $2 schaden zu.
		public override void onCardPlay(Playfield p, bool ownplay, Minion target, int choice)
		{
            int dmg = p.getSpellDamageDamage(2, ownplay);
            p.allCharsOfASideGetDamage(!ownplay, dmg);
		}
Ejemplo n.º 3
0
//    kampfschrei:/ stellt bei allen befreundeten charakteren 2 leben wieder her.
		public override void getBattlecryEffect(Playfield p, Minion own, Minion target, int choice)
		{
            int heal = p.getMinionHeal(2, own.own);
            p.allCharsOfASideGetDamage(own.own, -heal);
		}