Updated targetImpl message with multi targets. Updated PreventDamageFromTargetEffect to work with multi targets. Soul Parry works.

This commit is contained in:
magenoxx 2011-01-26 09:31:21 +03:00
parent 883d1b373f
commit b71a5ed9b4
3 changed files with 45 additions and 20 deletions

View file

@ -49,6 +49,7 @@ public class SoulParry extends CardImpl<SoulParry> {
this.expansionSetCode = "SOM";
this.color.setWhite(true);
Target target = new TargetCreaturePermanent(1,2);
target.setTargetName("one or two creatures");
this.getSpellAbility().addEffect(new PreventDamageFromTargetEffect(Duration.EndOfTurn, true));
this.getSpellAbility().addTarget(target);
}