From 6920015adcd9808a969bc41cdd93afb5196456cd Mon Sep 17 00:00:00 2001 From: theelk801 Date: Fri, 24 Jan 2025 15:45:01 -0500 Subject: [PATCH] [DFT] Implement Clamorous Ironclad --- .../src/mage/cards/c/ClamorousIronclad.java | 45 +++++++++++++++++++ Mage.Sets/src/mage/sets/Aetherdrift.java | 1 + 2 files changed, 46 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/c/ClamorousIronclad.java diff --git a/Mage.Sets/src/mage/cards/c/ClamorousIronclad.java b/Mage.Sets/src/mage/cards/c/ClamorousIronclad.java new file mode 100644 index 00000000000..6d21a348033 --- /dev/null +++ b/Mage.Sets/src/mage/cards/c/ClamorousIronclad.java @@ -0,0 +1,45 @@ +package mage.cards.c; + +import mage.MageInt; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.CrewAbility; +import mage.abilities.keyword.CyclingAbility; +import mage.abilities.keyword.MenaceAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class ClamorousIronclad extends CardImpl { + + public ClamorousIronclad(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}{R}"); + + this.subtype.add(SubType.VEHICLE); + this.power = new MageInt(6); + this.toughness = new MageInt(3); + + // Menace + this.addAbility(new MenaceAbility()); + + // Crew 3 + this.addAbility(new CrewAbility(3)); + + // Cycling {R} + this.addAbility(new CyclingAbility(new ManaCostsImpl<>("{R}"))); + } + + private ClamorousIronclad(final ClamorousIronclad card) { + super(card); + } + + @Override + public ClamorousIronclad copy() { + return new ClamorousIronclad(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Aetherdrift.java b/Mage.Sets/src/mage/sets/Aetherdrift.java index 48e55e7fa27..7d3d996f307 100644 --- a/Mage.Sets/src/mage/sets/Aetherdrift.java +++ b/Mage.Sets/src/mage/sets/Aetherdrift.java @@ -40,6 +40,7 @@ public final class Aetherdrift extends ExpansionSet { cards.add(new SetCardInfo("Brightfield Glider", 4, Rarity.COMMON, mage.cards.b.BrightfieldGlider.class)); cards.add(new SetCardInfo("Brightfield Mustang", 5, Rarity.COMMON, mage.cards.b.BrightfieldMustang.class)); cards.add(new SetCardInfo("Brightglass Gearhulk", 191, Rarity.MYTHIC, mage.cards.b.BrightglassGearhulk.class)); + cards.add(new SetCardInfo("Clamorous Ironclad", 117, Rarity.COMMON, mage.cards.c.ClamorousIronclad.class)); cards.add(new SetCardInfo("Cloudspire Captain", 9, Rarity.UNCOMMON, mage.cards.c.CloudspireCaptain.class)); cards.add(new SetCardInfo("Count on Luck", 118, Rarity.RARE, mage.cards.c.CountOnLuck.class)); cards.add(new SetCardInfo("Country Roads", 253, Rarity.UNCOMMON, mage.cards.c.CountryRoads.class));