* Festering Goblin - Its ability to select a creature for the -1/-1 counter is now mandatory.

This commit is contained in:
LevelX2 2013-06-10 14:45:32 +02:00
parent dec8f24c68
commit bbf277f17e

View file

@ -54,7 +54,7 @@ public class FesteringGoblin extends CardImpl<FesteringGoblin> {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
Ability ability = new DiesTriggeredAbility(new BoostTargetEffect(-1, -1, Constants.Duration.EndOfTurn), false);
ability.addTarget(new TargetCreaturePermanent());
ability.addTarget(new TargetCreaturePermanent(true));
this.addAbility(ability);
}