mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Merge pull request #10091 from miesma/KinzuOfTheBleakCoven
[ONE] Implement Kinzu of the Bleak Coven
This commit is contained in:
commit
055df06bbc
2 changed files with 110 additions and 0 deletions
108
Mage.Sets/src/mage/cards/k/KinzuOfTheBleakCoven.java
Normal file
108
Mage.Sets/src/mage/cards/k/KinzuOfTheBleakCoven.java
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
package mage.cards.k;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.DiesCreatureTriggeredAbility;
|
||||||
|
import mage.abilities.costs.Cost;
|
||||||
|
import mage.abilities.costs.common.PayLifeCost;
|
||||||
|
import mage.abilities.effects.Effect;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.effects.common.CreateTokenCopyTargetEffect;
|
||||||
|
import mage.abilities.keyword.FlyingAbility;
|
||||||
|
import mage.abilities.keyword.ToxicAbility;
|
||||||
|
import mage.cards.Card;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.*;
|
||||||
|
import mage.filter.FilterPermanent;
|
||||||
|
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||||
|
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||||
|
import mage.filter.predicate.permanent.TokenPredicate;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.permanent.PermanentCard;
|
||||||
|
import mage.players.Player;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author miesma
|
||||||
|
*/
|
||||||
|
public final class KinzuOfTheBleakCoven extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterPermanent filter
|
||||||
|
= new FilterControlledCreaturePermanent("another nontoken creature you control");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(AnotherPredicate.instance);
|
||||||
|
filter.add(TokenPredicate.FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
public KinzuOfTheBleakCoven(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}");
|
||||||
|
|
||||||
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
|
this.subtype.add(SubType.VAMPIRE);
|
||||||
|
this.power = new MageInt(5);
|
||||||
|
this.toughness = new MageInt(4);
|
||||||
|
|
||||||
|
// Flying
|
||||||
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
|
// Whenever another nontoken creature you control dies, you may pay 2 Life and exile it.
|
||||||
|
// If you do, create a token that's a copy of that card, except it’s 1/1 and has toxic 1.
|
||||||
|
Effect effect = new KinzuOfTheBleakCovenEffect();
|
||||||
|
this.addAbility(new DiesCreatureTriggeredAbility(effect,false, filter, true));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private KinzuOfTheBleakCoven(final KinzuOfTheBleakCoven card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public KinzuOfTheBleakCoven copy() {
|
||||||
|
return new KinzuOfTheBleakCoven(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class KinzuOfTheBleakCovenEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
KinzuOfTheBleakCovenEffect() {
|
||||||
|
super(Outcome.Benefit);
|
||||||
|
staticText = "you may pay 2 Life and exile it. If you do, " +
|
||||||
|
"create a token that's a copy of that creature" +
|
||||||
|
", except it's 1/1 and has toxic 1.";
|
||||||
|
}
|
||||||
|
|
||||||
|
private KinzuOfTheBleakCovenEffect(final KinzuOfTheBleakCovenEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public KinzuOfTheBleakCovenEffect copy() {
|
||||||
|
return new KinzuOfTheBleakCovenEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Player player = game.getPlayer(source.getControllerId());
|
||||||
|
Card card = game.getCard(getTargetPointer().getFirst(game, source));
|
||||||
|
if (player == null || card == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Cost cost = new PayLifeCost(2);
|
||||||
|
if (!cost.canPay(source, source, source.getControllerId(), game)
|
||||||
|
|| !player.chooseUse(Outcome.Benefit,"Pay 2 Life and Exile " + card.getName() + "?",source,game)
|
||||||
|
|| !cost.pay(source, game, source, source.getControllerId(), true)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
player.moveCards(card, Zone.EXILED, source, game);
|
||||||
|
return new CreateTokenCopyTargetEffect().setSavedPermanent(
|
||||||
|
new PermanentCard(card, source.getControllerId(), game)
|
||||||
|
).setPermanentModifier((token, g) -> {
|
||||||
|
token.setPower(1); // 1/1
|
||||||
|
token.setToughness(1);
|
||||||
|
token.addAbility(new ToxicAbility(1)); // Add Toxic (is additive)
|
||||||
|
}).apply(game, source);
|
||||||
|
}
|
||||||
|
}
|
|
@ -145,6 +145,8 @@ public final class PhyrexiaAllWillBeOne extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Kethek, Crucible Goliath", 319, Rarity.RARE, mage.cards.k.KethekCrucibleGoliath.class, NON_FULL_USE_VARIOUS));
|
cards.add(new SetCardInfo("Kethek, Crucible Goliath", 319, Rarity.RARE, mage.cards.k.KethekCrucibleGoliath.class, NON_FULL_USE_VARIOUS));
|
||||||
cards.add(new SetCardInfo("Koth, Fire of Resistance", 138, Rarity.RARE, mage.cards.k.KothFireOfResistance.class));
|
cards.add(new SetCardInfo("Koth, Fire of Resistance", 138, Rarity.RARE, mage.cards.k.KothFireOfResistance.class));
|
||||||
cards.add(new SetCardInfo("Kuldotha Cackler", 139, Rarity.COMMON, mage.cards.k.KuldothaCackler.class));
|
cards.add(new SetCardInfo("Kuldotha Cackler", 139, Rarity.COMMON, mage.cards.k.KuldothaCackler.class));
|
||||||
|
cards.add(new SetCardInfo("Kinzu of the Bleak Coven", 406, Rarity.RARE, mage.cards.k.KinzuOfTheBleakCoven.class, NON_FULL_USE_VARIOUS));
|
||||||
|
cards.add(new SetCardInfo("Kinzu of the Bleak Coven", 411, Rarity.RARE, mage.cards.k.KinzuOfTheBleakCoven.class, NON_FULL_USE_VARIOUS));
|
||||||
cards.add(new SetCardInfo("Lattice-Blade Mantis", 173, Rarity.COMMON, mage.cards.l.LatticeBladeMantis.class));
|
cards.add(new SetCardInfo("Lattice-Blade Mantis", 173, Rarity.COMMON, mage.cards.l.LatticeBladeMantis.class));
|
||||||
cards.add(new SetCardInfo("Leonin Lightbringer", 20, Rarity.COMMON, mage.cards.l.LeoninLightbringer.class));
|
cards.add(new SetCardInfo("Leonin Lightbringer", 20, Rarity.COMMON, mage.cards.l.LeoninLightbringer.class));
|
||||||
cards.add(new SetCardInfo("Lukka, Bound to Ruin", 207, Rarity.MYTHIC, mage.cards.l.LukkaBoundToRuin.class, NON_FULL_USE_VARIOUS));
|
cards.add(new SetCardInfo("Lukka, Bound to Ruin", 207, Rarity.MYTHIC, mage.cards.l.LukkaBoundToRuin.class, NON_FULL_USE_VARIOUS));
|
||||||
|
|
Loading…
Reference in a new issue