fixed targets with "any number of"

This commit is contained in:
BetaSteward 2011-10-12 22:40:35 -04:00
parent 44ad4f988f
commit f405c7dd0d
6 changed files with 20 additions and 16 deletions

View file

@ -45,7 +45,7 @@ public class HuntersFeast extends CardImpl<HuntersFeast> {
super(ownerId, 182, "Hunters' Feast", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{3}{G}");
this.expansionSetCode = "M11";
this.color.setGreen(true);
this.getSpellAbility().addTarget(new TargetPlayer(0));
this.getSpellAbility().addTarget(new TargetPlayer(0, Integer.MAX_VALUE, false));
this.getSpellAbility().addEffect(new GainLifeTargetEffect(6));
}