From 367f754cd42f9944bdaa8f4188ec56eddd502e5e Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Tue, 16 Jun 2020 18:45:23 -0400 Subject: [PATCH] Implemented Forgotten Sentinel --- .../src/mage/cards/f/ForgottenSentinel.java | 36 +++++++++++++++++++ Mage.Sets/src/mage/sets/CoreSet2021.java | 1 + 2 files changed, 37 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/f/ForgottenSentinel.java diff --git a/Mage.Sets/src/mage/cards/f/ForgottenSentinel.java b/Mage.Sets/src/mage/cards/f/ForgottenSentinel.java new file mode 100644 index 00000000000..cfdcd623621 --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/ForgottenSentinel.java @@ -0,0 +1,36 @@ +package mage.cards.f; + +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldTappedAbility; +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 ForgottenSentinel extends CardImpl { + + public ForgottenSentinel(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}"); + + this.subtype.add(SubType.GOLEM); + this.power = new MageInt(4); + this.toughness = new MageInt(3); + + // Forgotten Sentinel enters the battlefield tapped. + this.addAbility(new EntersBattlefieldTappedAbility()); + } + + private ForgottenSentinel(final ForgottenSentinel card) { + super(card); + } + + @Override + public ForgottenSentinel copy() { + return new ForgottenSentinel(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CoreSet2021.java b/Mage.Sets/src/mage/sets/CoreSet2021.java index 745a8325adc..7e759fc960f 100644 --- a/Mage.Sets/src/mage/sets/CoreSet2021.java +++ b/Mage.Sets/src/mage/sets/CoreSet2021.java @@ -102,6 +102,7 @@ public final class CoreSet2021 extends ExpansionSet { cards.add(new SetCardInfo("Fiery Emancipation", 143, Rarity.MYTHIC, mage.cards.f.FieryEmancipation.class)); cards.add(new SetCardInfo("Finishing Blow", 99, Rarity.COMMON, mage.cards.f.FinishingBlow.class)); cards.add(new SetCardInfo("Forest", 272, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Forgotten Sentinel", 231, Rarity.COMMON, mage.cards.f.ForgottenSentinel.class)); cards.add(new SetCardInfo("Frantic Inventory", 50, Rarity.COMMON, mage.cards.f.FranticInventory.class)); cards.add(new SetCardInfo("Frost Breath", 51, Rarity.COMMON, mage.cards.f.FrostBreath.class)); cards.add(new SetCardInfo("Fungal Rebirth", 182, Rarity.UNCOMMON, mage.cards.f.FungalRebirth.class));