* Hunter's Prowess - Fixed that no target creature could be selected.

This commit is contained in:
LevelX2 2014-01-25 19:44:29 +01:00
parent 6242271ecc
commit ceda6b3611

View file

@ -41,6 +41,7 @@ import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.game.Game;
import mage.players.Player;
import mage.target.common.TargetCreaturePermanent;
/**
*
@ -61,6 +62,7 @@ public class HuntersProwess extends CardImpl<HuntersProwess> {
Ability grantedAbility = new DealsCombatDamageToAPlayerTriggeredAbility(new HuntersProwessDrawEffect(), false);
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(grantedAbility, Duration.EndOfTurn,
"and gains trample and \"Whenever this creature deals combat damage to a player, draw that many cards.\""));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(true));
}
public HuntersProwess(final HuntersProwess card) {