mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
[FRF] Added missing target to Pressure Point.
This commit is contained in:
parent
6bf07e7763
commit
113a8630e3
1 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,7 @@ import mage.abilities.effects.common.TapTargetEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -46,6 +47,8 @@ public class PressurePoint extends CardImpl {
|
|||
|
||||
// Tap target creature.
|
||||
this.getSpellAbility().addEffect(new TapTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
|
||||
// Draw a card.
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue