diff --git a/Mage.Sets/src/mage/cards/g/GretchenTitchwillow.java b/Mage.Sets/src/mage/cards/g/GretchenTitchwillow.java new file mode 100644 index 0000000000..8f8855c9da --- /dev/null +++ b/Mage.Sets/src/mage/cards/g/GretchenTitchwillow.java @@ -0,0 +1,48 @@ +package mage.cards.g; + +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.DrawCardSourceControllerEffect; +import mage.abilities.effects.common.PutCardFromHandOntoBattlefieldEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.constants.SuperType; +import mage.filter.StaticFilters; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class GretchenTitchwillow extends CardImpl { + + public GretchenTitchwillow(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}{U}"); + + this.addSuperType(SuperType.LEGENDARY); + this.subtype.add(SubType.HALFLING); + this.subtype.add(SubType.DRUID); + this.power = new MageInt(0); + this.toughness = new MageInt(4); + + // {2}{G}{U}: Draw a card. You may put a land card from your hand onto the battlefield. + Ability ability = new SimpleActivatedAbility( + new DrawCardSourceControllerEffect(1), new ManaCostsImpl<>("{2}{G}{U}") + ); + ability.addEffect(new PutCardFromHandOntoBattlefieldEffect(StaticFilters.FILTER_CARD_LAND_A)); + this.addAbility(ability); + } + + private GretchenTitchwillow(final GretchenTitchwillow card) { + super(card); + } + + @Override + public GretchenTitchwillow copy() { + return new GretchenTitchwillow(this); + } +} diff --git a/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java b/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java index 7f1f8b1aa0..a0c93214a1 100644 --- a/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java +++ b/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java @@ -75,6 +75,7 @@ public final class AdventuresInTheForgottenRealms extends ExpansionSet { cards.add(new SetCardInfo("Goblin Morningstar", 145, Rarity.UNCOMMON, mage.cards.g.GoblinMorningstar.class)); cards.add(new SetCardInfo("Grazilaxx, Illithid Scholar", 60, Rarity.RARE, mage.cards.g.GrazilaxxIllithidScholar.class)); cards.add(new SetCardInfo("Green Dragon", 186, Rarity.UNCOMMON, mage.cards.g.GreenDragon.class)); + cards.add(new SetCardInfo("Gretchen Titchwillow", 223, Rarity.UNCOMMON, mage.cards.g.GretchenTitchwillow.class)); cards.add(new SetCardInfo("Grim Wanderer", 107, Rarity.UNCOMMON, mage.cards.g.GrimWanderer.class)); cards.add(new SetCardInfo("Guild Thief", 61, Rarity.UNCOMMON, mage.cards.g.GuildThief.class)); cards.add(new SetCardInfo("Half-Elf Monk", 19, Rarity.COMMON, mage.cards.h.HalfElfMonk.class)); diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index 8d28a25cc2..e78f10cc99 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -41452,7 +41452,7 @@ Adult Gold Dragon|Adventures in the Forgotten Realms|216|R|{3}{R}{W}|Creature - Barrowin of Clan Undurr|Adventures in the Forgotten Realms|218|U|{2}{W}{B}|Legendary Creature - Dwarf Cleric|3|3|When Barrowin of Clan Undurr enters the battlefield, venture into the dungeon.$Whenever Barrowin of Clan Undurr attacks, return up to one creature card with mana value 3 or less from your graveyard to the battlefield if you've completed a dungeon.| Bruenor Battlehammer|Adventures in the Forgotten Realms|219|U|{2}{R}{W}|Legendary Creature - Dwarf Warrior|5|3|Each creature you control gets +2/+0 for each Equipment attached to it.$You may pay {0} rather than pay the equip cost of the first equip ability you activate each turn.| Drizzt Do'Urden|Adventures in the Forgotten Realms|220|R|{3}{G}{W}|Legendary Creature - Elf Ranger|3|3|Double strike$When Drizzt Do'Urden enters the battlefield, create Guenhwyvar, a legendary 4/1 green Cat creature token with trample.$Whenever a creature dies, if it had power greater than Drizzt's power, put a number of +1/+1 counters on Drizzt equal to the difference.| -Gretchen Tichwillow|Adventures in the Forgotten Realms|223|U|{G}{U}|Legendary Creature - Halfling Druid|0|4|{2}{G}{U}: Draw a card. You may put a land card from your hand onto the battlefield.| +Gretchen Titchwillow|Adventures in the Forgotten Realms|223|U|{G}{U}|Legendary Creature - Halfling Druid|0|4|{2}{G}{U}: Draw a card. You may put a land card from your hand onto the battlefield.| Hama Pashar, Ruin Seeker|Adventures in the Forgotten Realms|224|U|{1}{W}{U}|Legendary Creature - Human Wizard|2|3|Room abilities of dungeons your own trigger an additional time.| Kalain, Reclusive Painter|Adventures in the Forgotten Realms|225|U|{B}{R}|Legendary Creature - Human Elf Bard|1|2|When Kalain, Reclusive Painter enters the battlefield, create a Treasure token.$Other creatures you control enter the battlefield with an additional +1/+1 counter on them for each mana from a Treasure spent to cast them.| Orcus, Prince of Undeath|Adventures in the Forgotten Realms|229|R|{X}{2}{B}{R}|Legendary Creature - Demon|5|3|Flying, trample$When Orcus, Prince of Undeath enters the battlefield, choose one —$• Each other creature gets -X/-X until end of turn. You lose X life.$• Return up to X target creature cards with total mana value X or less from your graveyard to the battlefield. They gain haste until end of turn.|