From 4714f4da1a8d1cec68cf4e1e74868dd074a86c8b Mon Sep 17 00:00:00 2001 From: Plopman Date: Sat, 30 Mar 2013 19:10:04 +0100 Subject: [PATCH] Added 11 cards with land cycling Ability --- .../mage/sets/alarareborn/IgneousPouncer.java | 72 +++++++++++++++++++ .../sets/alarareborn/JhessianZombies.java | 72 +++++++++++++++++++ .../mage/sets/alarareborn/PaleRecluse.java | 72 +++++++++++++++++++ .../sets/alarareborn/SanctumPlowbeast.java | 71 ++++++++++++++++++ .../mage/sets/alarareborn/ValleyRannet.java | 70 ++++++++++++++++++ .../mage/sets/scourge/ChartoothCougar.java | 71 ++++++++++++++++++ .../mage/sets/scourge/ElvishAberration.java | 72 +++++++++++++++++++ .../src/mage/sets/scourge/NobleTemplar.java | 70 ++++++++++++++++++ .../mage/sets/scourge/ShorelineRanger.java | 69 ++++++++++++++++++ .../mage/sets/scourge/TwistedAbomination.java | 54 ++++++++++++++ .../mage/sets/scourge/WirewoodGuardian.java | 66 +++++++++++++++++ .../sets/timeshifted/TwistedAbomination.java | 71 ++++++++++++++++++ 12 files changed, 830 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/alarareborn/IgneousPouncer.java create mode 100644 Mage.Sets/src/mage/sets/alarareborn/JhessianZombies.java create mode 100644 Mage.Sets/src/mage/sets/alarareborn/PaleRecluse.java create mode 100644 Mage.Sets/src/mage/sets/alarareborn/SanctumPlowbeast.java create mode 100644 Mage.Sets/src/mage/sets/alarareborn/ValleyRannet.java create mode 100644 Mage.Sets/src/mage/sets/scourge/ChartoothCougar.java create mode 100644 Mage.Sets/src/mage/sets/scourge/ElvishAberration.java create mode 100644 Mage.Sets/src/mage/sets/scourge/NobleTemplar.java create mode 100644 Mage.Sets/src/mage/sets/scourge/ShorelineRanger.java create mode 100644 Mage.Sets/src/mage/sets/scourge/TwistedAbomination.java create mode 100644 Mage.Sets/src/mage/sets/scourge/WirewoodGuardian.java create mode 100644 Mage.Sets/src/mage/sets/timeshifted/TwistedAbomination.java diff --git a/Mage.Sets/src/mage/sets/alarareborn/IgneousPouncer.java b/Mage.Sets/src/mage/sets/alarareborn/IgneousPouncer.java new file mode 100644 index 00000000000..028257d08d8 --- /dev/null +++ b/Mage.Sets/src/mage/sets/alarareborn/IgneousPouncer.java @@ -0,0 +1,72 @@ +/* + * 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.alarareborn; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.HasteAbility; +import mage.abilities.keyword.MountaincyclingAbility; +import mage.abilities.keyword.SwampcyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class IgneousPouncer extends CardImpl { + + public IgneousPouncer(UUID ownerId) { + super(ownerId, 40, "Igneous Pouncer", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{4}{B}{R}"); + this.expansionSetCode = "ARB"; + this.subtype.add("Elemental"); + + this.color.setRed(true); + this.color.setBlack(true); + this.power = new MageInt(5); + this.toughness = new MageInt(1); + + // Haste + this.addAbility(HasteAbility.getInstance()); + // Swampcycling {2} + this.addAbility(new SwampcyclingAbility(new ManaCostsImpl("{2}"))); + // Mountaincycling {2} + this.addAbility(new MountaincyclingAbility(new ManaCostsImpl("{2}"))); + } + + public IgneousPouncer(final IgneousPouncer card) { + super(card); + } + + @Override + public IgneousPouncer copy() { + return new IgneousPouncer(this); + } +} diff --git a/Mage.Sets/src/mage/sets/alarareborn/JhessianZombies.java b/Mage.Sets/src/mage/sets/alarareborn/JhessianZombies.java new file mode 100644 index 00000000000..d66f665e241 --- /dev/null +++ b/Mage.Sets/src/mage/sets/alarareborn/JhessianZombies.java @@ -0,0 +1,72 @@ +/* + * 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.alarareborn; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.FearAbility; +import mage.abilities.keyword.IslandcyclingAbility; +import mage.abilities.keyword.SwampcyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class JhessianZombies extends CardImpl { + + public JhessianZombies(UUID ownerId) { + super(ownerId, 22, "Jhessian Zombies", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{4}{U}{B}"); + this.expansionSetCode = "ARB"; + this.subtype.add("Zombie"); + + this.color.setBlue(true); + this.color.setBlack(true); + this.power = new MageInt(2); + this.toughness = new MageInt(4); + + // Fear + this.addAbility(FearAbility.getInstance()); + // Islandcycling {2} + this.addAbility(new IslandcyclingAbility(new ManaCostsImpl("{2}"))); + // Swampcycling {2} + this.addAbility(new SwampcyclingAbility(new ManaCostsImpl("{2}"))); + } + + public JhessianZombies(final JhessianZombies card) { + super(card); + } + + @Override + public JhessianZombies copy() { + return new JhessianZombies(this); + } +} diff --git a/Mage.Sets/src/mage/sets/alarareborn/PaleRecluse.java b/Mage.Sets/src/mage/sets/alarareborn/PaleRecluse.java new file mode 100644 index 00000000000..3e63a1615be --- /dev/null +++ b/Mage.Sets/src/mage/sets/alarareborn/PaleRecluse.java @@ -0,0 +1,72 @@ +/* + * 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.alarareborn; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.keyword.ReachAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.ForestcyclingAbility; +import mage.abilities.keyword.PlainscyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class PaleRecluse extends CardImpl { + + public PaleRecluse(UUID ownerId) { + super(ownerId, 74, "Pale Recluse", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{4}{G}{W}"); + this.expansionSetCode = "ARB"; + this.subtype.add("Spider"); + + this.color.setGreen(true); + this.color.setWhite(true); + this.power = new MageInt(4); + this.toughness = new MageInt(5); + + // Reach + this.addAbility(ReachAbility.getInstance()); + // Forestcycling {2} + this.addAbility(new ForestcyclingAbility(new ManaCostsImpl("{2}"))); + // plainscycling {2} + this.addAbility(new PlainscyclingAbility(new ManaCostsImpl("{2}"))); + } + + public PaleRecluse(final PaleRecluse card) { + super(card); + } + + @Override + public PaleRecluse copy() { + return new PaleRecluse(this); + } +} diff --git a/Mage.Sets/src/mage/sets/alarareborn/SanctumPlowbeast.java b/Mage.Sets/src/mage/sets/alarareborn/SanctumPlowbeast.java new file mode 100644 index 00000000000..dd5dcfe9a80 --- /dev/null +++ b/Mage.Sets/src/mage/sets/alarareborn/SanctumPlowbeast.java @@ -0,0 +1,71 @@ +/* + * 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.alarareborn; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.DefenderAbility; +import mage.abilities.keyword.IslandcyclingAbility; +import mage.abilities.keyword.PlainscyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class SanctumPlowbeast extends CardImpl { + + public SanctumPlowbeast(UUID ownerId) { + super(ownerId, 10, "Sanctum Plowbeast", Rarity.COMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}{W}{U}"); + this.expansionSetCode = "ARB"; + this.subtype.add("Beast"); + + this.color.setBlue(true); + this.color.setWhite(true); + this.power = new MageInt(3); + this.toughness = new MageInt(6); + + // Defender + this.addAbility(DefenderAbility.getInstance()); + // Plainscycling {2}, islandcycling {2} + this.addAbility(new PlainscyclingAbility(new ManaCostsImpl("{2}"))); + this.addAbility(new IslandcyclingAbility(new ManaCostsImpl("{2}"))); + } + + public SanctumPlowbeast(final SanctumPlowbeast card) { + super(card); + } + + @Override + public SanctumPlowbeast copy() { + return new SanctumPlowbeast(this); + } +} diff --git a/Mage.Sets/src/mage/sets/alarareborn/ValleyRannet.java b/Mage.Sets/src/mage/sets/alarareborn/ValleyRannet.java new file mode 100644 index 00000000000..a40339a51aa --- /dev/null +++ b/Mage.Sets/src/mage/sets/alarareborn/ValleyRannet.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.alarareborn; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.MountaincyclingAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.ForestcyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class ValleyRannet extends CardImpl { + + public ValleyRannet(UUID ownerId) { + super(ownerId, 61, "Valley Rannet", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{4}{R}{G}"); + this.expansionSetCode = "ARB"; + this.subtype.add("Beast"); + + this.color.setRed(true); + this.color.setGreen(true); + this.power = new MageInt(6); + this.toughness = new MageInt(3); + + // Mountaincycling {2} + this.addAbility(new MountaincyclingAbility(new ManaCostsImpl("{2}"))); + // Forestcycling {2} + this.addAbility(new ForestcyclingAbility(new ManaCostsImpl("{2}"))); + } + + public ValleyRannet(final ValleyRannet card) { + super(card); + } + + @Override + public ValleyRannet copy() { + return new ValleyRannet(this); + } +} diff --git a/Mage.Sets/src/mage/sets/scourge/ChartoothCougar.java b/Mage.Sets/src/mage/sets/scourge/ChartoothCougar.java new file mode 100644 index 00000000000..7c0c9216b50 --- /dev/null +++ b/Mage.Sets/src/mage/sets/scourge/ChartoothCougar.java @@ -0,0 +1,71 @@ +/* + * 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.scourge; + +import java.util.UUID; +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.continious.BoostSourceEffect; +import mage.abilities.keyword.MountaincyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class ChartoothCougar extends CardImpl { + + public ChartoothCougar(UUID ownerId) { + super(ownerId, 84, "Chartooth Cougar", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{5}{R}"); + this.expansionSetCode = "SCG"; + this.subtype.add("Cat"); + this.subtype.add("Beast"); + + this.color.setRed(true); + this.power = new MageInt(4); + this.toughness = new MageInt(4); + + // {R}: Chartooth Cougar gets +1/+0 until end of turn. + this.addAbility(new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Constants.Duration.EndOfTurn), new ManaCostsImpl("{R}"))); + // Mountaincycling {2} + this.addAbility(new MountaincyclingAbility(new ManaCostsImpl("{2}"))); + } + + public ChartoothCougar(final ChartoothCougar card) { + super(card); + } + + @Override + public ChartoothCougar copy() { + return new ChartoothCougar(this); + } +} diff --git a/Mage.Sets/src/mage/sets/scourge/ElvishAberration.java b/Mage.Sets/src/mage/sets/scourge/ElvishAberration.java new file mode 100644 index 00000000000..a003612bad1 --- /dev/null +++ b/Mage.Sets/src/mage/sets/scourge/ElvishAberration.java @@ -0,0 +1,72 @@ +/* + * 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.scourge; + +import java.util.UUID; +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.Mana; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.ForestcyclingAbility; +import mage.abilities.mana.SimpleManaAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class ElvishAberration extends CardImpl { + + public ElvishAberration(UUID ownerId) { + super(ownerId, 118, "Elvish Aberration", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{5}{G}"); + this.expansionSetCode = "SCG"; + this.subtype.add("Elf"); + this.subtype.add("Mutant"); + + this.color.setGreen(true); + this.power = new MageInt(4); + this.toughness = new MageInt(5); + + // {tap}: Add {G}{G}{G} to your mana pool. + this.addAbility(new SimpleManaAbility(Constants.Zone.BATTLEFIELD, Mana.GreenMana(3), new TapSourceCost())); + // Forestcycling {2} + this.addAbility(new ForestcyclingAbility(new ManaCostsImpl("{2}"))); + } + + public ElvishAberration(final ElvishAberration card) { + super(card); + } + + @Override + public ElvishAberration copy() { + return new ElvishAberration(this); + } +} diff --git a/Mage.Sets/src/mage/sets/scourge/NobleTemplar.java b/Mage.Sets/src/mage/sets/scourge/NobleTemplar.java new file mode 100644 index 00000000000..7045ea1d218 --- /dev/null +++ b/Mage.Sets/src/mage/sets/scourge/NobleTemplar.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.scourge; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.PlainscyclingAbility; +import mage.abilities.keyword.VigilanceAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class NobleTemplar extends CardImpl { + + public NobleTemplar(UUID ownerId) { + super(ownerId, 19, "Noble Templar", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{5}{W}"); + this.expansionSetCode = "SCG"; + this.subtype.add("Human"); + this.subtype.add("Cleric"); + this.subtype.add("Soldier"); + + this.color.setWhite(true); + this.power = new MageInt(3); + this.toughness = new MageInt(6); + + // Vigilance + this.addAbility(VigilanceAbility.getInstance()); + // Plainscycling {2} + this.addAbility(new PlainscyclingAbility(new ManaCostsImpl("{2}"))); + } + + public NobleTemplar(final NobleTemplar card) { + super(card); + } + + @Override + public NobleTemplar copy() { + return new NobleTemplar(this); + } +} diff --git a/Mage.Sets/src/mage/sets/scourge/ShorelineRanger.java b/Mage.Sets/src/mage/sets/scourge/ShorelineRanger.java new file mode 100644 index 00000000000..17326a678fa --- /dev/null +++ b/Mage.Sets/src/mage/sets/scourge/ShorelineRanger.java @@ -0,0 +1,69 @@ +/* + * 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.scourge; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.FlyingAbility; +import mage.abilities.keyword.IslandcyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class ShorelineRanger extends CardImpl { + + public ShorelineRanger(UUID ownerId) { + super(ownerId, 51, "Shoreline Ranger", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{5}{U}"); + this.expansionSetCode = "SCG"; + this.subtype.add("Bird"); + this.subtype.add("Soldier"); + + this.color.setBlue(true); + this.power = new MageInt(3); + this.toughness = new MageInt(4); + + // Flying + this.addAbility(FlyingAbility.getInstance()); + // Islandcycling {2} + this.addAbility(new IslandcyclingAbility(new ManaCostsImpl("{2}"))); + } + + public ShorelineRanger(final ShorelineRanger card) { + super(card); + } + + @Override + public ShorelineRanger copy() { + return new ShorelineRanger(this); + } +} diff --git a/Mage.Sets/src/mage/sets/scourge/TwistedAbomination.java b/Mage.Sets/src/mage/sets/scourge/TwistedAbomination.java new file mode 100644 index 00000000000..a9db8fbafa3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/scourge/TwistedAbomination.java @@ -0,0 +1,54 @@ +/* + * 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.scourge; + +import java.util.UUID; +import mage.Constants.Rarity; + +/** + * + * @author Plopman + */ +public class TwistedAbomination extends mage.sets.timeshifted.TwistedAbomination { + + public TwistedAbomination(UUID ownerId) { + super(ownerId); + this.cardNumber = 76; + this.expansionSetCode = "SCG"; + this.rarity = Rarity.COMMON; + } + + public TwistedAbomination(final TwistedAbomination card) { + super(card); + } + + @Override + public TwistedAbomination copy() { + return new TwistedAbomination(this); + } +} diff --git a/Mage.Sets/src/mage/sets/scourge/WirewoodGuardian.java b/Mage.Sets/src/mage/sets/scourge/WirewoodGuardian.java new file mode 100644 index 00000000000..b18e03e2922 --- /dev/null +++ b/Mage.Sets/src/mage/sets/scourge/WirewoodGuardian.java @@ -0,0 +1,66 @@ +/* + * 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.scourge; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.keyword.ForestcyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class WirewoodGuardian extends CardImpl { + + public WirewoodGuardian(UUID ownerId) { + super(ownerId, 132, "Wirewood Guardian", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{5}{G}{G}"); + this.expansionSetCode = "SCG"; + this.subtype.add("Elf"); + this.subtype.add("Mutant"); + + this.color.setGreen(true); + this.power = new MageInt(6); + this.toughness = new MageInt(6); + + // Forestcycling {2} + this.addAbility(new ForestcyclingAbility(new ManaCostsImpl("{2}"))); + } + + public WirewoodGuardian(final WirewoodGuardian card) { + super(card); + } + + @Override + public WirewoodGuardian copy() { + return new WirewoodGuardian(this); + } +} diff --git a/Mage.Sets/src/mage/sets/timeshifted/TwistedAbomination.java b/Mage.Sets/src/mage/sets/timeshifted/TwistedAbomination.java new file mode 100644 index 00000000000..f7522fa7ae0 --- /dev/null +++ b/Mage.Sets/src/mage/sets/timeshifted/TwistedAbomination.java @@ -0,0 +1,71 @@ +/* + * 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.timeshifted; + +import java.util.UUID; +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.RegenerateSourceEffect; +import mage.abilities.keyword.SwampcyclingAbility; +import mage.cards.CardImpl; + +/** + * + * @author Plopman + */ +public class TwistedAbomination extends CardImpl { + + public TwistedAbomination(UUID ownerId) { + super(ownerId, 50, "Twisted Abomination", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{5}{B}"); + this.expansionSetCode = "TSB"; + this.subtype.add("Zombie"); + this.subtype.add("Mutant"); + + this.color.setBlack(true); + this.power = new MageInt(5); + this.toughness = new MageInt(3); + + // {B}: Regenerate Twisted Abomination. + this.addAbility(new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new RegenerateSourceEffect(), new ManaCostsImpl("{B}"))); + // Swampcycling {2} + this.addAbility(new SwampcyclingAbility(new ManaCostsImpl("{2}"))); + } + + public TwistedAbomination(final TwistedAbomination card) { + super(card); + } + + @Override + public TwistedAbomination copy() { + return new TwistedAbomination(this); + } +}