Merge pull request #10091 from miesma/KinzuOfTheBleakCoven

[ONE] Implement Kinzu of the Bleak Coven
This commit is contained in:
Evan Kranzler 2023-04-28 08:31:30 -04:00 committed by GitHub
commit 055df06bbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 110 additions and 0 deletions

View 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 its 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);
}
}

View file

@ -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("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("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("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));