From dceea4f62914a7b90b2832c76e08dd7bde2631a0 Mon Sep 17 00:00:00 2001 From: theelk801 Date: Fri, 24 Jan 2025 12:02:39 -0500 Subject: [PATCH] [DFT] Implement Spotcycle Scouter --- .../src/mage/cards/s/SpotcycleScouter.java | 41 +++++++++++++++++++ Mage.Sets/src/mage/sets/Aetherdrift.java | 1 + 2 files changed, 42 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/s/SpotcycleScouter.java diff --git a/Mage.Sets/src/mage/cards/s/SpotcycleScouter.java b/Mage.Sets/src/mage/cards/s/SpotcycleScouter.java new file mode 100644 index 00000000000..81f980bac3b --- /dev/null +++ b/Mage.Sets/src/mage/cards/s/SpotcycleScouter.java @@ -0,0 +1,41 @@ +package mage.cards.s; + +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.keyword.ScryEffect; +import mage.abilities.keyword.CrewAbility; +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 SpotcycleScouter extends CardImpl { + + public SpotcycleScouter(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}{W}"); + + this.subtype.add(SubType.VEHICLE); + this.power = new MageInt(3); + this.toughness = new MageInt(2); + + // When this Vehicle enters, scry 2. + this.addAbility(new EntersBattlefieldTriggeredAbility(new ScryEffect(2))); + + // Crew 1 + this.addAbility(new CrewAbility(1)); + } + + private SpotcycleScouter(final SpotcycleScouter card) { + super(card); + } + + @Override + public SpotcycleScouter copy() { + return new SpotcycleScouter(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Aetherdrift.java b/Mage.Sets/src/mage/sets/Aetherdrift.java index 6b11b43c78b..b131c1d2062 100644 --- a/Mage.Sets/src/mage/sets/Aetherdrift.java +++ b/Mage.Sets/src/mage/sets/Aetherdrift.java @@ -67,6 +67,7 @@ public final class Aetherdrift extends ExpansionSet { cards.add(new SetCardInfo("Rugged Highlands", 262, Rarity.COMMON, mage.cards.r.RuggedHighlands.class)); cards.add(new SetCardInfo("Sab-Sunen, Luxa Embodied", 221, Rarity.MYTHIC, mage.cards.s.SabSunenLuxaEmbodied.class)); cards.add(new SetCardInfo("Scoured Barrens", 263, Rarity.COMMON, mage.cards.s.ScouredBarrens.class)); + cards.add(new SetCardInfo("Spotcycle Scouter", 30, Rarity.COMMON, mage.cards.s.SpotcycleScouter.class)); cards.add(new SetCardInfo("Stock Up", 67, Rarity.UNCOMMON, mage.cards.s.StockUp.class)); cards.add(new SetCardInfo("Streaking Oilgorger", 107, Rarity.COMMON, mage.cards.s.StreakingOilgorger.class)); cards.add(new SetCardInfo("Sunbillow Verge", 264, Rarity.RARE, mage.cards.s.SunbillowVerge.class));