Text edit

This commit is contained in:
Zzooouhh 2017-10-13 00:45:26 +02:00 committed by GitHub
parent 10bb8c39fe
commit d7b36e1736

View file

@ -54,8 +54,8 @@ public class HailStorm extends CardImpl {
// Hail Storm deals 2 damage to each attacking creature and 1 damage to you and each creature you control. // Hail Storm deals 2 damage to each attacking creature and 1 damage to you and each creature you control.
this.getSpellAbility().addEffect(new DamageAllEffect(2, new FilterAttackingCreature())); this.getSpellAbility().addEffect(new DamageAllEffect(2, new FilterAttackingCreature()));
this.getSpellAbility().addEffect(new DamageControllerEffect(1)); this.getSpellAbility().addEffect(new DamageControllerEffect(1).setText("and 1 damage to you "));
this.getSpellAbility().addEffect(new DamageAllEffect(1, filter)); this.getSpellAbility().addEffect(new DamageAllEffect(1, filter).setText("and each creature you control."));
} }
public HailStorm(final HailStorm card) { public HailStorm(final HailStorm card) {