mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
[OTJ] Implement Consuming Ashes
This commit is contained in:
parent
364a48a998
commit
8bf25a935d
2 changed files with 70 additions and 0 deletions
69
Mage.Sets/src/mage/cards/c/ConsumingAshes.java
Normal file
69
Mage.Sets/src/mage/cards/c/ConsumingAshes.java
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
package mage.cards.c;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class ConsumingAshes extends CardImpl {
|
||||
|
||||
public ConsumingAshes(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}{B}");
|
||||
|
||||
// Exile target creature. If it had mana value 3 or less, surveil 2.
|
||||
this.getSpellAbility().addEffect(new ConsumingAshesEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private ConsumingAshes(final ConsumingAshes card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ConsumingAshes copy() {
|
||||
return new ConsumingAshes(this);
|
||||
}
|
||||
}
|
||||
|
||||
class ConsumingAshesEffect extends OneShotEffect {
|
||||
|
||||
ConsumingAshesEffect() {
|
||||
super(Outcome.Exile);
|
||||
staticText = "Exile target creature. If it had mana value 3 or less, surveil 2.";
|
||||
}
|
||||
|
||||
private ConsumingAshesEffect(final ConsumingAshesEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ConsumingAshesEffect copy() {
|
||||
return new ConsumingAshesEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player controller = game.getPlayer(source.getControllerId());
|
||||
Permanent permanent = game.getPermanent(source.getFirstTarget());
|
||||
if (controller == null || permanent == null) {
|
||||
return false;
|
||||
}
|
||||
permanent.moveToExile(null, "", source, game);
|
||||
if (permanent.getManaValue() <= 3) {
|
||||
controller.surveil(2, source, game);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -68,6 +68,7 @@ public final class OutlawsOfThunderJunction extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Concealed Courtyard", 268, Rarity.RARE, mage.cards.c.ConcealedCourtyard.class));
|
||||
cards.add(new SetCardInfo("Conduit Pylons", 254, Rarity.COMMON, mage.cards.c.ConduitPylons.class));
|
||||
cards.add(new SetCardInfo("Congregation Gryff", 200, Rarity.UNCOMMON, mage.cards.c.CongregationGryff.class));
|
||||
cards.add(new SetCardInfo("Consuming Ashes", 83, Rarity.COMMON, mage.cards.c.ConsumingAshes.class));
|
||||
cards.add(new SetCardInfo("Corrupted Conviction", 84, Rarity.COMMON, mage.cards.c.CorruptedConviction.class));
|
||||
cards.add(new SetCardInfo("Creosote Heath", 255, Rarity.COMMON, mage.cards.c.CreosoteHeath.class));
|
||||
cards.add(new SetCardInfo("Cunning Coyote", 118, Rarity.UNCOMMON, mage.cards.c.CunningCoyote.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue