mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[ZNR] Implemented Relic Amulet
This commit is contained in:
parent
8d89c99f17
commit
c15c811b30
2 changed files with 84 additions and 0 deletions
83
Mage.Sets/src/mage/cards/r/RelicAmulet.java
Normal file
83
Mage.Sets/src/mage/cards/r/RelicAmulet.java
Normal file
|
@ -0,0 +1,83 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.common.SpellCastControllerTriggeredAbility;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.abilities.costs.common.RemoveAllCountersSourceCost;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.dynamicvalue.DynamicValue;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.counters.CounterType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.Game;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RelicAmulet extends CardImpl {
|
||||
|
||||
public RelicAmulet(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
|
||||
// Whenever you cast an instant, sorcery, or Wizard spell, put a charge counter on Relic Amulet.
|
||||
this.addAbility(new SpellCastControllerTriggeredAbility(
|
||||
new AddCountersSourceEffect(CounterType.CHARGE.createInstance()),
|
||||
StaticFilters.FILTER_SPELL_INSTANT_SORCERY_WIZARD, false
|
||||
));
|
||||
|
||||
// {2}, {T}, Remove all charge counters from Relic Amulet: It deals that much damage to target creature.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
new DamageTargetEffect(RelicAmuletValue.instance)
|
||||
.setText("it deals that much damage to target creature"),
|
||||
new GenericManaCost(2)
|
||||
);
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addCost(new RemoveAllCountersSourceCost(CounterType.CHARGE));
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private RelicAmulet(final RelicAmulet card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RelicAmulet copy() {
|
||||
return new RelicAmulet(this);
|
||||
}
|
||||
}
|
||||
|
||||
enum RelicAmuletValue implements DynamicValue {
|
||||
instance;
|
||||
|
||||
@Override
|
||||
public int calculate(Game game, Ability sourceAbility, Effect effect) {
|
||||
int countersRemoved = 0;
|
||||
for (Cost cost : sourceAbility.getCosts()) {
|
||||
if (cost instanceof RemoveAllCountersSourceCost) {
|
||||
countersRemoved = ((RemoveAllCountersSourceCost) cost).getRemovedCounters();
|
||||
}
|
||||
}
|
||||
return countersRemoved;
|
||||
}
|
||||
|
||||
@Override
|
||||
public RelicAmuletValue copy() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMessage() {
|
||||
return "";
|
||||
}
|
||||
}
|
|
@ -272,6 +272,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Rabid Bite", 199, Rarity.COMMON, mage.cards.r.RabidBite.class));
|
||||
cards.add(new SetCardInfo("Ravager's Mace", 235, Rarity.UNCOMMON, mage.cards.r.RavagersMace.class));
|
||||
cards.add(new SetCardInfo("Reclaim the Wastes", 200, Rarity.COMMON, mage.cards.r.ReclaimTheWastes.class));
|
||||
cards.add(new SetCardInfo("Relic Amulet", 247, Rarity.UNCOMMON, mage.cards.r.RelicAmulet.class));
|
||||
cards.add(new SetCardInfo("Relic Golem", 249, Rarity.UNCOMMON, mage.cards.r.RelicGolem.class));
|
||||
cards.add(new SetCardInfo("Relic Robber", 153, Rarity.RARE, mage.cards.r.RelicRobber.class));
|
||||
cards.add(new SetCardInfo("Relic Vial", 250, Rarity.UNCOMMON, mage.cards.r.RelicVial.class));
|
||||
|
|
Loading…
Reference in a new issue