mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[C15] Added Scourge of Nel Toth.
This commit is contained in:
parent
bfb54ca112
commit
7044e58231
12 changed files with 179 additions and 21 deletions
|
@ -141,7 +141,7 @@ class StolenGoodsCastFromExileEffect extends AsThoughEffectImpl {
|
||||||
Card card = game.getCard(sourceId);
|
Card card = game.getCard(sourceId);
|
||||||
if (card != null && game.getState().getZone(sourceId) == Zone.EXILED) {
|
if (card != null && game.getState().getZone(sourceId) == Zone.EXILED) {
|
||||||
Player player = game.getPlayer(affectedControllerId);
|
Player player = game.getPlayer(affectedControllerId);
|
||||||
player.setCastSourceIdWithAlternateMana(sourceId, null);
|
player.setCastSourceIdWithAlternateMana(sourceId, null, null);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
120
Mage.Sets/src/mage/sets/commander2015/ScourgeOfNelToth.java
Normal file
120
Mage.Sets/src/mage/sets/commander2015/ScourgeOfNelToth.java
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
package mage.sets.commander2015;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.costs.Cost;
|
||||||
|
import mage.abilities.costs.Costs;
|
||||||
|
import mage.abilities.costs.CostsImpl;
|
||||||
|
import mage.abilities.costs.common.SacrificeTargetCost;
|
||||||
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||||
|
import mage.abilities.effects.AsThoughEffectImpl;
|
||||||
|
import mage.abilities.keyword.FlyingAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.constants.AsThoughEffectType;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.Rarity;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.players.Player;
|
||||||
|
import mage.target.common.TargetControlledCreaturePermanent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author LevelX2
|
||||||
|
*/
|
||||||
|
public class ScourgeOfNelToth extends CardImpl {
|
||||||
|
|
||||||
|
public ScourgeOfNelToth(UUID ownerId) {
|
||||||
|
super(ownerId, 21, "Scourge of Nel Toth", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{5}{B}{B}");
|
||||||
|
this.expansionSetCode = "C15";
|
||||||
|
this.subtype.add("Zombie");
|
||||||
|
this.subtype.add("Dragon");
|
||||||
|
this.power = new MageInt(6);
|
||||||
|
this.toughness = new MageInt(6);
|
||||||
|
|
||||||
|
// Flying
|
||||||
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
// You may cast Scourge of Nel Toth from your graveyard by paying {B}{B} and sacrificing two creatures rather than paying its mana cost.
|
||||||
|
this.addAbility(new SimpleStaticAbility(Zone.ALL, new ScourgeOfNelTothPlayEffect()));
|
||||||
|
}
|
||||||
|
|
||||||
|
public ScourgeOfNelToth(final ScourgeOfNelToth card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ScourgeOfNelToth copy() {
|
||||||
|
return new ScourgeOfNelToth(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class ScourgeOfNelTothPlayEffect extends AsThoughEffectImpl {
|
||||||
|
|
||||||
|
public ScourgeOfNelTothPlayEffect() {
|
||||||
|
super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfGame, Outcome.Benefit);
|
||||||
|
staticText = "You may cast {this} from your graveyard by paying {B}{B} and sacrificing two creatures rather than paying its mana cost";
|
||||||
|
}
|
||||||
|
|
||||||
|
public ScourgeOfNelTothPlayEffect(final ScourgeOfNelTothPlayEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ScourgeOfNelTothPlayEffect copy() {
|
||||||
|
return new ScourgeOfNelTothPlayEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean applies(UUID sourceId, Ability source, UUID affectedControllerId, Game game) {
|
||||||
|
if (sourceId.equals(source.getSourceId()) && source.getControllerId().equals(affectedControllerId)) {
|
||||||
|
if (game.getState().getZone(source.getSourceId()) == Zone.GRAVEYARD) {
|
||||||
|
Player player = game.getPlayer(affectedControllerId);
|
||||||
|
if (player != null) {
|
||||||
|
// can sometimes be cast with base mana cost from grave????
|
||||||
|
Costs<Cost> costs = new CostsImpl<>();
|
||||||
|
costs.add(new SacrificeTargetCost(new TargetControlledCreaturePermanent(2)));
|
||||||
|
player.setCastSourceIdWithAlternateMana(sourceId, new ManaCostsImpl<>("{B}{B}"), costs);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -141,7 +141,7 @@ class SpelljackCastFromExileEffect extends AsThoughEffectImpl {
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
if (game.getState().getZone(sourceId) == Zone.EXILED) {
|
if (game.getState().getZone(sourceId) == Zone.EXILED) {
|
||||||
Player player = game.getPlayer(affectedControllerId);
|
Player player = game.getPlayer(affectedControllerId);
|
||||||
player.setCastSourceIdWithAlternateMana(sourceId, null);
|
player.setCastSourceIdWithAlternateMana(sourceId, null, null);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
this.discard();
|
this.discard();
|
||||||
|
|
|
@ -158,7 +158,7 @@ class KheruSpellsnatcherCastFromExileEffect extends AsThoughEffectImpl {
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
if (game.getState().getZone(sourceId) == Zone.EXILED) {
|
if (game.getState().getZone(sourceId) == Zone.EXILED) {
|
||||||
Player player = game.getPlayer(affectedControllerId);
|
Player player = game.getPlayer(affectedControllerId);
|
||||||
player.setCastSourceIdWithAlternateMana(sourceId, null);
|
player.setCastSourceIdWithAlternateMana(sourceId, null, null);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
this.discard();
|
this.discard();
|
||||||
|
|
|
@ -151,7 +151,7 @@ class NarsetEnlightenedMasterCastFromExileEffect extends AsThoughEffectImpl {
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
Player player = game.getPlayer(affectedControllerId);
|
Player player = game.getPlayer(affectedControllerId);
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
player.setCastSourceIdWithAlternateMana(objectId, null);
|
player.setCastSourceIdWithAlternateMana(objectId, null, null);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -111,7 +111,7 @@ public class WorldheartPhoenix extends CardImpl {
|
||||||
Player player = game.getPlayer(affectedControllerId);
|
Player player = game.getPlayer(affectedControllerId);
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
// can sometimes be cast with base mana cost from grave????
|
// can sometimes be cast with base mana cost from grave????
|
||||||
player.setCastSourceIdWithAlternateMana(sourceId, new ManaCostsImpl<>("{W}{U}{B}{R}{G}"));
|
player.setCastSourceIdWithAlternateMana(sourceId, new ManaCostsImpl<>("{W}{U}{B}{R}{G}"), null);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -166,7 +166,7 @@ class IntetTheDreamerCastEffect extends AsThoughEffectImpl {
|
||||||
return controller.chooseUse(outcome, "Play " + card.getName() + "?", source, game);
|
return controller.chooseUse(outcome, "Play " + card.getName() + "?", source, game);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
controller.setCastSourceIdWithAlternateMana(objectId, null);
|
controller.setCastSourceIdWithAlternateMana(objectId, null, null);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -131,7 +131,7 @@ class SinsOfThePastCastFromGraveyardEffect extends AsThoughEffectImpl {
|
||||||
public boolean applies(UUID sourceId, Ability source, UUID affectedControllerId, Game game) {
|
public boolean applies(UUID sourceId, Ability source, UUID affectedControllerId, Game game) {
|
||||||
if (sourceId.equals(this.getTargetPointer().getFirst(game, source)) && affectedControllerId.equals(source.getControllerId())) {
|
if (sourceId.equals(this.getTargetPointer().getFirst(game, source)) && affectedControllerId.equals(source.getControllerId())) {
|
||||||
Player player = game.getPlayer(affectedControllerId);
|
Player player = game.getPlayer(affectedControllerId);
|
||||||
player.setCastSourceIdWithAlternateMana(sourceId, null);
|
player.setCastSourceIdWithAlternateMana(sourceId, null, null);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -140,7 +140,7 @@ class MindsDesireCastFromExileEffect extends AsThoughEffectImpl {
|
||||||
Card card = game.getCard(sourceId);
|
Card card = game.getCard(sourceId);
|
||||||
if (card != null && game.getState().getZone(sourceId) == Zone.EXILED) {
|
if (card != null && game.getState().getZone(sourceId) == Zone.EXILED) {
|
||||||
Player player = game.getPlayer(affectedControllerId);
|
Player player = game.getPlayer(affectedControllerId);
|
||||||
player.setCastSourceIdWithAlternateMana(sourceId, null);
|
player.setCastSourceIdWithAlternateMana(sourceId, null, null);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,8 @@ import mage.abilities.Modes;
|
||||||
import mage.abilities.SpellAbility;
|
import mage.abilities.SpellAbility;
|
||||||
import mage.abilities.TriggeredAbility;
|
import mage.abilities.TriggeredAbility;
|
||||||
import mage.abilities.costs.AlternativeSourceCosts;
|
import mage.abilities.costs.AlternativeSourceCosts;
|
||||||
|
import mage.abilities.costs.Cost;
|
||||||
|
import mage.abilities.costs.Costs;
|
||||||
import mage.abilities.costs.VariableCost;
|
import mage.abilities.costs.VariableCost;
|
||||||
import mage.abilities.costs.mana.ManaCost;
|
import mage.abilities.costs.mana.ManaCost;
|
||||||
import mage.abilities.costs.mana.ManaCosts;
|
import mage.abilities.costs.mana.ManaCosts;
|
||||||
|
@ -1122,8 +1124,8 @@ public class TestPlayer implements Player {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setCastSourceIdWithAlternateMana(UUID sourceId, ManaCosts manaCosts) {
|
public void setCastSourceIdWithAlternateMana(UUID sourceId, ManaCosts manaCosts, Costs costs) {
|
||||||
computerPlayer.setCastSourceIdWithAlternateMana(sourceId, manaCosts);
|
computerPlayer.setCastSourceIdWithAlternateMana(sourceId, manaCosts, costs);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1136,6 +1138,11 @@ public class TestPlayer implements Player {
|
||||||
return computerPlayer.getCastSourceIdManaCosts();
|
return computerPlayer.getCastSourceIdManaCosts();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Costs<Cost> getCastSourceIdCosts() {
|
||||||
|
return computerPlayer.getCastSourceIdCosts();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isInPayManaMode() {
|
public boolean isInPayManaMode() {
|
||||||
return computerPlayer.isInPayManaMode();
|
return computerPlayer.isInPayManaMode();
|
||||||
|
|
|
@ -44,6 +44,8 @@ import mage.abilities.Modes;
|
||||||
import mage.abilities.SpellAbility;
|
import mage.abilities.SpellAbility;
|
||||||
import mage.abilities.TriggeredAbility;
|
import mage.abilities.TriggeredAbility;
|
||||||
import mage.abilities.costs.AlternativeSourceCosts;
|
import mage.abilities.costs.AlternativeSourceCosts;
|
||||||
|
import mage.abilities.costs.Cost;
|
||||||
|
import mage.abilities.costs.Costs;
|
||||||
import mage.abilities.costs.VariableCost;
|
import mage.abilities.costs.VariableCost;
|
||||||
import mage.abilities.costs.mana.ManaCost;
|
import mage.abilities.costs.mana.ManaCost;
|
||||||
import mage.abilities.costs.mana.ManaCosts;
|
import mage.abilities.costs.mana.ManaCosts;
|
||||||
|
@ -756,19 +758,23 @@ public interface Player extends MageItem, Copyable<Player> {
|
||||||
void cleanUpOnMatchEnd();
|
void cleanUpOnMatchEnd();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If the next cast spell has the set sourceId, the spell will be cast
|
* If the next spell cast has the set sourceId, the spell will be cast
|
||||||
* without mana.
|
* without mana (null) or the mana set to manaCosts instead of its normal
|
||||||
|
* mana costs.
|
||||||
*
|
*
|
||||||
* @param sourceId the source that can be cast without mana
|
* @param sourceId the source that can be cast without mana
|
||||||
* @param manaCosts alternate ManaCost, null if it can be cast without mana
|
* @param manaCosts alternate ManaCost, null if it can be cast without mana
|
||||||
* cost
|
* cost
|
||||||
|
* @param costs alternate other costs you need to pay
|
||||||
*/
|
*/
|
||||||
void setCastSourceIdWithAlternateMana(UUID sourceId, ManaCosts manaCosts);
|
void setCastSourceIdWithAlternateMana(UUID sourceId, ManaCosts<ManaCost> manaCosts, mage.abilities.costs.Costs costs);
|
||||||
|
|
||||||
UUID getCastSourceIdWithAlternateMana();
|
UUID getCastSourceIdWithAlternateMana();
|
||||||
|
|
||||||
ManaCosts getCastSourceIdManaCosts();
|
ManaCosts getCastSourceIdManaCosts();
|
||||||
|
|
||||||
|
Costs<Cost> getCastSourceIdCosts();
|
||||||
|
|
||||||
// permission handling to show hand cards
|
// permission handling to show hand cards
|
||||||
void addPermissionToShowHandCards(UUID watcherUserId);
|
void addPermissionToShowHandCards(UUID watcherUserId);
|
||||||
|
|
||||||
|
|
|
@ -61,6 +61,7 @@ import mage.abilities.costs.AlternativeCost;
|
||||||
import mage.abilities.costs.AlternativeCostSourceAbility;
|
import mage.abilities.costs.AlternativeCostSourceAbility;
|
||||||
import mage.abilities.costs.AlternativeSourceCosts;
|
import mage.abilities.costs.AlternativeSourceCosts;
|
||||||
import mage.abilities.costs.Cost;
|
import mage.abilities.costs.Cost;
|
||||||
|
import mage.abilities.costs.Costs;
|
||||||
import mage.abilities.costs.OptionalAdditionalSourceCosts;
|
import mage.abilities.costs.OptionalAdditionalSourceCosts;
|
||||||
import mage.abilities.costs.mana.ManaCost;
|
import mage.abilities.costs.mana.ManaCost;
|
||||||
import mage.abilities.costs.mana.ManaCosts;
|
import mage.abilities.costs.mana.ManaCosts;
|
||||||
|
@ -222,7 +223,8 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
|
|
||||||
// indicates that the spell with the set sourceId can be cast with an alternate mana costs (can also be no mana costs)
|
// indicates that the spell with the set sourceId can be cast with an alternate mana costs (can also be no mana costs)
|
||||||
protected UUID castSourceIdWithAlternateMana;
|
protected UUID castSourceIdWithAlternateMana;
|
||||||
protected ManaCosts castSourceIdManaCosts;
|
protected ManaCosts<ManaCost> castSourceIdManaCosts;
|
||||||
|
protected Costs<Cost> castSourceIdCosts;
|
||||||
|
|
||||||
// indicates that the player is in mana payment phase
|
// indicates that the player is in mana payment phase
|
||||||
protected boolean payManaMode = false;
|
protected boolean payManaMode = false;
|
||||||
|
@ -326,6 +328,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
|
|
||||||
this.castSourceIdWithAlternateMana = player.castSourceIdWithAlternateMana;
|
this.castSourceIdWithAlternateMana = player.castSourceIdWithAlternateMana;
|
||||||
this.castSourceIdManaCosts = player.castSourceIdManaCosts;
|
this.castSourceIdManaCosts = player.castSourceIdManaCosts;
|
||||||
|
this.castSourceIdCosts = player.castSourceIdCosts;
|
||||||
this.payManaMode = player.payManaMode;
|
this.payManaMode = player.payManaMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -388,6 +391,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
this.reachedNextTurnAfterLeaving = player.hasReachedNextTurnAfterLeaving();
|
this.reachedNextTurnAfterLeaving = player.hasReachedNextTurnAfterLeaving();
|
||||||
this.castSourceIdWithAlternateMana = player.getCastSourceIdWithAlternateMana();
|
this.castSourceIdWithAlternateMana = player.getCastSourceIdWithAlternateMana();
|
||||||
this.castSourceIdManaCosts = player.getCastSourceIdManaCosts();
|
this.castSourceIdManaCosts = player.getCastSourceIdManaCosts();
|
||||||
|
this.castSourceIdCosts = player.getCastSourceIdCosts();
|
||||||
|
|
||||||
// Don't restore!
|
// Don't restore!
|
||||||
// this.storedBookmark
|
// this.storedBookmark
|
||||||
|
@ -453,6 +457,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
|
|
||||||
this.castSourceIdWithAlternateMana = null;
|
this.castSourceIdWithAlternateMana = null;
|
||||||
this.castSourceIdManaCosts = null;
|
this.castSourceIdManaCosts = null;
|
||||||
|
this.castSourceIdCosts = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -476,6 +481,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
this.alternativeSourceCosts.clear();
|
this.alternativeSourceCosts.clear();
|
||||||
this.castSourceIdWithAlternateMana = null;
|
this.castSourceIdWithAlternateMana = null;
|
||||||
this.castSourceIdManaCosts = null;
|
this.castSourceIdManaCosts = null;
|
||||||
|
this.castSourceIdCosts = null;
|
||||||
this.getManaPool().clearEmptyManaPoolRules();
|
this.getManaPool().clearEmptyManaPoolRules();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -684,6 +690,12 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param amount
|
||||||
|
* @param source
|
||||||
|
* @param game
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void discard(int amount, Ability source, Game game) {
|
public void discard(int amount, Ability source, Game game) {
|
||||||
discard(amount, false, source, game);
|
discard(amount, false, source, game);
|
||||||
|
@ -917,9 +929,10 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void setCastSourceIdWithAlternateMana(UUID sourceId, ManaCosts manaCosts) {
|
public void setCastSourceIdWithAlternateMana(UUID sourceId, ManaCosts manaCosts, mage.abilities.costs.Costs costs) {
|
||||||
castSourceIdWithAlternateMana = sourceId;
|
castSourceIdWithAlternateMana = sourceId;
|
||||||
castSourceIdManaCosts = manaCosts;
|
castSourceIdManaCosts = manaCosts;
|
||||||
|
castSourceIdCosts = costs;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -927,6 +940,11 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
return castSourceIdWithAlternateMana;
|
return castSourceIdWithAlternateMana;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Costs<Cost> getCastSourceIdCosts() {
|
||||||
|
return castSourceIdCosts;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ManaCosts getCastSourceIdManaCosts() {
|
public ManaCosts getCastSourceIdManaCosts() {
|
||||||
return castSourceIdManaCosts;
|
return castSourceIdManaCosts;
|
||||||
|
@ -950,20 +968,25 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
Zone fromZone = game.getState().getZone(card.getMainCard().getId());
|
Zone fromZone = game.getState().getZone(card.getMainCard().getId());
|
||||||
card.cast(game, fromZone, ability, playerId);
|
card.cast(game, fromZone, ability, playerId);
|
||||||
Spell spell = game.getStack().getSpell(ability.getId());
|
Spell spell = game.getStack().getSpell(ability.getId());
|
||||||
// some effects set sourceId to cast without paying mana costs
|
// some effects set sourceId to cast without paying mana costs or other costs
|
||||||
if (ability.getSourceId().equals(getCastSourceIdWithAlternateMana())) {
|
if (ability.getSourceId().equals(getCastSourceIdWithAlternateMana())) {
|
||||||
ManaCosts alternateCosts = getCastSourceIdManaCosts();
|
|
||||||
Ability spellAbility = spell.getSpellAbility();
|
Ability spellAbility = spell.getSpellAbility();
|
||||||
|
ManaCosts alternateCosts = getCastSourceIdManaCosts();
|
||||||
|
Costs<Cost> costs = getCastSourceIdCosts();
|
||||||
if (alternateCosts == null) {
|
if (alternateCosts == null) {
|
||||||
noMana = true;
|
noMana = true;
|
||||||
} else {
|
} else {
|
||||||
spellAbility.getManaCosts().clear();
|
spellAbility.getManaCosts().clear();
|
||||||
spellAbility.getManaCosts().add(alternateCosts.copy());
|
|
||||||
spellAbility.getManaCostsToPay().clear();
|
spellAbility.getManaCostsToPay().clear();
|
||||||
|
spellAbility.getManaCosts().add(alternateCosts.copy());
|
||||||
spellAbility.getManaCostsToPay().add(alternateCosts.copy());
|
spellAbility.getManaCostsToPay().add(alternateCosts.copy());
|
||||||
}
|
}
|
||||||
|
spellAbility.getCosts().clear();
|
||||||
|
if (costs != null) {
|
||||||
|
spellAbility.getCosts().addAll(costs);
|
||||||
}
|
}
|
||||||
setCastSourceIdWithAlternateMana(null, null);
|
}
|
||||||
|
setCastSourceIdWithAlternateMana(null, null, null);
|
||||||
GameEvent event = GameEvent.getEvent(GameEvent.EventType.CAST_SPELL, spell.getSpellAbility().getId(), spell.getSpellAbility().getSourceId(), playerId);
|
GameEvent event = GameEvent.getEvent(GameEvent.EventType.CAST_SPELL, spell.getSpellAbility().getId(), spell.getSpellAbility().getSourceId(), playerId);
|
||||||
game.fireEvent(event);
|
game.fireEvent(event);
|
||||||
if (spell.activate(game, noMana)) {
|
if (spell.activate(game, noMana)) {
|
||||||
|
@ -984,12 +1007,14 @@ public abstract class PlayerImpl implements Player, Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SpellAbility chooseSpellAbilityForCast(SpellAbility ability, Game game, boolean noMana) {
|
public SpellAbility chooseSpellAbilityForCast(SpellAbility ability, Game game, boolean noMana
|
||||||
|
) {
|
||||||
return ability;
|
return ability;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean playLand(Card card, Game game) {
|
public boolean playLand(Card card, Game game
|
||||||
|
) {
|
||||||
// Check for alternate casting possibilities: e.g. land with Morph
|
// Check for alternate casting possibilities: e.g. land with Morph
|
||||||
ActivatedAbility playLandAbility = null;
|
ActivatedAbility playLandAbility = null;
|
||||||
boolean found = false;
|
boolean found = false;
|
||||||
|
|
Loading…
Reference in a new issue