diff --git a/Mage.Sets/src/mage/cards/y/YuanTiFangBlade.java b/Mage.Sets/src/mage/cards/y/YuanTiFangBlade.java new file mode 100644 index 0000000000..e33ca95618 --- /dev/null +++ b/Mage.Sets/src/mage/cards/y/YuanTiFangBlade.java @@ -0,0 +1,44 @@ +package mage.cards.y; + +import mage.MageInt; +import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility; +import mage.abilities.effects.keyword.VentureIntoTheDungeonEffect; +import mage.abilities.keyword.DeathtouchAbility; +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 YuanTiFangBlade extends CardImpl { + + public YuanTiFangBlade(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}"); + + this.subtype.add(SubType.SNAKE); + this.subtype.add(SubType.ROGUE); + this.power = new MageInt(2); + this.toughness = new MageInt(2); + + // Deathtouch + this.addAbility(DeathtouchAbility.getInstance()); + + // Whenever Yuan-Ti Fang-Blade deals combat damage to a player, venture into the dungeon. + this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility( + new VentureIntoTheDungeonEffect(), false + )); + } + + private YuanTiFangBlade(final YuanTiFangBlade card) { + super(card); + } + + @Override + public YuanTiFangBlade copy() { + return new YuanTiFangBlade(this); + } +} diff --git a/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java b/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java index 98bd8ac7f8..e4ff4ce1d0 100644 --- a/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java +++ b/Mage.Sets/src/mage/sets/AdventuresInTheForgottenRealms.java @@ -91,6 +91,7 @@ public final class AdventuresInTheForgottenRealms extends ExpansionSet { cards.add(new SetCardInfo("You Hear Something on Watch", 42, Rarity.COMMON, mage.cards.y.YouHearSomethingOnWatch.class)); cards.add(new SetCardInfo("You See a Guard Approach", 85, Rarity.COMMON, mage.cards.y.YouSeeAGuardApproach.class)); cards.add(new SetCardInfo("You See a Pair of Goblins", 170, Rarity.UNCOMMON, mage.cards.y.YouSeeAPairOfGoblins.class)); + cards.add(new SetCardInfo("Yuan-Ti Fang-Blade", 128, Rarity.COMMON, mage.cards.y.YuanTiFangBlade.class)); cards.add(new SetCardInfo("Zombie Ogre", 129, Rarity.COMMON, mage.cards.z.ZombieOgre.class)); } }