forked from External/mage
[MKM] Implement The Chase Is On
This commit is contained in:
parent
48b0a7fce4
commit
a6fac5340d
2 changed files with 43 additions and 0 deletions
42
Mage.Sets/src/mage/cards/t/TheChaseIsOn.java
Normal file
42
Mage.Sets/src/mage/cards/t/TheChaseIsOn.java
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
|
||||
import mage.abilities.effects.keyword.InvestigateEffect;
|
||||
import mage.abilities.keyword.FirstStrikeAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TheChaseIsOn extends CardImpl {
|
||||
|
||||
public TheChaseIsOn(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{R}");
|
||||
|
||||
// Target creature gets +3/+0 and gains first strike until end of turn. Investigate.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(
|
||||
3, 0, Duration.EndOfTurn
|
||||
).setText("Target creature gets +3/+0"));
|
||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(
|
||||
FirstStrikeAbility.getInstance(), Duration.EndOfTurn
|
||||
).setText("and gains first strike until end of turn"));
|
||||
this.getSpellAbility().addEffect(new InvestigateEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private TheChaseIsOn(final TheChaseIsOn card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TheChaseIsOn copy() {
|
||||
return new TheChaseIsOn(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -126,6 +126,7 @@ public final class MurdersAtKarlovManor extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Steamcore Scholar", 71, Rarity.RARE, mage.cards.s.SteamcoreScholar.class));
|
||||
cards.add(new SetCardInfo("Sumala Sentry", 233, Rarity.UNCOMMON, mage.cards.s.SumalaSentry.class));
|
||||
cards.add(new SetCardInfo("Swamp", 274, Rarity.LAND, mage.cards.basiclands.Swamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("The Chase Is On", 116, Rarity.COMMON, mage.cards.t.TheChaseIsOn.class));
|
||||
cards.add(new SetCardInfo("They Went This Way", 178, Rarity.COMMON, mage.cards.t.TheyWentThisWay.class));
|
||||
cards.add(new SetCardInfo("Thundering Falls", 269, Rarity.RARE, mage.cards.t.ThunderingFalls.class));
|
||||
cards.add(new SetCardInfo("Topiary Panther", 179, Rarity.COMMON, mage.cards.t.TopiaryPanther.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue