diff --git a/Mage.Sets/src/mage/cards/r/RapaciousDragon.java b/Mage.Sets/src/mage/cards/r/RapaciousDragon.java new file mode 100644 index 00000000000..5675e7b37cc --- /dev/null +++ b/Mage.Sets/src/mage/cards/r/RapaciousDragon.java @@ -0,0 +1,46 @@ +package mage.cards.r; + +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.keyword.FlyingAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.game.permanent.token.TreasureToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class RapaciousDragon extends CardImpl { + + public RapaciousDragon(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{R}"); + + this.subtype.add(SubType.DRAGON); + this.power = new MageInt(3); + this.toughness = new MageInt(3); + + // Flying + this.addAbility(FlyingAbility.getInstance()); + + // When Rapacious Dragon enters the battlefield, create two Treasure tokens. + this.addAbility(new EntersBattlefieldTriggeredAbility( + new CreateTokenEffect(new TreasureToken()) + .setText("create two Treasure tokens. (They’re artifacts with " + + "\"{T}, Sacrifice this artifact: Add one mana of any color.\")") + )); + } + + private RapaciousDragon(final RapaciousDragon card) { + super(card); + } + + @Override + public RapaciousDragon copy() { + return new RapaciousDragon(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CoreSet2020.java b/Mage.Sets/src/mage/sets/CoreSet2020.java index a80d9494450..402d6968987 100644 --- a/Mage.Sets/src/mage/sets/CoreSet2020.java +++ b/Mage.Sets/src/mage/sets/CoreSet2020.java @@ -134,6 +134,7 @@ public final class CoreSet2020 extends ExpansionSet { cards.add(new SetCardInfo("Planar Cleansing", 33, Rarity.RARE, mage.cards.p.PlanarCleansing.class)); cards.add(new SetCardInfo("Pulse of Murasa", 189, Rarity.UNCOMMON, mage.cards.p.PulseOfMurasa.class)); cards.add(new SetCardInfo("Raise the Alarm", 34, Rarity.COMMON, mage.cards.r.RaiseTheAlarm.class)); + cards.add(new SetCardInfo("Rapacious Dragon", 153, Rarity.UNCOMMON, mage.cards.r.RapaciousDragon.class)); cards.add(new SetCardInfo("Reckless Air Strike", 154, Rarity.COMMON, mage.cards.r.RecklessAirStrike.class)); cards.add(new SetCardInfo("Renowned Weaponsmith", 72, Rarity.UNCOMMON, mage.cards.r.RenownedWeaponsmith.class)); cards.add(new SetCardInfo("Retributive Wand", 236, Rarity.UNCOMMON, mage.cards.r.RetributiveWand.class));