From 142ec6820f642c7a629b3404bfb86c9eb803a645 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sun, 6 Sep 2020 12:39:24 -0400 Subject: [PATCH] [ZNR] Implemented Cleric of Chill Depths --- .../src/mage/cards/c/ClericOfChillDepths.java | 40 +++++++++++++++++++ Mage.Sets/src/mage/sets/ZendikarRising.java | 1 + 2 files changed, 41 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/c/ClericOfChillDepths.java diff --git a/Mage.Sets/src/mage/cards/c/ClericOfChillDepths.java b/Mage.Sets/src/mage/cards/c/ClericOfChillDepths.java new file mode 100644 index 0000000000..8e02967bcf --- /dev/null +++ b/Mage.Sets/src/mage/cards/c/ClericOfChillDepths.java @@ -0,0 +1,40 @@ +package mage.cards.c; + +import mage.MageInt; +import mage.abilities.common.BlocksSourceTriggeredAbility; +import mage.abilities.effects.common.DontUntapInControllersNextUntapStepTargetEffect; +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 ClericOfChillDepths extends CardImpl { + + public ClericOfChillDepths(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{U}"); + + this.subtype.add(SubType.MERFOLK); + this.subtype.add(SubType.CLERIC); + this.power = new MageInt(1); + this.toughness = new MageInt(3); + + // Whenever Cleric of Chill Depths blocks a creature, that creature doesn't untap during its controller's next untap step. + this.addAbility(new BlocksSourceTriggeredAbility( + new DontUntapInControllersNextUntapStepTargetEffect("that creature"), false, true + )); + } + + private ClericOfChillDepths(final ClericOfChillDepths card) { + super(card); + } + + @Override + public ClericOfChillDepths copy() { + return new ClericOfChillDepths(this); + } +} diff --git a/Mage.Sets/src/mage/sets/ZendikarRising.java b/Mage.Sets/src/mage/sets/ZendikarRising.java index 4f34469cc4..89966f117b 100644 --- a/Mage.Sets/src/mage/sets/ZendikarRising.java +++ b/Mage.Sets/src/mage/sets/ZendikarRising.java @@ -108,6 +108,7 @@ public final class ZendikarRising extends ExpansionSet { cards.add(new SetCardInfo("Cascade Seer", 48, Rarity.COMMON, mage.cards.c.CascadeSeer.class)); cards.add(new SetCardInfo("Cinderclasm", 136, Rarity.UNCOMMON, mage.cards.c.Cinderclasm.class)); cards.add(new SetCardInfo("Clearwater Pathway", 260, Rarity.RARE, mage.cards.c.ClearwaterPathway.class)); + cards.add(new SetCardInfo("Cleric of Chill Depths", 51, Rarity.COMMON, mage.cards.c.ClericOfChillDepths.class)); cards.add(new SetCardInfo("Cleric of Life's Bond", 222, Rarity.UNCOMMON, mage.cards.c.ClericOfLifesBond.class)); cards.add(new SetCardInfo("Cliffhaven Sell-Sword", 8, Rarity.COMMON, mage.cards.c.CliffhavenSellSword.class)); cards.add(new SetCardInfo("Coralhelm Chronicler", 54, Rarity.RARE, mage.cards.c.CoralhelmChronicler.class));