forked from External/mage
[BLB] Implement High Stride
This commit is contained in:
parent
306731bcba
commit
5fbf421c16
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/h/HighStride.java
Normal file
37
Mage.Sets/src/mage/cards/h/HighStride.java
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.h;
|
||||
|
||||
import mage.abilities.effects.common.UntapTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
||||
import mage.abilities.keyword.ReachAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class HighStride extends CardImpl {
|
||||
|
||||
public HighStride(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{G}");
|
||||
|
||||
// Target creature gets +1/+3 and gains reach until end of turn. Untap it.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 3).setText("target creature gets +1/+3"));
|
||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(ReachAbility.getInstance()).setText("and gains reach until end of turn"));
|
||||
this.getSpellAbility().addEffect(new UntapTargetEffect("Untap it"));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private HighStride(final HighStride card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HighStride copy() {
|
||||
return new HighStride(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -94,6 +94,7 @@ public final class Bloomburrow extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Heartfire Hero", 138, Rarity.UNCOMMON, mage.cards.h.HeartfireHero.class));
|
||||
cards.add(new SetCardInfo("Hearthborn Battler", 139, Rarity.RARE, mage.cards.h.HearthbornBattler.class));
|
||||
cards.add(new SetCardInfo("Hidden Grotto", 254, Rarity.COMMON, mage.cards.h.HiddenGrotto.class));
|
||||
cards.add(new SetCardInfo("High Stride", 176, Rarity.COMMON, mage.cards.h.HighStride.class));
|
||||
cards.add(new SetCardInfo("Hired Claw", 140, Rarity.RARE, mage.cards.h.HiredClaw.class));
|
||||
cards.add(new SetCardInfo("Hivespine Wolverine", 177, Rarity.UNCOMMON, mage.cards.h.HivespineWolverine.class));
|
||||
cards.add(new SetCardInfo("Honored Dreyleader", 178, Rarity.UNCOMMON, mage.cards.h.HonoredDreyleader.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue