1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-11 01:01:05 -09:00

Add missing image variants for Goblin Grenade, Hymn to Tourach, Icatian Javelineers, and Night Soil

This commit is contained in:
LoneFox 2015-06-11 11:59:12 +03:00
parent 18cc8735d6
commit da6209f21f
21 changed files with 512 additions and 28 deletions

View file

@ -33,7 +33,7 @@ import java.util.UUID;
* *
* @author LevelX2 * @author LevelX2
*/ */
public class NightSoil extends mage.sets.fallenempires.NightSoil { public class NightSoil extends mage.sets.fallenempires.NightSoil1 {
public NightSoil(UUID ownerId) { public NightSoil(UUID ownerId) {
super(ownerId); super(ownerId);

View file

@ -33,7 +33,7 @@ import java.util.UUID;
* *
* @author fireshoes * @author fireshoes
*/ */
public class IcatianJavelineers extends mage.sets.fallenempires.IcatianJavelineers { public class IcatianJavelineers extends mage.sets.fallenempires.IcatianJavelineers1 {
public IcatianJavelineers(UUID ownerId) { public IcatianJavelineers(UUID ownerId) {
super(ownerId); super(ownerId);

View file

@ -34,21 +34,21 @@ import mage.constants.Rarity;
* *
* @author North * @author North
*/ */
public class GoblinGrenade extends mage.sets.magic2012.GoblinGrenade { public class GoblinGrenade1 extends mage.sets.magic2012.GoblinGrenade {
public GoblinGrenade(UUID ownerId) { public GoblinGrenade1(UUID ownerId) {
super(ownerId); super(ownerId);
this.cardNumber = 114; this.cardNumber = 114;
this.expansionSetCode = "FEM"; this.expansionSetCode = "FEM";
this.rarity = Rarity.COMMON; this.rarity = Rarity.COMMON;
} }
public GoblinGrenade(final GoblinGrenade card) { public GoblinGrenade1(final GoblinGrenade1 card) {
super(card); super(card);
} }
@Override @Override
public GoblinGrenade copy() { public GoblinGrenade1 copy() {
return new GoblinGrenade(this); return new GoblinGrenade1(this);
} }
} }

View file

@ -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 GoblinGrenade2 extends mage.sets.magic2012.GoblinGrenade {
public GoblinGrenade2(UUID ownerId) {
super(ownerId);
this.cardNumber = 115;
this.expansionSetCode = "FEM";
this.rarity = Rarity.COMMON;
}
public GoblinGrenade2(final GoblinGrenade2 card) {
super(card);
}
@Override
public GoblinGrenade2 copy() {
return new GoblinGrenade2(this);
}
}

View file

@ -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 GoblinGrenade3 extends mage.sets.magic2012.GoblinGrenade {
public GoblinGrenade3(UUID ownerId) {
super(ownerId);
this.cardNumber = 116;
this.expansionSetCode = "FEM";
this.rarity = Rarity.COMMON;
}
public GoblinGrenade3(final GoblinGrenade3 card) {
super(card);
}
@Override
public GoblinGrenade3 copy() {
return new GoblinGrenade3(this);
}
}

View file

@ -38,9 +38,9 @@ import mage.target.TargetPlayer;
* *
* @author jonubuu * @author jonubuu
*/ */
public class HymnToTourach extends CardImpl { public class HymnToTourach1 extends CardImpl {
public HymnToTourach(UUID ownerId) { public HymnToTourach1(UUID ownerId) {
super(ownerId, 12, "Hymn to Tourach", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{B}{B}"); super(ownerId, 12, "Hymn to Tourach", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{B}{B}");
this.expansionSetCode = "FEM"; this.expansionSetCode = "FEM";
@ -50,12 +50,12 @@ public class HymnToTourach extends CardImpl {
this.getSpellAbility().addTarget(new TargetPlayer()); this.getSpellAbility().addTarget(new TargetPlayer());
} }
public HymnToTourach(final HymnToTourach card) { public HymnToTourach1(final HymnToTourach1 card) {
super(card); super(card);
} }
@Override @Override
public HymnToTourach copy() { public HymnToTourach1 copy() {
return new HymnToTourach(this); return new HymnToTourach1(this);
} }
} }

View file

@ -0,0 +1,56 @@
/*
* 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.abilities.effects.common.discard.DiscardTargetEffect;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
import mage.target.TargetPlayer;
/**
*
* @author jonubuu
*/
public class HymnToTourach2 extends mage.sets.fallenempires.HymnToTourach1 {
public HymnToTourach2(UUID ownerId) {
super(ownerId);
this.cardNumber = 13;
}
public HymnToTourach2(final HymnToTourach2 card) {
super(card);
}
@Override
public HymnToTourach2 copy() {
return new HymnToTourach2(this);
}
}

View file

@ -0,0 +1,56 @@
/*
* 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.abilities.effects.common.discard.DiscardTargetEffect;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
import mage.target.TargetPlayer;
/**
*
* @author jonubuu
*/
public class HymnToTourach3 extends mage.sets.fallenempires.HymnToTourach1 {
public HymnToTourach3(UUID ownerId) {
super(ownerId);
this.cardNumber = 14;
}
public HymnToTourach3(final HymnToTourach3 card) {
super(card);
}
@Override
public HymnToTourach3 copy() {
return new HymnToTourach3(this);
}
}

View file

@ -0,0 +1,56 @@
/*
* 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.abilities.effects.common.discard.DiscardTargetEffect;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
import mage.target.TargetPlayer;
/**
*
* @author jonubuu
*/
public class HymnToTourach4 extends mage.sets.fallenempires.HymnToTourach1 {
public HymnToTourach4(UUID ownerId) {
super(ownerId);
this.cardNumber = 15;
}
public HymnToTourach4(final HymnToTourach4 card) {
super(card);
}
@Override
public HymnToTourach4 copy() {
return new HymnToTourach4(this);
}
}

View file

@ -47,9 +47,9 @@ import mage.target.common.TargetCreatureOrPlayer;
* *
* @author fireshoes * @author fireshoes
*/ */
public class IcatianJavelineers extends CardImpl { public class IcatianJavelineers1 extends CardImpl {
public IcatianJavelineers(UUID ownerId) { public IcatianJavelineers1(UUID ownerId) {
super(ownerId, 148, "Icatian Javelineers", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{W}"); super(ownerId, 148, "Icatian Javelineers", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{W}");
this.expansionSetCode = "FEM"; this.expansionSetCode = "FEM";
this.subtype.add("Human"); this.subtype.add("Human");
@ -67,12 +67,12 @@ public class IcatianJavelineers extends CardImpl {
this.addAbility(ability); this.addAbility(ability);
} }
public IcatianJavelineers(final IcatianJavelineers card) { public IcatianJavelineers1(final IcatianJavelineers1 card) {
super(card); super(card);
} }
@Override @Override
public IcatianJavelineers copy() { public IcatianJavelineers1 copy() {
return new IcatianJavelineers(this); return new IcatianJavelineers1(this);
} }
} }

View file

@ -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.timeshifted;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class IcatianJavelineers2 extends mage.sets.fallenempires.IcatianJavelineers1 {
public IcatianJavelineers2(UUID ownerId) {
super(ownerId);
this.cardNumber = 149;
}
public IcatianJavelineers2(final IcatianJavelineers2 card) {
super(card);
}
@Override
public IcatianJavelineers2 copy() {
return new IcatianJavelineers2(this);
}
}

View file

@ -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.timeshifted;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author fireshoes
*/
public class IcatianJavelineers3 extends mage.sets.fallenempires.IcatianJavelineers1 {
public IcatianJavelineers3(UUID ownerId) {
super(ownerId);
this.cardNumber = 150;
}
public IcatianJavelineers3(final IcatianJavelineers3 card) {
super(card);
}
@Override
public IcatianJavelineers3 copy() {
return new IcatianJavelineers3(this);
}
}

View file

@ -45,9 +45,9 @@ import mage.target.common.TargetCardInASingleGraveyard;
* *
* @author LevelX2 * @author LevelX2
*/ */
public class NightSoil extends CardImpl { public class NightSoil1 extends CardImpl {
public NightSoil(UUID ownerId) { public NightSoil1(UUID ownerId) {
super(ownerId, 80, "Night Soil", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{G}{G}"); super(ownerId, 80, "Night Soil", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{G}{G}");
this.expansionSetCode = "FEM"; this.expansionSetCode = "FEM";
@ -58,12 +58,12 @@ public class NightSoil extends CardImpl {
this.addAbility(ability); this.addAbility(ability);
} }
public NightSoil(final NightSoil card) { public NightSoil1(final NightSoil1 card) {
super(card); super(card);
} }
@Override @Override
public NightSoil copy() { public NightSoil1 copy() {
return new NightSoil(this); return new NightSoil1(this);
} }
} }

View file

@ -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.masterseditionii;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author LevelX2
*/
public class NightSoil2 extends mage.sets.fallenempires.NightSoil1 {
public NightSoil2(UUID ownerId) {
super(ownerId);
this.cardNumber = 81;
}
public NightSoil2(final NightSoil2 card) {
super(card);
}
@Override
public NightSoil2 copy() {
return new NightSoil2(this);
}
}

View file

@ -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.masterseditionii;
import java.util.UUID;
import mage.constants.Rarity;
/**
*
* @author LevelX2
*/
public class NightSoil3 extends mage.sets.fallenempires.NightSoil1 {
public NightSoil3(UUID ownerId) {
super(ownerId);
this.cardNumber = 82;
}
public NightSoil3(final NightSoil3 card) {
super(card);
}
@Override
public NightSoil3 copy() {
return new NightSoil3(this);
}
}

View file

@ -34,7 +34,7 @@ import mage.constants.Rarity;
* *
* @author LevelX2 * @author LevelX2
*/ */
public class HymnToTourach extends mage.sets.fallenempires.HymnToTourach { public class HymnToTourach extends mage.sets.fallenempires.HymnToTourach1 {
public HymnToTourach(UUID ownerId) { public HymnToTourach(UUID ownerId) {
super(ownerId); super(ownerId);

View file

@ -33,7 +33,7 @@ import java.util.UUID;
* *
* @author LevelX2 * @author LevelX2
*/ */
public class IcatianJavelineers extends mage.sets.fallenempires.IcatianJavelineers { public class IcatianJavelineers extends mage.sets.fallenempires.IcatianJavelineers1 {
public IcatianJavelineers(UUID ownerId) { public IcatianJavelineers(UUID ownerId) {
super(ownerId); super(ownerId);

View file

@ -34,7 +34,7 @@ import mage.constants.Rarity;
* *
* @author LevelX2 * @author LevelX2
*/ */
public class NightSoil extends mage.sets.fallenempires.NightSoil { public class NightSoil extends mage.sets.fallenempires.NightSoil1 {
public NightSoil(UUID ownerId) { public NightSoil(UUID ownerId) {
super(ownerId); super(ownerId);

View file

@ -34,7 +34,7 @@ import mage.constants.Rarity;
* *
* @author fireshoes * @author fireshoes
*/ */
public class IcatianJavelineers extends mage.sets.fallenempires.IcatianJavelineers { public class IcatianJavelineers extends mage.sets.fallenempires.IcatianJavelineers1 {
public IcatianJavelineers(UUID ownerId) { public IcatianJavelineers(UUID ownerId) {
super(ownerId); super(ownerId);

View file

@ -34,7 +34,7 @@ import mage.constants.Rarity;
* *
* @author LevelX2 * @author LevelX2
*/ */
public class HymnToTourach extends mage.sets.fallenempires.HymnToTourach { public class HymnToTourach extends mage.sets.fallenempires.HymnToTourach1 {
public HymnToTourach(UUID ownerId) { public HymnToTourach(UUID ownerId) {
super(ownerId); super(ownerId);

View file

@ -34,7 +34,7 @@ import mage.constants.Rarity;
* *
* @author fireshoes * @author fireshoes
*/ */
public class IcatianJavelineers extends mage.sets.fallenempires.IcatianJavelineers { public class IcatianJavelineers extends mage.sets.fallenempires.IcatianJavelineers1 {
public IcatianJavelineers(UUID ownerId) { public IcatianJavelineers(UUID ownerId) {
super(ownerId); super(ownerId);