From b559ea03d7d3341eeecf9d316993acdfed4022ee Mon Sep 17 00:00:00 2001 From: magenoxx Date: Tue, 9 Aug 2011 01:08:08 +0400 Subject: [PATCH] [M12] Crown Of Empires, Scepter Of Empires, Throne Of Empires --- .../mage/sets/magic2012/CrownOfEmpires.java | 145 ++++++++++++++++++ .../mage/sets/magic2012/ScepterOfEmpires.java | 114 ++++++++++++++ .../mage/sets/magic2012/ThroneOfEmpires.java | 106 +++++++++++++ 3 files changed, 365 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/magic2012/CrownOfEmpires.java create mode 100644 Mage.Sets/src/mage/sets/magic2012/ScepterOfEmpires.java create mode 100644 Mage.Sets/src/mage/sets/magic2012/ThroneOfEmpires.java diff --git a/Mage.Sets/src/mage/sets/magic2012/CrownOfEmpires.java b/Mage.Sets/src/mage/sets/magic2012/CrownOfEmpires.java new file mode 100644 index 0000000000..a3c43a1bd7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/magic2012/CrownOfEmpires.java @@ -0,0 +1,145 @@ +/* + * 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.magic2012; + +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.abilities.Ability; +import mage.abilities.Mode; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.costs.mana.GenericManaCost; +import mage.abilities.effects.ContinuousEffect; +import mage.abilities.effects.ContinuousEffectImpl; +import mage.abilities.effects.OneShotEffect; +import mage.cards.CardImpl; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.target.common.TargetCreaturePermanent; +import mage.target.targetpointer.FixedTarget; + +import java.util.UUID; + +/** + * @author nantuko + */ +public class CrownOfEmpires extends CardImpl { + + public CrownOfEmpires(UUID ownerId) { + super(ownerId, 203, "Crown of Empires", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{2}"); + this.expansionSetCode = "M12"; + + // {3}, {tap}: Tap target creature. Gain control of that creature instead if you control artifacts named Scepter of Empires and Throne of Empires. + Ability ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new CrownOfEmpiresEffect(), new GenericManaCost(3)); + ability.addTarget(new TargetCreaturePermanent()); + ability.addCost(new TapSourceCost()); + this.addAbility(ability); + } + + public CrownOfEmpires(final CrownOfEmpires card) { + super(card); + } + + @Override + public CrownOfEmpires copy() { + return new CrownOfEmpires(this); + } +} + +class CrownOfEmpiresEffect extends OneShotEffect { + + public CrownOfEmpiresEffect() { + super(Constants.Outcome.Tap); + staticText = "Tap target creature. Gain control of that creature instead if you control artifacts named Scepter of Empires and Throne of Empires"; + } + + public CrownOfEmpiresEffect(CrownOfEmpiresEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + Permanent target = game.getPermanent(targetPointer.getFirst(source)); + boolean scepter = false; + boolean throne = false; + for (Permanent permanent : game.getBattlefield().getAllActivePermanents(source.getControllerId())) { + if (permanent.getName().equals("Scepter of Empires")) { + scepter = true; + } else if (permanent.getName().equals("Throne of Empires")) { + throne = true; + } + if (scepter && throne) break; + } + if (scepter && throne) { + ContinuousEffect effect = new CrownOfEmpiresControlEffect(); + effect.setTargetPointer(new FixedTarget(target.getId())); + game.getState().setValue(source.getSourceId().toString(), source.getControllerId()); + game.addEffect(effect, source); + } else { + target.tap(game); + } + return false; + } + + @Override + public CrownOfEmpiresEffect copy() { + return new CrownOfEmpiresEffect(this); + } +} + +class CrownOfEmpiresControlEffect extends ContinuousEffectImpl { + + public CrownOfEmpiresControlEffect() { + super(Constants.Duration.EndOfGame, Constants.Layer.ControlChangingEffects_2, Constants.SubLayer.NA, Constants.Outcome.GainControl); + } + + public CrownOfEmpiresControlEffect(final CrownOfEmpiresControlEffect effect) { + super(effect); + } + + @Override + public CrownOfEmpiresControlEffect copy() { + return new CrownOfEmpiresControlEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Permanent permanent = game.getPermanent(targetPointer.getFirst(source)); + UUID controllerId = (UUID) game.getState().getValue(source.getSourceId().toString()); + if (permanent != null && controllerId != null) { + return permanent.changeControllerId(controllerId, game); + } + return false; + } + + @Override + public String getText(Mode mode) { + return "Gain control of {this}"; + } +} diff --git a/Mage.Sets/src/mage/sets/magic2012/ScepterOfEmpires.java b/Mage.Sets/src/mage/sets/magic2012/ScepterOfEmpires.java new file mode 100644 index 0000000000..2444333339 --- /dev/null +++ b/Mage.Sets/src/mage/sets/magic2012/ScepterOfEmpires.java @@ -0,0 +1,114 @@ +/* + * 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.magic2012; + +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.abilities.Ability; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.costs.mana.GenericManaCost; +import mage.abilities.effects.OneShotEffect; +import mage.cards.CardImpl; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.common.TargetCreatureOrPlayer; + +import java.util.UUID; + +/** + * @author nantuko + */ +public class ScepterOfEmpires extends CardImpl { + + public ScepterOfEmpires(UUID ownerId) { + super(ownerId, 216, "Scepter of Empires", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT}, "{3}"); + this.expansionSetCode = "M12"; + + // {tap}: Scepter of Empires deals 1 damage to target player. It deals 3 damage to that player instead if you control artifacts named Crown of Empires and Throne of Empires. + Ability ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new ScepterOfEmpiresEffect(), new GenericManaCost(0)); + ability.addCost(new TapSourceCost()); + ability.addTarget(new TargetCreatureOrPlayer()); + this.addAbility(ability); + } + + public ScepterOfEmpires(final ScepterOfEmpires card) { + super(card); + } + + @Override + public ScepterOfEmpires copy() { + return new ScepterOfEmpires(this); + } +} + +class ScepterOfEmpiresEffect extends OneShotEffect { + + public ScepterOfEmpiresEffect() { + super(Constants.Outcome.PutCreatureInPlay); + staticText = "Scepter of Empires deals 1 damage to target player. It deals 3 damage to that player instead if you control artifacts named Crown of Empires and Throne of Empires"; + } + + public ScepterOfEmpiresEffect(ScepterOfEmpiresEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + boolean throne = false; + boolean crown = false; + for (Permanent permanent : game.getBattlefield().getAllActivePermanents(source.getControllerId())) { + if (permanent.getName().equals("Throne of Empires")) { + throne = true; + } else if (permanent.getName().equals("Crown of Empires")) { + crown = true; + } + if (throne && crown) break; + } + + int amount = throne && crown ? 3 : 1; + Permanent permanent = game.getPermanent(targetPointer.getFirst(source)); + if (permanent != null) { + permanent.damage(amount, source.getSourceId(), game, true, false); + return true; + } + Player player = game.getPlayer(targetPointer.getFirst(source)); + if (player != null) { + player.damage(amount, source.getSourceId(), game, false, true); + return true; + } + return false; + } + + @Override + public ScepterOfEmpiresEffect copy() { + return new ScepterOfEmpiresEffect(this); + } +} diff --git a/Mage.Sets/src/mage/sets/magic2012/ThroneOfEmpires.java b/Mage.Sets/src/mage/sets/magic2012/ThroneOfEmpires.java new file mode 100644 index 0000000000..dcbc688d85 --- /dev/null +++ b/Mage.Sets/src/mage/sets/magic2012/ThroneOfEmpires.java @@ -0,0 +1,106 @@ +/* + * 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.magic2012; + +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.abilities.Ability; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.costs.mana.GenericManaCost; +import mage.abilities.effects.OneShotEffect; +import mage.cards.CardImpl; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.game.permanent.token.SoldierToken; +import mage.game.permanent.token.Token; + +import java.util.UUID; + +/** + * @author nantuko + */ +public class ThroneOfEmpires extends CardImpl { + + public ThroneOfEmpires(UUID ownerId) { + super(ownerId, 221, "Throne of Empires", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{4}"); + this.expansionSetCode = "M12"; + + // {1}, {tap}: Put a 1/1 white Soldier creature token onto the battlefield. Put five of those tokens onto the battlefield instead if you control artifacts named Crown of Empires and Scepter of Empires. + Ability ability = new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new ThroneOfEmpiresEffect(), new GenericManaCost(1)); + ability.addCost(new TapSourceCost()); + this.addAbility(ability); + } + + public ThroneOfEmpires(final ThroneOfEmpires card) { + super(card); + } + + @Override + public ThroneOfEmpires copy() { + return new ThroneOfEmpires(this); + } +} + +class ThroneOfEmpiresEffect extends OneShotEffect { + + public ThroneOfEmpiresEffect() { + super(Constants.Outcome.PutCreatureInPlay); + staticText = "Put a 1/1 white Soldier creature token onto the battlefield. Put five of those tokens onto the battlefield instead if you control artifacts named Crown of Empires and Scepter of Empires"; + } + + public ThroneOfEmpiresEffect(ThroneOfEmpiresEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + boolean scepter = false; + boolean crown = false; + for (Permanent permanent : game.getBattlefield().getAllActivePermanents(source.getControllerId())) { + if (permanent.getName().equals("Scepter of Empires")) { + scepter = true; + } else if (permanent.getName().equals("Crown of Empires")) { + crown = true; + } + if (scepter && crown) break; + } + Token soldier = new SoldierToken(); + int count = scepter && crown ? 5 : 1; + for (int i = 0; i < count; i++) { + soldier.putOntoBattlefield(game, source.getSourceId(), source.getControllerId()); + } + return false; + } + + @Override + public ThroneOfEmpiresEffect copy() { + return new ThroneOfEmpiresEffect(this); + } +}