From 894d16013077421b31ae8d7f9949d3d757ace541 Mon Sep 17 00:00:00 2001 From: Susucre <34709007+Susucre@users.noreply.github.com> Date: Tue, 24 Oct 2023 19:42:36 +0200 Subject: [PATCH] [LCI] Implement Cenote Scout --- Mage.Sets/src/mage/cards/c/CenoteScout.java | 39 +++++++++++++++++++ .../src/mage/sets/LostCavernsOfIxalan.java | 1 + 2 files changed, 40 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/c/CenoteScout.java diff --git a/Mage.Sets/src/mage/cards/c/CenoteScout.java b/Mage.Sets/src/mage/cards/c/CenoteScout.java new file mode 100644 index 00000000000..cc68f074c4e --- /dev/null +++ b/Mage.Sets/src/mage/cards/c/CenoteScout.java @@ -0,0 +1,39 @@ + +package mage.cards.c; + +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.keyword.ExploreSourceEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; + +import java.util.UUID; + +/** + * @author Susucr + */ +public final class CenoteScout extends CardImpl { + + public CenoteScout(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}"); + + this.subtype.add(SubType.MERFOLK); + this.subtype.add(SubType.SCOUT); + this.power = new MageInt(1); + this.toughness = new MageInt(1); + + // When Cenote Scout enters the battlefield, it explores. + this.addAbility(new EntersBattlefieldTriggeredAbility(new ExploreSourceEffect())); + } + + private CenoteScout(final CenoteScout card) { + super(card); + } + + @Override + public CenoteScout copy() { + return new CenoteScout(this); + } +} diff --git a/Mage.Sets/src/mage/sets/LostCavernsOfIxalan.java b/Mage.Sets/src/mage/sets/LostCavernsOfIxalan.java index 0f6c5540cf3..e5d7909c6d0 100644 --- a/Mage.Sets/src/mage/sets/LostCavernsOfIxalan.java +++ b/Mage.Sets/src/mage/sets/LostCavernsOfIxalan.java @@ -23,6 +23,7 @@ public final class LostCavernsOfIxalan extends ExpansionSet { cards.add(new SetCardInfo("Breeches, Eager Pillager", 137, Rarity.RARE, mage.cards.b.BreechesEagerPillager.class)); cards.add(new SetCardInfo("Cavern of Souls", 269, Rarity.MYTHIC, mage.cards.c.CavernOfSouls.class)); + cards.add(new SetCardInfo("Cenote Scout", 178, Rarity.UNCOMMON, mage.cards.c.CenoteScout.class)); cards.add(new SetCardInfo("Forest", 291, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS)); cards.add(new SetCardInfo("Ghalta, Stampede Tyrant", 185, Rarity.MYTHIC, mage.cards.g.GhaltaStampedeTyrant.class)); cards.add(new SetCardInfo("Huatli, Poet of Unity", 189, Rarity.MYTHIC, mage.cards.h.HuatliPoetOfUnity.class));