From 49db840d77d4a0c4dd09662974f0b19d46a5bce6 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 30 Sep 2013 08:38:18 +0200 Subject: [PATCH] * Heroes vs. Monsters - Added duel set. --- .../client/util/sets/ConstructedFormats.java | 4 ++ .../plugins/card/dl/sources/GathererSets.java | 2 +- .../dl/sources/MagicCardsImageSource.java | 1 + .../src/main/resources/card-pictures-tok.txt | 3 ++ .../src/main/resources/image.url.properties | 2 +- Mage.Sets/src/mage/sets/Heroesvsmonsters.java | 49 +++++++++++++++++ .../sets/heroesvsmonsters/AnaxAndCymede.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/ArmoryGuard.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/Auramancer.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/BattleMastery.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/BeastWithin.java | 52 ++++++++++++++++++ .../mage/sets/heroesvsmonsters/BloodOgre.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/BondsOfFaith.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/BorosGuildgate.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/CavalryPegasus.java | 52 ++++++++++++++++++ .../mage/sets/heroesvsmonsters/Condemn.java | 52 ++++++++++++++++++ .../heroesvsmonsters/ConqueringManticore.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/CraterHellion.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/CrownedCeratok.java | 52 ++++++++++++++++++ .../heroesvsmonsters/DawnstrikePaladin.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/DeadlyRecluse.java | 52 ++++++++++++++++++ .../heroesvsmonsters/DestructiveRevelry.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/DragonBlood.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/FencingAce.java | 52 ++++++++++++++++++ .../heroesvsmonsters/FigureOfDestiny.java | 52 ++++++++++++++++++ .../heroesvsmonsters/FiresOfYavimaya.java | 52 ++++++++++++++++++ .../heroesvsmonsters/FreewindEquenaut.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/GhorClanSavage.java | 52 ++++++++++++++++++ .../heroesvsmonsters/GorehornMinotaurs.java | 52 ++++++++++++++++++ .../heroesvsmonsters/KamahlPitFighter.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/KazanduRefuge.java | 52 ++++++++++++++++++ .../mage/sets/heroesvsmonsters/MagmaJet.java | 52 ++++++++++++++++++ .../heroesvsmonsters/MomentOfHeroism.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/NewBenalia.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/NobilisOfWar.java | 52 ++++++++++++++++++ .../heroesvsmonsters/OrdealOfPurphoros.java | 52 ++++++++++++++++++ .../mage/sets/heroesvsmonsters/PayNoHeed.java | 52 ++++++++++++++++++ .../PolukranosWorldEater.java | 52 ++++++++++++++++++ .../mage/sets/heroesvsmonsters/PreyUpon.java | 52 ++++++++++++++++++ .../mage/sets/heroesvsmonsters/Pyroclasm.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/Pyrokinesis.java | 52 ++++++++++++++++++ .../mage/sets/heroesvsmonsters/Regrowth.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/Righteousness.java | 54 +++++++++++++++++++ .../sets/heroesvsmonsters/SatyrHedonist.java | 52 ++++++++++++++++++ .../heroesvsmonsters/SkarrgTheRagePits.java | 52 ++++++++++++++++++ .../heroesvsmonsters/SmiteTheMonstrous.java | 52 ++++++++++++++++++ .../heroesvsmonsters/SomberwaldVigilante.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/StunSniper.java | 52 ++++++++++++++++++ .../mage/sets/heroesvsmonsters/SunTitan.java | 52 ++++++++++++++++++ .../heroesvsmonsters/TerrifyingPresence.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/ThrabenValiant.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/TrollAscetic.java | 52 ++++++++++++++++++ .../heroesvsmonsters/TruefirePaladin.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/ValleyRannet.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/VoltCharge.java | 52 ++++++++++++++++++ .../sets/heroesvsmonsters/ZhurTaaDruid.java | 52 ++++++++++++++++++ Utils/known-sets.txt | 1 + 57 files changed, 2662 insertions(+), 2 deletions(-) create mode 100644 Mage.Sets/src/mage/sets/Heroesvsmonsters.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/AnaxAndCymede.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/ArmoryGuard.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/Auramancer.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/BattleMastery.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/BeastWithin.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/BloodOgre.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/BondsOfFaith.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/BorosGuildgate.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/CavalryPegasus.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/Condemn.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/ConqueringManticore.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/CraterHellion.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/CrownedCeratok.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/DawnstrikePaladin.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/DeadlyRecluse.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/DestructiveRevelry.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/DragonBlood.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/FencingAce.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/FigureOfDestiny.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/FiresOfYavimaya.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/FreewindEquenaut.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/GhorClanSavage.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/GorehornMinotaurs.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/KamahlPitFighter.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/KazanduRefuge.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/MagmaJet.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/MomentOfHeroism.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/NewBenalia.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/NobilisOfWar.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/OrdealOfPurphoros.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/PayNoHeed.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/PolukranosWorldEater.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/PreyUpon.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/Pyroclasm.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/Pyrokinesis.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/Regrowth.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/Righteousness.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/SatyrHedonist.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/SkarrgTheRagePits.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/SmiteTheMonstrous.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/SomberwaldVigilante.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/StunSniper.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/SunTitan.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/TerrifyingPresence.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/ThrabenValiant.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/TrollAscetic.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/TruefirePaladin.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/ValleyRannet.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/VoltCharge.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/ZhurTaaDruid.java diff --git a/Mage.Client/src/main/java/mage/client/util/sets/ConstructedFormats.java b/Mage.Client/src/main/java/mage/client/util/sets/ConstructedFormats.java index e26282a9716..8dce2c4555e 100644 --- a/Mage.Client/src/main/java/mage/client/util/sets/ConstructedFormats.java +++ b/Mage.Client/src/main/java/mage/client/util/sets/ConstructedFormats.java @@ -46,6 +46,7 @@ public class ConstructedFormats { "Homelands", "Fallen Empires", "The Dark", "Legends", "Antiquities", "Arabian Nights", "Revised Edition", "Unlimited Edition", "Limited Edition Beta", "Limited Edition Alpha", "Guru", + "Duel Decks: Heroes vs. Monsters", "Duel Decks: Elspeth vs. Tezzeret" }; @@ -377,6 +378,9 @@ public class ConstructedFormats { if (format.equals("Duel Decks: Elspeth vs. Tezzeret")) { return Arrays.asList("DDF"); } + if (format.equals("Duel Decks: Heroes vs. Monsters")) { + return Arrays.asList("DDL"); + } if (format.equals("- Standard")) { return standard; diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/GathererSets.java b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/GathererSets.java index 7f61c5b8b61..2657c74affa 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/GathererSets.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/GathererSets.java @@ -33,7 +33,7 @@ public class GathererSets implements Iterable { "SHM", "EVE"}; private static final String[] withMythics = {"M10", "M11", "M12", "M13", "M14", - "DDF", + "DDF", "DDL", "ALA", "CON", "ARB", "ZEN", "WWK", "ROE", "SOM", "MBS", "NPH", diff --git a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/MagicCardsImageSource.java b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/MagicCardsImageSource.java index fe211751493..9a3d4ae4c14 100644 --- a/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/MagicCardsImageSource.java +++ b/Mage.Client/src/main/java/org/mage/plugins/card/dl/sources/MagicCardsImageSource.java @@ -18,6 +18,7 @@ public class MagicCardsImageSource implements CardImageSource { { put("THS", "theros"); put("M14", "magic-2014"); + put("DDL", "duel-decks-heroes-vs-monsters"); put("MMA", "modern-masters"); put("DGM", "dragons-maze"); put("GTC", "gatecrash"); diff --git a/Mage.Client/src/main/resources/card-pictures-tok.txt b/Mage.Client/src/main/resources/card-pictures-tok.txt index d40ba902152..de12698f46f 100644 --- a/Mage.Client/src/main/resources/card-pictures-tok.txt +++ b/Mage.Client/src/main/resources/card-pictures-tok.txt @@ -10,6 +10,9 @@ |Generate|TOK:THS|Golem| |Generate|EMBLEM-:THS|Elspeth, Suns Champion| +|Generate|TOK:DDL|Griffin| +|Generate|TOK:DDL|Beast| + |Generate|TOK:MMA|Giant-Warrior| |Generate|TOK:MMA|Kithkin-Soldier| |Generate|TOK:MMA|Soldier| diff --git a/Mage.Client/src/main/resources/image.url.properties b/Mage.Client/src/main/resources/image.url.properties index c4e5082abf6..12b2d285c6a 100644 --- a/Mage.Client/src/main/resources/image.url.properties +++ b/Mage.Client/src/main/resources/image.url.properties @@ -62,4 +62,4 @@ mpr=mprp # Remove DGM as sson as the images can be downloaded ignore.urls=TOK,EMBLEM # sets ordered by release time (newest goes first) -token.lookup.order=THS,M14,MMA,DGM,GTC,RTR,M13,AVR,DDI,DKA,ISD,M12,NPH,MBS,SOM,M11,ROE,PVC,WWK,ZEN,M10,GVL,ARB,DVD,CFX,JVC,ALA,EVE,SHM,EVG,MOR,LRW,10E,CLS,CHK \ No newline at end of file +token.lookup.order=THS,DDL,M14,MMA,DGM,GTC,RTR,M13,AVR,DDI,DKA,ISD,M12,NPH,MBS,SOM,M11,ROE,PVC,WWK,ZEN,M10,GVL,ARB,DVD,CFX,JVC,ALA,EVE,SHM,EVG,MOR,LRW,10E,CLS,CHK \ No newline at end of file diff --git a/Mage.Sets/src/mage/sets/Heroesvsmonsters.java b/Mage.Sets/src/mage/sets/Heroesvsmonsters.java new file mode 100644 index 00000000000..37a30262863 --- /dev/null +++ b/Mage.Sets/src/mage/sets/Heroesvsmonsters.java @@ -0,0 +1,49 @@ +/* + * 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; + +import java.util.GregorianCalendar; +import mage.cards.ExpansionSet; +import mage.constants.SetType; + +/** + * + * @author LevelX2 + */ + +public class Heroesvsmonsters extends ExpansionSet { + private static final Heroesvsmonsters fINSTANCE = new Heroesvsmonsters(); + + public static Heroesvsmonsters getInstance() { + return fINSTANCE; + } + + private Heroesvsmonsters() { + super("Duel Decks: Heroes vs. Monsters", "DDL", "mage.sets.heroesvsmonsters", new GregorianCalendar(2013, 9, 6).getTime(), SetType.REPRINT); + } +} \ No newline at end of file diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/AnaxAndCymede.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/AnaxAndCymede.java new file mode 100644 index 00000000000..c95e894e4a7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/AnaxAndCymede.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class AnaxAndCymede extends mage.sets.theros.AnaxAndCymede { + + public AnaxAndCymede(UUID ownerId) { + super(ownerId); + this.cardNumber = 11; + this.expansionSetCode = "DDL"; + } + + public AnaxAndCymede(final AnaxAndCymede card) { + super(card); + } + + @Override + public AnaxAndCymede copy() { + return new AnaxAndCymede(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/ArmoryGuard.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/ArmoryGuard.java new file mode 100644 index 00000000000..2def856cb99 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/ArmoryGuard.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class ArmoryGuard extends mage.sets.returntoravnica.ArmoryGuard { + + public ArmoryGuard(UUID ownerId) { + super(ownerId); + this.cardNumber = 12; + this.expansionSetCode = "DDL"; + } + + public ArmoryGuard(final ArmoryGuard card) { + super(card); + } + + @Override + public ArmoryGuard copy() { + return new ArmoryGuard(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/Auramancer.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/Auramancer.java new file mode 100644 index 00000000000..1634c358d44 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/Auramancer.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class Auramancer extends mage.sets.magic2012.Auramancer { + + public Auramancer(UUID ownerId) { + super(ownerId); + this.cardNumber = 9; + this.expansionSetCode = "DDL"; + } + + public Auramancer(final Auramancer card) { + super(card); + } + + @Override + public Auramancer copy() { + return new Auramancer(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/BattleMastery.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/BattleMastery.java new file mode 100644 index 00000000000..80d4e3bb760 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/BattleMastery.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class BattleMastery extends mage.sets.lorwyn.BattleMastery { + + public BattleMastery(UUID ownerId) { + super(ownerId); + this.cardNumber = 27; + this.expansionSetCode = "DDL"; + } + + public BattleMastery(final BattleMastery card) { + super(card); + } + + @Override + public BattleMastery copy() { + return new BattleMastery(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/BeastWithin.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/BeastWithin.java new file mode 100644 index 00000000000..36a41732a0d --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/BeastWithin.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class BeastWithin extends mage.sets.newphyrexia.BeastWithin { + + public BeastWithin(UUID ownerId) { + super(ownerId); + this.cardNumber = 69; + this.expansionSetCode = "DDL"; + } + + public BeastWithin(final BeastWithin card) { + super(card); + } + + @Override + public BeastWithin copy() { + return new BeastWithin(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/BloodOgre.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/BloodOgre.java new file mode 100644 index 00000000000..614148decf3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/BloodOgre.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class BloodOgre extends mage.sets.magic2012.BloodOgre { + + public BloodOgre(UUID ownerId) { + super(ownerId); + this.cardNumber = 49; + this.expansionSetCode = "DDL"; + } + + public BloodOgre(final BloodOgre card) { + super(card); + } + + @Override + public BloodOgre copy() { + return new BloodOgre(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/BondsOfFaith.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/BondsOfFaith.java new file mode 100644 index 00000000000..aff99d8044e --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/BondsOfFaith.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class BondsOfFaith extends mage.sets.innistrad.BondsOfFaith { + + public BondsOfFaith(UUID ownerId) { + super(ownerId); + this.cardNumber = 24; + this.expansionSetCode = "DDL"; + } + + public BondsOfFaith(final BondsOfFaith card) { + super(card); + } + + @Override + public BondsOfFaith copy() { + return new BondsOfFaith(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/BorosGuildgate.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/BorosGuildgate.java new file mode 100644 index 00000000000..13eaa2b115f --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/BorosGuildgate.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class BorosGuildgate extends mage.sets.gatecrash.BorosGuildgate { + + public BorosGuildgate(UUID ownerId) { + super(ownerId); + this.cardNumber = 33; + this.expansionSetCode = "DDL"; + } + + public BorosGuildgate(final BorosGuildgate card) { + super(card); + } + + @Override + public BorosGuildgate copy() { + return new BorosGuildgate(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/CavalryPegasus.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/CavalryPegasus.java new file mode 100644 index 00000000000..ff98ee28934 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/CavalryPegasus.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class CavalryPegasus extends mage.sets.theros.CavalryPegasus { + + public CavalryPegasus(UUID ownerId) { + super(ownerId); + this.cardNumber = 4; + this.expansionSetCode = "DDL"; + } + + public CavalryPegasus(final CavalryPegasus card) { + super(card); + } + + @Override + public CavalryPegasus copy() { + return new CavalryPegasus(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/Condemn.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/Condemn.java new file mode 100644 index 00000000000..c1228e0222c --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/Condemn.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class Condemn extends mage.sets.tenth.Condemn { + + public Condemn(UUID ownerId) { + super(ownerId); + this.cardNumber = 17; + this.expansionSetCode = "DDL"; + } + + public Condemn(final Condemn card) { + super(card); + } + + @Override + public Condemn copy() { + return new Condemn(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/ConqueringManticore.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/ConqueringManticore.java new file mode 100644 index 00000000000..8f983ae475a --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/ConqueringManticore.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class ConqueringManticore extends mage.sets.riseoftheeldrazi.ConqueringManticore { + + public ConqueringManticore(UUID ownerId) { + super(ownerId); + this.cardNumber = 55; + this.expansionSetCode = "DDL"; + } + + public ConqueringManticore(final ConqueringManticore card) { + super(card); + } + + @Override + public ConqueringManticore copy() { + return new ConqueringManticore(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/CraterHellion.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/CraterHellion.java new file mode 100644 index 00000000000..04d454ee524 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/CraterHellion.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class CraterHellion extends mage.sets.urzassaga.CraterHellion { + + public CraterHellion(UUID ownerId) { + super(ownerId); + this.cardNumber = 56; + this.expansionSetCode = "DDL"; + } + + public CraterHellion(final CraterHellion card) { + super(card); + } + + @Override + public CraterHellion copy() { + return new CraterHellion(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/CrownedCeratok.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/CrownedCeratok.java new file mode 100644 index 00000000000..e1f019abff1 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/CrownedCeratok.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class CrownedCeratok extends mage.sets.gatecrash.CrownedCeratok { + + public CrownedCeratok(UUID ownerId) { + super(ownerId); + this.cardNumber = 51; + this.expansionSetCode = "DDL"; + } + + public CrownedCeratok(final CrownedCeratok card) { + super(card); + } + + @Override + public CrownedCeratok copy() { + return new CrownedCeratok(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/DawnstrikePaladin.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/DawnstrikePaladin.java new file mode 100644 index 00000000000..f5d7691a180 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/DawnstrikePaladin.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class DawnstrikePaladin extends mage.sets.magic2014.DawnstrikePaladin { + + public DawnstrikePaladin(UUID ownerId) { + super(ownerId); + this.cardNumber = 14; + this.expansionSetCode = "DDL"; + } + + public DawnstrikePaladin(final DawnstrikePaladin card) { + super(card); + } + + @Override + public DawnstrikePaladin copy() { + return new DawnstrikePaladin(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/DeadlyRecluse.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/DeadlyRecluse.java new file mode 100644 index 00000000000..c3a9cdd65c1 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/DeadlyRecluse.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class DeadlyRecluse extends mage.sets.magic2010.DeadlyRecluse { + + public DeadlyRecluse(UUID ownerId) { + super(ownerId); + this.cardNumber = 45; + this.expansionSetCode = "DDL"; + } + + public DeadlyRecluse(final DeadlyRecluse card) { + super(card); + } + + @Override + public DeadlyRecluse copy() { + return new DeadlyRecluse(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/DestructiveRevelry.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/DestructiveRevelry.java new file mode 100644 index 00000000000..c242afd9f44 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/DestructiveRevelry.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class DestructiveRevelry extends mage.sets.theros.DestructiveRevelry { + + public DestructiveRevelry(UUID ownerId) { + super(ownerId); + this.cardNumber = 66; + this.expansionSetCode = "DDL"; + } + + public DestructiveRevelry(final DestructiveRevelry card) { + super(card); + } + + @Override + public DestructiveRevelry copy() { + return new DestructiveRevelry(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/DragonBlood.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/DragonBlood.java new file mode 100644 index 00000000000..c22c2a40a5f --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/DragonBlood.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class DragonBlood extends mage.sets.mirrodin.DragonBlood { + + public DragonBlood(UUID ownerId) { + super(ownerId); + this.cardNumber = 67; + this.expansionSetCode = "DDL"; + } + + public DragonBlood(final DragonBlood card) { + super(card); + } + + @Override + public DragonBlood copy() { + return new DragonBlood(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/FencingAce.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/FencingAce.java new file mode 100644 index 00000000000..f5687af366c --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/FencingAce.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class FencingAce extends mage.sets.returntoravnica.FencingAce { + + public FencingAce(UUID ownerId) { + super(ownerId); + this.cardNumber = 5; + this.expansionSetCode = "DDL"; + } + + public FencingAce(final FencingAce card) { + super(card); + } + + @Override + public FencingAce copy() { + return new FencingAce(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/FigureOfDestiny.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/FigureOfDestiny.java new file mode 100644 index 00000000000..0ca6fda5a02 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/FigureOfDestiny.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class FigureOfDestiny extends mage.sets.eventide.FigureOfDestiny { + + public FigureOfDestiny(UUID ownerId) { + super(ownerId); + this.cardNumber = 3; + this.expansionSetCode = "DDL"; + } + + public FigureOfDestiny(final FigureOfDestiny card) { + super(card); + } + + @Override + public FigureOfDestiny copy() { + return new FigureOfDestiny(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/FiresOfYavimaya.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/FiresOfYavimaya.java new file mode 100644 index 00000000000..16b31d37740 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/FiresOfYavimaya.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class FiresOfYavimaya extends mage.sets.planechase.FiresOfYavimaya { + + public FiresOfYavimaya(UUID ownerId) { + super(ownerId); + this.cardNumber = 70; + this.expansionSetCode = "DDL"; + } + + public FiresOfYavimaya(final FiresOfYavimaya card) { + super(card); + } + + @Override + public FiresOfYavimaya copy() { + return new FiresOfYavimaya(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/FreewindEquenaut.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/FreewindEquenaut.java new file mode 100644 index 00000000000..24309dd4a7b --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/FreewindEquenaut.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class FreewindEquenaut extends mage.sets.dissension.FreewindEquenaut { + + public FreewindEquenaut(UUID ownerId) { + super(ownerId); + this.cardNumber = 10; + this.expansionSetCode = "DDL"; + } + + public FreewindEquenaut(final FreewindEquenaut card) { + super(card); + } + + @Override + public FreewindEquenaut copy() { + return new FreewindEquenaut(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/GhorClanSavage.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/GhorClanSavage.java new file mode 100644 index 00000000000..1f38a4578be --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/GhorClanSavage.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class GhorClanSavage extends mage.sets.guildpact.GhorClanSavage { + + public GhorClanSavage(UUID ownerId) { + super(ownerId); + this.cardNumber = 53; + this.expansionSetCode = "DDL"; + } + + public GhorClanSavage(final GhorClanSavage card) { + super(card); + } + + @Override + public GhorClanSavage copy() { + return new GhorClanSavage(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/GorehornMinotaurs.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/GorehornMinotaurs.java new file mode 100644 index 00000000000..1faad4f86ea --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/GorehornMinotaurs.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class GorehornMinotaurs extends mage.sets.magic2012.GorehornMinotaurs { + + public GorehornMinotaurs(UUID ownerId) { + super(ownerId); + this.cardNumber = 52; + this.expansionSetCode = "DDL"; + } + + public GorehornMinotaurs(final GorehornMinotaurs card) { + super(card); + } + + @Override + public GorehornMinotaurs copy() { + return new GorehornMinotaurs(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/KamahlPitFighter.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/KamahlPitFighter.java new file mode 100644 index 00000000000..fc0dbf2383b --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/KamahlPitFighter.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class KamahlPitFighter extends mage.sets.tenth.KamahlPitFighter { + + public KamahlPitFighter(UUID ownerId) { + super(ownerId); + this.cardNumber = 16; + this.expansionSetCode = "DDL"; + } + + public KamahlPitFighter(final KamahlPitFighter card) { + super(card); + } + + @Override + public KamahlPitFighter copy() { + return new KamahlPitFighter(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/KazanduRefuge.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/KazanduRefuge.java new file mode 100644 index 00000000000..99d7bc69e1a --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/KazanduRefuge.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class KazanduRefuge extends mage.sets.zendikar.KazanduRefuge { + + public KazanduRefuge(UUID ownerId) { + super(ownerId); + this.cardNumber = 71; + this.expansionSetCode = "DDL"; + } + + public KazanduRefuge(final KazanduRefuge card) { + super(card); + } + + @Override + public KazanduRefuge copy() { + return new KazanduRefuge(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/MagmaJet.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/MagmaJet.java new file mode 100644 index 00000000000..6003fb5f92b --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/MagmaJet.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class MagmaJet extends mage.sets.fifthdawn.MagmaJet { + + public MagmaJet(UUID ownerId) { + super(ownerId); + this.cardNumber = 22; + this.expansionSetCode = "DDL"; + } + + public MagmaJet(final MagmaJet card) { + super(card); + } + + @Override + public MagmaJet copy() { + return new MagmaJet(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/MomentOfHeroism.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/MomentOfHeroism.java new file mode 100644 index 00000000000..8b8a1e5352c --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/MomentOfHeroism.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class MomentOfHeroism extends mage.sets.innistrad.MomentOfHeroism { + + public MomentOfHeroism(UUID ownerId) { + super(ownerId); + this.cardNumber = 25; + this.expansionSetCode = "DDL"; + } + + public MomentOfHeroism(final MomentOfHeroism card) { + super(card); + } + + @Override + public MomentOfHeroism copy() { + return new MomentOfHeroism(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/NewBenalia.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/NewBenalia.java new file mode 100644 index 00000000000..2d19ad3d7f4 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/NewBenalia.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class NewBenalia extends mage.sets.futuresight.NewBenalia { + + public NewBenalia(UUID ownerId) { + super(ownerId); + this.cardNumber = 34; + this.expansionSetCode = "DDL"; + } + + public NewBenalia(final NewBenalia card) { + super(card); + } + + @Override + public NewBenalia copy() { + return new NewBenalia(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/NobilisOfWar.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/NobilisOfWar.java new file mode 100644 index 00000000000..36deb333eb7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/NobilisOfWar.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class NobilisOfWar extends mage.sets.eventide.NobilisOfWar { + + public NobilisOfWar(UUID ownerId) { + super(ownerId); + this.cardNumber = 15; + this.expansionSetCode = "DDL"; + } + + public NobilisOfWar(final NobilisOfWar card) { + super(card); + } + + @Override + public NobilisOfWar copy() { + return new NobilisOfWar(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/OrdealOfPurphoros.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/OrdealOfPurphoros.java new file mode 100644 index 00000000000..cf993efa5d7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/OrdealOfPurphoros.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class OrdealOfPurphoros extends mage.sets.theros.OrdealOfPurphoros { + + public OrdealOfPurphoros(UUID ownerId) { + super(ownerId); + this.cardNumber = 23; + this.expansionSetCode = "DDL"; + } + + public OrdealOfPurphoros(final OrdealOfPurphoros card) { + super(card); + } + + @Override + public OrdealOfPurphoros copy() { + return new OrdealOfPurphoros(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/PayNoHeed.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/PayNoHeed.java new file mode 100644 index 00000000000..fb6e9d74f88 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/PayNoHeed.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class PayNoHeed extends mage.sets.magic2014.PayNoHeed { + + public PayNoHeed(UUID ownerId) { + super(ownerId); + this.cardNumber = 19; + this.expansionSetCode = "DDL"; + } + + public PayNoHeed(final PayNoHeed card) { + super(card); + } + + @Override + public PayNoHeed copy() { + return new PayNoHeed(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/PolukranosWorldEater.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/PolukranosWorldEater.java new file mode 100644 index 00000000000..dab42989feb --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/PolukranosWorldEater.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class PolukranosWorldEater extends mage.sets.theros.PolukranosWorldEater { + + public PolukranosWorldEater(UUID ownerId) { + super(ownerId); + this.cardNumber = 43; + this.expansionSetCode = "DDL"; + } + + public PolukranosWorldEater(final PolukranosWorldEater card) { + super(card); + } + + @Override + public PolukranosWorldEater copy() { + return new PolukranosWorldEater(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/PreyUpon.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/PreyUpon.java new file mode 100644 index 00000000000..72826f86a5c --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/PreyUpon.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class PreyUpon extends mage.sets.innistrad.PreyUpon { + + public PreyUpon(UUID ownerId) { + super(ownerId); + this.cardNumber = 62; + this.expansionSetCode = "DDL"; + } + + public PreyUpon(final PreyUpon card) { + super(card); + } + + @Override + public PreyUpon copy() { + return new PreyUpon(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/Pyroclasm.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/Pyroclasm.java new file mode 100644 index 00000000000..8ddbf8a42fd --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/Pyroclasm.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class Pyroclasm extends mage.sets.tenth.Pyroclasm { + + public Pyroclasm(UUID ownerId) { + super(ownerId); + this.cardNumber = 63; + this.expansionSetCode = "DDL"; + } + + public Pyroclasm(final Pyroclasm card) { + super(card); + } + + @Override + public Pyroclasm copy() { + return new Pyroclasm(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/Pyrokinesis.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/Pyrokinesis.java new file mode 100644 index 00000000000..8dcabcec356 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/Pyrokinesis.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class Pyrokinesis extends mage.sets.alliances.Pyrokinesis { + + public Pyrokinesis(UUID ownerId) { + super(ownerId); + this.cardNumber = 32; + this.expansionSetCode = "DDL"; + } + + public Pyrokinesis(final Pyrokinesis card) { + super(card); + } + + @Override + public Pyrokinesis copy() { + return new Pyrokinesis(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/Regrowth.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/Regrowth.java new file mode 100644 index 00000000000..e6a87bb27bc --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/Regrowth.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class Regrowth extends mage.sets.limitedalpha.Regrowth { + + public Regrowth(UUID ownerId) { + super(ownerId); + this.cardNumber = 64; + this.expansionSetCode = "DDL"; + } + + public Regrowth(final Regrowth card) { + super(card); + } + + @Override + public Regrowth copy() { + return new Regrowth(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/Righteousness.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/Righteousness.java new file mode 100644 index 00000000000..f372c7013d4 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/Righteousness.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.heroesvsmonsters; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author LevelX2 + */ +public class Righteousness extends mage.sets.tenth.Righteousness { + + public Righteousness(UUID ownerId) { + super(ownerId); + this.cardNumber = 20; + this.expansionSetCode = "DDL"; + this.rarity = Rarity.UNCOMMON; + } + + public Righteousness(final Righteousness card) { + super(card); + } + + @Override + public Righteousness copy() { + return new Righteousness(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/SatyrHedonist.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/SatyrHedonist.java new file mode 100644 index 00000000000..4ba2a5a96e6 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/SatyrHedonist.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class SatyrHedonist extends mage.sets.theros.SatyrHedonist { + + public SatyrHedonist(UUID ownerId) { + super(ownerId); + this.cardNumber = 47; + this.expansionSetCode = "DDL"; + } + + public SatyrHedonist(final SatyrHedonist card) { + super(card); + } + + @Override + public SatyrHedonist copy() { + return new SatyrHedonist(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/SkarrgTheRagePits.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/SkarrgTheRagePits.java new file mode 100644 index 00000000000..16bfb355910 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/SkarrgTheRagePits.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class SkarrgTheRagePits extends mage.sets.guildpact.SkarrgTheRagePits { + + public SkarrgTheRagePits(UUID ownerId) { + super(ownerId); + this.cardNumber = 73; + this.expansionSetCode = "DDL"; + } + + public SkarrgTheRagePits(final SkarrgTheRagePits card) { + super(card); + } + + @Override + public SkarrgTheRagePits copy() { + return new SkarrgTheRagePits(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/SmiteTheMonstrous.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/SmiteTheMonstrous.java new file mode 100644 index 00000000000..0adadfe08a0 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/SmiteTheMonstrous.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class SmiteTheMonstrous extends mage.sets.innistrad.SmiteTheMonstrous { + + public SmiteTheMonstrous(UUID ownerId) { + super(ownerId); + this.cardNumber = 29; + this.expansionSetCode = "DDL"; + } + + public SmiteTheMonstrous(final SmiteTheMonstrous card) { + super(card); + } + + @Override + public SmiteTheMonstrous copy() { + return new SmiteTheMonstrous(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/SomberwaldVigilante.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/SomberwaldVigilante.java new file mode 100644 index 00000000000..f75779e17fb --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/SomberwaldVigilante.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class SomberwaldVigilante extends mage.sets.avacynrestored.SomberwaldVigilante { + + public SomberwaldVigilante(UUID ownerId) { + super(ownerId); + this.cardNumber = 2; + this.expansionSetCode = "DDL"; + } + + public SomberwaldVigilante(final SomberwaldVigilante card) { + super(card); + } + + @Override + public SomberwaldVigilante copy() { + return new SomberwaldVigilante(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/StunSniper.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/StunSniper.java new file mode 100644 index 00000000000..24ad97ddea9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/StunSniper.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class StunSniper extends mage.sets.alarareborn.StunSniper { + + public StunSniper(UUID ownerId) { + super(ownerId); + this.cardNumber = 7; + this.expansionSetCode = "DDL"; + } + + public StunSniper(final StunSniper card) { + super(card); + } + + @Override + public StunSniper copy() { + return new StunSniper(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/SunTitan.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/SunTitan.java new file mode 100644 index 00000000000..a81e98a4f67 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/SunTitan.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class SunTitan extends mage.sets.magic2011.SunTitan { + + public SunTitan(UUID ownerId) { + super(ownerId); + this.cardNumber = 1; + this.expansionSetCode = "DDL"; + } + + public SunTitan(final SunTitan card) { + super(card); + } + + @Override + public SunTitan copy() { + return new SunTitan(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/TerrifyingPresence.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/TerrifyingPresence.java new file mode 100644 index 00000000000..fc0db4436b9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/TerrifyingPresence.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class TerrifyingPresence extends mage.sets.avacynrestored.TerrifyingPresence { + + public TerrifyingPresence(UUID ownerId) { + super(ownerId); + this.cardNumber = 65; + this.expansionSetCode = "DDL"; + } + + public TerrifyingPresence(final TerrifyingPresence card) { + super(card); + } + + @Override + public TerrifyingPresence copy() { + return new TerrifyingPresence(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/ThrabenValiant.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/ThrabenValiant.java new file mode 100644 index 00000000000..10d98d54e58 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/ThrabenValiant.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class ThrabenValiant extends mage.sets.avacynrestored.ThrabenValiant { + + public ThrabenValiant(UUID ownerId) { + super(ownerId); + this.cardNumber = 6; + this.expansionSetCode = "DDL"; + } + + public ThrabenValiant(final ThrabenValiant card) { + super(card); + } + + @Override + public ThrabenValiant copy() { + return new ThrabenValiant(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/TrollAscetic.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/TrollAscetic.java new file mode 100644 index 00000000000..b7cc59947e8 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/TrollAscetic.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class TrollAscetic extends mage.sets.mirrodin.TrollAscetic { + + public TrollAscetic(UUID ownerId) { + super(ownerId); + this.cardNumber = 50; + this.expansionSetCode = "DDL"; + } + + public TrollAscetic(final TrollAscetic card) { + super(card); + } + + @Override + public TrollAscetic copy() { + return new TrollAscetic(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/TruefirePaladin.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/TruefirePaladin.java new file mode 100644 index 00000000000..756e6d96987 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/TruefirePaladin.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class TruefirePaladin extends mage.sets.gatecrash.TruefirePaladin { + + public TruefirePaladin(UUID ownerId) { + super(ownerId); + this.cardNumber = 8; + this.expansionSetCode = "DDL"; + } + + public TruefirePaladin(final TruefirePaladin card) { + super(card); + } + + @Override + public TruefirePaladin copy() { + return new TruefirePaladin(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/ValleyRannet.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/ValleyRannet.java new file mode 100644 index 00000000000..da7422749e3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/ValleyRannet.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class ValleyRannet extends mage.sets.alarareborn.ValleyRannet { + + public ValleyRannet(UUID ownerId) { + super(ownerId); + this.cardNumber = 58; + this.expansionSetCode = "DDL"; + } + + public ValleyRannet(final ValleyRannet card) { + super(card); + } + + @Override + public ValleyRannet copy() { + return new ValleyRannet(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/VoltCharge.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/VoltCharge.java new file mode 100644 index 00000000000..1b50bf8323f --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/VoltCharge.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class VoltCharge extends mage.sets.newphyrexia.VoltCharge { + + public VoltCharge(UUID ownerId) { + super(ownerId); + this.cardNumber = 68; + this.expansionSetCode = "DDL"; + } + + public VoltCharge(final VoltCharge card) { + super(card); + } + + @Override + public VoltCharge copy() { + return new VoltCharge(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/ZhurTaaDruid.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/ZhurTaaDruid.java new file mode 100644 index 00000000000..66bb29f7440 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/ZhurTaaDruid.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.heroesvsmonsters; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class ZhurTaaDruid extends mage.sets.dragonsmaze.ZhurTaaDruid { + + public ZhurTaaDruid(UUID ownerId) { + super(ownerId); + this.cardNumber = 48; + this.expansionSetCode = "DDL"; + } + + public ZhurTaaDruid(final ZhurTaaDruid card) { + super(card); + } + + @Override + public ZhurTaaDruid copy() { + return new ZhurTaaDruid(this); + } +} diff --git a/Utils/known-sets.txt b/Utils/known-sets.txt index aac8e0387a6..aaaa4e66873 100644 --- a/Utils/known-sets.txt +++ b/Utils/known-sets.txt @@ -16,6 +16,7 @@ Magic 2013|magic2013| Magic 2014|magic2014| Planechase|planechase| Planechase 2012 Edition|planechase2012| +Duel Decks: Heroes vs. Monsters|heroesvsmonsters| Duel Decks: Elspeth vs. Tezzeret|elspethvstezzeret| Arabian Nights|arabiannights| Antiquities|antiquities|