forked from External/mage
[C21] Implemented Ezzaroot Channeler
This commit is contained in:
parent
f4dd6ba1e7
commit
eefa9dc8cf
2 changed files with 91 additions and 0 deletions
90
Mage.Sets/src/mage/cards/e/EzzarootChanneler.java
Normal file
90
Mage.Sets/src/mage/cards/e/EzzarootChanneler.java
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
package mage.cards.e;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.SpellAbility;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.dynamicvalue.common.ControllerGotLifeCount;
|
||||
import mage.abilities.dynamicvalue.common.ControllerLifeCount;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.effects.common.cost.CostModificationEffectImpl;
|
||||
import mage.abilities.keyword.ReachAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.game.Game;
|
||||
import mage.util.CardUtil;
|
||||
import mage.watchers.common.PlayerGainedLifeWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class EzzarootChanneler extends CardImpl {
|
||||
|
||||
public EzzarootChanneler(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{G}");
|
||||
|
||||
this.subtype.add(SubType.TREEFOLK);
|
||||
this.subtype.add(SubType.DRUID);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(6);
|
||||
|
||||
// Reach
|
||||
this.addAbility(ReachAbility.getInstance());
|
||||
|
||||
// Creature spells you cast cost {X} less to cast, where X is the amount of life you gained this turn.
|
||||
this.addAbility(
|
||||
new SimpleStaticAbility(new EzzarootChannelerEffect())
|
||||
.addHint(ControllerGotLifeCount.getHint()),
|
||||
new PlayerGainedLifeWatcher()
|
||||
);
|
||||
|
||||
// {T}: You gain 2 life.
|
||||
this.addAbility(new SimpleActivatedAbility(new GainLifeEffect(2), new TapSourceCost()));
|
||||
}
|
||||
|
||||
private EzzarootChanneler(final EzzarootChanneler card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public EzzarootChanneler copy() {
|
||||
return new EzzarootChanneler(this);
|
||||
}
|
||||
}
|
||||
|
||||
class EzzarootChannelerEffect extends CostModificationEffectImpl {
|
||||
|
||||
EzzarootChannelerEffect() {
|
||||
super(Duration.WhileOnStack, Outcome.Benefit, CostModificationType.REDUCE_COST);
|
||||
staticText = "creature spells you cast cost {X} less to cast, " +
|
||||
"where X is the amount of life you gained this turn";
|
||||
}
|
||||
|
||||
private EzzarootChannelerEffect(final EzzarootChannelerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source, Ability abilityToModify) {
|
||||
CardUtil.reduceCost(abilityToModify, Math.max(0, ControllerLifeCount.instance.calculate(game, source, this)));
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean applies(Ability abilityToModify, Ability source, Game game) {
|
||||
return abilityToModify instanceof SpellAbility
|
||||
&& abilityToModify.isControlledBy(source.getControllerId())
|
||||
&& ((SpellAbility) abilityToModify).getCharacteristics(game).isCreature()
|
||||
&& game.getCard(abilityToModify.getSourceId()) != null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public EzzarootChannelerEffect copy() {
|
||||
return new EzzarootChannelerEffect(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -90,6 +90,7 @@ public final class Commander2021Edition extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Etali, Primal Storm", 167, Rarity.RARE, mage.cards.e.EtaliPrimalStorm.class));
|
||||
cards.add(new SetCardInfo("Excavation Technique", 16, Rarity.RARE, mage.cards.e.ExcavationTechnique.class));
|
||||
cards.add(new SetCardInfo("Ezuri's Predation", 188, Rarity.RARE, mage.cards.e.EzurisPredation.class));
|
||||
cards.add(new SetCardInfo("Ezzaroot Channeler", 60, Rarity.RARE, mage.cards.e.EzzarootChanneler.class));
|
||||
cards.add(new SetCardInfo("Faithless Looting", 168, Rarity.COMMON, mage.cards.f.FaithlessLooting.class));
|
||||
cards.add(new SetCardInfo("Feldon of the Third Path", 169, Rarity.MYTHIC, mage.cards.f.FeldonOfTheThirdPath.class));
|
||||
cards.add(new SetCardInfo("Fiery Encore", 51, Rarity.RARE, mage.cards.f.FieryEncore.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue