From 15862b4fc5b4b4617fcd6137f32ca6ecd8f42055 Mon Sep 17 00:00:00 2001 From: Plopman Date: Sat, 20 Jul 2013 11:53:17 +0200 Subject: [PATCH] [Commander] return Commander to command zone when it's exiled or put in graveyard --- .../src/mage/game/CommanderDuel.java | 14 ++- .../CommanderReplacementEffect.java | 110 ++++++++++++++++++ 2 files changed, 120 insertions(+), 4 deletions(-) create mode 100644 Mage/src/mage/abilities/effects/common/continious/CommanderReplacementEffect.java diff --git a/Mage.Server.Plugins/Mage.Game.CommanderDuel/src/mage/game/CommanderDuel.java b/Mage.Server.Plugins/Mage.Game.CommanderDuel/src/mage/game/CommanderDuel.java index 57d8b037cca..17c07b6b0f7 100644 --- a/Mage.Server.Plugins/Mage.Game.CommanderDuel/src/mage/game/CommanderDuel.java +++ b/Mage.Server.Plugins/Mage.Game.CommanderDuel/src/mage/game/CommanderDuel.java @@ -31,12 +31,16 @@ package mage.game; import java.util.HashSet; import java.util.Set; import java.util.UUID; +import mage.abilities.Ability; +import mage.abilities.common.EmptyEffect; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.effects.common.continious.CommanderReplacementEffect; +import mage.abilities.effects.common.cost.CommanderCostModification; import mage.cards.Card; import mage.constants.MultiplayerAttackOption; import mage.constants.PhaseStep; import mage.constants.RangeOfInfluence; import mage.constants.Zone; -import mage.game.command.Commander; import mage.game.match.MatchType; import mage.game.turn.TurnMod; import mage.players.Player; @@ -72,7 +76,7 @@ public class CommanderDuel extends GameImpl { @Override protected void init(UUID choosingPlayerId, GameOptions gameOptions) { super.init(choosingPlayerId, gameOptions); - + Ability ability = new SimpleStaticAbility(Zone.COMMAND, new EmptyEffect("Commander effects")); //Move commender to commande zone for (UUID playerId: state.getPlayerList(startingPlayerId)) { Player player = getPlayer(playerId); @@ -81,13 +85,15 @@ public class CommanderDuel extends GameImpl { Card commander = getCard((UUID)player.getSideboard().toArray()[0]); if(commander != null){ commander.moveToZone(Zone.COMMAND, null, this, true); - + ability.addEffect(new CommanderReplacementEffect(commander.getId())); + ability.addEffect(new CommanderCostModification(commander.getId())); + getState().setValue(commander + "_castCount", new Integer(0)); } } } } - + this.getState().addAbility(ability, null, null); state.getTurnMods().add(new TurnMod(startingPlayerId, PhaseStep.DRAW)); } diff --git a/Mage/src/mage/abilities/effects/common/continious/CommanderReplacementEffect.java b/Mage/src/mage/abilities/effects/common/continious/CommanderReplacementEffect.java new file mode 100644 index 00000000000..3736eaed505 --- /dev/null +++ b/Mage/src/mage/abilities/effects/common/continious/CommanderReplacementEffect.java @@ -0,0 +1,110 @@ +/* + * 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.abilities.effects.common.continious; + +import java.util.UUID; +import mage.abilities.Ability; +import mage.abilities.effects.ReplacementEffectImpl; +import mage.cards.Card; +import mage.constants.Duration; +import mage.constants.Outcome; +import mage.constants.Zone; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.events.ZoneChangeEvent; +import mage.game.permanent.Permanent; +import mage.players.Player; + +/** + * + * @author Plopman + */ + +//20130711 +/* + * 903.11. If a commander would be put into its owner’s graveyard from anywhere, that player may put it into the command zone instead. + * 903.12. If a commander would be put into the exile zone from anywhere, its owner may put it into the command zone instead. + */ +public class CommanderReplacementEffect extends ReplacementEffectImpl { + + private UUID commander; + public CommanderReplacementEffect(UUID commander) { + super(Duration.WhileOnBattlefield, Outcome.Benefit); + staticText = "If a commander would be put into its owner’s graveyard from anywhere, that player may put it into the command zone instead. If a commander would be put into the exile zone from anywhere, its owner may put it into the command zone instead."; + this.commander = commander; + this.duration = Duration.EndOfGame; + } + + public CommanderReplacementEffect(final CommanderReplacementEffect effect) { + super(effect); + } + + @Override + public CommanderReplacementEffect copy() { + return new CommanderReplacementEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + return true; + } + + @Override + public boolean replaceEvent(GameEvent event, Ability source, Game game) { + if (((ZoneChangeEvent)event).getFromZone() == Zone.BATTLEFIELD) { + Permanent permanent = ((ZoneChangeEvent)event).getTarget(); + if (permanent != null) { + Player player = game.getPlayer(permanent.getOwnerId()); + if(player != null && player.chooseUse(Outcome.Benefit, "Move commander to command zone?", game)){ + return permanent.moveToZone(Zone.COMMAND, source.getId(), game, false); + } + } + } + else { + Card card = game.getCard(event.getTargetId()); + if (card != null) { + Player player = game.getPlayer(card.getOwnerId()); + if(player != null && player.chooseUse(Outcome.Benefit, "Move commander to command zone?", game)){ + return card.moveToZone(Zone.COMMAND, source.getId(), game, false); + } + } + } + return false; + } + + @Override + public boolean applies(GameEvent event, Ability source, Game game) { + if (event.getType() == GameEvent.EventType.ZONE_CHANGE && (((ZoneChangeEvent)event).getToZone() == Zone.GRAVEYARD || ((ZoneChangeEvent)event).getToZone() == Zone.EXILED)) { + if(commander != null && commander.equals(event.getTargetId())){ + return true; + } + } + return false; + } + +}