From 2cbfa9aaf81e603beec90d409dab6259c08d5b78 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Fri, 10 Apr 2020 21:54:50 -0400 Subject: [PATCH] Implemented Flycatcher Giraffid --- .../src/mage/cards/f/FlycatcherGiraffid.java | 41 +++++++++++++++++++ .../src/mage/sets/IkoriaLairOfBehemoths.java | 1 + 2 files changed, 42 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/f/FlycatcherGiraffid.java diff --git a/Mage.Sets/src/mage/cards/f/FlycatcherGiraffid.java b/Mage.Sets/src/mage/cards/f/FlycatcherGiraffid.java new file mode 100644 index 0000000000..3329d84e23 --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/FlycatcherGiraffid.java @@ -0,0 +1,41 @@ +package mage.cards.f; + +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldAbility; +import mage.abilities.effects.common.counter.AddCounterChoiceSourceEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.counters.CounterType; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class FlycatcherGiraffid extends CardImpl { + + public FlycatcherGiraffid(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{G}"); + + this.subtype.add(SubType.ANTELOPE); + this.subtype.add(SubType.LIZARD); + this.power = new MageInt(3); + this.toughness = new MageInt(5); + + // Flycatcher Giraffid enters the battlefield with your choice of a vigilance counter or a reach counter on it. + this.addAbility(new EntersBattlefieldAbility( + new AddCounterChoiceSourceEffect(CounterType.VIGILANCE, CounterType.REACH) + )); + } + + private FlycatcherGiraffid(final FlycatcherGiraffid card) { + super(card); + } + + @Override + public FlycatcherGiraffid copy() { + return new FlycatcherGiraffid(this); + } +} diff --git a/Mage.Sets/src/mage/sets/IkoriaLairOfBehemoths.java b/Mage.Sets/src/mage/sets/IkoriaLairOfBehemoths.java index df11135649..f3e1a927bc 100644 --- a/Mage.Sets/src/mage/sets/IkoriaLairOfBehemoths.java +++ b/Mage.Sets/src/mage/sets/IkoriaLairOfBehemoths.java @@ -134,6 +134,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet { cards.add(new SetCardInfo("Fire Prophecy", 116, Rarity.COMMON, mage.cards.f.FireProphecy.class)); cards.add(new SetCardInfo("Flame Spill", 117, Rarity.UNCOMMON, mage.cards.f.FlameSpill.class)); cards.add(new SetCardInfo("Flourishing Fox", 13, Rarity.UNCOMMON, mage.cards.f.FlourishingFox.class)); + cards.add(new SetCardInfo("Flycatcher Giraffid", 153, Rarity.COMMON, mage.cards.f.FlycatcherGiraffid.class)); cards.add(new SetCardInfo("Footfall Crater", 118, Rarity.UNCOMMON, mage.cards.f.FootfallCrater.class)); cards.add(new SetCardInfo("Forbidden Friendship", 119, Rarity.COMMON, mage.cards.f.ForbiddenFriendship.class)); cards.add(new SetCardInfo("Forest", 272, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));