mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
[ZNR] Implemented Turntimber Ascetic
This commit is contained in:
parent
6fd09cba77
commit
1a65af2aaf
2 changed files with 39 additions and 0 deletions
38
Mage.Sets/src/mage/cards/t/TurntimberAscetic.java
Normal file
38
Mage.Sets/src/mage/cards/t/TurntimberAscetic.java
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
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 TurntimberAscetic extends CardImpl {
|
||||
|
||||
public TurntimberAscetic(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{G}");
|
||||
|
||||
this.subtype.add(SubType.GIANT);
|
||||
this.subtype.add(SubType.CLERIC);
|
||||
this.power = new MageInt(5);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// When Turntimber Ascetic enters the battlefield, you gain 3 life.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(3)));
|
||||
}
|
||||
|
||||
private TurntimberAscetic(final TurntimberAscetic card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TurntimberAscetic copy() {
|
||||
return new TurntimberAscetic(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -368,6 +368,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Timbercrown Pathway", 261, Rarity.RARE, mage.cards.t.TimbercrownPathway.class));
|
||||
cards.add(new SetCardInfo("Tormenting Voice", 172, Rarity.COMMON, mage.cards.t.TormentingVoice.class));
|
||||
cards.add(new SetCardInfo("Tuktuk Rubblefort", 173, Rarity.COMMON, mage.cards.t.TuktukRubblefort.class));
|
||||
cards.add(new SetCardInfo("Turntimber Ascetic", 214, Rarity.COMMON, mage.cards.t.TurntimberAscetic.class));
|
||||
cards.add(new SetCardInfo("Umara Mystic", 238, Rarity.UNCOMMON, mage.cards.u.UmaraMystic.class));
|
||||
cards.add(new SetCardInfo("Umara Skyfalls", 86, Rarity.UNCOMMON, mage.cards.u.UmaraSkyfalls.class));
|
||||
cards.add(new SetCardInfo("Umara Wizard", 86, Rarity.UNCOMMON, mage.cards.u.UmaraWizard.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue