diff --git a/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier.java b/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier1.java similarity index 92% rename from Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier.java rename to Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier1.java index 340567c5676..5b4ba9fc2bc 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier.java +++ b/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier1.java @@ -41,11 +41,11 @@ import mage.filter.common.FilterCreaturePermanent; * * @author MarcoMarin */ -public class DwarvenSoldier extends CardImpl { +public class DwarvenSoldier1 extends CardImpl { private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Orc", "Orc creature"); - public DwarvenSoldier(UUID ownerId) { + public DwarvenSoldier1(UUID ownerId) { super(ownerId, 107, "Dwarven Soldier", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{R}"); this.expansionSetCode = "FEM"; this.subtype.add("Dwarf"); @@ -57,12 +57,12 @@ public class DwarvenSoldier extends CardImpl { this.addAbility(new BlocksOrBecomesBlockedByCreatureTriggeredAbility(new BoostSourceEffect(0, 2, Duration.EndOfTurn), filter, false)); } - public DwarvenSoldier(final DwarvenSoldier card) { + public DwarvenSoldier1(final DwarvenSoldier1 card) { super(card); } @Override - public DwarvenSoldier copy() { - return new DwarvenSoldier(this); + public DwarvenSoldier1 copy() { + return new DwarvenSoldier1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier2.java b/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier2.java new file mode 100644 index 00000000000..8112fe5bcbf --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier2.java @@ -0,0 +1,51 @@ +/* + * 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 fwannmacher + */ +public class DwarvenSoldier2 extends DwarvenSoldier1 { + + public DwarvenSoldier2(UUID ownerId) { + super(ownerId); + this.cardNumber = 108; + } + + public DwarvenSoldier2(final DwarvenSoldier2 card) { + super(card); + } + + @Override + public DwarvenSoldier2 copy() { + return new DwarvenSoldier2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier3.java b/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier3.java new file mode 100644 index 00000000000..ab21dc4eeab --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/DwarvenSoldier3.java @@ -0,0 +1,51 @@ +/* + * 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 fwannmacher + */ +public class DwarvenSoldier3 extends DwarvenSoldier1 { + + public DwarvenSoldier3(UUID ownerId) { + super(ownerId); + this.cardNumber = 109; + } + + public DwarvenSoldier3(final DwarvenSoldier3 card) { + super(card); + } + + @Override + public DwarvenSoldier3 copy() { + return new DwarvenSoldier3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand.java b/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand1.java similarity index 93% rename from Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand.java rename to Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand1.java index 64b3b57cb84..f0794ed6713 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand.java +++ b/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand1.java @@ -50,9 +50,9 @@ import mage.game.Game; * * @author MarcoMarin */ -public class InitiatesOfTheEbonHand extends CardImpl { +public class InitiatesOfTheEbonHand1 extends CardImpl { - public InitiatesOfTheEbonHand(UUID ownerId) { + public InitiatesOfTheEbonHand1(UUID ownerId) { super(ownerId, 16, "Initiates of the Ebon Hand", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{B}"); this.expansionSetCode = "FEM"; this.subtype.add("Cleric"); @@ -67,13 +67,13 @@ public class InitiatesOfTheEbonHand extends CardImpl { this.addAbility(ability); } - public InitiatesOfTheEbonHand(final InitiatesOfTheEbonHand card) { + public InitiatesOfTheEbonHand1(final InitiatesOfTheEbonHand1 card) { super(card); } @Override - public InitiatesOfTheEbonHand copy() { - return new InitiatesOfTheEbonHand(this); + public InitiatesOfTheEbonHand1 copy() { + return new InitiatesOfTheEbonHand1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand2.java b/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand2.java new file mode 100644 index 00000000000..947cf3fbcb3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand2.java @@ -0,0 +1,51 @@ +/* + * 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 fwannmacher + */ +public class InitiatesOfTheEbonHand2 extends InitiatesOfTheEbonHand1 { + + public InitiatesOfTheEbonHand2(UUID ownerId) { + super(ownerId); + this.cardNumber = 17; + } + + public InitiatesOfTheEbonHand2(final InitiatesOfTheEbonHand2 card) { + super(card); + } + + @Override + public InitiatesOfTheEbonHand2 copy() { + return new InitiatesOfTheEbonHand2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand3.java b/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand3.java new file mode 100644 index 00000000000..b9a5ef521b3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/InitiatesOfTheEbonHand3.java @@ -0,0 +1,51 @@ +/* + * 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 fwannmacher + */ +public class InitiatesOfTheEbonHand3 extends InitiatesOfTheEbonHand1 { + + public InitiatesOfTheEbonHand3(UUID ownerId) { + super(ownerId); + this.cardNumber = 18; + } + + public InitiatesOfTheEbonHand3(final InitiatesOfTheEbonHand3 card) { + super(card); + } + + @Override + public InitiatesOfTheEbonHand3 copy() { + return new InitiatesOfTheEbonHand3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/Necrite.java b/Mage.Sets/src/mage/sets/fallenempires/Necrite1.java similarity index 95% rename from Mage.Sets/src/mage/sets/fallenempires/Necrite.java rename to Mage.Sets/src/mage/sets/fallenempires/Necrite1.java index 9effea0242f..41f2c7ca2c6 100644 --- a/Mage.Sets/src/mage/sets/fallenempires/Necrite.java +++ b/Mage.Sets/src/mage/sets/fallenempires/Necrite1.java @@ -52,9 +52,9 @@ import mage.target.TargetPermanent; * * @author MarcoMarin */ -public class Necrite extends CardImpl { +public class Necrite1 extends CardImpl { - public Necrite(UUID ownerId) { + public Necrite1(UUID ownerId) { super(ownerId, 22, "Necrite", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{B}{B}"); this.expansionSetCode = "FEM"; this.subtype.add("Thrull"); @@ -69,13 +69,13 @@ public class Necrite extends CardImpl { } - public Necrite(final Necrite card) { + public Necrite1(final Necrite1 card) { super(card); } @Override - public Necrite copy() { - return new Necrite(this); + public Necrite1 copy() { + return new Necrite1(this); } } diff --git a/Mage.Sets/src/mage/sets/fallenempires/Necrite2.java b/Mage.Sets/src/mage/sets/fallenempires/Necrite2.java new file mode 100644 index 00000000000..bafa3cfce54 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/Necrite2.java @@ -0,0 +1,51 @@ +/* + * 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 fwannmacher + */ +public class Necrite2 extends Necrite1 { + + public Necrite2(UUID ownerId) { + super(ownerId); + this.cardNumber = 23; + } + + public Necrite2(final Necrite2 card) { + super(card); + } + + @Override + public Necrite2 copy() { + return new Necrite2(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fallenempires/Necrite3.java b/Mage.Sets/src/mage/sets/fallenempires/Necrite3.java new file mode 100644 index 00000000000..ffc560560e2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/fallenempires/Necrite3.java @@ -0,0 +1,51 @@ +/* + * 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 fwannmacher + */ +public class Necrite3 extends Necrite1 { + + public Necrite3(UUID ownerId) { + super(ownerId); + this.cardNumber = 24; + } + + public Necrite3(final Necrite3 card) { + super(card); + } + + @Override + public Necrite3 copy() { + return new Necrite3(this); + } +} diff --git a/Mage.Sets/src/mage/sets/fifthedition/DwarvenSoldier.java b/Mage.Sets/src/mage/sets/fifthedition/DwarvenSoldier.java index 5bdf0509cce..fc5317efdaf 100644 --- a/Mage.Sets/src/mage/sets/fifthedition/DwarvenSoldier.java +++ b/Mage.Sets/src/mage/sets/fifthedition/DwarvenSoldier.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author MarcoMarin */ -public class DwarvenSoldier extends mage.sets.fallenempires.DwarvenSoldier { +public class DwarvenSoldier extends mage.sets.fallenempires.DwarvenSoldier1 { public DwarvenSoldier(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/fifthedition/InitiatesOfTheEbonHand.java b/Mage.Sets/src/mage/sets/fifthedition/InitiatesOfTheEbonHand.java index 2a8138ca4f0..f6e2198ea9f 100644 --- a/Mage.Sets/src/mage/sets/fifthedition/InitiatesOfTheEbonHand.java +++ b/Mage.Sets/src/mage/sets/fifthedition/InitiatesOfTheEbonHand.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author MarcoMarin */ -public class InitiatesOfTheEbonHand extends mage.sets.fallenempires.InitiatesOfTheEbonHand { +public class InitiatesOfTheEbonHand extends mage.sets.fallenempires.InitiatesOfTheEbonHand1 { public InitiatesOfTheEbonHand(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/fifthedition/Necrite.java b/Mage.Sets/src/mage/sets/fifthedition/Necrite.java index 3cd23e56018..6f6ce644a89 100644 --- a/Mage.Sets/src/mage/sets/fifthedition/Necrite.java +++ b/Mage.Sets/src/mage/sets/fifthedition/Necrite.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author MarcoMarin */ -public class Necrite extends mage.sets.fallenempires.Necrite { +public class Necrite extends mage.sets.fallenempires.Necrite1 { public Necrite(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/mastersedition/DwarvenSoldier.java b/Mage.Sets/src/mage/sets/mastersedition/DwarvenSoldier.java index 4bd41ab976e..174f995efed 100644 --- a/Mage.Sets/src/mage/sets/mastersedition/DwarvenSoldier.java +++ b/Mage.Sets/src/mage/sets/mastersedition/DwarvenSoldier.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author MarcoMarin */ -public class DwarvenSoldier extends mage.sets.fallenempires.DwarvenSoldier { +public class DwarvenSoldier extends mage.sets.fallenempires.DwarvenSoldier1 { public DwarvenSoldier(UUID ownerId) { super(ownerId); diff --git a/Mage.Sets/src/mage/sets/masterseditionii/Necrite.java b/Mage.Sets/src/mage/sets/masterseditionii/Necrite.java index 05605d22d13..2fc7e4fd147 100644 --- a/Mage.Sets/src/mage/sets/masterseditionii/Necrite.java +++ b/Mage.Sets/src/mage/sets/masterseditionii/Necrite.java @@ -33,7 +33,7 @@ import java.util.UUID; * * @author MarcoMarin */ -public class Necrite extends mage.sets.fallenempires.Necrite { +public class Necrite extends mage.sets.fallenempires.Necrite1 { public Necrite(UUID ownerId) { super(ownerId);