From a3ac126ddbfeedb4e3c56fc67b20849f18184446 Mon Sep 17 00:00:00 2001 From: LoneFox Date: Tue, 30 Jun 2015 22:55:42 +0300 Subject: [PATCH] More image variants. This should be all of them. --- .../{Thallid.java => Thallid1.java} | 10 ++-- .../src/mage/sets/fallenempires/Thallid2.java | 54 +++++++++++++++++++ .../src/mage/sets/fallenempires/Thallid3.java | 54 +++++++++++++++++++ .../src/mage/sets/fallenempires/Thallid4.java | 54 +++++++++++++++++++ .../{ThornThallid.java => ThornThallid1.java} | 14 ++--- .../sets/fallenempires/ThornThallid2.java | 52 ++++++++++++++++++ .../sets/fallenempires/ThornThallid3.java | 52 ++++++++++++++++++ .../sets/fallenempires/ThornThallid4.java | 52 ++++++++++++++++++ ...anSoldiers.java => VodalianSoldiers1.java} | 10 ++-- .../sets/fallenempires/VodalianSoldiers2.java | 52 ++++++++++++++++++ .../sets/fallenempires/VodalianSoldiers3.java | 52 ++++++++++++++++++ .../sets/fallenempires/VodalianSoldiers4.java | 52 ++++++++++++++++++ .../sets/mastersedition/ThornThallid.java | 2 +- 13 files changed, 492 insertions(+), 18 deletions(-) rename Mage.Sets/src/mage/sets/fallenempires/{Thallid.java => Thallid1.java} (88%) create mode 100644 Mage.Sets/src/mage/sets/fallenempires/Thallid2.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/Thallid3.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/Thallid4.java rename Mage.Sets/src/mage/sets/fallenempires/{ThornThallid.java => ThornThallid1.java} (92%) create mode 100644 Mage.Sets/src/mage/sets/fallenempires/ThornThallid2.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/ThornThallid3.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/ThornThallid4.java rename Mage.Sets/src/mage/sets/fallenempires/{VodalianSoldiers.java => VodalianSoldiers1.java} (85%) create mode 100644 Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers2.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers3.java create mode 100644 Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers4.java diff --git a/Mage.Sets/src/mage/sets/fallenempires/Thallid.java b/Mage.Sets/src/mage/sets/fallenempires/Thallid1.java similarity index 88% rename from Mage.Sets/src/mage/sets/fallenempires/Thallid.java rename to Mage.Sets/src/mage/sets/fallenempires/Thallid1.java index fbd413fcba..9ff4ba3937 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/Thallid.java +++ b/Mage.Sets/src/mage/sets/fallenempires/Thallid1.java @@ -34,21 +34,21 @@ import mage.constants.Rarity; * * @author North */ -public class Thallid extends mage.sets.timeshifted.Thallid { +public class Thallid1 extends mage.sets.timeshifted.Thallid { - public Thallid(UUID ownerId) { + public Thallid1(UUID ownerId) { super(ownerId); this.cardNumber = 87; this.expansionSetCode = "FEM"; this.rarity = Rarity.COMMON; } - public Thallid(final Thallid card) { + public Thallid1(final Thallid1 card) { super(card); } @Override - public Thallid copy() { - return new Thallid(this); + public Thallid1 copy() { + return new Thallid1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/Thallid2.java b/Mage.Sets/src/mage/sets/fallenempires/Thallid2.java new file mode 100644 index 0000000000..788cc6fb20 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/Thallid2.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.fallenempires; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author North + */ +public class Thallid2 extends mage.sets.timeshifted.Thallid { + + public Thallid2(UUID ownerId) { + super(ownerId); + this.cardNumber = 88; + this.expansionSetCode = "FEM"; + this.rarity = Rarity.COMMON; + } + + public Thallid2(final Thallid2 card) { + super(card); + } + + @Override + public Thallid2 copy() { + return new Thallid2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/Thallid3.java b/Mage.Sets/src/mage/sets/fallenempires/Thallid3.java new file mode 100644 index 0000000000..aadb4f7f24 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/Thallid3.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.fallenempires; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author North + */ +public class Thallid3 extends mage.sets.timeshifted.Thallid { + + public Thallid3(UUID ownerId) { + super(ownerId); + this.cardNumber = 89; + this.expansionSetCode = "FEM"; + this.rarity = Rarity.COMMON; + } + + public Thallid3(final Thallid3 card) { + super(card); + } + + @Override + public Thallid3 copy() { + return new Thallid3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/Thallid4.java b/Mage.Sets/src/mage/sets/fallenempires/Thallid4.java new file mode 100644 index 0000000000..317ecb5acd --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/Thallid4.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.fallenempires; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author North + */ +public class Thallid4 extends mage.sets.timeshifted.Thallid { + + public Thallid4(UUID ownerId) { + super(ownerId); + this.cardNumber = 90; + this.expansionSetCode = "FEM"; + this.rarity = Rarity.COMMON; + } + + public Thallid4(final Thallid4 card) { + super(card); + } + + @Override + public Thallid4 copy() { + return new Thallid4(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/ThornThallid.java b/Mage.Sets/src/mage/sets/fallenempires/ThornThallid1.java similarity index 92% rename from Mage.Sets/src/mage/sets/fallenempires/ThornThallid.java rename to Mage.Sets/src/mage/sets/fallenempires/ThornThallid1.java index 61a0094efe..eb476b244b 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/ThornThallid.java +++ b/Mage.Sets/src/mage/sets/fallenempires/ThornThallid1.java @@ -47,9 +47,9 @@ import mage.target.common.TargetCreatureOrPlayer; * * @author fireshoes */ -public class ThornThallid extends CardImpl { +public class ThornThallid1 extends CardImpl { - public ThornThallid(UUID ownerId) { + public ThornThallid1(UUID ownerId) { super(ownerId, 96, "Thorn Thallid", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{G}{G}"); this.expansionSetCode = "FEM"; this.subtype.add("Fungus"); @@ -59,19 +59,19 @@ public class ThornThallid extends CardImpl { // At the beginning of your upkeep, put a spore counter on Thorn Thallid. this.addAbility(new BeginningOfUpkeepTriggeredAbility(new AddCountersSourceEffect(CounterType.SPORE.createInstance()), TargetController.YOU, false)); // Remove three spore counters from Thorn Thallid: Thorn Thallid deals 1 damage to target creature or player. - Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, - new DamageTargetEffect(1), + Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, + new DamageTargetEffect(1), new RemoveCountersSourceCost(CounterType.SPORE.createInstance(3))); ability.addTarget(new TargetCreatureOrPlayer()); this.addAbility(ability); } - public ThornThallid(final ThornThallid card) { + public ThornThallid1(final ThornThallid1 card) { super(card); } @Override - public ThornThallid copy() { - return new ThornThallid(this); + public ThornThallid1 copy() { + return new ThornThallid1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/ThornThallid2.java b/Mage.Sets/src/mage/sets/fallenempires/ThornThallid2.java new file mode 100644 index 0000000000..17b7c45c5f --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/ThornThallid2.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 ThornThallid2 extends mage.sets.fallenempires.ThornThallid1 { + + public ThornThallid2(UUID ownerId) { + super(ownerId); + this.cardNumber = 97; + } + + public ThornThallid2(final ThornThallid2 card) { + super(card); + } + + @Override + public ThornThallid2 copy() { + return new ThornThallid2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/ThornThallid3.java b/Mage.Sets/src/mage/sets/fallenempires/ThornThallid3.java new file mode 100644 index 0000000000..ecbc9a67d0 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/ThornThallid3.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 ThornThallid3 extends mage.sets.fallenempires.ThornThallid1 { + + public ThornThallid3(UUID ownerId) { + super(ownerId); + this.cardNumber = 98; + } + + public ThornThallid3(final ThornThallid3 card) { + super(card); + } + + @Override + public ThornThallid3 copy() { + return new ThornThallid3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/ThornThallid4.java b/Mage.Sets/src/mage/sets/fallenempires/ThornThallid4.java new file mode 100644 index 0000000000..07d2856033 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/ThornThallid4.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 ThornThallid4 extends mage.sets.fallenempires.ThornThallid1 { + + public ThornThallid4(UUID ownerId) { + super(ownerId); + this.cardNumber = 99; + } + + public ThornThallid4(final ThornThallid4 card) { + super(card); + } + + @Override + public ThornThallid4 copy() { + return new ThornThallid4(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers.java b/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers1.java similarity index 85% rename from Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers.java rename to Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers1.java index 9e8db6797a..f7386996f7 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers.java +++ b/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers1.java @@ -33,20 +33,20 @@ import java.util.UUID; * * @author North */ -public class VodalianSoldiers extends mage.sets.fifthedition.VodalianSoldiers { +public class VodalianSoldiers1 extends mage.sets.fifthedition.VodalianSoldiers { - public VodalianSoldiers(UUID ownerId) { + public VodalianSoldiers1(UUID ownerId) { super(ownerId); this.cardNumber = 62; this.expansionSetCode = "FEM"; } - public VodalianSoldiers(final VodalianSoldiers card) { + public VodalianSoldiers1(final VodalianSoldiers1 card) { super(card); } @Override - public VodalianSoldiers copy() { - return new VodalianSoldiers(this); + public VodalianSoldiers1 copy() { + return new VodalianSoldiers1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers2.java b/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers2.java new file mode 100644 index 0000000000..afdba775fc --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers2.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 North + */ +public class VodalianSoldiers2 extends mage.sets.fifthedition.VodalianSoldiers { + + public VodalianSoldiers2(UUID ownerId) { + super(ownerId); + this.cardNumber = 63; + this.expansionSetCode = "FEM"; + } + + public VodalianSoldiers2(final VodalianSoldiers2 card) { + super(card); + } + + @Override + public VodalianSoldiers2 copy() { + return new VodalianSoldiers2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers3.java b/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers3.java new file mode 100644 index 0000000000..30ec245c98 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers3.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 North + */ +public class VodalianSoldiers3 extends mage.sets.fifthedition.VodalianSoldiers { + + public VodalianSoldiers3(UUID ownerId) { + super(ownerId); + this.cardNumber = 64; + this.expansionSetCode = "FEM"; + } + + public VodalianSoldiers3(final VodalianSoldiers3 card) { + super(card); + } + + @Override + public VodalianSoldiers3 copy() { + return new VodalianSoldiers3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers4.java b/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers4.java new file mode 100644 index 0000000000..46c9b469e2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/VodalianSoldiers4.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 North + */ +public class VodalianSoldiers4 extends mage.sets.fifthedition.VodalianSoldiers { + + public VodalianSoldiers4(UUID ownerId) { + super(ownerId); + this.cardNumber = 65; + this.expansionSetCode = "FEM"; + } + + public VodalianSoldiers4(final VodalianSoldiers4 card) { + super(card); + } + + @Override + public VodalianSoldiers4 copy() { + return new VodalianSoldiers4(this); + } +} diff --git a/Mage.Sets/src/mage/sets/mastersedition/ThornThallid.java b/Mage.Sets/src/mage/sets/mastersedition/ThornThallid.java index ed73a75879..72f75be201 100644 --- a/Mage.Sets/src/mage/sets/mastersedition/ThornThallid.java +++ b/Mage.Sets/src/mage/sets/mastersedition/ThornThallid.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author LevelX2 */ -public class ThornThallid extends mage.sets.fallenempires.ThornThallid { +public class ThornThallid extends mage.sets.fallenempires.ThornThallid1 { public ThornThallid(UUID ownerId) { super(ownerId);