From 60575394a60e43f8288a7c9be15c66d96b1b63c6 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 10 May 2013 15:01:52 +0200 Subject: [PATCH] Added Shivan Gorge and Cloudstone Curio. --- .../mage/sets/ravnika/CloudstoneCurio.java | 132 ++++++++++++++++++ .../src/mage/sets/urzassaga/ShivanGorge.java | 70 ++++++++++ 2 files changed, 202 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/ravnika/CloudstoneCurio.java create mode 100644 Mage.Sets/src/mage/sets/urzassaga/ShivanGorge.java diff --git a/Mage.Sets/src/mage/sets/ravnika/CloudstoneCurio.java b/Mage.Sets/src/mage/sets/ravnika/CloudstoneCurio.java new file mode 100644 index 0000000000..b064411b08 --- /dev/null +++ b/Mage.Sets/src/mage/sets/ravnika/CloudstoneCurio.java @@ -0,0 +1,132 @@ +/* + * 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.ravnika; + +import java.util.HashSet; +import java.util.Set; +import java.util.UUID; +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Outcome; +import mage.Constants.Rarity; +import mage.Constants.Zone; +import mage.abilities.Ability; +import mage.abilities.common.EntersBattlefieldAllTriggeredAbility; +import mage.abilities.effects.OneShotEffect; +import mage.cards.CardImpl; +import mage.filter.FilterPermanent; +import mage.filter.predicate.Predicates; +import mage.filter.predicate.mageobject.CardTypePredicate; +import mage.filter.predicate.permanent.ControllerPredicate; +import mage.filter.predicate.permanent.PermanentIdPredicate; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.TargetPermanent; + +/** + * + * @author LevelX2 + */ +public class CloudstoneCurio extends CardImpl { + + private static final FilterPermanent filter = new FilterPermanent("a nonartifact permanent"); + static { + filter.add(Predicates.not(new CardTypePredicate(CardType.ARTIFACT))); + } + + public CloudstoneCurio(UUID ownerId) { + super(ownerId, 257, "Cloudstone Curio", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{3}"); + this.expansionSetCode = "RAV"; + + // Whenever a nonartifact permanent enters the battlefield under your control, you may return another permanent you control that shares a card type with it to its owner's hand. + this.addAbility(new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, new CloudstoneCurioEffect(), filter, true, true, "")); + + + } + + public CloudstoneCurio(final CloudstoneCurio card) { + super(card); + } + + @Override + public CloudstoneCurio copy() { + return new CloudstoneCurio(this); + } +} + +class CloudstoneCurioEffect extends OneShotEffect { + + public CloudstoneCurioEffect() { + super(Outcome.ReturnToHand); + this.staticText = "you may return another permanent you control that shares a card type with it to its owner's hand"; + } + + public CloudstoneCurioEffect(final CloudstoneCurioEffect effect) { + super(effect); + } + + @Override + public CloudstoneCurioEffect copy() { + return new CloudstoneCurioEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Permanent triggeringCreature = game.getPermanent(getTargetPointer().getFirst(game, source)); + if (triggeringCreature == null) { + triggeringCreature = (Permanent) game.getLastKnownInformation(getTargetPointer().getFirst(game, source), Zone.BATTLEFIELD); + } + if (triggeringCreature != null) { + FilterPermanent filter = new FilterPermanent("another permanent you control that shares a card type with " + triggeringCreature.getName()); + filter.add(Predicates.not(new PermanentIdPredicate(triggeringCreature.getId()))); + filter.add(new ControllerPredicate(Constants.TargetController.YOU)); + Set cardTypes = new HashSet(); + for (CardType cardType :triggeringCreature.getCardType()) { + cardTypes.add(new CardTypePredicate(cardType)); + } + filter.add(Predicates.or(cardTypes)); + TargetPermanent target = new TargetPermanent(1,1,filter, true); + Player controller = game.getPlayer(source.getControllerId()); + if (controller != null) { + if (target.canChoose(controller.getId(), game) && controller.chooseTarget(outcome, target, source, game)) { + Permanent returningCreature = game.getPermanent(target.getFirstTarget()); + if (returningCreature != null) { + if (returningCreature.moveToZone(Zone.HAND, source.getSourceId(), game, true)) { + game.informPlayers(new StringBuilder("Cloudstone Curio: Returning ").append(returningCreature.getName()).append(" to owner's hand").toString()); + return true; + } + + } + } + } + + } + return false; + } +} diff --git a/Mage.Sets/src/mage/sets/urzassaga/ShivanGorge.java b/Mage.Sets/src/mage/sets/urzassaga/ShivanGorge.java new file mode 100644 index 0000000000..72faed03e9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/urzassaga/ShivanGorge.java @@ -0,0 +1,70 @@ +/* + * 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.urzassaga; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.Constants.TargetController; +import mage.Constants.Zone; +import mage.abilities.Ability; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.DamagePlayersEffect; +import mage.abilities.mana.ColorlessManaAbility; +import mage.cards.CardImpl; + +/** + * + * @author LevelX2 + */ +public class ShivanGorge extends CardImpl { + + public ShivanGorge(UUID ownerId) { + super(ownerId, 326, "Shivan Gorge", Rarity.RARE, new CardType[]{CardType.LAND}, ""); + this.expansionSetCode = "USG"; + this.supertype.add("Legendary"); + + // {tap}: Add {1} to your mana pool. + this.addAbility(new ColorlessManaAbility()); + // {2}{R}, {tap}: Shivan Gorge deals 1 damage to each opponent. + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamagePlayersEffect(1, TargetController.OPPONENT), new ManaCostsImpl("{2}{R}")); + ability.addCost(new TapSourceCost()); + this.addAbility(ability); + } + + public ShivanGorge(final ShivanGorge card) { + super(card); + } + + @Override + public ShivanGorge copy() { + return new ShivanGorge(this); + } +}