diff --git a/Mage.Sets/src/mage/cards/f/FeywildCaretaker.java b/Mage.Sets/src/mage/cards/f/FeywildCaretaker.java new file mode 100644 index 00000000000..ce34233c7e6 --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/FeywildCaretaker.java @@ -0,0 +1,49 @@ +package mage.cards.f; + +import mage.MageInt; +import mage.abilities.common.BeginningOfEndStepTriggeredAbility; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.condition.common.HaveInitiativeCondition; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.effects.common.TakeTheInitiativeEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.constants.TargetController; +import mage.game.permanent.token.FaerieDragonToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class FeywildCaretaker extends CardImpl { + + public FeywildCaretaker(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{U}"); + + this.subtype.add(SubType.ORC); + this.subtype.add(SubType.WIZARD); + this.power = new MageInt(3); + this.toughness = new MageInt(4); + + // When Feywild Caretaker enters the battlefield, you take the initiative. + this.addAbility(new EntersBattlefieldTriggeredAbility(new TakeTheInitiativeEffect())); + + // At the beginning of your end step, if you have the initiative, create a 1/1 blue Faerie Dragon creature token with flying. + this.addAbility(new BeginningOfEndStepTriggeredAbility( + new CreateTokenEffect(new FaerieDragonToken()), TargetController.YOU, + HaveInitiativeCondition.instance, false + )); + } + + private FeywildCaretaker(final FeywildCaretaker card) { + super(card); + } + + @Override + public FeywildCaretaker copy() { + return new FeywildCaretaker(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java b/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java index 80311f7579e..3555749d813 100644 --- a/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java +++ b/Mage.Sets/src/mage/sets/CommanderLegendsBattleForBaldursGate.java @@ -112,6 +112,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet { cards.add(new SetCardInfo("Faceless One", 1, Rarity.SPECIAL, mage.cards.f.FacelessOne.class)); cards.add(new SetCardInfo("Fang Dragon", 173, Rarity.COMMON, mage.cards.f.FangDragon.class)); cards.add(new SetCardInfo("Far Traveler", 17, Rarity.UNCOMMON, mage.cards.f.FarTraveler.class)); + cards.add(new SetCardInfo("Feywild Caretaker", 69, Rarity.UNCOMMON, mage.cards.f.FeywildCaretaker.class)); cards.add(new SetCardInfo("Firbolg Flutist", 174, Rarity.RARE, mage.cards.f.FirbolgFlutist.class)); cards.add(new SetCardInfo("Fire Diamond", 313, Rarity.COMMON, mage.cards.f.FireDiamond.class)); cards.add(new SetCardInfo("Fireball", 175, Rarity.UNCOMMON, mage.cards.f.Fireball.class));