From a0229c364018599a047f1045fcecdacafbabf19f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 25 Mar 2014 17:47:47 +0100 Subject: [PATCH] Added Submerge and Boseju, Who Shelters All. --- .../BoseijuWhoSheltersAll.java | 173 ++++++++++++++++++ Mage.Sets/src/mage/sets/nemesis/Submerge.java | 83 +++++++++ .../src/mage/sets/tenth/CrucibleOfWorlds.java | 8 +- 3 files changed, 259 insertions(+), 5 deletions(-) create mode 100644 Mage.Sets/src/mage/sets/championsofkamigawa/BoseijuWhoSheltersAll.java create mode 100644 Mage.Sets/src/mage/sets/nemesis/Submerge.java diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/BoseijuWhoSheltersAll.java b/Mage.Sets/src/mage/sets/championsofkamigawa/BoseijuWhoSheltersAll.java new file mode 100644 index 0000000000..cf5a7aaed1 --- /dev/null +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/BoseijuWhoSheltersAll.java @@ -0,0 +1,173 @@ +/* + * 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.championsofkamigawa; + +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; +import mage.MageObject; +import mage.Mana; +import mage.abilities.Ability; +import mage.abilities.common.EntersBattlefieldTappedAbility; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.costs.common.PayLifeCost; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.effects.ReplacementEffectImpl; +import mage.abilities.mana.SimpleManaAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Duration; +import mage.constants.Outcome; +import mage.constants.Rarity; +import mage.constants.WatcherScope; +import mage.constants.Zone; +import mage.filter.FilterCard; +import mage.filter.common.FilterInstantOrSorceryCard; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.stack.Spell; +import mage.players.Player; +import mage.watchers.WatcherImpl; + +/** + * + * @author LevelX2 + */ +public class BoseijuWhoSheltersAll extends CardImpl { + + public BoseijuWhoSheltersAll(UUID ownerId) { + super(ownerId, 273, "Boseiju, Who Shelters All", Rarity.RARE, new CardType[]{CardType.LAND}, ""); + this.expansionSetCode = "CHK"; + this.supertype.add("Legendary"); + + // Boseiju, Who Shelters All enters the battlefield tapped. + this.addAbility(new EntersBattlefieldTappedAbility()); + + // {tap}, Pay 2 life: Add {1} to your mana pool. If that mana is spent on an instant or sorcery spell, that spell can't be countered by spells or abilities. + Mana mana = new Mana(0, 0, 0, 0, 0, 1, 0); + mana.setFlag(true); // used to indicate this mana ability + SimpleManaAbility ability = new SimpleManaAbility(Zone.BATTLEFIELD, mana, new TapSourceCost()); + ability.addCost(new PayLifeCost(2)); + ability.getEffects().get(0).setText("Add {1} to your mana pool. If that mana is spent on an instant or sorcery spell, that spell can't be countered by spells or abilities"); + this.addAbility(ability); + + this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoseijuWhoSheltersAllCantCounterEffect())); + this.addWatcher(new BoseijuWhoSheltersAllWatcher()); + } + + public BoseijuWhoSheltersAll(final BoseijuWhoSheltersAll card) { + super(card); + } + + @Override + public BoseijuWhoSheltersAll copy() { + return new BoseijuWhoSheltersAll(this); + } +} + +class BoseijuWhoSheltersAllWatcher extends WatcherImpl { + + public List spells = new ArrayList<>(); + + public BoseijuWhoSheltersAllWatcher() { + super("ManaPaidFromBoseijuWhoSheltersAllWatcher", WatcherScope.GAME); + } + + public BoseijuWhoSheltersAllWatcher(final BoseijuWhoSheltersAllWatcher watcher) { + super(watcher); + } + + @Override + public BoseijuWhoSheltersAllWatcher copy() { + return new BoseijuWhoSheltersAllWatcher(this); + } + + @Override + public void watch(GameEvent event, Game game) { + if (event.getType() == GameEvent.EventType.MANA_PAYED) { + MageObject object = game.getObject(event.getSourceId()); + // TODO: Replace identification by name by better method that also works if ability is copied from other land with other name + if (object != null && object.getName().equals("Boseiju, Who Shelters All") && event.getFlag()) { + spells.add(event.getTargetId()); + } + } + } + + @Override + public void reset() { + super.reset(); + spells.clear(); + } +} + +class BoseijuWhoSheltersAllCantCounterEffect extends ReplacementEffectImpl { + + private static final FilterCard filter = new FilterInstantOrSorceryCard(); + + public BoseijuWhoSheltersAllCantCounterEffect() { + super(Duration.WhileOnBattlefield, Outcome.Benefit); + staticText = null; + } + + public BoseijuWhoSheltersAllCantCounterEffect(final BoseijuWhoSheltersAllCantCounterEffect effect) { + super(effect); + } + + @Override + public BoseijuWhoSheltersAllCantCounterEffect copy() { + return new BoseijuWhoSheltersAllCantCounterEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + return true; + } + + @Override + public boolean replaceEvent(GameEvent event, Ability source, Game game) { + Player player = game.getPlayer(event.getPlayerId()); + if (player != null) { + game.informPlayer(player, new StringBuilder("This spell can't be countered by spells or abilities (Boseiju, Who Shelters All)").toString()); + } + return true; + } + + @Override + public boolean applies(GameEvent event, Ability source, Game game) { + if (event.getType() == GameEvent.EventType.COUNTER) { + BoseijuWhoSheltersAllWatcher watcher = (BoseijuWhoSheltersAllWatcher) game.getState().getWatchers().get("ManaPaidFromBoseijuWhoSheltersAllWatcher"); + Spell spell = game.getStack().getSpell(event.getTargetId()); + if (spell != null && watcher.spells.contains(spell.getId())) { + if (filter.match(spell.getCard(), game)) { + return true; + } + } + } + return false; + } +} diff --git a/Mage.Sets/src/mage/sets/nemesis/Submerge.java b/Mage.Sets/src/mage/sets/nemesis/Submerge.java new file mode 100644 index 0000000000..440bafb5f6 --- /dev/null +++ b/Mage.Sets/src/mage/sets/nemesis/Submerge.java @@ -0,0 +1,83 @@ +/* + * 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.nemesis; + +import java.util.UUID; +import mage.abilities.condition.CompoundCondition; +import mage.abilities.condition.Condition; +import mage.abilities.condition.common.ControlsPermanentCondition; +import mage.abilities.condition.common.OpponentControlsPermanentCondition; +import mage.abilities.costs.AlternativeCostSourceAbility; +import mage.abilities.effects.common.PutOnLibraryTargetEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.filter.FilterPermanent; +import mage.filter.predicate.mageobject.SubtypePredicate; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author LevelX2 + */ +public class Submerge extends CardImpl { + + private static final FilterPermanent filterForest = new FilterPermanent(); + private static final FilterPermanent filterIsland = new FilterPermanent(); + + static { + filterForest.add(new SubtypePredicate(("Forest"))); + filterIsland.add(new SubtypePredicate(("Island"))); + } + + public Submerge(UUID ownerId) { + super(ownerId, 48, "Submerge", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{4}{U}"); + this.expansionSetCode = "NMS"; + + this.color.setBlue(true); + + // If an opponent controls a Forest and you control an Island, you may cast Submerge without paying its mana cost. + Condition condition = new CompoundCondition("If an opponent controls a Forest and you control an Island", + new OpponentControlsPermanentCondition(filterForest), + new ControlsPermanentCondition(filterIsland)); + this.addAbility(new AlternativeCostSourceAbility(null, condition)); + // Put target creature on top of its owner's library. + this.getSpellAbility().addEffect(new PutOnLibraryTargetEffect(true)); + this.getSpellAbility().addTarget(new TargetCreaturePermanent(true)); + + } + + public Submerge(final Submerge card) { + super(card); + } + + @Override + public Submerge copy() { + return new Submerge(this); + } +} diff --git a/Mage.Sets/src/mage/sets/tenth/CrucibleOfWorlds.java b/Mage.Sets/src/mage/sets/tenth/CrucibleOfWorlds.java index d8f65fb1bd..53c2f8b23b 100644 --- a/Mage.Sets/src/mage/sets/tenth/CrucibleOfWorlds.java +++ b/Mage.Sets/src/mage/sets/tenth/CrucibleOfWorlds.java @@ -92,11 +92,9 @@ class CrucibleOfWorldsEffect extends ContinuousEffectImpl