[AFR] Implemented Dragon's Fire (#8000)

This commit is contained in:
Daniel Bomar 2021-07-13 07:22:11 -05:00 committed by GitHub
parent aa06893f4d
commit a3eed55a6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 222 additions and 0 deletions

View file

@ -0,0 +1,221 @@
package mage.cards.d;
import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.costs.Cost;
import mage.abilities.costs.CostImpl;
import mage.abilities.effects.OneShotEffect;
import mage.cards.Card;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.cards.CardsImpl;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.SubType;
import mage.filter.FilterCard;
import mage.filter.common.FilterControlledPermanent;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.target.common.TargetCardInHand;
import mage.target.common.TargetControlledPermanent;
import mage.target.common.TargetCreatureOrPlaneswalker;
/**
*
* @author weirddan455
*/
public final class DragonsFire extends CardImpl {
public DragonsFire(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{R}");
// As an additional cost to cast this spell, you may reveal a Dragon card from your hand or choose a Dragon you control.
this.getSpellAbility().addCost(new DragonsFireCost());
// Dragon's Fire deals 3 damage to target creature or planeswalker.
// If you revealed a Dragon card or chose a Dragon as you cast this spell, Dragon's Fire deals damage equal to the power of that card or creature instead.
this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
this.getSpellAbility().addEffect(new DragonsFireEffect());
}
private DragonsFire(final DragonsFire card) {
super(card);
}
@Override
public DragonsFire copy() {
return new DragonsFire(this);
}
}
class DragonsFireCost extends CostImpl {
public enum DragonZone {
HAND,
BATTLEFIELD,
NONE
}
private DragonZone dragonZone = DragonZone.NONE;
private UUID selectedCardId = null;
private static final FilterCard handFilter = new FilterCard("Dragon card from your hand");
private static final FilterControlledPermanent battlefieldFilter = new FilterControlledPermanent(SubType.DRAGON);
static {
handFilter.add(SubType.DRAGON.getPredicate());
}
public DragonsFireCost() {
this.text = "you may reveal a Dragon card from your hand or choose a Dragon you control";
}
private DragonsFireCost(final DragonsFireCost cost) {
super(cost);
this.dragonZone = cost.dragonZone;
this.selectedCardId = cost.selectedCardId;
}
@Override
public DragonsFireCost copy() {
return new DragonsFireCost(this);
}
@Override
public boolean canPay(Ability ability, Ability source, UUID controllerId, Game game) {
return true;
}
@Override
public boolean pay(Ability ability, Game game, Ability source, UUID controllerId, boolean noMana, Cost costToPay) {
this.targets.clear();
dragonZone = DragonZone.NONE;
selectedCardId = null;
Player controller = game.getPlayer(controllerId);
if (controller != null) {
boolean dragonInHand = false;
boolean dragonOnBattlefield = false;
DragonZone chosenZone = DragonZone.NONE;
for (UUID cardId : controller.getHand()) {
Card card = game.getCard(cardId);
if (card != null && card.hasSubtype(SubType.DRAGON, game)) {
dragonInHand = true;
break;
}
}
for (Permanent permanent : game.getBattlefield().getAllActivePermanents(controllerId)) {
if (permanent != null && permanent.hasSubtype(SubType.DRAGON, game)) {
dragonOnBattlefield = true;
break;
}
}
if (dragonInHand && dragonOnBattlefield) {
if (controller.chooseUse(Outcome.Benefit, "Reveal a Dragon card from your hand or choose a Dragon you control?", source, game)) {
if (controller.chooseUse(Outcome.Benefit, "Choose Dragon from hand or Dragon on battlefield", null, "Hand", "Battlefield", source, game)) {
chosenZone = DragonZone.HAND;
} else {
chosenZone = DragonZone.BATTLEFIELD;
}
}
}
else if (dragonInHand) {
if (controller.chooseUse(Outcome.Benefit, "Reveal a Dragon card from your hand?", source, game)) {
chosenZone = DragonZone.HAND;
}
}
else if (dragonOnBattlefield) {
if (controller.chooseUse(Outcome.Benefit, "Choose a dragon on the battlefield?", source, game)) {
chosenZone = DragonZone.BATTLEFIELD;
}
}
switch (chosenZone) {
case HAND:
targets.add(new TargetCardInHand(handFilter));
if (targets.choose(Outcome.Benefit, controllerId, source.getSourceId(), game)) {
Card card = game.getCard(targets.getFirstTarget());
if (card != null) {
dragonZone = DragonZone.HAND;
selectedCardId = targets.getFirstTarget();
controller.revealCards(source, new CardsImpl(card), game);
}
}
break;
case BATTLEFIELD:
targets.add(new TargetControlledPermanent(battlefieldFilter));
if (targets.choose(Outcome.Benefit, controllerId, source.getSourceId(), game)) {
Permanent permanent = game.getPermanent(targets.getFirstTarget());
if (permanent != null) {
dragonZone = DragonZone.BATTLEFIELD;
selectedCardId = targets.getFirstTarget();
game.informPlayers(controller.getLogName() + " chooses " + permanent.getLogName());
}
}
break;
}
}
return paid = true;
}
public DragonZone getDragonZone() {
return dragonZone;
}
public UUID getSelectedCardId() {
return selectedCardId;
}
}
class DragonsFireEffect extends OneShotEffect {
public DragonsFireEffect() {
super(Outcome.Damage);
this.staticText = "{this} deals 3 damage to target creature or planeswalker. "
+ "If you revealed a Dragon card or chose a Dragon as you cast this spell, {this} deals damage equal to the power of that card or creature instead";
}
private DragonsFireEffect(final DragonsFireEffect effect) {
super(effect);
}
@Override
public DragonsFireEffect copy() {
return new DragonsFireEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent targetedPermanent = game.getPermanent(targetPointer.getFirst(game, source));
if (targetedPermanent == null) {
return false;
}
DragonsFireCost.DragonZone dragonZone = DragonsFireCost.DragonZone.NONE;
UUID selectedCardId = null;
int damage = 3;
for (Cost cost : source.getCosts()) {
if (cost instanceof DragonsFireCost) {
DragonsFireCost dragonsFireCost = (DragonsFireCost) cost;
dragonZone = dragonsFireCost.getDragonZone();
selectedCardId = dragonsFireCost.getSelectedCardId();
break;
}
}
switch (dragonZone) {
case HAND:
Card card = game.getCard(selectedCardId);
if (card != null) {
damage = card.getPower().getValue();
}
break;
case BATTLEFIELD:
Permanent dragon = game.getPermanentOrLKIBattlefield(selectedCardId);
if (dragon != null) {
damage = dragon.getPower().getValue();
}
break;
}
targetedPermanent.damage(damage, source.getSourceId(), source, game);
return true;
}
}

View file

@ -73,6 +73,7 @@ public final class AdventuresInTheForgottenRealms extends ExpansionSet {
cards.add(new SetCardInfo("Djinni Windseer", 55, Rarity.COMMON, mage.cards.d.DjinniWindseer.class));
cards.add(new SetCardInfo("Dragon Turtle", 56, Rarity.RARE, mage.cards.d.DragonTurtle.class));
cards.add(new SetCardInfo("Dragon's Disciple", 13, Rarity.UNCOMMON, mage.cards.d.DragonsDisciple.class));
cards.add(new SetCardInfo("Dragon's Fire", 139, Rarity.COMMON, mage.cards.d.DragonsFire.class));
cards.add(new SetCardInfo("Drider", 98, Rarity.UNCOMMON, mage.cards.d.Drider.class));
cards.add(new SetCardInfo("Drizzt Do'Urden", 220, Rarity.RARE, mage.cards.d.DrizztDoUrden.class));
cards.add(new SetCardInfo("Dueling Rapier", 140, Rarity.COMMON, mage.cards.d.DuelingRapier.class));