From 5bf72ec6fa2f82f5ce0468a1483446e808b3ba24 Mon Sep 17 00:00:00 2001 From: Loki Date: Tue, 14 Dec 2010 09:23:57 +0200 Subject: [PATCH] basic landcycling support and Fiery Fall --- .../src/mage/sets/conflux/FieryFall.java | 68 ++++++++++++++++++ .../keyword/BasicLandcyclingAbility.java | 70 +++++++++++++++++++ 2 files changed, 138 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/conflux/FieryFall.java create mode 100644 Mage/src/mage/abilities/keyword/BasicLandcyclingAbility.java diff --git a/Mage.Sets/src/mage/sets/conflux/FieryFall.java b/Mage.Sets/src/mage/sets/conflux/FieryFall.java new file mode 100644 index 0000000000..d47386686e --- /dev/null +++ b/Mage.Sets/src/mage/sets/conflux/FieryFall.java @@ -0,0 +1,68 @@ +/* + * 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.conflux; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.DamageTargetEffect; +import mage.abilities.keyword.BasicLandcyclingAbility; +import mage.cards.CardImpl; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author Loki + */ +public class FieryFall extends CardImpl { + + public FieryFall (UUID ownerId) { + super(ownerId, 63, "Fiery Fall", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{5}{R}"); + this.expansionSetCode = "CON"; + this.color.setRed(true); + this.getSpellAbility().addEffect(new DamageTargetEffect(5)); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + this.addAbility(new BasicLandcyclingAbility(new ManaCostsImpl("{1}{R}"))); + } + + public FieryFall (final FieryFall card) { + super(card); + } + + @Override + public FieryFall copy() { + return new FieryFall(this); + } + + @Override + public String getArt() { + return ""; + } +} diff --git a/Mage/src/mage/abilities/keyword/BasicLandcyclingAbility.java b/Mage/src/mage/abilities/keyword/BasicLandcyclingAbility.java new file mode 100644 index 0000000000..82c2bb87db --- /dev/null +++ b/Mage/src/mage/abilities/keyword/BasicLandcyclingAbility.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.abilities.keyword; + +import mage.Constants.Zone; +import mage.abilities.ActivatedAbilityImpl; +import mage.abilities.costs.common.DiscardSourceCost; +import mage.abilities.costs.mana.ManaCosts; +import mage.abilities.effects.common.SearchLibraryPutInHandEffect; +import mage.filter.Filter.ComparisonScope; +import mage.filter.FilterCard; +import mage.target.common.TargetCardInLibrary; + +/** + * + * @author Loki + */ +public class BasicLandcyclingAbility extends ActivatedAbilityImpl{ + private static FilterCard filter = new FilterCard("Basic land"); + + static { + filter.getSupertype().add("Basic"); + filter.setScopeSupertype(ComparisonScope.Any); + } + + public BasicLandcyclingAbility(ManaCosts costs) { + super(Zone.HAND, new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter)), costs); + this.addCost(new DiscardSourceCost()); + } + + public BasicLandcyclingAbility(final BasicLandcyclingAbility ability) { + super(ability); + } + + @Override + public BasicLandcyclingAbility copy() { + return new BasicLandcyclingAbility(this); + } + + @Override + public String getRule() { + return "Basic landcycling " + super.getRule(); + } +}