From 9c6ab40289bbf0f321748dedf886ef52bea0d320 Mon Sep 17 00:00:00 2001 From: LoneFox Date: Tue, 30 Jun 2015 22:12:39 +0300 Subject: [PATCH] More image variants --- .../mage/sets/eighthedition/OrcishSpy.java | 2 +- ...BrassclawOrcs.java => BrassclawOrcs1.java} | 10 ++-- .../sets/fallenempires/BrassclawOrcs2.java | 52 +++++++++++++++++++ .../sets/fallenempires/BrassclawOrcs3.java | 52 +++++++++++++++++++ .../sets/fallenempires/BrassclawOrcs4.java | 52 +++++++++++++++++++ ...Chirurgeon.java => GoblinChirurgeon1.java} | 14 ++--- .../sets/fallenempires/GoblinChirurgeon2.java | 52 +++++++++++++++++++ .../sets/fallenempires/GoblinChirurgeon3.java | 52 +++++++++++++++++++ .../{HighTide.java => HighTide1.java} | 10 ++-- .../mage/sets/fallenempires/HighTide2.java | 52 +++++++++++++++++++ .../mage/sets/fallenempires/HighTide3.java | 52 +++++++++++++++++++ .../{OrcishSpy.java => OrcishSpy1.java} | 10 ++-- .../mage/sets/fallenempires/OrcishSpy2.java | 52 +++++++++++++++++++ .../mage/sets/fallenempires/OrcishSpy3.java | 52 +++++++++++++++++++ .../mage/sets/fifthedition/BrassclawOrcs.java | 2 +- .../sets/mastersedition/GoblinChirurgeon.java | 2 +- .../mage/sets/mastersedition/HighTide.java | 2 +- .../sets/masterseditionii/BrassclawOrcs.java | 2 +- .../src/mage/sets/mediainserts/HighTide.java | 8 +-- .../mage/sets/vintagemasters/HighTide.java | 2 +- 20 files changed, 500 insertions(+), 32 deletions(-) rename Mage.Sets/src/mage/sets/fallenempires/{BrassclawOrcs.java => BrassclawOrcs1.java} (92%) create mode 100644 Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs2.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs3.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs4.java rename Mage.Sets/src/mage/sets/fallenempires/{GoblinChirurgeon.java => GoblinChirurgeon1.java} (89%) create mode 100644 Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon2.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon3.java rename Mage.Sets/src/mage/sets/fallenempires/{HighTide.java => HighTide1.java} (93%) create mode 100644 Mage.Sets/src/mage/sets/fallenempires/HighTide2.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/HighTide3.java rename Mage.Sets/src/mage/sets/fallenempires/{OrcishSpy.java => OrcishSpy1.java} (91%) create mode 100644 Mage.Sets/src/mage/sets/fallenempires/OrcishSpy2.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/OrcishSpy3.java diff --git a/Mage.Sets/src/mage/sets/eighthedition/OrcishSpy.java b/Mage.Sets/src/mage/sets/eighthedition/OrcishSpy.java index 8dc7c9a562..20914435fb 100644 --- a/Mage.Sets/src/mage/sets/eighthedition/OrcishSpy.java +++ b/Mage.Sets/src/mage/sets/eighthedition/OrcishSpy.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author anonymous */ -public class OrcishSpy extends mage.sets.fallenempires.OrcishSpy { +public class OrcishSpy extends mage.sets.fallenempires.OrcishSpy1 { public OrcishSpy(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs.java b/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs1.java similarity index 92% rename from Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs.java rename to Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs1.java index 0b13d1b92d..88b314aa28 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs.java +++ b/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs1.java @@ -43,14 +43,14 @@ import mage.filter.predicate.mageobject.PowerPredicate; * * @author dustinconrad */ -public class BrassclawOrcs extends CardImpl { +public class BrassclawOrcs1 extends CardImpl { private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures with power 2 or greater"); static { filter.add(new PowerPredicate(Filter.ComparisonType.GreaterThan, 1)); } - public BrassclawOrcs(UUID ownerId) { + public BrassclawOrcs1(UUID ownerId) { super(ownerId, 100, "Brassclaw Orcs", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{R}"); this.expansionSetCode = "FEM"; this.subtype.add("Orc"); @@ -63,12 +63,12 @@ public class BrassclawOrcs extends CardImpl { } - public BrassclawOrcs(final BrassclawOrcs card) { + public BrassclawOrcs1(final BrassclawOrcs1 card) { super(card); } @Override - public BrassclawOrcs copy() { - return new BrassclawOrcs(this); + public BrassclawOrcs1 copy() { + return new BrassclawOrcs1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs2.java b/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs2.java new file mode 100644 index 0000000000..9e71d5b62a --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs2.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class BrassclawOrcs2 extends mage.sets.fallenempires.BrassclawOrcs1 { + + public BrassclawOrcs2(UUID ownerId) { + super(ownerId); + this.cardNumber = 101; + } + + public BrassclawOrcs2(final BrassclawOrcs2 card) { + super(card); + } + + @Override + public BrassclawOrcs2 copy() { + return new BrassclawOrcs2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs3.java b/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs3.java new file mode 100644 index 0000000000..68c5384e0b --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs3.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class BrassclawOrcs3 extends mage.sets.fallenempires.BrassclawOrcs1 { + + public BrassclawOrcs3(UUID ownerId) { + super(ownerId); + this.cardNumber = 102; + } + + public BrassclawOrcs3(final BrassclawOrcs3 card) { + super(card); + } + + @Override + public BrassclawOrcs3 copy() { + return new BrassclawOrcs3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs4.java b/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs4.java new file mode 100644 index 0000000000..54f8a164de --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/BrassclawOrcs4.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class BrassclawOrcs4 extends mage.sets.fallenempires.BrassclawOrcs1 { + + public BrassclawOrcs4(UUID ownerId) { + super(ownerId); + this.cardNumber = 103; + } + + public BrassclawOrcs4(final BrassclawOrcs4 card) { + super(card); + } + + @Override + public BrassclawOrcs4 copy() { + return new BrassclawOrcs4(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon.java b/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon1.java similarity index 89% rename from Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon.java rename to Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon1.java index 12933f7f7d..a8227eb3ac 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon.java +++ b/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon1.java @@ -45,9 +45,9 @@ import mage.target.common.TargetCreaturePermanent; * * @author LevelX2 */ -public class GoblinChirurgeon extends CardImpl { +public class GoblinChirurgeon1 extends CardImpl { - public GoblinChirurgeon(UUID ownerId) { + public GoblinChirurgeon1(UUID ownerId) { super(ownerId, 110, "Goblin Chirurgeon", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{R}"); this.expansionSetCode = "FEM"; this.subtype.add("Goblin"); @@ -56,19 +56,19 @@ public class GoblinChirurgeon extends CardImpl { this.toughness = new MageInt(2); // Sacrifice a Goblin: Regenerate target creature. - Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, - new RegenerateTargetEffect(), + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, + new RegenerateTargetEffect(), new SacrificeTargetCost(new TargetControlledCreaturePermanent(new FilterControlledCreaturePermanent("Goblin","a Goblin")))); ability.addTarget(new TargetCreaturePermanent()); this.addAbility(ability); } - public GoblinChirurgeon(final GoblinChirurgeon card) { + public GoblinChirurgeon1(final GoblinChirurgeon1 card) { super(card); } @Override - public GoblinChirurgeon copy() { - return new GoblinChirurgeon(this); + public GoblinChirurgeon1 copy() { + return new GoblinChirurgeon1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon2.java b/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon2.java new file mode 100644 index 0000000000..a1b64fafef --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon2.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class GoblinChirurgeon2 extends mage.sets.fallenempires.GoblinChirurgeon1 { + + public GoblinChirurgeon2(UUID ownerId) { + super(ownerId); + this.cardNumber = 111; + } + + public GoblinChirurgeon2(final GoblinChirurgeon2 card) { + super(card); + } + + @Override + public GoblinChirurgeon2 copy() { + return new GoblinChirurgeon2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon3.java b/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon3.java new file mode 100644 index 0000000000..06e937dddc --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/GoblinChirurgeon3.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class GoblinChirurgeon3 extends mage.sets.fallenempires.GoblinChirurgeon1 { + + public GoblinChirurgeon3(UUID ownerId) { + super(ownerId); + this.cardNumber = 112; + } + + public GoblinChirurgeon3(final GoblinChirurgeon3 card) { + super(card); + } + + @Override + public GoblinChirurgeon3 copy() { + return new GoblinChirurgeon3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/HighTide.java b/Mage.Sets/src/mage/sets/fallenempires/HighTide1.java similarity index 93% rename from Mage.Sets/src/mage/sets/fallenempires/HighTide.java rename to Mage.Sets/src/mage/sets/fallenempires/HighTide1.java index a05092aa2e..85764195d6 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/HighTide.java +++ b/Mage.Sets/src/mage/sets/fallenempires/HighTide1.java @@ -50,9 +50,9 @@ import mage.target.targetpointer.FixedTarget; * * @author Plopman */ -public class HighTide extends CardImpl { +public class HighTide1 extends CardImpl { - public HighTide(UUID ownerId) { + public HighTide1(UUID ownerId) { super(ownerId, 35, "High Tide", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{U}"); this.expansionSetCode = "FEM"; @@ -61,13 +61,13 @@ public class HighTide extends CardImpl { } - public HighTide(final HighTide card) { + public HighTide1(final HighTide1 card) { super(card); } @Override - public HighTide copy() { - return new HighTide(this); + public HighTide1 copy() { + return new HighTide1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/HighTide2.java b/Mage.Sets/src/mage/sets/fallenempires/HighTide2.java new file mode 100644 index 0000000000..2d9a56b12b --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/HighTide2.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class HighTide2 extends mage.sets.fallenempires.HighTide1 { + + public HighTide2(UUID ownerId) { + super(ownerId); + this.cardNumber = 36; + } + + public HighTide2(final HighTide2 card) { + super(card); + } + + @Override + public HighTide2 copy() { + return new HighTide2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/HighTide3.java b/Mage.Sets/src/mage/sets/fallenempires/HighTide3.java new file mode 100644 index 0000000000..20e98c9c6b --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/HighTide3.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class HighTide3 extends mage.sets.fallenempires.HighTide1 { + + public HighTide3(UUID ownerId) { + super(ownerId); + this.cardNumber = 37; + } + + public HighTide3(final HighTide3 card) { + super(card); + } + + @Override + public HighTide3 copy() { + return new HighTide3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy.java b/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy1.java similarity index 91% rename from Mage.Sets/src/mage/sets/fallenempires/OrcishSpy.java rename to Mage.Sets/src/mage/sets/fallenempires/OrcishSpy1.java index ffe94a579d..81014f1c09 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy.java +++ b/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy1.java @@ -42,9 +42,9 @@ import mage.constants.Zone; * * @author anonymous */ -public class OrcishSpy extends CardImpl { +public class OrcishSpy1 extends CardImpl { - public OrcishSpy(UUID ownerId) { + public OrcishSpy1(UUID ownerId) { super(ownerId, 124, "Orcish Spy", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{R}"); this.expansionSetCode = "FEM"; this.subtype.add("Orc"); @@ -57,12 +57,12 @@ public class OrcishSpy extends CardImpl { this.addAbility(ability); } - public OrcishSpy(final OrcishSpy card) { + public OrcishSpy1(final OrcishSpy1 card) { super(card); } @Override - public OrcishSpy copy() { - return new OrcishSpy(this); + public OrcishSpy1 copy() { + return new OrcishSpy1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy2.java b/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy2.java new file mode 100644 index 0000000000..b7e5b5b023 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy2.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class OrcishSpy2 extends mage.sets.fallenempires.OrcishSpy1 { + + public OrcishSpy2(UUID ownerId) { + super(ownerId); + this.cardNumber = 125; + } + + public OrcishSpy2(final OrcishSpy2 card) { + super(card); + } + + @Override + public OrcishSpy2 copy() { + return new OrcishSpy2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy3.java b/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy3.java new file mode 100644 index 0000000000..96d130cbcb --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/OrcishSpy3.java @@ -0,0 +1,52 @@ +/* + * 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.fallenempires; + +import java.util.UUID; + +/** + * + * @author LoneFox + + */ +public class OrcishSpy3 extends mage.sets.fallenempires.OrcishSpy1 { + + public OrcishSpy3(UUID ownerId) { + super(ownerId); + this.cardNumber = 126; + } + + public OrcishSpy3(final OrcishSpy3 card) { + super(card); + } + + @Override + public OrcishSpy3 copy() { + return new OrcishSpy3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fifthedition/BrassclawOrcs.java b/Mage.Sets/src/mage/sets/fifthedition/BrassclawOrcs.java index 88a923cecf..598361a68b 100644 --- a/Mage.Sets/src/mage/sets/fifthedition/BrassclawOrcs.java +++ b/Mage.Sets/src/mage/sets/fifthedition/BrassclawOrcs.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author dustinconrad */ -public class BrassclawOrcs extends mage.sets.fallenempires.BrassclawOrcs { +public class BrassclawOrcs extends mage.sets.fallenempires.BrassclawOrcs1 { public BrassclawOrcs(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/mastersedition/GoblinChirurgeon.java b/Mage.Sets/src/mage/sets/mastersedition/GoblinChirurgeon.java index 1c1838ad7e..881780480b 100644 --- a/Mage.Sets/src/mage/sets/mastersedition/GoblinChirurgeon.java +++ b/Mage.Sets/src/mage/sets/mastersedition/GoblinChirurgeon.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author LevelX2 */ -public class GoblinChirurgeon extends mage.sets.fallenempires.GoblinChirurgeon { +public class GoblinChirurgeon extends mage.sets.fallenempires.GoblinChirurgeon1 { public GoblinChirurgeon(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/mastersedition/HighTide.java b/Mage.Sets/src/mage/sets/mastersedition/HighTide.java index 989fab54f3..765f2b9c36 100644 --- a/Mage.Sets/src/mage/sets/mastersedition/HighTide.java +++ b/Mage.Sets/src/mage/sets/mastersedition/HighTide.java @@ -34,7 +34,7 @@ import mage.constants.Rarity; * * @author LevelX2 */ -public class HighTide extends mage.sets.fallenempires.HighTide { +public class HighTide extends mage.sets.fallenempires.HighTide1 { public HighTide(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/masterseditionii/BrassclawOrcs.java b/Mage.Sets/src/mage/sets/masterseditionii/BrassclawOrcs.java index aecc4293e7..cd0c62b2c3 100644 --- a/Mage.Sets/src/mage/sets/masterseditionii/BrassclawOrcs.java +++ b/Mage.Sets/src/mage/sets/masterseditionii/BrassclawOrcs.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author LevelX2 */ -public class BrassclawOrcs extends mage.sets.fallenempires.BrassclawOrcs { +public class BrassclawOrcs extends mage.sets.fallenempires.BrassclawOrcs1 { public BrassclawOrcs(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/mediainserts/HighTide.java b/Mage.Sets/src/mage/sets/mediainserts/HighTide.java index 5fd142047d..043fa28962 100644 --- a/Mage.Sets/src/mage/sets/mediainserts/HighTide.java +++ b/Mage.Sets/src/mage/sets/mediainserts/HighTide.java @@ -2,18 +2,18 @@ package mage.sets.mediainserts; import java.util.UUID; -public class HighTide extends mage.sets.fallenempires.HighTide { - +public class HighTide extends mage.sets.fallenempires.HighTide1 { + public HighTide(UUID ownerId) { super(ownerId); this.cardNumber = 80; this.expansionSetCode = "MBP"; } - + public HighTide(final HighTide card) { super(card); } - + @Override public HighTide copy() { return new HighTide(this); diff --git a/Mage.Sets/src/mage/sets/vintagemasters/HighTide.java b/Mage.Sets/src/mage/sets/vintagemasters/HighTide.java index c82b0b6b91..6dc357fc4d 100644 --- a/Mage.Sets/src/mage/sets/vintagemasters/HighTide.java +++ b/Mage.Sets/src/mage/sets/vintagemasters/HighTide.java @@ -34,7 +34,7 @@ import mage.constants.Rarity; * * @author LevelX2 */ -public class HighTide extends mage.sets.fallenempires.HighTide { +public class HighTide extends mage.sets.fallenempires.HighTide1 { public HighTide(UUID ownerId) { super(ownerId);