mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[ZNR] Implemented Cleric of Chill Depths
This commit is contained in:
parent
9a2df5d013
commit
142ec6820f
2 changed files with 41 additions and 0 deletions
40
Mage.Sets/src/mage/cards/c/ClericOfChillDepths.java
Normal file
40
Mage.Sets/src/mage/cards/c/ClericOfChillDepths.java
Normal file
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue