From d037cf5b32cd64ff1d0a173e1222f0374996f282 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Tue, 31 May 2022 18:34:05 -0400 Subject: [PATCH] [CLB] Implemented Coronation of Chaos --- .../src/mage/cards/c/CoronationOfChaos.java | 35 +++++++++++++++++++ .../CommanderLegendsBattleForBaldursGate.java | 1 + 2 files changed, 36 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/c/CoronationOfChaos.java diff --git a/Mage.Sets/src/mage/cards/c/CoronationOfChaos.java b/Mage.Sets/src/mage/cards/c/CoronationOfChaos.java new file mode 100644 index 0000000000..bfbb2486c3 --- /dev/null +++ b/Mage.Sets/src/mage/cards/c/CoronationOfChaos.java @@ -0,0 +1,35 @@ +package mage.cards.c; + +import mage.abilities.effects.common.combat.CantBlockTargetEffect; +import mage.abilities.effects.common.combat.GoadTargetEffect; +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 CoronationOfChaos extends CardImpl { + + public CoronationOfChaos(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{R}"); + + // Up to three target creatures can't block this turn. Goad them. + this.getSpellAbility().addEffect(new CantBlockTargetEffect(Duration.EndOfTurn)); + this.getSpellAbility().addEffect(new GoadTargetEffect().setText("Goad them")); + this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 3)); + } + + private CoronationOfChaos(final CoronationOfChaos card) { + super(card); + } + + @Override + public CoronationOfChaos copy() { + return new CoronationOfChaos(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java b/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java index 0bc60783de..a567dc6ff4 100644 --- a/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java +++ b/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java @@ -92,6 +92,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet { cards.add(new SetCardInfo("Consuming Aberration", 640, Rarity.RARE, mage.cards.c.ConsumingAberration.class)); cards.add(new SetCardInfo("Contact Other Plane", 62, Rarity.COMMON, mage.cards.c.ContactOtherPlane.class)); cards.add(new SetCardInfo("Contraband Livestock", 12, Rarity.UNCOMMON, mage.cards.c.ContrabandLivestock.class)); + cards.add(new SetCardInfo("Coronation of Chaos", 168, Rarity.COMMON, mage.cards.c.CoronationOfChaos.class)); cards.add(new SetCardInfo("Criminal Past", 122, Rarity.UNCOMMON, mage.cards.c.CriminalPast.class)); cards.add(new SetCardInfo("Crystal Dragon", 13, Rarity.UNCOMMON, mage.cards.c.CrystalDragon.class)); cards.add(new SetCardInfo("Cultist of the Absolute", 123, Rarity.RARE, mage.cards.c.CultistOfTheAbsolute.class));