mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Hunter's Prowess - Fixed that no target creature could be selected.
This commit is contained in:
parent
6242271ecc
commit
ceda6b3611
1 changed files with 2 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue