diff --git a/Mage.Sets/src/mage/cards/h/HinterlandSanctifier.java b/Mage.Sets/src/mage/cards/h/HinterlandSanctifier.java new file mode 100644 index 00000000000..2bef8c83e16 --- /dev/null +++ b/Mage.Sets/src/mage/cards/h/HinterlandSanctifier.java @@ -0,0 +1,41 @@ +package mage.cards.h; + +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldAllTriggeredAbility; +import mage.abilities.effects.common.GainLifeEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.filter.StaticFilters; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class HinterlandSanctifier extends CardImpl { + + public HinterlandSanctifier(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}"); + + this.subtype.add(SubType.RABBIT); + this.subtype.add(SubType.CLERIC); + this.power = new MageInt(1); + this.toughness = new MageInt(2); + + // Whenever another creature you control enters, you gain 1 life. + this.addAbility(new EntersBattlefieldAllTriggeredAbility( + new GainLifeEffect(1), StaticFilters.FILTER_ANOTHER_CREATURE_YOU_CONTROL + )); + } + + private HinterlandSanctifier(final HinterlandSanctifier card) { + super(card); + } + + @Override + public HinterlandSanctifier copy() { + return new HinterlandSanctifier(this); + } +} diff --git a/Mage.Sets/src/mage/sets/FoundationsJumpstart.java b/Mage.Sets/src/mage/sets/FoundationsJumpstart.java index 206a51c22db..e62150f173b 100644 --- a/Mage.Sets/src/mage/sets/FoundationsJumpstart.java +++ b/Mage.Sets/src/mage/sets/FoundationsJumpstart.java @@ -338,6 +338,7 @@ public final class FoundationsJumpstart extends ExpansionSet { cards.add(new SetCardInfo("Hero of the Games", 563, Rarity.COMMON, mage.cards.h.HeroOfTheGames.class)); cards.add(new SetCardInfo("Hexgold Hoverwings", 208, Rarity.UNCOMMON, mage.cards.h.HexgoldHoverwings.class)); cards.add(new SetCardInfo("High-Rise Sawjack", 670, Rarity.COMMON, mage.cards.h.HighRiseSawjack.class)); + cards.add(new SetCardInfo("Hinterland Sanctifier", 5, Rarity.COMMON, mage.cards.h.HinterlandSanctifier.class)); cards.add(new SetCardInfo("Hooded Blightfang", 455, Rarity.RARE, mage.cards.h.HoodedBlightfang.class)); cards.add(new SetCardInfo("Howling Banshee", 119, Rarity.UNCOMMON, mage.cards.h.HowlingBanshee.class)); cards.add(new SetCardInfo("Hungry Megasloth", 21, Rarity.UNCOMMON, mage.cards.h.HungryMegasloth.class));