From b6c0433fa298fa23910417e5893f27bb6d8a7dcf Mon Sep 17 00:00:00 2001 From: drmDev Date: Sat, 20 Aug 2016 09:20:16 -0400 Subject: [PATCH 1/9] [Conspiracy:TTC] Recruiter of the Guard impl --- .../RecruiterOfTheGuard.java | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/RecruiterOfTheGuard.java diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/RecruiterOfTheGuard.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RecruiterOfTheGuard.java new file mode 100644 index 0000000000..ca06d61fed --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RecruiterOfTheGuard.java @@ -0,0 +1,75 @@ +/* + * 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.conspiracytakethecrown; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.filter.Filter; +import mage.filter.common.FilterCreatureCard; +import mage.filter.predicate.mageobject.ToughnessPredicate; +import mage.target.common.TargetCardInLibrary; + +/** + * + * @author escplan9 (Derek Monturo - dmontur1 at gmail dot com) + */ +public class RecruiterOfTheGuard extends CardImpl { + + private static final FilterCreatureCard filter = new FilterCreatureCard("a creature card with toughness 2 or less"); + static { + filter.add(new ToughnessPredicate(Filter.ComparisonType.LessThan, 3)); + } + + public RecruiterOfTheGuard(UUID ownerId) { + super(ownerId, 22, "Recruiter of the Guard", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{W}"); + this.expansionSetCode = "CN2"; + this.subtype.add("Human"); + this.subtype.add("Soldier"); + this.power = new MageInt(1); + this.toughness = new MageInt(1); + + // When Recruiter of the Guard enters the battlefield, you may search your library for a creature card with toughness 2 or less, + // reveal it, put it into your hand, then shuffle your library. + this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInHandEffect( + new TargetCardInLibrary(filter), true, true), true)); + } + + public RecruiterOfTheGuard(final RecruiterOfTheGuard card) { + super(card); + } + + @Override + public RecruiterOfTheGuard copy() { + return new RecruiterOfTheGuard(this); + } +} From 4a708e4dc0838ad11e15b2eafe35ec91d746279b Mon Sep 17 00:00:00 2001 From: fireshoes Date: Sun, 21 Aug 2016 09:24:55 -0500 Subject: [PATCH 2/9] [CN2] Added 8/20 new card and white reprint spoilers to mtg-cards-data.txt. Added white reprints. --- .../conspiracytakethecrown/Disenchant.java | 52 +++++++++++++++++++ .../DoomedTraveler.java | 52 +++++++++++++++++++ .../conspiracytakethecrown/FaithsReward.java | 52 +++++++++++++++++++ .../GhostlyPossession.java | 52 +++++++++++++++++++ .../conspiracytakethecrown/GhostlyPrison.java | 52 +++++++++++++++++++ .../GleamOfResistance.java | 52 +++++++++++++++++++ .../conspiracytakethecrown/GodsWilling.java | 52 +++++++++++++++++++ .../GuardianOfTheGateless.java | 52 +++++++++++++++++++ .../conspiracytakethecrown/HailOfArrows.java | 52 +++++++++++++++++++ .../HollowhengeSpirit.java | 52 +++++++++++++++++++ .../HundredHandedOne.java | 52 +++++++++++++++++++ .../sets/conspiracytakethecrown/KillShot.java | 52 +++++++++++++++++++ .../sets/conspiracytakethecrown/Pariah.java | 52 +++++++++++++++++++ .../conspiracytakethecrown/RaiseTheAlarm.java | 52 +++++++++++++++++++ .../conspiracytakethecrown/RevivingDose.java | 52 +++++++++++++++++++ .../SpiritOfTheHearth.java | 52 +++++++++++++++++++ .../conspiracytakethecrown/WildGriffin.java | 52 +++++++++++++++++++ .../conspiracytakethecrown/ZealousStrike.java | 52 +++++++++++++++++++ Utils/mtg-cards-data.txt | 51 ++++++++++++++++-- 19 files changed, 983 insertions(+), 4 deletions(-) create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Disenchant.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/DoomedTraveler.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/FaithsReward.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GhostlyPossession.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GhostlyPrison.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GleamOfResistance.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GodsWilling.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GuardianOfTheGateless.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HailOfArrows.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HollowhengeSpirit.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HundredHandedOne.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/KillShot.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Pariah.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/RaiseTheAlarm.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/RevivingDose.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/SpiritOfTheHearth.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/WildGriffin.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/ZealousStrike.java diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Disenchant.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Disenchant.java new file mode 100644 index 0000000000..e812e5119a --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Disenchant.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Disenchant extends mage.sets.tempest.Disenchant { + + public Disenchant(UUID ownerId) { + super(ownerId); + this.cardNumber = "82"; + this.expansionSetCode = "CN2"; + } + + public Disenchant(final Disenchant card) { + super(card); + } + + @Override + public Disenchant copy() { + return new Disenchant(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/DoomedTraveler.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DoomedTraveler.java new file mode 100644 index 0000000000..2f18616b15 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DoomedTraveler.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class DoomedTraveler extends mage.sets.innistrad.DoomedTraveler { + + public DoomedTraveler(UUID ownerId) { + super(ownerId); + this.cardNumber = "83"; + this.expansionSetCode = "CN2"; + } + + public DoomedTraveler(final DoomedTraveler card) { + super(card); + } + + @Override + public DoomedTraveler copy() { + return new DoomedTraveler(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/FaithsReward.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FaithsReward.java new file mode 100644 index 0000000000..aee6d01d4b --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FaithsReward.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class FaithsReward extends mage.sets.magic2013.FaithsReward { + + public FaithsReward(UUID ownerId) { + super(ownerId); + this.cardNumber = "84"; + this.expansionSetCode = "CN2"; + } + + public FaithsReward(final FaithsReward card) { + super(card); + } + + @Override + public FaithsReward copy() { + return new FaithsReward(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GhostlyPossession.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GhostlyPossession.java new file mode 100644 index 0000000000..9dc2c79916 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GhostlyPossession.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GhostlyPossession extends mage.sets.innistrad.GhostlyPossession { + + public GhostlyPossession(UUID ownerId) { + super(ownerId); + this.cardNumber = "85"; + this.expansionSetCode = "CN2"; + } + + public GhostlyPossession(final GhostlyPossession card) { + super(card); + } + + @Override + public GhostlyPossession copy() { + return new GhostlyPossession(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GhostlyPrison.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GhostlyPrison.java new file mode 100644 index 0000000000..370bb5fe21 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GhostlyPrison.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GhostlyPrison extends mage.sets.championsofkamigawa.GhostlyPrison { + + public GhostlyPrison(UUID ownerId) { + super(ownerId); + this.cardNumber = "86"; + this.expansionSetCode = "CN2"; + } + + public GhostlyPrison(final GhostlyPrison card) { + super(card); + } + + @Override + public GhostlyPrison copy() { + return new GhostlyPrison(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GleamOfResistance.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GleamOfResistance.java new file mode 100644 index 0000000000..aba1ae7bc2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GleamOfResistance.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GleamOfResistance extends mage.sets.conflux.GleamOfResistance { + + public GleamOfResistance(UUID ownerId) { + super(ownerId); + this.cardNumber = "87"; + this.expansionSetCode = "CN2"; + } + + public GleamOfResistance(final GleamOfResistance card) { + super(card); + } + + @Override + public GleamOfResistance copy() { + return new GleamOfResistance(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GodsWilling.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GodsWilling.java new file mode 100644 index 0000000000..309e4b6276 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GodsWilling.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GodsWilling extends mage.sets.theros.GodsWilling { + + public GodsWilling(UUID ownerId) { + super(ownerId); + this.cardNumber = "88"; + this.expansionSetCode = "CN2"; + } + + public GodsWilling(final GodsWilling card) { + super(card); + } + + @Override + public GodsWilling copy() { + return new GodsWilling(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GuardianOfTheGateless.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GuardianOfTheGateless.java new file mode 100644 index 0000000000..2cee866e33 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GuardianOfTheGateless.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GuardianOfTheGateless extends mage.sets.gatecrash.GuardianOfTheGateless { + + public GuardianOfTheGateless(UUID ownerId) { + super(ownerId); + this.cardNumber = "89"; + this.expansionSetCode = "CN2"; + } + + public GuardianOfTheGateless(final GuardianOfTheGateless card) { + super(card); + } + + @Override + public GuardianOfTheGateless copy() { + return new GuardianOfTheGateless(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HailOfArrows.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HailOfArrows.java new file mode 100644 index 0000000000..2635b598e2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HailOfArrows.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HailOfArrows extends mage.sets.saviorsofkamigawa.HailOfArrows { + + public HailOfArrows(UUID ownerId) { + super(ownerId); + this.cardNumber = "90"; + this.expansionSetCode = "CN2"; + } + + public HailOfArrows(final HailOfArrows card) { + super(card); + } + + @Override + public HailOfArrows copy() { + return new HailOfArrows(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HollowhengeSpirit.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HollowhengeSpirit.java new file mode 100644 index 0000000000..2e337a6b9e --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HollowhengeSpirit.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HollowhengeSpirit extends mage.sets.darkascension.HollowhengeSpirit { + + public HollowhengeSpirit(UUID ownerId) { + super(ownerId); + this.cardNumber = "92"; + this.expansionSetCode = "CN2"; + } + + public HollowhengeSpirit(final HollowhengeSpirit card) { + super(card); + } + + @Override + public HollowhengeSpirit copy() { + return new HollowhengeSpirit(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HundredHandedOne.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HundredHandedOne.java new file mode 100644 index 0000000000..6a511aa695 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HundredHandedOne.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HundredHandedOne extends mage.sets.theros.HundredHandedOne { + + public HundredHandedOne(UUID ownerId) { + super(ownerId); + this.cardNumber = "93"; + this.expansionSetCode = "CN2"; + } + + public HundredHandedOne(final HundredHandedOne card) { + super(card); + } + + @Override + public HundredHandedOne copy() { + return new HundredHandedOne(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/KillShot.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/KillShot.java new file mode 100644 index 0000000000..3777a5538f --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/KillShot.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class KillShot extends mage.sets.khansoftarkir.KillShot { + + public KillShot(UUID ownerId) { + super(ownerId); + this.cardNumber = "94"; + this.expansionSetCode = "CN2"; + } + + public KillShot(final KillShot card) { + super(card); + } + + @Override + public KillShot copy() { + return new KillShot(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Pariah.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Pariah.java new file mode 100644 index 0000000000..9c08fcf672 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Pariah.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Pariah extends mage.sets.urzassaga.Pariah { + + public Pariah(UUID ownerId) { + super(ownerId); + this.cardNumber = "95"; + this.expansionSetCode = "CN2"; + } + + public Pariah(final Pariah card) { + super(card); + } + + @Override + public Pariah copy() { + return new Pariah(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/RaiseTheAlarm.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RaiseTheAlarm.java new file mode 100644 index 0000000000..147d449bd5 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RaiseTheAlarm.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class RaiseTheAlarm extends mage.sets.mirrodin.RaiseTheAlarm { + + public RaiseTheAlarm(UUID ownerId) { + super(ownerId); + this.cardNumber = "96"; + this.expansionSetCode = "CN2"; + } + + public RaiseTheAlarm(final RaiseTheAlarm card) { + super(card); + } + + @Override + public RaiseTheAlarm copy() { + return new RaiseTheAlarm(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/RevivingDose.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RevivingDose.java new file mode 100644 index 0000000000..530d2839ab --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RevivingDose.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class RevivingDose extends mage.sets.tenthedition.RevivingDose { + + public RevivingDose(UUID ownerId) { + super(ownerId); + this.cardNumber = "97"; + this.expansionSetCode = "CN2"; + } + + public RevivingDose(final RevivingDose card) { + super(card); + } + + @Override + public RevivingDose copy() { + return new RevivingDose(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/SpiritOfTheHearth.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SpiritOfTheHearth.java new file mode 100644 index 0000000000..c2524ca02c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SpiritOfTheHearth.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class SpiritOfTheHearth extends mage.sets.eventide.SpiritOfTheHearth { + + public SpiritOfTheHearth(UUID ownerId) { + super(ownerId); + this.cardNumber = "98"; + this.expansionSetCode = "CN2"; + } + + public SpiritOfTheHearth(final SpiritOfTheHearth card) { + super(card); + } + + @Override + public SpiritOfTheHearth copy() { + return new SpiritOfTheHearth(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/WildGriffin.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/WildGriffin.java new file mode 100644 index 0000000000..7a8d430820 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/WildGriffin.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class WildGriffin extends mage.sets.tenthedition.WildGriffin { + + public WildGriffin(UUID ownerId) { + super(ownerId); + this.cardNumber = "100"; + this.expansionSetCode = "CN2"; + } + + public WildGriffin(final WildGriffin card) { + super(card); + } + + @Override + public WildGriffin copy() { + return new WildGriffin(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/ZealousStrike.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ZealousStrike.java new file mode 100644 index 0000000000..c2cffca102 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ZealousStrike.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class ZealousStrike extends mage.sets.avacynrestored.ZealousStrike { + + public ZealousStrike(UUID ownerId) { + super(ownerId); + this.cardNumber = "101"; + this.expansionSetCode = "CN2"; + } + + public ZealousStrike(final ZealousStrike card) { + super(card); + } + + @Override + public ZealousStrike copy() { + return new ZealousStrike(this); + } +} diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index 706052d01a..27721698e3 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -3458,49 +3458,73 @@ Tukatongue Thallid|Conflux|96|C|{G}|Creature - Fungus|1|1|When Tukatongue Thalli Wild Leotau|Conflux|97|C|{2}{G}{G}|Creature - Cat|5|4|At the beginning of your upkeep, sacrifice Wild Leotau unless you pay {G}.| Apocalypse Hydra|Conflux|98|M|{X}{R}{G}|Creature - Hydra|0|0|Apocalypse Hydra enters the battlefield with X +1/+1 counters on it. If X is 5 or more, it enters the battlefield with an additional X +1/+1 counters on it.${1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to target creature or player.| Blood Tyrant|Conflux|99|R|{4}{U}{B}{R}|Creature - Vampire|5|5|Flying, trample$At the beginning of your upkeep, each player loses 1 life. Put a +1/+1 counter on Blood Tyrant for each 1 life lost this way.$Whenever a player loses the game, put five +1/+1 counters on Blood Tyrant.| -Assemble the Rank and Vile|Conspiracy: Take the Crown|2||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creatures you control with the chosen name have "When this creature dies, you may pay {B}. If you do, put a 2/2 black Zombie creature token onto the battlefield tapped."| +Assemble the Rank and Vile|Conspiracy: Take the Crown|2|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creatures you control with the chosen name have "When this creature dies, you may pay {B}. If you do, put a 2/2 black Zombie creature token onto the battlefield tapped."| +Echoing Boon|Conspiracy: Take the Crown|3|U||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Whenever you cast an instant or sorcery spell, if it targets a creature you control with the chosen name, you may copy that spell and may choose new targets for the copy.| Hired Heist|Conspiracy: Take the Crown|5|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Whenever a creature control with the chosen name deals combat damage to a player, you may pay {U}. If you do, draw a card.| Hold the Perimeter|Conspiracy: Take the Crown|6|R||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$At the beginning of your first upkeep, put a 1/2 white Soldier creature token with defender onto the battlefield.$At the beginning of each other player's first upkeep, that player puts a 1/1 red Goblin creature token onto the battlefield with "This creature can't block."| Hymn of the Wilds|Conspiracy: Take the Crown|7|M||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$The first creature spell you cast each turn costs {1} less to cast.$You can't cast instant or sorcery spells.| +Incendiary Dissent|Conspiracy: Take the Crown|8|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face up in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creatures you control with the chosen name have "{R}: This creature gets +1/+0 until end of turn."| Natural Unity|Conspiracy: Take the Crown|9|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creature you control with the chosen name have "At the beginning of combat on your turn, you may pay {G}. If you do, put a +1/+1 counter on this creature."| Sovereign's Realm|Conspiracy: Take the Crown|10|M||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$Your deck can't have basic land cards and your starting hand size is five.$Exile a card from you hand: This turn, you may play basic land cards from outside the game.$Basic lands you control have "{T}: Add one mana of any color to your mana pool."| Summoner's Bond|Conspiracy: Take the Crown|11|U||Conspiracy|||Double agenda (Start the game with this conspiracy face down in the command zone and secretly name two different cards. You may turn this conspiracy face up any time and reveal the chosen names.)$Whenever you cast a creature spell with one of the chosen names, you may search your library for a creature card with the other chosen name, reveal it, put it into your hand, then shuffle your library.| Weight Advantage|Conspiracy: Take the Crown|12|R||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$Each creature you control assigns combat damage equal to its toughness rather than its power.| Ballot Broker|Conspiracy: Take the Crown|13|C|{2}{W}|Creature - Human Advisor|2|3|While voting, you may vote an additional time. (The votes can be for different choices or for the same choice.)| Custodi Peacekeeper|Conspiracy: Take the Crown|14|C|{2}{W}|Creature - Human Cleric|2|3|Reveal Custodi Peacekeeper when you draft it and note how many cards you've drafted this draft round, including Custodi Peacekeeper.${W}, {T}: Tap target creature with power less than or equal to the highest number you noted for cards named Custodi Peacekeeper.| +Custodi Soulcaller|Conspiracy: Take the Crown|15|U|{1}{W}{W}|Creature - Human Cleric|1|2|Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$Whenever Custodi Soulcaller attacks, return target creature card with converted mana cost X or less from your graveyard to the battlefield, where X is the number of players you attacked with a creature this combat.| Lieutenants of the Guard|Conspiracy: Take the Crown|16|C|{4}{W}|Creature - Human Soldier|2|2|Council's dilemma — When Lieutenants of the Guard enters the battlefield, starting with you, each player votes for strength or numbers. Put a +1/+1 counter on Lieutenants of the Guard for each strength vote and put a 1/1 white Soldier creature token onto the battlefield for each numbers vote.| +Palace Jailer|Conspiracy: Take the Crown|18|U|{2}{W}{W}|Creature - Human Soldier|2|2|When Palace Jailer enters the battlefield, you become the monarch.$When Palace Jailer enters the battlefield, exile target creature an opponent controls until an opponent becomes the monarch.| +Palace Sentinels|Conspiracy: Take the Crown|19|C|{3}{W}|Creature - Human Soldier|2|4|When Palace Sentinels enters the battlefield, you become the monarch.| Paliano Vanguard|Conspiracy: Take the Crown|20|R|{1}{W}|Creature - Human Soldier|2|2|Draft Paliano Vanguard face up.$As you draft a creature card, you may reveal it, note its creature types, then turn Paliano Vanguard face down.$Other creature you control of a type you noted for cards named Paliano Vanguard get +1/+1.| -Protector of the Throne|Conspiracy: Take the Crown|21|R|{5}{W}|Creature - Giant|2|5|When Protector of the Throne enters the battlefield, you become the monarch.$If damage would be dealt to you, you may instead have that damage be dealt to Protector of the Throne.| +Protector of the Crown|Conspiracy: Take the Crown|21|R|{5}{W}|Creature - Giant|2|5|When Protector of the Crown enters the battlefield, you become the monarch.$All damage would be dealt to you is dealt to Protector of the Crown instead.| Recruiter of the Guard|Conspiracy: Take the Crown|22|R|{2}{W}|Creature - Human Soldier|1|1|When Recruiter of the Guard enters the battlefield, you may search your library for a creature card with toughness 2 or less, reveal it, put it into your hand, then shuffle your library.| Sanctum Prelate|Conspiracy: Take the Crown|23|M|{1}{W}{W}|Creature - Human Cleric|2|2|As Sanctum Prelate enters the battlefield, choose a number.$Noncreature spells with converted mana cost equal to the chosen number can't be cast.| +Spectral Grasp|Conspiracy: Take the Crown|24|U|{1}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature can't attack you or a planeswalker you control.$Enchanted creature can't block creatures you control.| Throne Warden|Conspiracy: Take the Crown|25|C|{1}{W}|Creature - Human Soldier|2|2|At the beginning of your end step, if you're the monarch, put a +1/+1 counter on Throne Warden.| Wings of the Guard|Conspiracy: Take the Crown|26|C|{1}{W}|Creature - Bird|1|1|Flying$Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)| Arcane Savant|Conspiracy: Take the Crown|27|R|{3}{U}{U}|Creature - Human Wizard|3|3|Before you shuffle your deck to start the game, you may reveal an instant or sorcery card you drafted that isn't in your deck.$When Arcane Savant enters the battlefield, copy a card you exiled with cards named Arcane Savant. You may cast the copy without paying its mana cost.| -Confiscate Riches|Conspiracy: Take the Crown|30|M|{7}{U}{U}|Sorcery|||Council's dilemma — Starting with you, each player votes for time or money. For each opponent who voted time, you take an extra turn after this one. For each opponent who voted money, you gain control of a permanent that opponent controls.| +Canal Courier|Conspiracy: Take the Crown|28|C|{5}{U}|Creature - Human Rogue|3|5|When Canal Courier enters the battlefield, you become the monarch.$Whenever Canal Courier and another creature attack different players, Canal Courier can't be blocked this combat.| +Expropriate|Conspiracy: Take the Crown|30|M|{7}{U}{U}|Sorcery|||Council's dilemma — Starting with you, each player votes for time or money. For each time vote, take an extra turn after this one. For each money vote, choose a permanent owned by the voter and gain control of it. Exile Expropriate| Illusion of Choice|Conspiracy: Take the Crown|31|U|{U}|Instant|||You choose how each player votes this turn.$Draw a card.| Illusionary Informant|Conspiracy: Take the Crown|32|C|{1}{U}|Creature - Bird Illusion|1|3|Draft Illusionary Informant face up.$During the draft, you may turn Illusionary Informant face down. If you do, look at the next card drafted by a player of your choice.$Flying| +Jeering Homunculus|Conspiracy: Take the Crown|33|C|{1}{U}|Creature - Homunculus|0|4|When Jeering Homunculus enters the battlefield, you may goad target creature. (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)| Keeper of Keys|Conspiracy: Take the Crown|34|R|{3}{U}{U}|Creature - Human Rogue Mutant|4|4|When Keeper of Keys enters the battlefield, you become the monarch.$At the beginning of your upkeep, if you're the monarch, creatures you control can't be blocked this turn.| -Jeering Homunculus|Conspiracy: Take the Crown|35|C|{1}{U}|Creature - Homunculus|0|4|When Jeering Homunculus enters the battlefield, you may goad target creature. (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)| +Messenger Jays|Conspiracy: Take the Crown|35|C|{4}{U}|Creature - Bird|2|1|Flying$Council's dilemma — When Messenger Jays enters the battlefield, starting with you, each player votes for feather or quill. Put a +1/+1 counter on Messenger Jays for each feather vote and draw a card for each quill vote. For each card drawn this way, discard a card.| +Skittering Crustacean|Conspiracy: Take the Crown|36|C|{2}{U}|Creature - Crab|2|3|{6}{U}: Monstrosity 4. (If this creature isn't monstrous, put four +1/+1 counters on it and it becomes monstrous.)$As long as Skittering Crustacean is monstrous, it has hexproof. (It can't be the target of spells or abilities your opponents control.)| Spire Phantasm|Conspiracy: Take the Crown|37|U|{2}{U}{U}|Creature - Gargoyle Illusion|3|2|Reveal Spire Phantasm as you draft it. The next time a player drafts a card from this booster pack, guess that card's name. Then that player reveals the drafted card.$Flying$When Spire Phantasm enters the battlefield, if you guessed correctly for a card named Spire Phantasm, draw a card.| Stunt Double|Conspiracy: Take the Crown|38|R|{3}{U}|Creature - Shapeshifter|0|0|Flash$You may have Stunt Double enter the battlefield as a copy of any creature on the battlefield.| Archdemon of Paliano|Conspiracy: Take the Crown|39|R|{2}{B}{B}|Creature - Demon|5|4|Draft Archdemon of Paliano face up.$As long as Archdemon of Paliano is face up during the draft, you can't look at booster packs and must draft cards at random. After you draft three cards this way, turn Archdemon of Paliano face down. (You may look at cards as you draft them.)$Flying| Capital Punishment|Conspiracy: Take the Crown|40|R|{4}{B}{B}|Sorcery|||Council's dilemma — Starting with you, each player votes for death or taxes. Each opponent sacrifices a creature for each death vote and discards a card for each taxes vote.| Custodi Lich|Conspiracy: Take the Crown|41|R|{3}{B}{B}|Creature - Zombie Cleric|4|2|When Custodi Lich enters the battlefield, you become the monarch.$Whenever you become the monarch, target player sacrifices a creature.| +Deadly Designs|Conspiracy: Take the Crown|42|U|{1}{B}|Enchantment|||{2}: Put a plot counter on Deadly Designs. Any player may activate this ability.$When there are five or more plot counters on Deadly Designs, sacrifice it. If you do, destroy up to two target creatures.| +Garrulous Sycophant|Conspiracy: Take the Crown|43|C|{2}{B}|Creature - Human Advisor|1|4|At the beginning of your end step, if you're the monarch, each opponent loses 1 life and you gain 1 life.| +Marchesa's Decree|Conspiracy: Take the Crown|44|U|{3}{B}|Enchantment|||When Marchesa's Decree enters the battlefield, you become the monarch.$Whenever a creature attacks you or a planeswalker you control, the controller of that creature loses 1 life.| +Regicide|Conspiracy: Take the Crown|45|C|{B}|Instant|||Reveal Regicide as you draft it. The player to your right chooses a color, you choose another color, then the player to your left chooses a third color.$Destroy target creature that's one or more of the colors chosen as you drafted cards named Regicide.| +Sinuous Vermin|Conspiracy: Take the Crown|46|C|{1}{B}|Creature - Rat Horror|2|2|{3}{B}{B}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)$As long as Sinuous Vermin is monstrous, it has menace. (It can't be blocked except by two or more creatures.)| +Smuggler Captain|Conspiracy: Take the Crown|47|U|{3}{B}|Creature - Human Pirate|2|2|Draft Smuggler Captain face up.$As you draft a card, you may reveal it, note its name, then turn Smuggler Captain face down.$When Smuggler Captain enters the battlefield, you may search your library for a card with a name you noted for cards named Smuggler Captain, reveal it, put it into your hand, then shuffle your library.| Thorn of the Black Rose|Conspiracy: Take the Crown|48|C|{3}{B}|Creature - Human Assassin|1|3|Deathtouch (Any amount of damage this deals to a creature is enough to destroy it.)$When Thorn of the Black Rose enters the battlefield, you become the monarch.| Besmirch|Conspiracy: Take the Crown|49|U|{1}{R}{R}|Sorcery|||Until end of turn, gain control of target creature and it gains haste. Untap and goad that creature. (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)| Crown-Hunter Hireling|Conspiracy: Take the Crown|50|C|{4}{R}|Creature - Ogre Mercenary|4|4|When Crown-Hunter Hireling enters the battlefield, you become the monarch.$Crown-Hunter Hireling can't attack unless defending player is the monarch.| Deputized Protester|Conspiracy: Take the Crown|51|C|{2}{R}|Creature - Human Warrior|2|1|Menace (This creature can't be blocked except by two or more creatures.)$Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)| Garbage Fire|Conspiracy: Take the Crown|52|C|{2}{R}|Instant|||Reveal Garbage Fire as you draft it and note how many cards you've drafted this draft round, including Garbage Fire.$Garbage Fire deals damage to target creature equal to the highest number you noted for cards named Garbage Fire.| Grenzo, Havor Raiser|Conspiracy: Take the Crown|54|R|{R}{R}|Legendary Creature - Goblin Rogue|2|2|Whenever a creature you control deals combat damage to a player, choose one — Goad target creature that player controls; or Exile the top card of that player's library. Until end of turn, you may cast that card and you may spend mana as though it were mana of any color to cast it.| +Grenzo's Ruffians|Conspiracy: Take the Crown|55|U|{2}{R}{R}|Creature - Goblin|2|2|Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$Whenever Grenzo's Ruffians deals combat damage to a opponent, it deals that much damage to each other opponent.| +Pyretic Hunter|Conspiracy: Take the Crown|56|U|{4}{R}|Creature - Elemental Cat|0|0|Reveal Pyretic Hunter as you draft it and note how many cards you've drafted this draft round, including Pyretic Hunter.$Menace (This creature can't be blocked except by two or more creatures.)$Pyretic Hunter enters the battlefield with X +1/+1 counters on it, where X is the highest number you noted for cards named Pyretic Hunter.| Skyline Despot|Conspiracy: Take the Crown|57|R|{5}{R}{R}|Creature - Dragon|5|5|Flying$When Skyline Despot enters the battlefield, you become the monarch.$At the beginning of your upkeep, if you're the monarch, put a 5/5 red Dragon creature token with flying onto the battlefield.| Subterranean Tremors|Conspiracy: Take the Crown|58|M|{X}{R}|Sorcery|||Subterranean Tremors deals X damage to each creature without flying. If X is 4 or more, destroy all artifacts. If X is 8 or more, put an 8/8 red Lizard creature token onto the battlefield.| Volatile Chimera|Conspiracy: Take the Crown|59|R|{2}{R}|Creature - Elemental Chimera|3|2|Before you shuffle your deck to start the game, you may reveal this card from your deck and exile three or more creature cards you drafted that aren't in your deck.${1}{R}: Choose a card at random you exiled with cards named Volatile Chimera. Volatile Chimera becomes a copy of that card and gains this ability.| Animus of Predation|Conspiracy: Take the Crown|60|U|{4}{G}|Creature - Avatar|4|4|Draft Animus of Predation face up.$As you draft a card, you may remove it from the draft face up. (Those cards aren't in your card pool.)$If you removed a creature card with flying from the draft with cards named Animus of Predation, Animus of Predation has flying. The same is true for first strike, double strike, deathtouch, haste, hexproof, indestructible, lifelink, menace, reach, and vigilance.| +Borderland Explorer|Conspiracy: Take the Crown|61|C|{1}{G}|Creature - Elf Scout|3|1|When Borderland Explorer enters the battlefield, each player may discard a card. Each player who discarded a card this way may search his or her library for a basic land card, reveal it, put it into his or her hand, then shuffle his or her library.| Caller of the Untamed|Conspiracy: Take the Crown|62|R|{3}{G}|Creature - Elf Shaman|2|4|Before you shuffle your deck to start the game, you may reveal this card from your deck and exile a creature card you drafted that isn't in your deck.${X}, {T}: Put a token onto the battlefield that's copy of a card you exiled with cards named Caller of the Untamed. X is the converted mana cost of that card.| Domesticated Hydra|Conspiracy: Take the Crown|63|U|{2}{G}{G}|Creature - Hydra|3|3|{X}{G}{G}{G}: Monstrosity X. (If this creature isn't monstrous, put X +1/+1 counters on it and it becomes monstrous.)$As long as Domesticated Hydra is monstrous, it has trample.| Entourage of Trest|Conspiracy: Take the Crown|64|C|{4}{G}|Creature - Elf Soldier|4|4|When Entourage of Trest enters the battlefield, you become the monarch.$Entourage of Trest can block an additional creature each combat as long as you're the monarch.| +Fang of the Pack|Conspiracy: Take the Crown|65|U|{5}{G}|Creature - Wolf|5|3|Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$At the beginning of combat on your turn, another target creature you control gains melee until end of turn. (If a creature has multiple instances of melee, each triggers separately.)| +Leovold's Operative|Conspiracy: Take the Crown|66|C|{2}{G}|Creature - Elf Rogue|3|2|Draft Leovold's Operative face up.$As you draft a card, you may draft an additional card from that booster pack. If you do, turn Leovold's Operative face down, then pass the next booster pack without drafting a card from it. (You may look at that booster pack.)| +Menagerie Liberator|Conspiracy: Take the Crown|67|C|{3}{G}|Creature - Human Warrior|3|2|Trample$Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$| +Orchard Elemental|Conspiracy: Take the Crown|68|C|{5}{G}|Creature - Elemental|2|2|Council's dilemma &mdash When Orchard Elemental enters the battlefield, starting with you, each player votes for sprout or harvest. Put two +1/+1 counters on Orchard Elemental for each sprout vote. You gain 3 life for each harvest vote.| Regal Behemoth|Conspiracy: Take the Crown|69|R|{4}{G}{G}|Creature - Lizard|5|5|Trample$When Regal Behemoth enters the battlefield, you become the monarch.$Whenever you tap a land for mana while you're the monarch, add one mana of any color to your mana pool (in addition to the mana the land produces).| Selvala, Heart of the Wilds|Conspiracy: Take the Crown|70|M|{1}{G}{G}|Legendary Creature - Elf Scout|2|3|Whenever another creature enters the battlefield, its controller may draw a card if its power is greater than each other creature's power.${G}, {T}: Add X mana in any combination of colors to your mana pool, where X is the greatest power among creatures you control.| +Selvala's Stampede|Conspiracy: Take the Crown|71|R|{4}{G}{G}|Sorcery|||Council's dilemma &mdash Starting with you, each player votes for wild or free. Reveal cards from the top of your library until you reveal a creature card for each wild vote. Put those creature cards onto the battlefield, then shuffle the rest into your library. You may permanent card from your hand onto the battlefield for each free vote.| +Splitting Slime|Conspiracy: Take the Crown|72|R|{3}{G}{G}|Creature - Ooze|3|3|{4}{G}{G}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)$When Splitting Slime becomes monstrous, put a token onto the battlefield that's a copy of Splitting Slime. (The token has no counters and isn't monstrous.)| Adriana, Captain of the Guard|Conspiracy: Take the Crown|73|R|{3}{R}{W}|Legendary Creature - Human Knight|4|4|Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$Other creatures you control have melee. (If a creature has multiple instances of melee, each trigger separately.)| Daretti, Ingenious Iconoclast|Conspiracy: Take the Crown|74|M|{1}{B}{R}|Planeswalker - Daretti|||+1: Put a 1/1 colorless Construct artifact creature token with defender onto the battlefield.$-1: You may sacrifice an artifact. If you do, destroy target artifact or creature.$-6: Choose target artifact card in a graveyard or artifact on the battlefield. Put three tokens that are copies of it onto the battlefield.| Kaya, Ghost Assassin|Conspiracy: Take the Crown|75|M|{2}{W}{B}|Planeswalker - Kaya|||0: Exile Kaya, Ghost Assassin or up to one target creature. Return that card to the battlefield under its owner's control at the beginning of your next upkeep. You lose 2 life.$-1: Each opponent loses 2 life and you gain 2 life.$-2: Each opponent discards a card and you draw a card.| @@ -3508,7 +3532,26 @@ Knights of the Black Rose|Conspiracy: Take the Crown|76|U|{3}{W}{B}|Creature - H Leovold, Emissary of Trest|Conspiracy: Take the Crown|77|M|{B}{G}{U}|Legendary Creature - Elf Advisor|3|3|Each opponent can't draw more than one card each turn.$Whenever you or a permanent you control becomes the target of a spell or ability an opponent controls, you may draw a card.| Queen Marchesa|Conspiracy: Take the Crown|78|M|{1}{R}{W}{B}|Legendary Creature - Human Assassin|3|3|Deathtouch, haste$When Queen Marchesa enters the battlefield, you become the monarch.$At the beginning of your upkeep, if an opponent is the monarch, put a 1/1 black Assassin creature token with deathtouch and haste onto the battlefield.| Spy Kit|Conspiracy: Take the Crown|79|U|{2}|Artifact - Equipment|||Equipped creature gets +1/+1 and has all names of nonlegendary creature cards in addition to its name.$Equip {2}| +Throne of the High City|Conspiracy: Take the Crown|80|R||Land|||{T}: Add {C} to your mana pool.${4}, {T}, Sacrifice Throne of the High City: You become the monarch.| +Disenchant|Conspiracy: Take the Crown|82|C|{1}{W}|Instant|||Destroy target artifact or enchantment.| +Doomed Traveler|Conspiracy: Take the Crown|83|C|{W}|Creature - Human Soldier|1|1|When Doomed Traveler dies, put a 1/1 white Spirit creature token with flying onto the battlefield.| +Faith's Reward|Conspiracy: Take the Crown|84|R|{3}{W}|Instant|||Return to the battlefield all permanent cards in your graveyard that were put there from the battlefield this turn.| +Ghostly Possession|Conspiracy: Take the Crown|85|C|{2}{W}|Enchantment - Aura|||Enchant creature$Enchanted creature has flying.$Prevent all combat damage that would be dealt to and dealt by enchanted creature.| +Ghostly Prison|Conspiracy: Take the Crown|86|U|{2}{W}|Enchantment|||Creatures can't attack you unless their controller pays {2} for each creature he or she controls that's attack you.| +Gleam of Resistance|Conspiracy: Take the Crown|87|C|{4}{W}|Instant|||Creatures you control gets +1/+2 until end of turn. Untap those creatures.$Basic landcycling {1}{W}| +Gods Willing|Conspiracy: Take the Crown|88|C|{W}|Instant|||Target creature you control gains protection from the color of your choice until end of turn. Scry 1. (Look at the top card of your library. You may put that card on the bottom of your library.)| +Guardian of the Gateless|Conspiracy: Take the Crown|89|U|{4}{W}|Creature - Angel|3|3|Flying$Guardian of the Gateless can block any number of creatures.$Whenever Guardian of the Gateless blocks, it gets +1/+1 until end of turn for each creature it's blocking.| +Hail of Arrows|Conspiracy: Take the Crown|90|U|{X}{W}|Instant|||Hail of Arrows deals X damage divided as you choose among any number of target attacking creatures.| Hallowed Burial|Conspiracy: Take the Crown|91|R|{3}{W}{W}|Sorcery|||Put all creatures on the bottom of their owners' libraries.| +Hollowhenge Spirit|Conspiracy: Take the Crown|92|U|{3}{W}|Creature - Spirit|2|2|Flash$Flying$When Hollowhenge Spirit enters the battlefield, remove target attacking or blocking creature from combat.| +Hundred-Handed One|Conspiracy: Take the Crown|93|R|{2}{W}{W}|Creature - Giant|3|5|Vigilance${3}{W}{W}{W}: Monstrosity 3. (If this creature isn't monstrous, put three +1/+1 counters on it and it becomes monstrous.)$As long as Hundred-Handed One is monstrous, it has reach and can block an addition ninety-nine creatures each combat.| +Kill Shot|Conspiracy: Take the Crown|94|C|{2}{W}|Instant|||Destroy target attacking creatures.| +Pariah|Conspiracy: Take the Crown|95|R|{2}{W}|Enchantment - Aura|||Enchant creature$All damage that would be dealt to you is dealt to enchanted creature instead.| +Raise the Alarm|Conspiracy: Take the Crown|96|C|{1}{W}|Instant|||Put two 1/1 white Soldier creature tokens onto the battlefield.| +Reviving Dose|Conspiracy: Take the Crown|97|C|{2}{W}|Instant|||You gain 3 life.$Draw a card.| +Spirit of the Hearth|Conspiracy: Take the Crown|98|R|{4}{W}{W}|Creature - Cat Spirit|4|5|Flying$You have hexproof. (You can't be the target of spells or abilities your opponents control.)| +Wild Griffin|Conspiracy: Take the Crown|100|C|{2}{W}|Creature - Griffin|2|2|Flying| +Zealous Strike|Conspiracy: Take the Crown|101|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains first strike until end of turn.| Desertion|Conspiracy: Take the Crown|107|R|{3}{U}{U}|Instant|||Counter target spell. If an artifact or creature spell is countered this way, put that card onto the battlefield under your control instead of into its owner's graveyard.| Serum Visions|Conspiracy: Take the Crown|120|U|{U}|Sorcery|||Draw a card. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your libary and the rest of top in any order.)| Inquisition of Kozilek|Conspiracy: Take the Crown|140|R|{B}|Sorcery|||Target player reveals his or her hand. You choose a nonland card from it with converted mana cost 3 or less. That player discards that card.| From 292105f60e5f51cbf190a008b9a67994f79ac6cc Mon Sep 17 00:00:00 2001 From: drmDev Date: Sun, 21 Aug 2016 15:00:41 -0400 Subject: [PATCH 3/9] [CN2] Stunt Double and Subterranean Tremors implemented. --- .../conspiracytakethecrown/StuntDouble.java | 66 +++++++++ .../SubterraneanTremors.java | 137 ++++++++++++++++++ .../mage/game/permanent/token/WurmToken.java | 1 - 3 files changed, 203 insertions(+), 1 deletion(-) create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/StuntDouble.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/SubterraneanTremors.java diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/StuntDouble.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StuntDouble.java new file mode 100644 index 0000000000..9a7ce62d3b --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StuntDouble.java @@ -0,0 +1,66 @@ +/* + * 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.conspiracytakethecrown; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldAbility; +import mage.abilities.effects.common.CopyPermanentEffect; +import mage.abilities.keyword.FlashAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; + +/** + * + * @author escplan9 (Derek Monturo - dmontur1 at gmail dot com) + */ +public class StuntDouble extends CardImpl { + + public StuntDouble(UUID ownerId) { + super(ownerId, 38, "Stunt Double", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{U}"); + this.expansionSetCode = "CN2"; + this.subtype.add("Shapeshifter"); + this.power = new MageInt(0); + this.toughness = new MageInt(0); + + // Flash + this.addAbility(FlashAbility.getInstance()); + // You may have Stunt Double enter the battlefield as a copy of any creature on the battlefield. + this.addAbility(new EntersBattlefieldAbility(new CopyPermanentEffect(), true)); + } + + public StuntDouble(final StuntDouble card) { + super(card); + } + + @Override + public StuntDouble copy() { + return new StuntDouble(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/SubterraneanTremors.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SubterraneanTremors.java new file mode 100644 index 0000000000..3205a43d8d --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SubterraneanTremors.java @@ -0,0 +1,137 @@ +/* + * 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.conspiracytakethecrown; + +import java.util.List; +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.keyword.FlyingAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Outcome; +import mage.constants.Rarity; +import mage.filter.common.FilterArtifactPermanent; +import mage.filter.common.FilterCreaturePermanent; +import mage.filter.predicate.Predicates; +import mage.filter.predicate.mageobject.AbilityPredicate; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.game.permanent.token.Token; + +/** + * + * @author escplan9 (Derek Monturo - dmontur1 at gmail dot com) + */ +public class SubterraneanTremors extends CardImpl { + + public SubterraneanTremors(UUID ownerId) { + super(ownerId, 58, "Subterranean Tremors", Rarity.MYTHIC, new CardType[]{CardType.SORCERY}, "{X}{R}"); + this.expansionSetCode = "CN2"; + + // Subterranean Tremors deals X damage to each creature without flying. + // If X is 4 or more, destroy all artifacts. + // If X is 8 or more, put an 8/8 red Lizard creature token onto the battlefield. + this.getSpellAbility().addEffect(new SubterraneanTremorsEffect()); + } + + public SubterraneanTremors(final SubterraneanTremors card) { + super(card); + } + + @Override + public SubterraneanTremors copy() { + return new SubterraneanTremors(this); + } +} + +class SubterraneanTremorsEffect extends OneShotEffect { + + private static final FilterCreaturePermanent filterCreatures = new FilterCreaturePermanent("creature without flying"); + private static final FilterArtifactPermanent filterArtifacts = new FilterArtifactPermanent("all artifacts"); + + static { + filterCreatures.add(Predicates.not(new AbilityPredicate(FlyingAbility.class))); + } + + public SubterraneanTremorsEffect() { + super(Outcome.Damage); + staticText = "{this} deals X damage to each creature without flying. If X is 4 or more, destroy all artifacts. If X is 8 or more, put an 8/8 red Lizard creature token onto the battlefield."; + } + + public SubterraneanTremorsEffect(final SubterraneanTremorsEffect effect) { + super(effect); + } + + @Override + public SubterraneanTremorsEffect copy() { + return new SubterraneanTremorsEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + + int damage = source.getManaCostsToPay().getX(); + UUID sourceId = source.getSourceId(); + UUID controllerId = source.getControllerId(); + + // X damage to each creature without flying + List creaturePermanents = game.getBattlefield().getActivePermanents(filterCreatures, controllerId, game); + for (Permanent permanent: creaturePermanents) { + permanent.damage(damage, sourceId, game, false, true); + } + + // X 4 or more: destroy all artifacts + if (damage >= 4) { + List artifactPermanents = game.getBattlefield().getActivePermanents(filterArtifacts, controllerId, game); + for (Permanent permanent: artifactPermanents) { + permanent.destroy(permanent.getId(), game, false); + } + } + // X 8 or more: put an 8/8 red lizard creature token on the battlefield + if (damage >= 8) { + Token lizardToken = new LizardToken(); + lizardToken.putOntoBattlefield(1, game, sourceId, controllerId); + } + + return true; + } +} + +class LizardToken extends Token { + + public LizardToken() { + super("Lizard", "an 8/8 red Lizard creature token"); + cardType.add(CardType.CREATURE); + color.setRed(true); + subtype.add("Lizard"); + power = new MageInt(8); + toughness = new MageInt(8); + } +} diff --git a/Mage/src/main/java/mage/game/permanent/token/WurmToken.java b/Mage/src/main/java/mage/game/permanent/token/WurmToken.java index f158146263..0ba1a3e3be 100644 --- a/Mage/src/main/java/mage/game/permanent/token/WurmToken.java +++ b/Mage/src/main/java/mage/game/permanent/token/WurmToken.java @@ -43,5 +43,4 @@ public class WurmToken extends Token { power = new MageInt(6); toughness = new MageInt(6); } - } From bdd1aa5370e5e1ecf695e13ecbba411b36e59f79 Mon Sep 17 00:00:00 2001 From: drmDev Date: Mon, 22 Aug 2016 06:45:27 -0400 Subject: [PATCH 4/9] Survive the Night test for issue #2184 - could not duplicate --- .../cards/single/soi/SurviveTheNightTest.java | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Mage.Tests/src/test/java/org/mage/test/cards/single/soi/SurviveTheNightTest.java diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/soi/SurviveTheNightTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/soi/SurviveTheNightTest.java new file mode 100644 index 0000000000..02892bb8f2 --- /dev/null +++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/soi/SurviveTheNightTest.java @@ -0,0 +1,41 @@ +package org.mage.test.cards.single.soi; + +import mage.abilities.keyword.IndestructibleAbility; +import mage.constants.PhaseStep; +import mage.constants.Zone; +import org.junit.Test; +import org.mage.test.serverside.base.CardTestPlayerBase; + +/** + * + * @author escplan9 (Derek Monturo - dmontur1 at gmail dot com) + */ +public class SurviveTheNightTest extends CardTestPlayerBase { + + // Reported bug: Survive the Night did not grant indestructibility + @Test + public void testIndestructibilityGranted() { + + // {2}{W} instant + // Target creature gets +1/+0 and gains indestructible until end of turn + // Investigate + addCard(Zone.HAND, playerA, "Survive the Night"); + addCard(Zone.BATTLEFIELD, playerA, "Plains", 3); + addCard(Zone.BATTLEFIELD, playerA, "Bronze Sable"); // 2/1 + addCard(Zone.BATTLEFIELD, playerB, "Hill Giant"); // 3/3 + + attack(1, playerA, "Bronze Sable"); + block(1, playerB, "Hill Giant", "Bronze Sable"); + castSpell(1, PhaseStep.DECLARE_BLOCKERS, playerA, "Survive the Night", "Bronze Sable"); + + setStopAt(1, PhaseStep.END_COMBAT); + execute(); + + assertGraveyardCount(playerA, "Survive the Night", 1); + assertGraveyardCount(playerB, "Hill Giant", 1); + assertPermanentCount(playerA, "Clue", 1); + assertPermanentCount(playerA, "Bronze Sable", 1); + assertPowerToughness(playerA, "Bronze Sable", 3, 1); + assertAbility(playerA, "Bronze Sable", IndestructibleAbility.getInstance(), true); + } +} From 10866056e1506e78e9ae323cf3c3d5308087c731 Mon Sep 17 00:00:00 2001 From: fireshoes Date: Mon, 22 Aug 2016 09:57:43 -0500 Subject: [PATCH 5/9] [CN2] Added complete spoiler to mtg-cards-data.txt and all existing reprints. --- .../conspiracytakethecrown/AbsorbVis.java | 52 ++++++++ .../AffaGuardHound.java | 52 ++++++++ .../conspiracytakethecrown/AkroanHoplite.java | 52 ++++++++ .../conspiracytakethecrown/AltarsReap.java | 52 ++++++++ .../AscendedLawmage.java | 52 ++++++++ .../conspiracytakethecrown/AvatarOfWoe.java | 54 ++++++++ .../conspiracytakethecrown/BeastWithin.java | 52 ++++++++ .../BloodTollHarpy.java | 52 ++++++++ .../BondsOfQuicksilver.java | 52 ++++++++ .../conspiracytakethecrown/BronzeSable.java | 52 ++++++++ .../conspiracytakethecrown/Brushstrider.java | 52 ++++++++ .../sets/conspiracytakethecrown/BurnAway.java | 52 ++++++++ .../conspiracytakethecrown/CallerOfGales.java | 52 ++++++++ .../CarnageGladiator.java | 52 ++++++++ .../CharmbreakerDevils.java | 52 ++++++++ .../conspiracytakethecrown/ChildOfNight.java | 52 ++++++++ .../conspiracytakethecrown/CloakedSiren.java | 52 ++++++++ .../conspiracytakethecrown/CoilingOracle.java | 54 ++++++++ .../CoordinatedAssault.java | 52 ++++++++ .../CopperhornScout.java | 52 ++++++++ .../CovenantOfMinds.java | 52 ++++++++ .../conspiracytakethecrown/DeathWind.java | 52 ++++++++ .../DeceiverExarch.java | 52 ++++++++ .../conspiracytakethecrown/DiabolicTutor.java | 52 ++++++++ .../sets/conspiracytakethecrown/Dismiss.java | 52 ++++++++ .../conspiracytakethecrown/Divination.java | 52 ++++++++ .../conspiracytakethecrown/DreadStatuary.java | 52 ++++++++ .../DriverOfTheDead.java | 52 ++++++++ .../conspiracytakethecrown/EmberBeast.java | 52 ++++++++ .../conspiracytakethecrown/EvolvingWilds.java | 52 ++++++++ .../ExplosiveVegetation.java | 52 ++++++++ .../FadeIntoAntiquity.java | 52 ++++++++ .../FarbogBoneflinger.java | 52 ++++++++ .../conspiracytakethecrown/Festergloom.java | 52 ++++++++ .../conspiracytakethecrown/FieryFall.java | 52 ++++++++ .../conspiracytakethecrown/FlameSlash.java | 52 ++++++++ .../FleetingDistraction.java | 52 ++++++++ .../FleshbagMarauder.java | 52 ++++++++ .../FollowedFootsteps.java | 52 ++++++++ .../ForgottenAncient.java | 52 ++++++++ .../conspiracytakethecrown/GangOfDevils.java | 52 ++++++++ .../GoblinBalloonBrigade.java | 52 ++++++++ .../GoblinTunneler.java | 52 ++++++++ .../GratuitousViolence.java | 52 ++++++++ .../conspiracytakethecrown/GruulWarChant.java | 52 ++++++++ .../conspiracytakethecrown/Guttersnipe.java | 52 ++++++++ .../GuulDrazSpecter.java | 52 ++++++++ .../HamletbackGoliath.java | 52 ++++++++ .../HarvesterOfSouls.java | 52 ++++++++ .../HavengulVampire.java | 52 ++++++++ .../conspiracytakethecrown/HedronMatrix.java | 52 ++++++++ .../conspiracytakethecrown/HexplateGolem.java | 52 ++++++++ .../conspiracytakethecrown/HornOfGreed.java | 52 ++++++++ .../conspiracytakethecrown/HurlyBurly.java | 52 ++++++++ .../IllTemperedCyclops.java | 52 ++++++++ .../sets/conspiracytakethecrown/Infest.java | 52 ++++++++ .../conspiracytakethecrown/IntoTheVoid.java | 52 ++++++++ .../IrresistiblePrey.java | 52 ++++++++ .../JuniperOrderRanger.java | 52 ++++++++ .../KamiOfTheCrescentMoon.java | 52 ++++++++ .../KeepsakeGorgon.java | 52 ++++++++ .../conspiracytakethecrown/KilnFiend.java | 52 ++++++++ .../sets/conspiracytakethecrown/Kitesail.java | 52 ++++++++ .../LaceWithMoonglove.java | 52 ++++++++ .../conspiracytakethecrown/LayOfTheLand.java | 52 ++++++++ .../conspiracytakethecrown/Manaplasm.java | 54 ++++++++ .../conspiracytakethecrown/MerfolkLooter.java | 54 ++++++++ .../MerfolkSkyscout.java | 52 ++++++++ .../conspiracytakethecrown/MnemonicWall.java | 52 ++++++++ .../sets/conspiracytakethecrown/Murder.java | 52 ++++++++ .../sets/conspiracytakethecrown/Negate.java | 52 ++++++++ .../conspiracytakethecrown/NessianAsp.java | 52 ++++++++ .../NetcasterSpider.java | 52 ++++++++ .../conspiracytakethecrown/OgreSentry.java | 52 ++++++++ .../conspiracytakethecrown/Omenspeaker.java | 52 ++++++++ .../OpalineUnicorn.java | 52 ++++++++ .../sets/conspiracytakethecrown/Overrun.java | 52 ++++++++ .../PharikasMender.java | 52 ++++++++ .../conspiracytakethecrown/PlatinumAngel.java | 54 ++++++++ .../sets/conspiracytakethecrown/Plummet.java | 52 ++++++++ .../sets/conspiracytakethecrown/PreyUpon.java | 52 ++++++++ .../PsychosisCrawler.java | 52 ++++++++ .../PublicExecution.java | 52 ++++++++ .../conspiracytakethecrown/RaiseDead.java | 52 ++++++++ .../RavenousLeucrocota.java | 52 ++++++++ .../sets/conspiracytakethecrown/Repulse.java | 52 ++++++++ .../conspiracytakethecrown/RoguesPassage.java | 52 ++++++++ .../conspiracytakethecrown/RunedServitor.java | 52 ++++++++ .../conspiracytakethecrown/Sangromancer.java | 52 ++++++++ .../ShamblingGoblin.java | 52 ++++++++ .../ShimmeringGrotto.java | 52 ++++++++ .../ShipwreckSinger.java | 52 ++++++++ .../conspiracytakethecrown/ShowAndTell.java | 54 ++++++++ .../SphinxOfMagosi.java | 52 ++++++++ .../StoneshockGiant.java | 52 ++++++++ .../StormchaserChimera.java | 52 ++++++++ .../StrengthInNumbers.java | 52 ++++++++ .../StromkirkPatrol.java | 52 ++++++++ .../SulfurousBlast.java | 52 ++++++++ .../conspiracytakethecrown/SylvanBounty.java | 52 ++++++++ .../TormentingVoice.java | 52 ++++++++ .../TraumaticVisions.java | 52 ++++++++ .../conspiracytakethecrown/TrumpetBlast.java | 52 ++++++++ .../sets/conspiracytakethecrown/TwinBolt.java | 52 ++++++++ .../sets/conspiracytakethecrown/Unnerve.java | 52 ++++++++ .../sets/conspiracytakethecrown/Vaporkin.java | 52 ++++++++ .../conspiracytakethecrown/VertigoSpawn.java | 52 ++++++++ .../conspiracytakethecrown/VoyagingSatyr.java | 52 ++++++++ .../WindborneCharge.java | 52 ++++++++ .../src/mage/sets/guildpact/VertigoSpawn.java | 71 +++++++++++ Utils/mtg-cards-data.txt | 115 +++++++++++++++++- 111 files changed, 5865 insertions(+), 1 deletion(-) create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/AbsorbVis.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/AffaGuardHound.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/AkroanHoplite.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/AltarsReap.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/AscendedLawmage.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/AvatarOfWoe.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/BeastWithin.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/BloodTollHarpy.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/BondsOfQuicksilver.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/BronzeSable.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Brushstrider.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/BurnAway.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/CallerOfGales.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/CarnageGladiator.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/CharmbreakerDevils.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/ChildOfNight.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/CloakedSiren.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/CoilingOracle.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/CoordinatedAssault.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/CopperhornScout.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/CovenantOfMinds.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/DeathWind.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/DeceiverExarch.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/DiabolicTutor.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Dismiss.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Divination.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/DreadStatuary.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/DriverOfTheDead.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/EmberBeast.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/EvolvingWilds.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/ExplosiveVegetation.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/FadeIntoAntiquity.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/FarbogBoneflinger.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Festergloom.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/FieryFall.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/FlameSlash.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/FleetingDistraction.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/FleshbagMarauder.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/FollowedFootsteps.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/ForgottenAncient.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GangOfDevils.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GoblinBalloonBrigade.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GoblinTunneler.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GratuitousViolence.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GruulWarChant.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Guttersnipe.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/GuulDrazSpecter.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HamletbackGoliath.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HarvesterOfSouls.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HavengulVampire.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HedronMatrix.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HexplateGolem.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HornOfGreed.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/HurlyBurly.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/IllTemperedCyclops.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Infest.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/IntoTheVoid.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/IrresistiblePrey.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/JuniperOrderRanger.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/KamiOfTheCrescentMoon.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/KeepsakeGorgon.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/KilnFiend.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Kitesail.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/LaceWithMoonglove.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/LayOfTheLand.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Manaplasm.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/MerfolkLooter.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/MerfolkSkyscout.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/MnemonicWall.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Murder.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Negate.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/NessianAsp.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/NetcasterSpider.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/OgreSentry.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Omenspeaker.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/OpalineUnicorn.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Overrun.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/PharikasMender.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/PlatinumAngel.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Plummet.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/PreyUpon.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/PsychosisCrawler.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/PublicExecution.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/RaiseDead.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/RavenousLeucrocota.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Repulse.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/RoguesPassage.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/RunedServitor.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Sangromancer.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/ShamblingGoblin.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/ShimmeringGrotto.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/ShipwreckSinger.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/ShowAndTell.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/SphinxOfMagosi.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/StoneshockGiant.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/StormchaserChimera.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/StrengthInNumbers.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/StromkirkPatrol.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/SulfurousBlast.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/SylvanBounty.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/TormentingVoice.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/TraumaticVisions.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/TrumpetBlast.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/TwinBolt.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Unnerve.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/Vaporkin.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/VertigoSpawn.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/VoyagingSatyr.java create mode 100644 Mage.Sets/src/mage/sets/conspiracytakethecrown/WindborneCharge.java create mode 100644 Mage.Sets/src/mage/sets/guildpact/VertigoSpawn.java diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/AbsorbVis.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AbsorbVis.java new file mode 100644 index 0000000000..c25acbefb2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AbsorbVis.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class AbsorbVis extends mage.sets.conflux.AbsorbVis { + + public AbsorbVis(UUID ownerId) { + super(ownerId); + this.cardNumber = "126"; + this.expansionSetCode = "CN2"; + } + + public AbsorbVis(final AbsorbVis card) { + super(card); + } + + @Override + public AbsorbVis copy() { + return new AbsorbVis(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/AffaGuardHound.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AffaGuardHound.java new file mode 100644 index 0000000000..7c3be82d6c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AffaGuardHound.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class AffaGuardHound extends mage.sets.riseoftheeldrazi.AffaGuardHound { + + public AffaGuardHound(UUID ownerId) { + super(ownerId); + this.cardNumber = "81"; + this.expansionSetCode = "CN2"; + } + + public AffaGuardHound(final AffaGuardHound card) { + super(card); + } + + @Override + public AffaGuardHound copy() { + return new AffaGuardHound(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/AkroanHoplite.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AkroanHoplite.java new file mode 100644 index 0000000000..7ff0d8a289 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AkroanHoplite.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class AkroanHoplite extends mage.sets.theros.AkroanHoplite { + + public AkroanHoplite(UUID ownerId) { + super(ownerId); + this.cardNumber = "197"; + this.expansionSetCode = "CN2"; + } + + public AkroanHoplite(final AkroanHoplite card) { + super(card); + } + + @Override + public AkroanHoplite copy() { + return new AkroanHoplite(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/AltarsReap.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AltarsReap.java new file mode 100644 index 0000000000..598cb83236 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AltarsReap.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class AltarsReap extends mage.sets.innistrad.AltarsReap { + + public AltarsReap(UUID ownerId) { + super(ownerId); + this.cardNumber = "127"; + this.expansionSetCode = "CN2"; + } + + public AltarsReap(final AltarsReap card) { + super(card); + } + + @Override + public AltarsReap copy() { + return new AltarsReap(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/AscendedLawmage.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AscendedLawmage.java new file mode 100644 index 0000000000..ed53f1eeec --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AscendedLawmage.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class AscendedLawmage extends mage.sets.dragonsmaze.AscendedLawmage { + + public AscendedLawmage(UUID ownerId) { + super(ownerId); + this.cardNumber = "198"; + this.expansionSetCode = "CN2"; + } + + public AscendedLawmage(final AscendedLawmage card) { + super(card); + } + + @Override + public AscendedLawmage copy() { + return new AscendedLawmage(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/AvatarOfWoe.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AvatarOfWoe.java new file mode 100644 index 0000000000..5d00d86af3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/AvatarOfWoe.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.conspiracytakethecrown; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class AvatarOfWoe extends mage.sets.archenemy.AvatarOfWoe { + + public AvatarOfWoe(UUID ownerId) { + super(ownerId); + this.cardNumber = "128"; + this.expansionSetCode = "CN2"; + this.rarity = Rarity.MYTHIC; + } + + public AvatarOfWoe(final AvatarOfWoe card) { + super(card); + } + + @Override + public AvatarOfWoe copy() { + return new AvatarOfWoe(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/BeastWithin.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BeastWithin.java new file mode 100644 index 0000000000..19fae8fe2f --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class BeastWithin extends mage.sets.newphyrexia.BeastWithin { + + public BeastWithin(UUID ownerId) { + super(ownerId); + this.cardNumber = "174"; + this.expansionSetCode = "CN2"; + } + + public BeastWithin(final BeastWithin card) { + super(card); + } + + @Override + public BeastWithin copy() { + return new BeastWithin(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/BloodTollHarpy.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BloodTollHarpy.java new file mode 100644 index 0000000000..0d159a8460 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BloodTollHarpy.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class BloodTollHarpy extends mage.sets.theros.BloodTollHarpy { + + public BloodTollHarpy(UUID ownerId) { + super(ownerId); + this.cardNumber = "129"; + this.expansionSetCode = "CN2"; + } + + public BloodTollHarpy(final BloodTollHarpy card) { + super(card); + } + + @Override + public BloodTollHarpy copy() { + return new BloodTollHarpy(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/BondsOfQuicksilver.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BondsOfQuicksilver.java new file mode 100644 index 0000000000..8824523867 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BondsOfQuicksilver.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class BondsOfQuicksilver extends mage.sets.scarsofmirrodin.BondsOfQuicksilver { + + public BondsOfQuicksilver(UUID ownerId) { + super(ownerId); + this.cardNumber = "102"; + this.expansionSetCode = "CN2"; + } + + public BondsOfQuicksilver(final BondsOfQuicksilver card) { + super(card); + } + + @Override + public BondsOfQuicksilver copy() { + return new BondsOfQuicksilver(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/BronzeSable.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BronzeSable.java new file mode 100644 index 0000000000..0b81306f5d --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BronzeSable.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class BronzeSable extends mage.sets.theros.BronzeSable { + + public BronzeSable(UUID ownerId) { + super(ownerId); + this.cardNumber = "208"; + this.expansionSetCode = "CN2"; + } + + public BronzeSable(final BronzeSable card) { + super(card); + } + + @Override + public BronzeSable copy() { + return new BronzeSable(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Brushstrider.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Brushstrider.java new file mode 100644 index 0000000000..b8b3ccc180 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Brushstrider.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Brushstrider extends mage.sets.returntoravnica.Brushstrider { + + public Brushstrider(UUID ownerId) { + super(ownerId); + this.cardNumber = "177"; + this.expansionSetCode = "CN2"; + } + + public Brushstrider(final Brushstrider card) { + super(card); + } + + @Override + public Brushstrider copy() { + return new Brushstrider(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/BurnAway.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BurnAway.java new file mode 100644 index 0000000000..42dbff09a1 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/BurnAway.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class BurnAway extends mage.sets.khansoftarkir.BurnAway { + + public BurnAway(UUID ownerId) { + super(ownerId); + this.cardNumber = "153"; + this.expansionSetCode = "CN2"; + } + + public BurnAway(final BurnAway card) { + super(card); + } + + @Override + public BurnAway copy() { + return new BurnAway(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/CallerOfGales.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CallerOfGales.java new file mode 100644 index 0000000000..cff3287a38 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CallerOfGales.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class CallerOfGales extends mage.sets.zendikar.CallerOfGales { + + public CallerOfGales(UUID ownerId) { + super(ownerId); + this.cardNumber = "103"; + this.expansionSetCode = "CN2"; + } + + public CallerOfGales(final CallerOfGales card) { + super(card); + } + + @Override + public CallerOfGales copy() { + return new CallerOfGales(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/CarnageGladiator.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CarnageGladiator.java new file mode 100644 index 0000000000..c7a036ba1b --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CarnageGladiator.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class CarnageGladiator extends mage.sets.dragonsmaze.CarnageGladiator { + + public CarnageGladiator(UUID ownerId) { + super(ownerId); + this.cardNumber = "199"; + this.expansionSetCode = "CN2"; + } + + public CarnageGladiator(final CarnageGladiator card) { + super(card); + } + + @Override + public CarnageGladiator copy() { + return new CarnageGladiator(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/CharmbreakerDevils.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CharmbreakerDevils.java new file mode 100644 index 0000000000..02ef461907 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CharmbreakerDevils.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class CharmbreakerDevils extends mage.sets.innistrad.CharmbreakerDevils { + + public CharmbreakerDevils(UUID ownerId) { + super(ownerId); + this.cardNumber = "155"; + this.expansionSetCode = "CN2"; + } + + public CharmbreakerDevils(final CharmbreakerDevils card) { + super(card); + } + + @Override + public CharmbreakerDevils copy() { + return new CharmbreakerDevils(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/ChildOfNight.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ChildOfNight.java new file mode 100644 index 0000000000..32aacf64fd --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ChildOfNight.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class ChildOfNight extends mage.sets.magic2010.ChildOfNight { + + public ChildOfNight(UUID ownerId) { + super(ownerId); + this.cardNumber = "130"; + this.expansionSetCode = "CN2"; + } + + public ChildOfNight(final ChildOfNight card) { + super(card); + } + + @Override + public ChildOfNight copy() { + return new ChildOfNight(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/CloakedSiren.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CloakedSiren.java new file mode 100644 index 0000000000..4d9c899353 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CloakedSiren.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class CloakedSiren extends mage.sets.journeyintonyx.CloakedSiren { + + public CloakedSiren(UUID ownerId) { + super(ownerId); + this.cardNumber = "104"; + this.expansionSetCode = "CN2"; + } + + public CloakedSiren(final CloakedSiren card) { + super(card); + } + + @Override + public CloakedSiren copy() { + return new CloakedSiren(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/CoilingOracle.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CoilingOracle.java new file mode 100644 index 0000000000..b21c97af1c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CoilingOracle.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.conspiracytakethecrown; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class CoilingOracle extends mage.sets.dissension.CoilingOracle { + + public CoilingOracle(UUID ownerId) { + super(ownerId); + this.cardNumber = "200"; + this.expansionSetCode = "CN2"; + this.rarity = Rarity.UNCOMMON; + } + + public CoilingOracle(final CoilingOracle card) { + super(card); + } + + @Override + public CoilingOracle copy() { + return new CoilingOracle(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/CoordinatedAssault.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CoordinatedAssault.java new file mode 100644 index 0000000000..54e105199b --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CoordinatedAssault.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class CoordinatedAssault extends mage.sets.theros.CoordinatedAssault { + + public CoordinatedAssault(UUID ownerId) { + super(ownerId); + this.cardNumber = "154"; + this.expansionSetCode = "CN2"; + } + + public CoordinatedAssault(final CoordinatedAssault card) { + super(card); + } + + @Override + public CoordinatedAssault copy() { + return new CoordinatedAssault(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/CopperhornScout.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CopperhornScout.java new file mode 100644 index 0000000000..c6a05d641c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CopperhornScout.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class CopperhornScout extends mage.sets.scarsofmirrodin.CopperhornScout { + + public CopperhornScout(UUID ownerId) { + super(ownerId); + this.cardNumber = "179"; + this.expansionSetCode = "CN2"; + } + + public CopperhornScout(final CopperhornScout card) { + super(card); + } + + @Override + public CopperhornScout copy() { + return new CopperhornScout(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/CovenantOfMinds.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CovenantOfMinds.java new file mode 100644 index 0000000000..00d59153d2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/CovenantOfMinds.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class CovenantOfMinds extends mage.sets.shardsofalara.CovenantOfMinds { + + public CovenantOfMinds(UUID ownerId) { + super(ownerId); + this.cardNumber = "105"; + this.expansionSetCode = "CN2"; + } + + public CovenantOfMinds(final CovenantOfMinds card) { + super(card); + } + + @Override + public CovenantOfMinds copy() { + return new CovenantOfMinds(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/DeathWind.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DeathWind.java new file mode 100644 index 0000000000..cc2528bccd --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DeathWind.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class DeathWind extends mage.sets.avacynrestored.DeathWind { + + public DeathWind(UUID ownerId) { + super(ownerId); + this.cardNumber = "131"; + this.expansionSetCode = "CN2"; + } + + public DeathWind(final DeathWind card) { + super(card); + } + + @Override + public DeathWind copy() { + return new DeathWind(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/DeceiverExarch.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DeceiverExarch.java new file mode 100644 index 0000000000..bfa9c8cd08 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DeceiverExarch.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class DeceiverExarch extends mage.sets.newphyrexia.DeceiverExarch { + + public DeceiverExarch(UUID ownerId) { + super(ownerId); + this.cardNumber = "106"; + this.expansionSetCode = "CN2"; + } + + public DeceiverExarch(final DeceiverExarch card) { + super(card); + } + + @Override + public DeceiverExarch copy() { + return new DeceiverExarch(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/DiabolicTutor.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DiabolicTutor.java new file mode 100644 index 0000000000..933847118f --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DiabolicTutor.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class DiabolicTutor extends mage.sets.tenthedition.DiabolicTutor { + + public DiabolicTutor(UUID ownerId) { + super(ownerId); + this.cardNumber = "132"; + this.expansionSetCode = "CN2"; + } + + public DiabolicTutor(final DiabolicTutor card) { + super(card); + } + + @Override + public DiabolicTutor copy() { + return new DiabolicTutor(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Dismiss.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Dismiss.java new file mode 100644 index 0000000000..c53d1d0b15 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Dismiss.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Dismiss extends mage.sets.tempest.Dismiss { + + public Dismiss(UUID ownerId) { + super(ownerId); + this.cardNumber = "108"; + this.expansionSetCode = "CN2"; + } + + public Dismiss(final Dismiss card) { + super(card); + } + + @Override + public Dismiss copy() { + return new Dismiss(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Divination.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Divination.java new file mode 100644 index 0000000000..22176da0dc --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Divination.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Divination extends mage.sets.magic2012.Divination { + + public Divination(UUID ownerId) { + super(ownerId); + this.cardNumber = "109"; + this.expansionSetCode = "CN2"; + } + + public Divination(final Divination card) { + super(card); + } + + @Override + public Divination copy() { + return new Divination(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/DreadStatuary.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DreadStatuary.java new file mode 100644 index 0000000000..6c9e4c8b5a --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DreadStatuary.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class DreadStatuary extends mage.sets.worldwake.DreadStatuary { + + public DreadStatuary(UUID ownerId) { + super(ownerId); + this.cardNumber = "217"; + this.expansionSetCode = "CN2"; + } + + public DreadStatuary(final DreadStatuary card) { + super(card); + } + + @Override + public DreadStatuary copy() { + return new DreadStatuary(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/DriverOfTheDead.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DriverOfTheDead.java new file mode 100644 index 0000000000..ba34ef45c8 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/DriverOfTheDead.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class DriverOfTheDead extends mage.sets.avacynrestored.DriverOfTheDead { + + public DriverOfTheDead(UUID ownerId) { + super(ownerId); + this.cardNumber = "133"; + this.expansionSetCode = "CN2"; + } + + public DriverOfTheDead(final DriverOfTheDead card) { + super(card); + } + + @Override + public DriverOfTheDead copy() { + return new DriverOfTheDead(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/EmberBeast.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/EmberBeast.java new file mode 100644 index 0000000000..a15d0e05d6 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/EmberBeast.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class EmberBeast extends mage.sets.gatecrash.EmberBeast { + + public EmberBeast(UUID ownerId) { + super(ownerId); + this.cardNumber = "155"; + this.expansionSetCode = "CN2"; + } + + public EmberBeast(final EmberBeast card) { + super(card); + } + + @Override + public EmberBeast copy() { + return new EmberBeast(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/EvolvingWilds.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/EvolvingWilds.java new file mode 100644 index 0000000000..75aaefa038 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/EvolvingWilds.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class EvolvingWilds extends mage.sets.riseoftheeldrazi.EvolvingWilds { + + public EvolvingWilds(UUID ownerId) { + super(ownerId); + this.cardNumber = "218"; + this.expansionSetCode = "CN2"; + } + + public EvolvingWilds(final EvolvingWilds card) { + super(card); + } + + @Override + public EvolvingWilds copy() { + return new EvolvingWilds(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/ExplosiveVegetation.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ExplosiveVegetation.java new file mode 100644 index 0000000000..f32d7084d8 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ExplosiveVegetation.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class ExplosiveVegetation extends mage.sets.planechase.ExplosiveVegetation { + + public ExplosiveVegetation(UUID ownerId) { + super(ownerId); + this.cardNumber = "180"; + this.expansionSetCode = "CN2"; + } + + public ExplosiveVegetation(final ExplosiveVegetation card) { + super(card); + } + + @Override + public ExplosiveVegetation copy() { + return new ExplosiveVegetation(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/FadeIntoAntiquity.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FadeIntoAntiquity.java new file mode 100644 index 0000000000..55cd126fb1 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FadeIntoAntiquity.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class FadeIntoAntiquity extends mage.sets.theros.FadeIntoAntiquity { + + public FadeIntoAntiquity(UUID ownerId) { + super(ownerId); + this.cardNumber = "181"; + this.expansionSetCode = "CN2"; + } + + public FadeIntoAntiquity(final FadeIntoAntiquity card) { + super(card); + } + + @Override + public FadeIntoAntiquity copy() { + return new FadeIntoAntiquity(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/FarbogBoneflinger.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FarbogBoneflinger.java new file mode 100644 index 0000000000..6826b1bdff --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FarbogBoneflinger.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class FarbogBoneflinger extends mage.sets.darkascension.FarbogBoneflinger { + + public FarbogBoneflinger(UUID ownerId) { + super(ownerId); + this.cardNumber = "134"; + this.expansionSetCode = "CN2"; + } + + public FarbogBoneflinger(final FarbogBoneflinger card) { + super(card); + } + + @Override + public FarbogBoneflinger copy() { + return new FarbogBoneflinger(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Festergloom.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Festergloom.java new file mode 100644 index 0000000000..59e04f784c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Festergloom.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Festergloom extends mage.sets.magic2015.Festergloom { + + public Festergloom(UUID ownerId) { + super(ownerId); + this.cardNumber = "135"; + this.expansionSetCode = "CN2"; + } + + public Festergloom(final Festergloom card) { + super(card); + } + + @Override + public Festergloom copy() { + return new Festergloom(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/FieryFall.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FieryFall.java new file mode 100644 index 0000000000..a0e3954e0b --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FieryFall.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class FieryFall extends mage.sets.conflux.FieryFall { + + public FieryFall(UUID ownerId) { + super(ownerId); + this.cardNumber = "156"; + this.expansionSetCode = "CN2"; + } + + public FieryFall(final FieryFall card) { + super(card); + } + + @Override + public FieryFall copy() { + return new FieryFall(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/FlameSlash.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FlameSlash.java new file mode 100644 index 0000000000..ee3f7a6261 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FlameSlash.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class FlameSlash extends mage.sets.riseoftheeldrazi.FlameSlash { + + public FlameSlash(UUID ownerId) { + super(ownerId); + this.cardNumber = "157"; + this.expansionSetCode = "CN2"; + } + + public FlameSlash(final FlameSlash card) { + super(card); + } + + @Override + public FlameSlash copy() { + return new FlameSlash(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/FleetingDistraction.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FleetingDistraction.java new file mode 100644 index 0000000000..2881485e58 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FleetingDistraction.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class FleetingDistraction extends mage.sets.riseoftheeldrazi.FleetingDistraction { + + public FleetingDistraction(UUID ownerId) { + super(ownerId); + this.cardNumber = "110"; + this.expansionSetCode = "CN2"; + } + + public FleetingDistraction(final FleetingDistraction card) { + super(card); + } + + @Override + public FleetingDistraction copy() { + return new FleetingDistraction(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/FleshbagMarauder.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FleshbagMarauder.java new file mode 100644 index 0000000000..985aba7c38 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FleshbagMarauder.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class FleshbagMarauder extends mage.sets.shardsofalara.FleshbagMarauder { + + public FleshbagMarauder(UUID ownerId) { + super(ownerId); + this.cardNumber = "136"; + this.expansionSetCode = "CN2"; + } + + public FleshbagMarauder(final FleshbagMarauder card) { + super(card); + } + + @Override + public FleshbagMarauder copy() { + return new FleshbagMarauder(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/FollowedFootsteps.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FollowedFootsteps.java new file mode 100644 index 0000000000..05b70258a4 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/FollowedFootsteps.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class FollowedFootsteps extends mage.sets.ravnica.FollowedFootsteps { + + public FollowedFootsteps(UUID ownerId) { + super(ownerId); + this.cardNumber = "111"; + this.expansionSetCode = "CN2"; + } + + public FollowedFootsteps(final FollowedFootsteps card) { + super(card); + } + + @Override + public FollowedFootsteps copy() { + return new FollowedFootsteps(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/ForgottenAncient.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ForgottenAncient.java new file mode 100644 index 0000000000..7c800179b6 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ForgottenAncient.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class ForgottenAncient extends mage.sets.scourge.ForgottenAncient { + + public ForgottenAncient(UUID ownerId) { + super(ownerId); + this.cardNumber = "182"; + this.expansionSetCode = "CN2"; + } + + public ForgottenAncient(final ForgottenAncient card) { + super(card); + } + + @Override + public ForgottenAncient copy() { + return new ForgottenAncient(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GangOfDevils.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GangOfDevils.java new file mode 100644 index 0000000000..af1c160c08 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GangOfDevils.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GangOfDevils extends mage.sets.avacynrestored.GangOfDevils { + + public GangOfDevils(UUID ownerId) { + super(ownerId); + this.cardNumber = "158"; + this.expansionSetCode = "CN2"; + } + + public GangOfDevils(final GangOfDevils card) { + super(card); + } + + @Override + public GangOfDevils copy() { + return new GangOfDevils(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GoblinBalloonBrigade.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GoblinBalloonBrigade.java new file mode 100644 index 0000000000..d09004a1f7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GoblinBalloonBrigade.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GoblinBalloonBrigade extends mage.sets.magic2011.GoblinBalloonBrigade { + + public GoblinBalloonBrigade(UUID ownerId) { + super(ownerId); + this.cardNumber = "159"; + this.expansionSetCode = "CN2"; + } + + public GoblinBalloonBrigade(final GoblinBalloonBrigade card) { + super(card); + } + + @Override + public GoblinBalloonBrigade copy() { + return new GoblinBalloonBrigade(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GoblinTunneler.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GoblinTunneler.java new file mode 100644 index 0000000000..6114330317 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GoblinTunneler.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GoblinTunneler extends mage.sets.riseoftheeldrazi.GoblinTunneler { + + public GoblinTunneler(UUID ownerId) { + super(ownerId); + this.cardNumber = "160"; + this.expansionSetCode = "CN2"; + } + + public GoblinTunneler(final GoblinTunneler card) { + super(card); + } + + @Override + public GoblinTunneler copy() { + return new GoblinTunneler(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GratuitousViolence.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GratuitousViolence.java new file mode 100644 index 0000000000..4a070cf24d --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GratuitousViolence.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GratuitousViolence extends mage.sets.onslaught.GratuitousViolence { + + public GratuitousViolence(UUID ownerId) { + super(ownerId); + this.cardNumber = "161"; + this.expansionSetCode = "CN2"; + } + + public GratuitousViolence(final GratuitousViolence card) { + super(card); + } + + @Override + public GratuitousViolence copy() { + return new GratuitousViolence(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GruulWarChant.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GruulWarChant.java new file mode 100644 index 0000000000..a2cc40eeab --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GruulWarChant.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GruulWarChant extends mage.sets.dragonsmaze.GruulWarChant { + + public GruulWarChant(UUID ownerId) { + super(ownerId); + this.cardNumber = "203"; + this.expansionSetCode = "CN2"; + } + + public GruulWarChant(final GruulWarChant card) { + super(card); + } + + @Override + public GruulWarChant copy() { + return new GruulWarChant(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Guttersnipe.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Guttersnipe.java new file mode 100644 index 0000000000..0082944128 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Guttersnipe.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Guttersnipe extends mage.sets.returntoravnica.Guttersnipe { + + public Guttersnipe(UUID ownerId) { + super(ownerId); + this.cardNumber = "162"; + this.expansionSetCode = "CN2"; + } + + public Guttersnipe(final Guttersnipe card) { + super(card); + } + + @Override + public Guttersnipe copy() { + return new Guttersnipe(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/GuulDrazSpecter.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GuulDrazSpecter.java new file mode 100644 index 0000000000..fbb31b8ec2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/GuulDrazSpecter.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class GuulDrazSpecter extends mage.sets.zendikar.GuulDrazSpecter { + + public GuulDrazSpecter(UUID ownerId) { + super(ownerId); + this.cardNumber = "137"; + this.expansionSetCode = "CN2"; + } + + public GuulDrazSpecter(final GuulDrazSpecter card) { + super(card); + } + + @Override + public GuulDrazSpecter copy() { + return new GuulDrazSpecter(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HamletbackGoliath.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HamletbackGoliath.java new file mode 100644 index 0000000000..d0b56a6e26 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HamletbackGoliath.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HamletbackGoliath extends mage.sets.magic2013.HamletbackGoliath { + + public HamletbackGoliath(UUID ownerId) { + super(ownerId); + this.cardNumber = "163"; + this.expansionSetCode = "CN2"; + } + + public HamletbackGoliath(final HamletbackGoliath card) { + super(card); + } + + @Override + public HamletbackGoliath copy() { + return new HamletbackGoliath(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HarvesterOfSouls.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HarvesterOfSouls.java new file mode 100644 index 0000000000..13b5adab6e --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HarvesterOfSouls.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HarvesterOfSouls extends mage.sets.avacynrestored.HarvesterOfSouls { + + public HarvesterOfSouls(UUID ownerId) { + super(ownerId); + this.cardNumber = "138"; + this.expansionSetCode = "CN2"; + } + + public HarvesterOfSouls(final HarvesterOfSouls card) { + super(card); + } + + @Override + public HarvesterOfSouls copy() { + return new HarvesterOfSouls(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HavengulVampire.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HavengulVampire.java new file mode 100644 index 0000000000..def3cc342c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HavengulVampire.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HavengulVampire extends mage.sets.avacynrestored.HavengulVampire { + + public HavengulVampire(UUID ownerId) { + super(ownerId); + this.cardNumber = "154"; + this.expansionSetCode = "CN2"; + } + + public HavengulVampire(final HavengulVampire card) { + super(card); + } + + @Override + public HavengulVampire copy() { + return new HavengulVampire(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HedronMatrix.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HedronMatrix.java new file mode 100644 index 0000000000..9702471ce9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HedronMatrix.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HedronMatrix extends mage.sets.riseoftheeldrazi.HedronMatrix { + + public HedronMatrix(UUID ownerId) { + super(ownerId); + this.cardNumber = "209"; + this.expansionSetCode = "CN2"; + } + + public HedronMatrix(final HedronMatrix card) { + super(card); + } + + @Override + public HedronMatrix copy() { + return new HedronMatrix(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HexplateGolem.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HexplateGolem.java new file mode 100644 index 0000000000..11bea95dfe --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HexplateGolem.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HexplateGolem extends mage.sets.mirrodinbesieged.HexplateGolem { + + public HexplateGolem(UUID ownerId) { + super(ownerId); + this.cardNumber = "210"; + this.expansionSetCode = "CN2"; + } + + public HexplateGolem(final HexplateGolem card) { + super(card); + } + + @Override + public HexplateGolem copy() { + return new HexplateGolem(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HornOfGreed.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HornOfGreed.java new file mode 100644 index 0000000000..1cf6787335 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HornOfGreed.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HornOfGreed extends mage.sets.stronghold.HornOfGreed { + + public HornOfGreed(UUID ownerId) { + super(ownerId); + this.cardNumber = "211"; + this.expansionSetCode = "CN2"; + } + + public HornOfGreed(final HornOfGreed card) { + super(card); + } + + @Override + public HornOfGreed copy() { + return new HornOfGreed(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/HurlyBurly.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HurlyBurly.java new file mode 100644 index 0000000000..839da7b2dd --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/HurlyBurly.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class HurlyBurly extends mage.sets.lorwyn.HurlyBurly { + + public HurlyBurly(UUID ownerId) { + super(ownerId); + this.cardNumber = "165"; + this.expansionSetCode = "CN2"; + } + + public HurlyBurly(final HurlyBurly card) { + super(card); + } + + @Override + public HurlyBurly copy() { + return new HurlyBurly(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/IllTemperedCyclops.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/IllTemperedCyclops.java new file mode 100644 index 0000000000..64df7ed15c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/IllTemperedCyclops.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class IllTemperedCyclops extends mage.sets.theros.IllTemperedCyclops { + + public IllTemperedCyclops(UUID ownerId) { + super(ownerId); + this.cardNumber = "166"; + this.expansionSetCode = "CN2"; + } + + public IllTemperedCyclops(final IllTemperedCyclops card) { + super(card); + } + + @Override + public IllTemperedCyclops copy() { + return new IllTemperedCyclops(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Infest.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Infest.java new file mode 100644 index 0000000000..0d9be5a5d7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Infest.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Infest extends mage.sets.shardsofalara.Infest { + + public Infest(UUID ownerId) { + super(ownerId); + this.cardNumber = "139"; + this.expansionSetCode = "CN2"; + } + + public Infest(final Infest card) { + super(card); + } + + @Override + public Infest copy() { + return new Infest(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/IntoTheVoid.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/IntoTheVoid.java new file mode 100644 index 0000000000..f893b1b3f2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/IntoTheVoid.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class IntoTheVoid extends mage.sets.avacynrestored.IntoTheVoid { + + public IntoTheVoid(UUID ownerId) { + super(ownerId); + this.cardNumber = "112"; + this.expansionSetCode = "CN2"; + } + + public IntoTheVoid(final IntoTheVoid card) { + super(card); + } + + @Override + public IntoTheVoid copy() { + return new IntoTheVoid(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/IrresistiblePrey.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/IrresistiblePrey.java new file mode 100644 index 0000000000..88ad841541 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/IrresistiblePrey.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class IrresistiblePrey extends mage.sets.riseoftheeldrazi.IrresistiblePrey { + + public IrresistiblePrey(UUID ownerId) { + super(ownerId); + this.cardNumber = "183"; + this.expansionSetCode = "CN2"; + } + + public IrresistiblePrey(final IrresistiblePrey card) { + super(card); + } + + @Override + public IrresistiblePrey copy() { + return new IrresistiblePrey(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/JuniperOrderRanger.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/JuniperOrderRanger.java new file mode 100644 index 0000000000..fe7be41e1c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/JuniperOrderRanger.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class JuniperOrderRanger extends mage.sets.coldsnap.JuniperOrderRanger { + + public JuniperOrderRanger(UUID ownerId) { + super(ownerId); + this.cardNumber = "204"; + this.expansionSetCode = "CN2"; + } + + public JuniperOrderRanger(final JuniperOrderRanger card) { + super(card); + } + + @Override + public JuniperOrderRanger copy() { + return new JuniperOrderRanger(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/KamiOfTheCrescentMoon.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/KamiOfTheCrescentMoon.java new file mode 100644 index 0000000000..48b6f4955d --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/KamiOfTheCrescentMoon.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class KamiOfTheCrescentMoon extends mage.sets.saviorsofkamigawa.KamiOfTheCrescentMoon { + + public KamiOfTheCrescentMoon(UUID ownerId) { + super(ownerId); + this.cardNumber = "113"; + this.expansionSetCode = "CN2"; + } + + public KamiOfTheCrescentMoon(final KamiOfTheCrescentMoon card) { + super(card); + } + + @Override + public KamiOfTheCrescentMoon copy() { + return new KamiOfTheCrescentMoon(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/KeepsakeGorgon.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/KeepsakeGorgon.java new file mode 100644 index 0000000000..4870300c1f --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/KeepsakeGorgon.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class KeepsakeGorgon extends mage.sets.theros.KeepsakeGorgon { + + public KeepsakeGorgon(UUID ownerId) { + super(ownerId); + this.cardNumber = "141"; + this.expansionSetCode = "CN2"; + } + + public KeepsakeGorgon(final KeepsakeGorgon card) { + super(card); + } + + @Override + public KeepsakeGorgon copy() { + return new KeepsakeGorgon(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/KilnFiend.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/KilnFiend.java new file mode 100644 index 0000000000..4272b444af --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/KilnFiend.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class KilnFiend extends mage.sets.riseoftheeldrazi.KilnFiend { + + public KilnFiend(UUID ownerId) { + super(ownerId); + this.cardNumber = "167"; + this.expansionSetCode = "CN2"; + } + + public KilnFiend(final KilnFiend card) { + super(card); + } + + @Override + public KilnFiend copy() { + return new KilnFiend(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Kitesail.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Kitesail.java new file mode 100644 index 0000000000..b2f1bbc67f --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Kitesail.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Kitesail extends mage.sets.worldwake.Kitesail { + + public Kitesail(UUID ownerId) { + super(ownerId); + this.cardNumber = "212"; + this.expansionSetCode = "CN2"; + } + + public Kitesail(final Kitesail card) { + super(card); + } + + @Override + public Kitesail copy() { + return new Kitesail(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/LaceWithMoonglove.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/LaceWithMoonglove.java new file mode 100644 index 0000000000..c4d3cd15bb --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/LaceWithMoonglove.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class LaceWithMoonglove extends mage.sets.lorwyn.LaceWithMoonglove { + + public LaceWithMoonglove(UUID ownerId) { + super(ownerId); + this.cardNumber = "184"; + this.expansionSetCode = "CN2"; + } + + public LaceWithMoonglove(final LaceWithMoonglove card) { + super(card); + } + + @Override + public LaceWithMoonglove copy() { + return new LaceWithMoonglove(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/LayOfTheLand.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/LayOfTheLand.java new file mode 100644 index 0000000000..ef5301dac5 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/LayOfTheLand.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class LayOfTheLand extends mage.sets.apocalypse.LayOfTheLand { + + public LayOfTheLand(UUID ownerId) { + super(ownerId); + this.cardNumber = "185"; + this.expansionSetCode = "CN2"; + } + + public LayOfTheLand(final LayOfTheLand card) { + super(card); + } + + @Override + public LayOfTheLand copy() { + return new LayOfTheLand(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Manaplasm.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Manaplasm.java new file mode 100644 index 0000000000..308f360069 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Manaplasm.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.conspiracytakethecrown; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class Manaplasm extends mage.sets.shardsofalara.Manaplasm { + + public Manaplasm(UUID ownerId) { + super(ownerId); + this.cardNumber = "186"; + this.expansionSetCode = "CN2"; + this.rarity = Rarity.UNCOMMON; + } + + public Manaplasm(final Manaplasm card) { + super(card); + } + + @Override + public Manaplasm copy() { + return new Manaplasm(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/MerfolkLooter.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/MerfolkLooter.java new file mode 100644 index 0000000000..e8614cfcd6 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/MerfolkLooter.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.conspiracytakethecrown; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class MerfolkLooter extends mage.sets.magic2012.MerfolkLooter { + + public MerfolkLooter(UUID ownerId) { + super(ownerId); + this.cardNumber = "114"; + this.expansionSetCode = "CN2"; + this.rarity = Rarity.UNCOMMON; + } + + public MerfolkLooter(final MerfolkLooter card) { + super(card); + } + + @Override + public MerfolkLooter copy() { + return new MerfolkLooter(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/MerfolkSkyscout.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/MerfolkSkyscout.java new file mode 100644 index 0000000000..2fa15f1054 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/MerfolkSkyscout.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class MerfolkSkyscout extends mage.sets.riseoftheeldrazi.MerfolkSkyscout { + + public MerfolkSkyscout(UUID ownerId) { + super(ownerId); + this.cardNumber = "115"; + this.expansionSetCode = "CN2"; + } + + public MerfolkSkyscout(final MerfolkSkyscout card) { + super(card); + } + + @Override + public MerfolkSkyscout copy() { + return new MerfolkSkyscout(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/MnemonicWall.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/MnemonicWall.java new file mode 100644 index 0000000000..f3308d11ea --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/MnemonicWall.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class MnemonicWall extends mage.sets.riseoftheeldrazi.MnemonicWall { + + public MnemonicWall(UUID ownerId) { + super(ownerId); + this.cardNumber = "116"; + this.expansionSetCode = "CN2"; + } + + public MnemonicWall(final MnemonicWall card) { + super(card); + } + + @Override + public MnemonicWall copy() { + return new MnemonicWall(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Murder.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Murder.java new file mode 100644 index 0000000000..c1056f38ea --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Murder.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Murder extends mage.sets.magic2013.Murder { + + public Murder(UUID ownerId) { + super(ownerId); + this.cardNumber = "143"; + this.expansionSetCode = "CN2"; + } + + public Murder(final Murder card) { + super(card); + } + + @Override + public Murder copy() { + return new Murder(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Negate.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Negate.java new file mode 100644 index 0000000000..d5ac5152a1 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Negate.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Negate extends mage.sets.magic2010.Negate { + + public Negate(UUID ownerId) { + super(ownerId); + this.cardNumber = "117"; + this.expansionSetCode = "CN2"; + } + + public Negate(final Negate card) { + super(card); + } + + @Override + public Negate copy() { + return new Negate(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/NessianAsp.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/NessianAsp.java new file mode 100644 index 0000000000..89ecf3d697 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/NessianAsp.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class NessianAsp extends mage.sets.theros.NessianAsp { + + public NessianAsp(UUID ownerId) { + super(ownerId); + this.cardNumber = "187"; + this.expansionSetCode = "CN2"; + } + + public NessianAsp(final NessianAsp card) { + super(card); + } + + @Override + public NessianAsp copy() { + return new NessianAsp(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/NetcasterSpider.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/NetcasterSpider.java new file mode 100644 index 0000000000..0704775f81 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/NetcasterSpider.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class NetcasterSpider extends mage.sets.magic2015.NetcasterSpider { + + public NetcasterSpider(UUID ownerId) { + super(ownerId); + this.cardNumber = "188"; + this.expansionSetCode = "CN2"; + } + + public NetcasterSpider(final NetcasterSpider card) { + super(card); + } + + @Override + public NetcasterSpider copy() { + return new NetcasterSpider(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/OgreSentry.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/OgreSentry.java new file mode 100644 index 0000000000..ee806c2d38 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/OgreSentry.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class OgreSentry extends mage.sets.riseoftheeldrazi.OgreSentry { + + public OgreSentry(UUID ownerId) { + super(ownerId); + this.cardNumber = "168"; + this.expansionSetCode = "CN2"; + } + + public OgreSentry(final OgreSentry card) { + super(card); + } + + @Override + public OgreSentry copy() { + return new OgreSentry(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Omenspeaker.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Omenspeaker.java new file mode 100644 index 0000000000..c96b12e7fe --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Omenspeaker.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Omenspeaker extends mage.sets.theros.Omenspeaker { + + public Omenspeaker(UUID ownerId) { + super(ownerId); + this.cardNumber = "118"; + this.expansionSetCode = "CN2"; + } + + public Omenspeaker(final Omenspeaker card) { + super(card); + } + + @Override + public Omenspeaker copy() { + return new Omenspeaker(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/OpalineUnicorn.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/OpalineUnicorn.java new file mode 100644 index 0000000000..99c324622a --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/OpalineUnicorn.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class OpalineUnicorn extends mage.sets.theros.OpalineUnicorn { + + public OpalineUnicorn(UUID ownerId) { + super(ownerId); + this.cardNumber = "213"; + this.expansionSetCode = "CN2"; + } + + public OpalineUnicorn(final OpalineUnicorn card) { + super(card); + } + + @Override + public OpalineUnicorn copy() { + return new OpalineUnicorn(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Overrun.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Overrun.java new file mode 100644 index 0000000000..619ca72e98 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Overrun.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Overrun extends mage.sets.magic2010.Overrun { + + public Overrun(UUID ownerId) { + super(ownerId); + this.cardNumber = "189"; + this.expansionSetCode = "CN2"; + } + + public Overrun(final Overrun card) { + super(card); + } + + @Override + public Overrun copy() { + return new Overrun(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/PharikasMender.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PharikasMender.java new file mode 100644 index 0000000000..d1e272891e --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PharikasMender.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class PharikasMender extends mage.sets.theros.PharikasMender { + + public PharikasMender(UUID ownerId) { + super(ownerId); + this.cardNumber = "205"; + this.expansionSetCode = "CN2"; + } + + public PharikasMender(final PharikasMender card) { + super(card); + } + + @Override + public PharikasMender copy() { + return new PharikasMender(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/PlatinumAngel.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PlatinumAngel.java new file mode 100644 index 0000000000..a11cda2eb7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PlatinumAngel.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.conspiracytakethecrown; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class PlatinumAngel extends mage.sets.tenthedition.PlatinumAngel { + + public PlatinumAngel(UUID ownerId) { + super(ownerId); + this.cardNumber = "214"; + this.expansionSetCode = "CN2"; + this.rarity = Rarity.MYTHIC; + } + + public PlatinumAngel(final PlatinumAngel card) { + super(card); + } + + @Override + public PlatinumAngel copy() { + return new PlatinumAngel(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Plummet.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Plummet.java new file mode 100644 index 0000000000..3abf15f370 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Plummet.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Plummet extends mage.sets.magic2011.Plummet { + + public Plummet(UUID ownerId) { + super(ownerId); + this.cardNumber = "190"; + this.expansionSetCode = "CN2"; + } + + public Plummet(final Plummet card) { + super(card); + } + + @Override + public Plummet copy() { + return new Plummet(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/PreyUpon.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PreyUpon.java new file mode 100644 index 0000000000..53eabb44b0 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class PreyUpon extends mage.sets.innistrad.PreyUpon { + + public PreyUpon(UUID ownerId) { + super(ownerId); + this.cardNumber = "191"; + this.expansionSetCode = "CN2"; + } + + public PreyUpon(final PreyUpon card) { + super(card); + } + + @Override + public PreyUpon copy() { + return new PreyUpon(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/PsychosisCrawler.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PsychosisCrawler.java new file mode 100644 index 0000000000..dc596a2c30 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PsychosisCrawler.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class PsychosisCrawler extends mage.sets.mirrodinbesieged.PsychosisCrawler { + + public PsychosisCrawler(UUID ownerId) { + super(ownerId); + this.cardNumber = "215"; + this.expansionSetCode = "CN2"; + } + + public PsychosisCrawler(final PsychosisCrawler card) { + super(card); + } + + @Override + public PsychosisCrawler copy() { + return new PsychosisCrawler(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/PublicExecution.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PublicExecution.java new file mode 100644 index 0000000000..65807a3efc --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/PublicExecution.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class PublicExecution extends mage.sets.magic2013.PublicExecution { + + public PublicExecution(UUID ownerId) { + super(ownerId); + this.cardNumber = "145"; + this.expansionSetCode = "CN2"; + } + + public PublicExecution(final PublicExecution card) { + super(card); + } + + @Override + public PublicExecution copy() { + return new PublicExecution(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/RaiseDead.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RaiseDead.java new file mode 100644 index 0000000000..ab51f4dd8c --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RaiseDead.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class RaiseDead extends mage.sets.seventhedition.RaiseDead { + + public RaiseDead(UUID ownerId) { + super(ownerId); + this.cardNumber = "146"; + this.expansionSetCode = "CN2"; + } + + public RaiseDead(final RaiseDead card) { + super(card); + } + + @Override + public RaiseDead copy() { + return new RaiseDead(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/RavenousLeucrocota.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RavenousLeucrocota.java new file mode 100644 index 0000000000..9f0c24b8d7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RavenousLeucrocota.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class RavenousLeucrocota extends mage.sets.journeyintonyx.RavenousLeucrocota { + + public RavenousLeucrocota(UUID ownerId) { + super(ownerId); + this.cardNumber = "192"; + this.expansionSetCode = "CN2"; + } + + public RavenousLeucrocota(final RavenousLeucrocota card) { + super(card); + } + + @Override + public RavenousLeucrocota copy() { + return new RavenousLeucrocota(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Repulse.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Repulse.java new file mode 100644 index 0000000000..505a181cef --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Repulse.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Repulse extends mage.sets.invasion.Repulse { + + public Repulse(UUID ownerId) { + super(ownerId); + this.cardNumber = "119"; + this.expansionSetCode = "CN2"; + } + + public Repulse(final Repulse card) { + super(card); + } + + @Override + public Repulse copy() { + return new Repulse(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/RoguesPassage.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RoguesPassage.java new file mode 100644 index 0000000000..8e6db8e841 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RoguesPassage.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class RoguesPassage extends mage.sets.returntoravnica.RoguesPassage { + + public RoguesPassage(UUID ownerId) { + super(ownerId); + this.cardNumber = "220"; + this.expansionSetCode = "CN2"; + } + + public RoguesPassage(final RoguesPassage card) { + super(card); + } + + @Override + public RoguesPassage copy() { + return new RoguesPassage(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/RunedServitor.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RunedServitor.java new file mode 100644 index 0000000000..4de751e4e2 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/RunedServitor.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class RunedServitor extends mage.sets.riseoftheeldrazi.RunedServitor { + + public RunedServitor(UUID ownerId) { + super(ownerId); + this.cardNumber = "216"; + this.expansionSetCode = "CN2"; + } + + public RunedServitor(final RunedServitor card) { + super(card); + } + + @Override + public RunedServitor copy() { + return new RunedServitor(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Sangromancer.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Sangromancer.java new file mode 100644 index 0000000000..63998cb2d6 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Sangromancer.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Sangromancer extends mage.sets.mirrodinbesieged.Sangromancer { + + public Sangromancer(UUID ownerId) { + super(ownerId); + this.cardNumber = "147"; + this.expansionSetCode = "CN2"; + } + + public Sangromancer(final Sangromancer card) { + super(card); + } + + @Override + public Sangromancer copy() { + return new Sangromancer(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShamblingGoblin.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShamblingGoblin.java new file mode 100644 index 0000000000..d47eb14746 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShamblingGoblin.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class ShamblingGoblin extends mage.sets.dragonsoftarkir.ShamblingGoblin { + + public ShamblingGoblin(UUID ownerId) { + super(ownerId); + this.cardNumber = "148"; + this.expansionSetCode = "CN2"; + } + + public ShamblingGoblin(final ShamblingGoblin card) { + super(card); + } + + @Override + public ShamblingGoblin copy() { + return new ShamblingGoblin(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShimmeringGrotto.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShimmeringGrotto.java new file mode 100644 index 0000000000..cc8639130b --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShimmeringGrotto.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class ShimmeringGrotto extends mage.sets.lorwyn.ShimmeringGrotto { + + public ShimmeringGrotto(UUID ownerId) { + super(ownerId); + this.cardNumber = "221"; + this.expansionSetCode = "CN2"; + } + + public ShimmeringGrotto(final ShimmeringGrotto card) { + super(card); + } + + @Override + public ShimmeringGrotto copy() { + return new ShimmeringGrotto(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShipwreckSinger.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShipwreckSinger.java new file mode 100644 index 0000000000..5a79f76cdf --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShipwreckSinger.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class ShipwreckSinger extends mage.sets.theros.ShipwreckSinger { + + public ShipwreckSinger(UUID ownerId) { + super(ownerId); + this.cardNumber = "205"; + this.expansionSetCode = "CN2"; + } + + public ShipwreckSinger(final ShipwreckSinger card) { + super(card); + } + + @Override + public ShipwreckSinger copy() { + return new ShipwreckSinger(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShowAndTell.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShowAndTell.java new file mode 100644 index 0000000000..91b4cc809f --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/ShowAndTell.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.conspiracytakethecrown; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class ShowAndTell extends mage.sets.urzassaga.ShowAndTell { + + public ShowAndTell(UUID ownerId) { + super(ownerId); + this.cardNumber = "121"; + this.expansionSetCode = "CN2"; + this.rarity = Rarity.MYTHIC; + } + + public ShowAndTell(final ShowAndTell card) { + super(card); + } + + @Override + public ShowAndTell copy() { + return new ShowAndTell(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/SphinxOfMagosi.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SphinxOfMagosi.java new file mode 100644 index 0000000000..84eb8cf363 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SphinxOfMagosi.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class SphinxOfMagosi extends mage.sets.riseoftheeldrazi.SphinxOfMagosi { + + public SphinxOfMagosi(UUID ownerId) { + super(ownerId); + this.cardNumber = "122"; + this.expansionSetCode = "CN2"; + } + + public SphinxOfMagosi(final SphinxOfMagosi card) { + super(card); + } + + @Override + public SphinxOfMagosi copy() { + return new SphinxOfMagosi(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/StoneshockGiant.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StoneshockGiant.java new file mode 100644 index 0000000000..dd5a1bbffb --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StoneshockGiant.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class StoneshockGiant extends mage.sets.theros.StoneshockGiant { + + public StoneshockGiant(UUID ownerId) { + super(ownerId); + this.cardNumber = "169"; + this.expansionSetCode = "CN2"; + } + + public StoneshockGiant(final StoneshockGiant card) { + super(card); + } + + @Override + public StoneshockGiant copy() { + return new StoneshockGiant(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/StormchaserChimera.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StormchaserChimera.java new file mode 100644 index 0000000000..9977e53af6 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StormchaserChimera.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class StormchaserChimera extends mage.sets.journeyintonyx.StormchaserChimera { + + public StormchaserChimera(UUID ownerId) { + super(ownerId); + this.cardNumber = "207"; + this.expansionSetCode = "CN2"; + } + + public StormchaserChimera(final StormchaserChimera card) { + super(card); + } + + @Override + public StormchaserChimera copy() { + return new StormchaserChimera(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/StrengthInNumbers.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StrengthInNumbers.java new file mode 100644 index 0000000000..290b23b3f1 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StrengthInNumbers.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class StrengthInNumbers extends mage.sets.timespiral.StrengthInNumbers { + + public StrengthInNumbers(UUID ownerId) { + super(ownerId); + this.cardNumber = "193"; + this.expansionSetCode = "CN2"; + } + + public StrengthInNumbers(final StrengthInNumbers card) { + super(card); + } + + @Override + public StrengthInNumbers copy() { + return new StrengthInNumbers(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/StromkirkPatrol.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StromkirkPatrol.java new file mode 100644 index 0000000000..e3c6b0a772 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/StromkirkPatrol.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class StromkirkPatrol extends mage.sets.innistrad.StromkirkPatrol { + + public StromkirkPatrol(UUID ownerId) { + super(ownerId); + this.cardNumber = "149"; + this.expansionSetCode = "CN2"; + } + + public StromkirkPatrol(final StromkirkPatrol card) { + super(card); + } + + @Override + public StromkirkPatrol copy() { + return new StromkirkPatrol(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/SulfurousBlast.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SulfurousBlast.java new file mode 100644 index 0000000000..3126709fae --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SulfurousBlast.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class SulfurousBlast extends mage.sets.timespiral.SulfurousBlast { + + public SulfurousBlast(UUID ownerId) { + super(ownerId); + this.cardNumber = "170"; + this.expansionSetCode = "CN2"; + } + + public SulfurousBlast(final SulfurousBlast card) { + super(card); + } + + @Override + public SulfurousBlast copy() { + return new SulfurousBlast(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/SylvanBounty.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SylvanBounty.java new file mode 100644 index 0000000000..f095a73a49 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/SylvanBounty.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class SylvanBounty extends mage.sets.conflux.SylvanBounty { + + public SylvanBounty(UUID ownerId) { + super(ownerId); + this.cardNumber = "194"; + this.expansionSetCode = "CN2"; + } + + public SylvanBounty(final SylvanBounty card) { + super(card); + } + + @Override + public SylvanBounty copy() { + return new SylvanBounty(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/TormentingVoice.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/TormentingVoice.java new file mode 100644 index 0000000000..c4a9f46cdb --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/TormentingVoice.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class TormentingVoice extends mage.sets.khansoftarkir.TormentingVoice { + + public TormentingVoice(UUID ownerId) { + super(ownerId); + this.cardNumber = "171"; + this.expansionSetCode = "CN2"; + } + + public TormentingVoice(final TormentingVoice card) { + super(card); + } + + @Override + public TormentingVoice copy() { + return new TormentingVoice(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/TraumaticVisions.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/TraumaticVisions.java new file mode 100644 index 0000000000..9afab7f85d --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/TraumaticVisions.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class TraumaticVisions extends mage.sets.conflux.TraumaticVisions { + + public TraumaticVisions(UUID ownerId) { + super(ownerId); + this.cardNumber = "123"; + this.expansionSetCode = "CN2"; + } + + public TraumaticVisions(final TraumaticVisions card) { + super(card); + } + + @Override + public TraumaticVisions copy() { + return new TraumaticVisions(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/TrumpetBlast.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/TrumpetBlast.java new file mode 100644 index 0000000000..c233a4da51 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/TrumpetBlast.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class TrumpetBlast extends mage.sets.magic2010.TrumpetBlast { + + public TrumpetBlast(UUID ownerId) { + super(ownerId); + this.cardNumber = "172"; + this.expansionSetCode = "CN2"; + } + + public TrumpetBlast(final TrumpetBlast card) { + super(card); + } + + @Override + public TrumpetBlast copy() { + return new TrumpetBlast(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/TwinBolt.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/TwinBolt.java new file mode 100644 index 0000000000..50ffa68c39 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/TwinBolt.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class TwinBolt extends mage.sets.dragonsoftarkir.TwinBolt { + + public TwinBolt(UUID ownerId) { + super(ownerId); + this.cardNumber = "173"; + this.expansionSetCode = "CN2"; + } + + public TwinBolt(final TwinBolt card) { + super(card); + } + + @Override + public TwinBolt copy() { + return new TwinBolt(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Unnerve.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Unnerve.java new file mode 100644 index 0000000000..d4cf8ababd --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Unnerve.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Unnerve extends mage.sets.urzassaga.Unnerve { + + public Unnerve(UUID ownerId) { + super(ownerId); + this.cardNumber = "150"; + this.expansionSetCode = "CN2"; + } + + public Unnerve(final Unnerve card) { + super(card); + } + + @Override + public Unnerve copy() { + return new Unnerve(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/Vaporkin.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Vaporkin.java new file mode 100644 index 0000000000..149cbc43c3 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/Vaporkin.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class Vaporkin extends mage.sets.theros.Vaporkin { + + public Vaporkin(UUID ownerId) { + super(ownerId); + this.cardNumber = "124"; + this.expansionSetCode = "CN2"; + } + + public Vaporkin(final Vaporkin card) { + super(card); + } + + @Override + public Vaporkin copy() { + return new Vaporkin(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/VertigoSpawn.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/VertigoSpawn.java new file mode 100644 index 0000000000..2465d53027 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/VertigoSpawn.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class VertigoSpawn extends mage.sets.guildpact.VertigoSpawn { + + public VertigoSpawn(UUID ownerId) { + super(ownerId); + this.cardNumber = "125"; + this.expansionSetCode = "CN2"; + } + + public VertigoSpawn(final VertigoSpawn card) { + super(card); + } + + @Override + public VertigoSpawn copy() { + return new VertigoSpawn(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/VoyagingSatyr.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/VoyagingSatyr.java new file mode 100644 index 0000000000..f64a0594f9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/VoyagingSatyr.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class VoyagingSatyr extends mage.sets.theros.VoyagingSatyr { + + public VoyagingSatyr(UUID ownerId) { + super(ownerId); + this.cardNumber = "195"; + this.expansionSetCode = "CN2"; + } + + public VoyagingSatyr(final VoyagingSatyr card) { + super(card); + } + + @Override + public VoyagingSatyr copy() { + return new VoyagingSatyr(this); + } +} diff --git a/Mage.Sets/src/mage/sets/conspiracytakethecrown/WindborneCharge.java b/Mage.Sets/src/mage/sets/conspiracytakethecrown/WindborneCharge.java new file mode 100644 index 0000000000..f9b561d833 --- /dev/null +++ b/Mage.Sets/src/mage/sets/conspiracytakethecrown/WindborneCharge.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.conspiracytakethecrown; + +import java.util.UUID; + +/** + * + * @author fireshoes + */ +public class WindborneCharge extends mage.sets.zendikar.WindborneCharge { + + public WindborneCharge(UUID ownerId) { + super(ownerId); + this.cardNumber = "100"; + this.expansionSetCode = "CN2"; + } + + public WindborneCharge(final WindborneCharge card) { + super(card); + } + + @Override + public WindborneCharge copy() { + return new WindborneCharge(this); + } +} diff --git a/Mage.Sets/src/mage/sets/guildpact/VertigoSpawn.java b/Mage.Sets/src/mage/sets/guildpact/VertigoSpawn.java new file mode 100644 index 0000000000..0711390815 --- /dev/null +++ b/Mage.Sets/src/mage/sets/guildpact/VertigoSpawn.java @@ -0,0 +1,71 @@ +/* + * 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.guildpact; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.BlocksCreatureTriggeredAbility; +import mage.abilities.effects.common.DontUntapInControllersNextUntapStepTargetEffect; +import mage.abilities.effects.common.TapTargetEffect; +import mage.abilities.keyword.DefenderAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; + +/** + * + * @author fireshoes + */ +public class VertigoSpawn extends CardImpl { + + public VertigoSpawn(UUID ownerId) { + super(ownerId, 42, "Vertigo Spawn", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{U}"); + this.expansionSetCode = "GPT"; + this.subtype.add("Illusion"); + this.power = new MageInt(0); + this.toughness = new MageInt(3); + + // Defender + this.addAbility(DefenderAbility.getInstance()); + + // Whenever Vertigo Spawn blocks a creature, tap that creature. That creature doesn't untap during its controller's next untap step. + Ability ability = new BlocksCreatureTriggeredAbility(new TapTargetEffect("that creature"), false, true); + ability.addEffect(new DontUntapInControllersNextUntapStepTargetEffect("that creature")); + this.addAbility(ability); + } + + public VertigoSpawn(final VertigoSpawn card) { + super(card); + } + + @Override + public VertigoSpawn copy() { + return new VertigoSpawn(this); + } +} diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index 27721698e3..f01cbc3bb6 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -3472,6 +3472,7 @@ Ballot Broker|Conspiracy: Take the Crown|13|C|{2}{W}|Creature - Human Advisor|2| Custodi Peacekeeper|Conspiracy: Take the Crown|14|C|{2}{W}|Creature - Human Cleric|2|3|Reveal Custodi Peacekeeper when you draft it and note how many cards you've drafted this draft round, including Custodi Peacekeeper.${W}, {T}: Tap target creature with power less than or equal to the highest number you noted for cards named Custodi Peacekeeper.| Custodi Soulcaller|Conspiracy: Take the Crown|15|U|{1}{W}{W}|Creature - Human Cleric|1|2|Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$Whenever Custodi Soulcaller attacks, return target creature card with converted mana cost X or less from your graveyard to the battlefield, where X is the number of players you attacked with a creature this combat.| Lieutenants of the Guard|Conspiracy: Take the Crown|16|C|{4}{W}|Creature - Human Soldier|2|2|Council's dilemma — When Lieutenants of the Guard enters the battlefield, starting with you, each player votes for strength or numbers. Put a +1/+1 counter on Lieutenants of the Guard for each strength vote and put a 1/1 white Soldier creature token onto the battlefield for each numbers vote.| +Noble Banneret|Conspiracy: Take the Crown|17|U|{2}{W}{W}|Creature - Human Knight|3|3|Draft Noble Banneret face up.$As you draft a creature card, you may reveal it, note its name, then turn Noble Banneret face down.$As long as you control one or more creatures with a name noted for cards named Noble Banneret, Noble Banneret and those creatures gets +1/+1 and have lifelink.| Palace Jailer|Conspiracy: Take the Crown|18|U|{2}{W}{W}|Creature - Human Soldier|2|2|When Palace Jailer enters the battlefield, you become the monarch.$When Palace Jailer enters the battlefield, exile target creature an opponent controls until an opponent becomes the monarch.| Palace Sentinels|Conspiracy: Take the Crown|19|C|{3}{W}|Creature - Human Soldier|2|4|When Palace Sentinels enters the battlefield, you become the monarch.| Paliano Vanguard|Conspiracy: Take the Crown|20|R|{1}{W}|Creature - Human Soldier|2|2|Draft Paliano Vanguard face up.$As you draft a creature card, you may reveal it, note its creature types, then turn Paliano Vanguard face down.$Other creature you control of a type you noted for cards named Paliano Vanguard get +1/+1.| @@ -3483,6 +3484,7 @@ Throne Warden|Conspiracy: Take the Crown|25|C|{1}{W}|Creature - Human Soldier|2| Wings of the Guard|Conspiracy: Take the Crown|26|C|{1}{W}|Creature - Bird|1|1|Flying$Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)| Arcane Savant|Conspiracy: Take the Crown|27|R|{3}{U}{U}|Creature - Human Wizard|3|3|Before you shuffle your deck to start the game, you may reveal an instant or sorcery card you drafted that isn't in your deck.$When Arcane Savant enters the battlefield, copy a card you exiled with cards named Arcane Savant. You may cast the copy without paying its mana cost.| Canal Courier|Conspiracy: Take the Crown|28|C|{5}{U}|Creature - Human Rogue|3|5|When Canal Courier enters the battlefield, you become the monarch.$Whenever Canal Courier and another creature attack different players, Canal Courier can't be blocked this combat.| +Coveted Peacock|Conspiracy: Take the Crown|29|U|{3}{U}{U}|Creature - Bird|3|4|Flying$Whenever Coveted Peacock attacks, you may goad target creature defending player controls. (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)| Expropriate|Conspiracy: Take the Crown|30|M|{7}{U}{U}|Sorcery|||Council's dilemma — Starting with you, each player votes for time or money. For each time vote, take an extra turn after this one. For each money vote, choose a permanent owned by the voter and gain control of it. Exile Expropriate| Illusion of Choice|Conspiracy: Take the Crown|31|U|{U}|Instant|||You choose how each player votes this turn.$Draw a card.| Illusionary Informant|Conspiracy: Take the Crown|32|C|{1}{U}|Creature - Bird Illusion|1|3|Draft Illusionary Informant face up.$During the draft, you may turn Illusionary Informant face down. If you do, look at the next card drafted by a player of your choice.$Flying| @@ -3506,6 +3508,7 @@ Besmirch|Conspiracy: Take the Crown|49|U|{1}{R}{R}|Sorcery|||Until end of turn, Crown-Hunter Hireling|Conspiracy: Take the Crown|50|C|{4}{R}|Creature - Ogre Mercenary|4|4|When Crown-Hunter Hireling enters the battlefield, you become the monarch.$Crown-Hunter Hireling can't attack unless defending player is the monarch.| Deputized Protester|Conspiracy: Take the Crown|51|C|{2}{R}|Creature - Human Warrior|2|1|Menace (This creature can't be blocked except by two or more creatures.)$Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)| Garbage Fire|Conspiracy: Take the Crown|52|C|{2}{R}|Instant|||Reveal Garbage Fire as you draft it and note how many cards you've drafted this draft round, including Garbage Fire.$Garbage Fire deals damage to target creature equal to the highest number you noted for cards named Garbage Fire.| +Goblin Racketeer|Conspiracy: Take the Crown|53|C|{3}{R}|Creature - Goblin Rogue|4|2|Whenever Goblin Racketeer attacks, you may goad target creature defending player controls. (Until your next turn, that creature attacks each combat if able and attacks a player other than you if able.)| Grenzo, Havor Raiser|Conspiracy: Take the Crown|54|R|{R}{R}|Legendary Creature - Goblin Rogue|2|2|Whenever a creature you control deals combat damage to a player, choose one — Goad target creature that player controls; or Exile the top card of that player's library. Until end of turn, you may cast that card and you may spend mana as though it were mana of any color to cast it.| Grenzo's Ruffians|Conspiracy: Take the Crown|55|U|{2}{R}{R}|Creature - Goblin|2|2|Melee (Whenever this creature attacks, it gets +1/+1 until end of turn for each opponent you attacked with a creature this combat.)$Whenever Grenzo's Ruffians deals combat damage to a opponent, it deals that much damage to each other opponent.| Pyretic Hunter|Conspiracy: Take the Crown|56|U|{4}{R}|Creature - Elemental Cat|0|0|Reveal Pyretic Hunter as you draft it and note how many cards you've drafted this draft round, including Pyretic Hunter.$Menace (This creature can't be blocked except by two or more creatures.)$Pyretic Hunter enters the battlefield with X +1/+1 counters on it, where X is the highest number you noted for cards named Pyretic Hunter.| @@ -3533,6 +3536,7 @@ Leovold, Emissary of Trest|Conspiracy: Take the Crown|77|M|{B}{G}{U}|Legendary C Queen Marchesa|Conspiracy: Take the Crown|78|M|{1}{R}{W}{B}|Legendary Creature - Human Assassin|3|3|Deathtouch, haste$When Queen Marchesa enters the battlefield, you become the monarch.$At the beginning of your upkeep, if an opponent is the monarch, put a 1/1 black Assassin creature token with deathtouch and haste onto the battlefield.| Spy Kit|Conspiracy: Take the Crown|79|U|{2}|Artifact - Equipment|||Equipped creature gets +1/+1 and has all names of nonlegendary creature cards in addition to its name.$Equip {2}| Throne of the High City|Conspiracy: Take the Crown|80|R||Land|||{T}: Add {C} to your mana pool.${4}, {T}, Sacrifice Throne of the High City: You become the monarch.| +Affa Guard Hound|Conspiracy: Take the Crown|81|U|{2}{W}|Creature - Hound|2|2|Flash$When Affa Guard Hound enters the battlefield, target creature gets +0/+3 until end of turn.| Disenchant|Conspiracy: Take the Crown|82|C|{1}{W}|Instant|||Destroy target artifact or enchantment.| Doomed Traveler|Conspiracy: Take the Crown|83|C|{W}|Creature - Human Soldier|1|1|When Doomed Traveler dies, put a 1/1 white Spirit creature token with flying onto the battlefield.| Faith's Reward|Conspiracy: Take the Crown|84|R|{3}{W}|Instant|||Return to the battlefield all permanent cards in your graveyard that were put there from the battlefield this turn.| @@ -3550,20 +3554,129 @@ Pariah|Conspiracy: Take the Crown|95|R|{2}{W}|Enchantment - Aura|||Enchant creat Raise the Alarm|Conspiracy: Take the Crown|96|C|{1}{W}|Instant|||Put two 1/1 white Soldier creature tokens onto the battlefield.| Reviving Dose|Conspiracy: Take the Crown|97|C|{2}{W}|Instant|||You gain 3 life.$Draw a card.| Spirit of the Hearth|Conspiracy: Take the Crown|98|R|{4}{W}{W}|Creature - Cat Spirit|4|5|Flying$You have hexproof. (You can't be the target of spells or abilities your opponents control.)| -Wild Griffin|Conspiracy: Take the Crown|100|C|{2}{W}|Creature - Griffin|2|2|Flying| +Wild Griffin|Conspiracy: Take the Crown|99|C|{2}{W}|Creature - Griffin|2|2|Flying| +Windborne Charge|Conspiracy: Take the Crown|100|U|{2}{W}{W}|Sorcery|||Two target creatures you control each get +2/+2 and gain flying until end of turn.| Zealous Strike|Conspiracy: Take the Crown|101|C|{1}{W}|Instant|||Target creature gets +2/+2 and gains first strike until end of turn.| +Bonds of Quicksilver|Conspiracy: Take the Crown|102|C|{3}{U}|Enchantment - Aura|||Flash$Enchant creature$Enchanted creature doesn't untap during its controller's untap step.| +Caller of Gales|Conspiracy: Take the Crown|103|C|{U}|Creature - Merfolk Wizard|1|1|{1}{U}, {T}: Target creature gains flying until end of turn.| +Cloaked Siren|Conspiracy: Take the Crown|104|C|{3}{U}|Creature - Siren|3|2|Flash$Flying| +Covenant of Minds|Conspiracy: Take the Crown|105|R|{4}{U}|Sorcery|||Reveal the top three cards of your library. Target opponent may choose to put those cards in your hand. If he or she doesn't put those cards into your graveyard and draw five cards.| +Deceiver Exarch|Conspiracy: Take the Crown|106|U|{2}{U}|Creature - Cleric|1|4|Flash$When Deceiver Exarch enters the battlefield, choose one &mdash Untap target permanent you control.; or Tap target permanent an opponent controls.| Desertion|Conspiracy: Take the Crown|107|R|{3}{U}{U}|Instant|||Counter target spell. If an artifact or creature spell is countered this way, put that card onto the battlefield under your control instead of into its owner's graveyard.| +Dismiss|Conspiracy: Take the Crown|108|U|{2}{U}{U}|Instant|||Counter target spell.$Draw a card.| +Divination|Conspiracy: Take the Crown|109|C|{2}{U}|Sorcery|||Draw two cards.| +Fleeting Distraction|Conspiracy: Take the Crown|110|C|{U}|Instant|||Target creature gets -1/-0 until end of turn.$Draw a card.| +Followed Footsteps|Conspiracy: Take the Crown|111|R|{3}{U}{U}|Enchantment - Aura|||Enchant creature$At the beginning of your upkeep, put a token that's a copy of enchanted creature onto the battlefield.| +Into the Void|Conspiracy: Take the Crown|112|U|{3}{U}|Sorcery|||Return up to two target creatures to their owners' hands.| +Kami of the Crescent Moon|Conspiracy: Take the Crown|113|R|{U}{U}|Legendary Creature - Spirit|1|3|At the beginning of each player's draw step, that player draws an additional card.| +Merfolk Looter|Conspiracy: Take the Crown|114|U|{1}{U}|Creature - Merfolk Rogue|1|1|{T}: Draw a card, then discard a card.| +Merfolk Skyscout|Conspiracy: Take the Crown|115|U|{2}{U}{U}|Creature - Merfolk Scout|2|3|Flying$Whenever Merfolk Skyscout attacks or blocks, untap target permanent.| +Mnemonic Wall|Conspiracy: Take the Crown|116|C|{4}{U}|Creature - Wall|0|4|Defender$When Mnemonic Wall enters the battlefield, you may return target instant or sorcery card from your graveyard to your hand.| +Negate|Conspiracy: Take the Crown|117|C|{1}{U}|Instant|||Counter target noncreature spell.| +Omenspeaker|Conspiracy: Take the Crown|118|C|{1}{U}|Creature - Human Wizard|1|3|When Omenspeaker enters the battlefield, scry 2.| +Repulse|Conspiracy: Take the Crown|119|C|{2}{U}|Instant|||Return target creature to its owner's hand.$Draw a card.| Serum Visions|Conspiracy: Take the Crown|120|U|{U}|Sorcery|||Draw a card. Scry 2. (Look at the top two cards of your library, then put any number of them on the bottom of your libary and the rest of top in any order.)| +Show and Tell|Conspiracy: Take the Crown|121|M|{2}{U}|Sorcery|||Each player may put an artifact, creature, enchantment, or land card from his or her hand onto the battlefield.| +Sphinx of Magosi|Conspiracy: Take the Crown|122|R|{3}{U}{U}{U}|Creature - Sphinx|6|6|Flying${2}{U}: Draw a card, then put a +1/+1 counter of Sphinx of Magosi.| +Traumatic Visions|Conspiracy: Take the Crown|123|C|{3}{U}{U}|Instant|||Counter target spell.$Basic landcycling {1}{U} ({1}{U}, Discard this card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.)| +Vaporkin|Conspiracy: Take the Crown|124|C|{1}{U}|Creature - Elemental|2|1|Flying$Vaporkin can only block creatures with flying.| +Vertigo Spawn|Conspiracy: Take the Crown|125|U|{1}{U}|Creature - Illusion|0|3|Defender$Whenever Vertigo Spawn blocks a creature, tap that creature. That creature doesn't untap during its controller's next untap step.| +Absorb Vis|Conspiracy: Take the Crown|126|C|{6}{B}|Sorcery|||Target player loses 4 life and you gain 4 life.$Basic landcycling {1}{B}| +Altar's Reap|Conspiracy: Take the Crown|127|C|{1}{B}|Instant|||As an addtional cost to cast Altar's Reap, sacrifice a creature.$Draw two cards.| +Avatar of Woe|Conspiracy: Take the Crown|128|M|{6}{U}{U}|Creature - Avatar|6|5|If there are ten or more creature cards total in all graveyard, Avatar of Woe costs {6} less to cast.$Fear${T}: Destroy target creature. It can't be regenerated.| +Blood-Toll Harpy|Conspiracy: Take the Crown|129|C|{2}{B}|Creature - Harpy|2|1|Flying$When Blood-Toll Harpy enters the battlefield, each player loses 1 life.| +Child of Night|Conspiracy: Take the Crown|130|C|{1}{B}|Creature - Vampire|2|1|Lifelink| +Death Wind|Conspiracy: Take the Crown|131|C|{X}{B}|Instant|||Target creature gets -X/-X until end of turn.| +Diabolic Tutor|Conspiracy: Take the Crown|132|U|{2{B}{B}|Sorcery|||Search your library for a card and put that card into your hand. Then shuffle your library.| +Driver of the Dead|Conspiracy: Take the Crown|133|C|{3}{B}|Creature - Vampire|3|2|When Driver of the Dead dies, return target creature card with converted mana cost 2 or less from your graveyard to the battlefield.| +Farbog Boneflinger|Conspiracy: Take the Crown|134|U|{4}{B}|Creature - Zombie|2|2|When Farbog Boneflinger enters the battlefield, target creature gets -2/-2 until end of turn.| +Festergloom|Conspiracy: Take the Crown|135|C|{2}{B}|Sorcery|||Nonblack creatures gets -1/-1 until end of turn.| +Fleshbag Marauder|Conspiracy: Take the Crown|136|U|{2}{B}|Creature - Zombie Warrior|3|1|When Fleshbag Marauder enters the battlefield, each player sacrifices a creature.| +Guul Draz Specter|Conspiracy: Take the Crown|137|R|{2}{B}{B}|Creature - Specter|2|2|Flying$Guul Draz Specter gets +3/+3 as long as an opponent has no cards in hand.$Whenever Guul Graz Specter deals combat damage to a player, that player discards a card.| +Harvester of Souls|Conspiracy: Take the Crown|138|R|{4}{B}{B}|Creature - Demon|5|5|Deathtouch$Whenever another nontoken creature dies, you may draw a card.| +Infest|Conspiracy: Take the Crown|139|U|{1}{B}{B}|Sorcery|||All creatures get -2/-2 until end of turn.| Inquisition of Kozilek|Conspiracy: Take the Crown|140|R|{B}|Sorcery|||Target player reveals his or her hand. You choose a nonland card from it with converted mana cost 3 or less. That player discards that card.| +Keepsake Gorgon|Conspiracy: Take the Crown|141|U|{3}{B}{B}|Creature - Gorgon|2|5|Deathtouch${5}{B}{B}: Monstrosity 1.$When Keepsake Gorgon becomes monstrous, destroy target non-Gorgon creature an opponent controls.| +Mausoleum Turnkey|Conspiracy: Take the Crown|142|U|{3}{B}|Creature - Ogre Rogue|3|2|When Mausoleum Turnkey enters the battlefield, return target creature card of an opponent's choice from your graveyard to your hand.| +Murder|Conspiracy: Take the Crown|143|C|{1}{B}{B}|Instant|||Destroy target creature.| Phyrexian Arena|Conspiracy: Take the Crown|144|R|{1}{B}{B}|Enchantment|||At the beginning of your upkeep, you draw a card and you lose 1 life.| +Public Execution|Conspiracy: Take the Crown|145|U|{5}{B}|Instant|||Destroy target creature an opponent controls. Each other creature that player controls gets -2/-0 until end of turn.| +Raise Dead|Conspiracy: Take the Crown|146|C|{B}|Sorcery|||Return target creature card from your graveyard to your hand.| +Sangromancer|Conspiracy: Take the Crown|147|R|{2}{B}{B}|Creature - Vampire Shaman|3|3|Flying$Whenever a creature an opponent controls dies, you may gain 3 life.$Whenever an opponent discards a card, you may gain 3 life.| +Shambling Goblin|Conspiracy: Take the Crown|148|C|{B}|Creature - Zombie Goblin|1|1|When Shambling Goblin dies, target creature an opponent controls gets -1/-1 until end of turn.| +Stromkirk Patrol|Conspiracy: Take the Crown|149|C|{4}{B}|Creature - Vampire Soldier|4|3|Whenever Stromkirk Patrol deals combat damage to a player, put a +1/+1 counter on it.| +Unnerve|Conspiracy: Take the Crown|150|C|{3}{B}|Sorcery|||Each opponent discards two cards.| +Burn Away|Conspiracy: Take the Crown|151|U|{4}{R}|Instant|||Burn Away deals 6 damage to target creature. When that creature dies this turn, exile all cards from its controller's graveyard.| Burning Wish|Conspiracy: Take the Crown|152|R|{1}{R}|Sorcery|||You may choose a sorcery card you own from outside the game, reveal that card, and put it into your hand. Exile Burning Wish.| +Coordinated Assault|Conspiracy: Take the Crown|154|U|{R}|Instant|||Up to two target creatures each get +1/+0 and gain first strike until end of turn.| +Charmbreaker Devils|Conspiracy: Take the Crown|155|R|{5}{R}|Creature - Devil|4|4|At the beginning of your upkeep, return an instant or sorcery card at random from your graveyard to your hand.$Whenever you cast an instant or sorcery spell, Charmbreaker Devils gets +4/+0 until end of turn.| +Ember Beast|Conspiracy: Take the Crown|155|C|{2}{R}|Creature - Beast|3|4|Ember Beast can't attack or block alone.| +Fiery Fall|Conspiracy: Take the Crown|156|C|{5}{R}|Instant|||Fiery Fall deals 5 damage to target creature.$Basic landcycling {1}{R}| +Flame Slash|Conspiracy: Take the Crown|157|C|{R}|Sorcery|||Flame Slash deals 4 damage to target creature.| +Gang of Devils|Conspiracy: Take the Crown|158|U|{5}{R}|Creature - Devil|3|3|When Gang of Devils dies, it deals 3 damage divided as you choose among one, two, or three target creatures and/or players.| +Goblin Balloon Brigade|Conspiracy: Take the Crown|159|C|{R}|Creature - Goblin Warrior|1|1|{R}: Goblin Balloon Brigade gains flying until end of turn.| +Goblin Tunneler|Conspiracy: Take the Crown|160|C|{1}{R}|Creature - Goblin Rogue|1|1|{T}: Target creature with power 2 or less can't be blocked this turn.| +Gratuitous Violence|Conspiracy: Take the Crown|161|R|{2}{R}{R}{R}|Enchantment|||If a creature you control would deal damage to a creature or player, it deals double that damage to that creature or player instead.| +Guttersnipe|Conspiracy: Take the Crown|162|U|{2}{R}|Creature - Goblin Shaman|2|2|Whenever you cast an instant or sorcery spell, Guttersnipe deals 2 damage to each opponent.| +Hamletback Goliath|Conspiracy: Take the Crown|163|R|{6}{R}|Creature - Giant Warrior|6|6|Whenever another creature enters the battlefield, you may put X +1/+1 counters on Hamletback Goliath, where X is that creature's power.| +Havengul Vampire|Conspiracy: Take the Crown|164|U|{3}{R}|Creature - Vampire|2|2|Whenever Havengul Vampire deals combat damage to a player, put a +1/+1 counter on it.$Whenever another creature dies, put a +1/+1 counter on Havengul Vampire. +Hurly-Burly|Conspiracy: Take the Crown|165|C|{1}{R}|Sorcery|||Choose one — Hurly-Burly deals 1 damage to each creature without flying.; or Hurly-Burly deals 1 damage to each creature with flying.| +Ill-Tempered Cyclops|Conspiracy: Take the Crown|166|C|{3}{R}|Creature - Cyclops|3|3|Trample${5}{R}: Monstrosity 3.| +Kiln Fiend|Conspiracy: Take the Crown|167|C|{1}{R}|Creature - Elemental Beast|1|2|Whenever you cast an instant or sorcery spell, Kiln Fiend gets +3/+0 until end of turn.| +Ogre Sentry|Conspiracy: Take the Crown|168|C|{1}{R}|Creature - Ogre Warrior|3|3|Defender| +Stoneshock Giant|Conspiracy: Take the Crown|169|U|{3}{R}{R}|Creature - Giant|5|4|{6}{R}{R}: Monstrosity 3$When Stoneshock Giant becomes monstrous, creature without flying your opponents control can't block this turn.| +Sulfurous Blast|Conspiracy: Take the Crown|170|U|{2}{R}{R}|Instant|||Sulfurous Blast deals 2 damage to each creature and each player. If you cast this spell during your main phase, Sulfurous Blast deals 3 damage to each creature and each player instant.| +Tormenting Voice|Conspiracy: Take the Crown|171|C|{1}{R}|Sorcery|||As an additional cost to cast Tormenting Voice, discard a card.$Draw two cards.| +Trumpet Blast|Conspiracy: Take the Crown|172|C|{2}{R}|Instant|||Attacking creatures get +2/+0 until end of turn.| +Twin Bolt|Conspiracy: Take the Crown|173|C|{1}{R}|Instant|||Twin Bolt deals 2 damage divided as you choose among one or two target creatures and/or players.| +Beast Within|Conspiracy: Take the Crown|174|U|{2}{G}|Instant|||Destroy target permanent. Its controller puts a 3/3 green Beast creature token onto the battlefield.| Berserk|Conspiracy: Take the Crown|175|M|{G}|Instant|||Cast Berserk only before the combat damage step.$Target creature gains trample and gets +X/+0 until end of turn, where is its power. At the beginning of the next end step, destroy that creature if it attacked this turn.| Birds of Paradise|Conspiracy: Take the Crown|176|R|{G}|Creature - Bird|0|1|Flying${T}: Add one mana of any color to your mana pool.| +Brushstrider|Conspiracy: Take the Crown|177|U|{1}{G}|Creature - Beast|3|1|Vigilance| Burgeoning|Conspiracy: Take the Crown|178|R|{G}|Enchantment|||Whenever an opponent plays a land, you may put a land card from your hand onto the battlefield.| +Copperhorn Scout|Conspiracy: Take the Crown|179|C|{G}|Creature - Elf Scout|1|1|Whenever Coppenhorn Scout attacks, untap each other creature you control.| +Explosive Vegetation|Conspiracy: Take the Crown|180|U|{3}{G}|Sorcery|||Search your library for up to two basic lands and put them onto the battlefield tapped. Then shuffle your library.| +Fade into Antiquity|Conspiracy: Take the Crown|181|C|{2}{G}|Sorcery|||Exile target artifact or enchantment.| +Forgotten Ancient|Conspiracy: Take the Crown|182|R|{3}{G}|Creature - Elemental|0|3|Whenever a player casts a spell, you may put a +1/+1 counter on FOrgotten Ancient.$At the beginning of your upkeep, you may move any number of +1/+1 counters from Forgotten Ancient onto other creatures.| +Irresistible Prey|Conspiracy: Take the Crown|183|U|{G}|Sorcery|||Target creature must be blocked this turn if able.$Draw a card.| +Lace with Moonglove|Conspiracy: Take the Crown|184|C|{2}{G}|Instant|||Target creature gains deathtouch until end of turn.$Draw a card.| +Lay of the Land|Conspiracy: Take the Crown|185|C|{G}|Sorcery|||Search your library for a basic land card, reveal it, put it into your hand, then shuffle your library.| +Manaplasm|Conspiracy: Take the Crown|186|U|{2}{G}|Creature - Ooze|1|1|Whenever you cast a spell, Manaplasm gets +X/+X until end of turn, where X is that spell's converted mana cost.| +Nessian Asp|Conspiracy: Take the Crown|187|C|{4}{G}|Creature - Snake|4|5|Reach$Monstrosity 4.| +Netcaster Spider|Conspiracy: Take the Crown|188|C|{2}{G}|Creature - Spider|2|3|Reach$Whenever Netcaster Spider blocks a creature with flying, Netcaster Spider gets +2/+0 until end of turn.| +Overrun|Conspiracy: Take the Crown|189|U|{2}{G}{G}{G}|Sorcery|||Creatures you control gets +3/+3 and gain trample until end of turn.| +Plummet|Conspiracy: Take the Crown|190|C|{1}{G}|Instant|||Destroy target creature with flying.| +Prey Upon|Conspiracy: Take the Crown|191|C|{G}|Sorcery|||Target creature you control fights target creature you don't control.| +Ravenous Leucrocota|Conspiracy: Take the Crown|192|C|{3}{G}|Creature - Beast|2|4|Vigilance${6}{G}: Monstrosity 3.| +Strength in Numbers|Conspiracy: Take the Crown|193|C|{1}{G}|Instant|||Until the end of turn, target creature gains trample and gets +X/+X, where X is the number of attacking creatures.| +Sylvan Bounty|Conspiracy: Take the Crown|194|C|{5}{G}|Instant|||Target player gain 8 life.$Basic landcycling {1}{G}| +Voyaging Satyr|Conspiracy: Take the Crown|195|C|{1}{G}|Creature - Satyr|1|2|{T}: Untap target land.| Wild Pair|Conspiracy: Take the Crown|196|R|{4}{G}{G}|Enchantment|||Whenever a creature enters the battlefield, if you cast it from your hand, you may search your library for a creature card with the same total power and toughness and put it onto the battlefield. If you do, shuffle your library.| +Akroan Hoplite|Conspiracy: Take the Crown|197|U|{R}{W}|Creature - Human Soldier|1|2|Whenever Akroan Hoplite attacks, it gets +X/+0 until the end of turn, where X is the number of attacking creatures you control.| +Ascended Lawmage|Conspiracy: Take the Crown|198|U|{2}{W}{U}|Creature - Vedalken Wizard|3|2|Flying, hexproof| +Carnage Gladiator|Conspiracy: Take the Crown|199|U|{2}{B}{R}|Creature - Skeleton Warrior|4|2|Whenever a creature blocks, that creature's controller loses 1 life.${1}{B}{R}: Regenerate Carnage Gladiator.| +Coiling Oracle|Conspiracy: Take the Crown|200|U|{G}{U}|Creature - Snake Elf Druid|1|1|When Coiling Oracle enters the battlefield, reveal the top card of your library. If it's a land card, put it onto the battlefield. Otherwise, put that card into your hand.| Dragonlair Spider|Conspiracy: Take the Crown|201|R|{2}{R}{R}{G}{G}|Creature - Spider|5|6|Reach$Whenever an opponent casts a spell, put a 1/1 green Insect creature token onto the battlefield.| Duskmantle Seer|Conspiracy: Take the Crown|202|R|{2}{U}{B}|Creature - Vampire Wizard|4|4|Flying$At the beginning of your upkeep, each player reveals the top card of his or her library, loses life equal to that card's converted mana cost, then puts it into his or her hand.| +Gruul War Chant|Conspiracy: Take the Crown|203|U|{2}{R}{G}|Enchantment|||Attacking creatures you control gets +1/+0 and have menace.| +Juniper Order Ranger|Conspiracy: Take the Crown|204|U|{3}{G}{W}|Creature - Human Knight|2|4|Whenever another creature enters the battlefield under your control, put a +1/+1 counter on that creature and a +1/+1 counter on Juniper Order Ranger.| +Pharika's Mender|Conspiracy: Take the Crown|205|U|{3}{B}{G}|Creature - Gorgon|4|3|When Pharika's Mender enters the battlefield, you may return target creature or enchantment card from your graveyard to your hand.| +Shipwreck Singer|Conspiracy: Take the Crown|206|U|{U}{B}|Creature - Siren|1|2|Flying${1}{U}: Target creature an opponent controls attacks this turn if able.${1}{B}, {T}: Attacking creatures gets -1/-1 until end of turn.| +Stormchaser Chimera|Conspiracy: Take the Crown|207|U|{2}{U}{R}|Creature - Chimera|2|3|Flying${2}{U}{R}: Scry 1, then reveal the top card of your library. Stormchaser Chimera gets +x/+0 until end of turn, where X is that card's converted mana cost.| +Bronze Sable|Conspiracy: Take the Crown|208|C|{2}|Artifact Creature - Sable|2|1|| +Hedron Matrix|Conspiracy: Take the Crown|209|R|{4}|Artifact - Equipment|||Equipped creature gets +X/+X, where X is its converted mana cost.$Equip {4}| +Hexplate Golem|Conspiracy: Take the Crown|210|C|{7}|Artifact Creature - Golem|5|7|| +Horn of Greed|Conspiracy: Take the Crown|211|R|{3}|Artifact|||Whenever a player plays a land, that player draws a card.| +Kitesail|Conspiracy: Take the Crown|212|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+0 and has flying.$Equip {2}| +Opaline Unicorn|Conspiracy: Take the Crown|213|C|{3}|Artifact Creature - Unicorn|1|2|{T}: Add one mana of any color to your mana pool.| +Platinum Angel|Conspiracy: Take the Crown|214|M|{7}|Artifact Creature - Angel|4|4|Flying$You can't lose the game and your opponents can't win the game.| +Psychosis Crawler|Conspiracy: Take the Crown|215|R|{5}|Artifact Creature - Horror|0|0|Psychosis Crawler's power and toughness are each equal to the number of cards in your hand.$Whenever you draw a card, each opponent loses 1 life.| +Runed Servitor|Conspiracy: Take the Crown|216|U|{2}|Artifact Creature - Construct|2|2|When Runed Servitor dies, each player draws a card.| +Dread Statuary|Conspiracy: Take the Crown|217|U||Land|||{T}: Add {C} to your mana pool.${4}: Dread Statuary becomes a 4/2 Golem artifact creature until end of turn. It's still a land.| +Evolving Wilds|Conspiracy: Take the Crown|218|C||Land|||{T}, Sacrifice Evolving Wilds: Search your library for a basic land card and put it onto the battlefield tapped. Then shuffle your library.| Exotic Orchard|Conspiracy: Take the Crown|219|R||Land|||{T}: Add to your mana pool one mana of any color that a land an opponent control could produce.| +Rogue's Passage|Conspiracy: Take the Crown|220|U||Land|||{T}: Add {C} to your mana pool.${4}, {T}: Target creature can't be blocked this turn.| +Shimmering Grotto|Conspiracy: Take the Crown|221|C||Land|||{T} Add {C} to your mana pool.${1}, {T}: Add one mana of any color to your mana pool.| Archangel's Light|Dark Ascension|1|M|{7}{W}|Sorcery|||You gain 2 life for each card in your graveyard, then shuffle your graveyard into your library.| Hollowhenge Spirit|Dark Ascension|10|U|{3}{W}|Creature - Spirit|2|2|Flash (You may cast this spell any time you could cast an instant.)$Flying$When Hollowhenge Spirit enters the battlefield, remove target attacking or blocking creature from combat.| Nearheath Stalker|Dark Ascension|100|C|{4}{R}|Creature - Vampire Rogue|4|1|Undying (When this creature dies, if it had no +1/+1 counters on it, return it to the battlefield under its owner's control with a +1/+1 counter on it.)| From a23ec58832c2035f58c7c2c4571a9364d66ca50f Mon Sep 17 00:00:00 2001 From: fireshoes Date: Mon, 22 Aug 2016 10:53:28 -0500 Subject: [PATCH 6/9] [CN2] Missed a couple conspiracies... --- Utils/mtg-cards-data.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index f01cbc3bb6..5a529c6a2c 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -3458,8 +3458,10 @@ Tukatongue Thallid|Conflux|96|C|{G}|Creature - Fungus|1|1|When Tukatongue Thalli Wild Leotau|Conflux|97|C|{2}{G}{G}|Creature - Cat|5|4|At the beginning of your upkeep, sacrifice Wild Leotau unless you pay {G}.| Apocalypse Hydra|Conflux|98|M|{X}{R}{G}|Creature - Hydra|0|0|Apocalypse Hydra enters the battlefield with X +1/+1 counters on it. If X is 5 or more, it enters the battlefield with an additional X +1/+1 counters on it.${1}{R}, Remove a +1/+1 counter from Apocalypse Hydra: Apocalypse Hydra deals 1 damage to target creature or player.| Blood Tyrant|Conflux|99|R|{4}{U}{B}{R}|Creature - Vampire|5|5|Flying, trample$At the beginning of your upkeep, each player loses 1 life. Put a +1/+1 counter on Blood Tyrant for each 1 life lost this way.$Whenever a player loses the game, put five +1/+1 counters on Blood Tyrant.| +Adriana's Valor|Conspiracy: Take the Crown|1|C||Conspiracy|||Hidden agenda (Start the game with conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Whenever a creature you control with the chosen name attacks, you may pay {W}. If you do, that creature gains indestructible until end of turn. (Damage and effects that say "destroy" don't destroy it.)| Assemble the Rank and Vile|Conspiracy: Take the Crown|2|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Creatures you control with the chosen name have "When this creature dies, you may pay {B}. If you do, put a 2/2 black Zombie creature token onto the battlefield tapped."| Echoing Boon|Conspiracy: Take the Crown|3|U||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Whenever you cast an instant or sorcery spell, if it targets a creature you control with the chosen name, you may copy that spell and may choose new targets for the copy.| +Emissary's Ploy|Conspiracy: Take the Crown|4|R||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$Before drawing your opening hand, choose 1, 2, or 3.$You may spend mana as though it were mana of any color to cast creature spells with converted mana cost equal to the chosen number.| Hired Heist|Conspiracy: Take the Crown|5|C||Conspiracy|||Hidden agenda (Start the game with this conspiracy face down in the command zone and secretly name a card. You may turn this conspiracy face up any time and reveal the chosen name.)$Whenever a creature control with the chosen name deals combat damage to a player, you may pay {U}. If you do, draw a card.| Hold the Perimeter|Conspiracy: Take the Crown|6|R||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$At the beginning of your first upkeep, put a 1/2 white Soldier creature token with defender onto the battlefield.$At the beginning of each other player's first upkeep, that player puts a 1/1 red Goblin creature token onto the battlefield with "This creature can't block."| Hymn of the Wilds|Conspiracy: Take the Crown|7|M||Conspiracy|||(Start the game with this conspiracy face up in the command zone.)$The first creature spell you cast each turn costs {1} less to cast.$You can't cast instant or sorcery spells.| From 2f22a452386ec205a09a69add11124adf5f001cb Mon Sep 17 00:00:00 2001 From: Walter Weber Date: Mon, 22 Aug 2016 23:17:24 +0200 Subject: [PATCH 7/9] Added Flashback tests for X Spells Snapcaster granting Flashback to Repeal (X influences targetting) Snapcaster granting Flashback to Blaze (X doesn't influence targetting) --- .../abilities/keywords/FlashbackTest.java | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/FlashbackTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/FlashbackTest.java index 7c8c337630..946ded1e94 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/FlashbackTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/FlashbackTest.java @@ -73,6 +73,70 @@ public class FlashbackTest extends CardTestPlayerBase { assertExileCount("Fracturing Gust", 1); } + /** + * + * Test Granting Flashback to spells with X in manacost which have targeting requirements depending on the choice of X + * + * Specific instance: Snapcaster Mage granting Flashback to Repeal + */ + @Test + public void testSnapcasterMageWithRepeal(){ + addCard(Zone.BATTLEFIELD, playerA, "Island", 5); + addCard(Zone.HAND, playerA, "Snapcaster Mage",1); + addCard(Zone.GRAVEYARD, playerA, "Repeal",1); + + + castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Snapcaster Mage"); + setChoice(playerA, "Repeal"); + + activateAbility(1, PhaseStep.POSTCOMBAT_MAIN, playerA, "Flashback"); + setChoice(playerA, "X=2"); + addTarget(playerA, "Snapcaster Mage"); + + setStopAt(1, PhaseStep.END_TURN); + + execute(); + + assertPermanentCount(playerA, "Snapcaster Mage", 0); + assertGraveyardCount(playerA, "Repeal", 0); + assertExileCount("Repeal", 1); + + } + + /** + * + * Test Granting Flashback to spells with X in mana cost, where X has no influence on targeting requirements + * + * Specific instance: + * Snapcaser Mage granting Flashback to Blaze + */ + @Test + public void testSnapcasterMageWithBlaze(){ + addCard(Zone.BATTLEFIELD, playerA, "Island", 5); + addCard(Zone.BATTLEFIELD, playerA, "Mountain", 1); + + addCard(Zone.HAND, playerA, "Snapcaster Mage",1); + addCard(Zone.GRAVEYARD, playerA, "Blaze",1); + + + castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Snapcaster Mage"); + setChoice(playerA, "B laze"); + + activateAbility(1, PhaseStep.POSTCOMBAT_MAIN, playerA, "Flashback"); + setChoice(playerA, "X=1"); + addTarget(playerA, "Snapcaster Mage"); + + setStopAt(1, PhaseStep.END_TURN); + + execute(); + + assertPermanentCount(playerA, "Snapcaster Mage", 0); + assertGraveyardCount(playerA, "Blaze", 0); + assertExileCount("Blaze", 1); + + } + + /** * My opponent put Iona on the battlefield using Unburial Rites, but my game * log didn't show me the color he has chosen. From e26a85187dc9f6fa2792650743c3f40c9c6bb260 Mon Sep 17 00:00:00 2001 From: fireshoes Date: Tue, 23 Aug 2016 20:14:41 -0500 Subject: [PATCH 8/9] Eldritch Moon update of Adam Styborski's Cube --- .../cubes/AdamStyborskisPauperCube.java | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/Mage.Server.Plugins/Mage.Tournament.BoosterDraft/src/mage/tournament/cubes/AdamStyborskisPauperCube.java b/Mage.Server.Plugins/Mage.Tournament.BoosterDraft/src/mage/tournament/cubes/AdamStyborskisPauperCube.java index 85ead02b47..f3b1c50b28 100644 --- a/Mage.Server.Plugins/Mage.Tournament.BoosterDraft/src/mage/tournament/cubes/AdamStyborskisPauperCube.java +++ b/Mage.Server.Plugins/Mage.Tournament.BoosterDraft/src/mage/tournament/cubes/AdamStyborskisPauperCube.java @@ -46,13 +46,12 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Agony Warp", "")); cubeCards.add(new CardIdentity("Aim High", "")); cubeCards.add(new CardIdentity("Ambush Viper", "")); + cubeCards.add(new CardIdentity("Angelic Purge", "")); cubeCards.add(new CardIdentity("Apex Hawks", "")); cubeCards.add(new CardIdentity("Arachnus Web", "")); cubeCards.add(new CardIdentity("Arc Lightning", "")); cubeCards.add(new CardIdentity("Armillary Sphere", "")); - cubeCards.add(new CardIdentity("Army of Allah", "")); cubeCards.add(new CardIdentity("Arrest", "")); - cubeCards.add(new CardIdentity("Artificer's Epiphany", "")); cubeCards.add(new CardIdentity("Ashes to Ashes", "")); cubeCards.add(new CardIdentity("Assault Zeppelid", "")); cubeCards.add(new CardIdentity("Attended Knight", "")); @@ -67,7 +66,6 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Battle Screech", "")); cubeCards.add(new CardIdentity("Beetleback Chief", "")); cubeCards.add(new CardIdentity("Beetleform Mage", "")); - cubeCards.add(new CardIdentity("Benthic Infiltrator", "")); cubeCards.add(new CardIdentity("Blastoderm", "")); cubeCards.add(new CardIdentity("Blazing Torch", "")); cubeCards.add(new CardIdentity("Blightning", "")); @@ -78,7 +76,9 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Bonds of Faith", "")); cubeCards.add(new CardIdentity("Bonesplitter", "")); cubeCards.add(new CardIdentity("Boomerang", "")); + cubeCards.add(new CardIdentity("Borderland Marauder", "")); cubeCards.add(new CardIdentity("Boros Guildgate", "")); + cubeCards.add(new CardIdentity("Borrowed Grave", "")); cubeCards.add(new CardIdentity("Branching Bolt", "")); cubeCards.add(new CardIdentity("Brute Force", "")); cubeCards.add(new CardIdentity("Burst Lightning", "")); @@ -95,12 +95,11 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Cephalid Sage", "")); cubeCards.add(new CardIdentity("Chain Lightning", "")); cubeCards.add(new CardIdentity("Chainer's Edict", "")); + cubeCards.add(new CardIdentity("Chatter of the Squirrel", "")); cubeCards.add(new CardIdentity("Citanul Woodreaders", "")); cubeCards.add(new CardIdentity("Claustrophobia", "")); cubeCards.add(new CardIdentity("Clay Statue", "")); cubeCards.add(new CardIdentity("Cloaked Siren", "")); - cubeCards.add(new CardIdentity("Cloud of Faeries", "")); - cubeCards.add(new CardIdentity("Cloudshift", "")); cubeCards.add(new CardIdentity("Clutch of Currents", "")); cubeCards.add(new CardIdentity("Coalition Honor Guard", "")); cubeCards.add(new CardIdentity("Cogwork Librarian", "")); @@ -114,6 +113,7 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Crow of Dark Tidings", "")); cubeCards.add(new CardIdentity("Crypt Rats", "")); cubeCards.add(new CardIdentity("Crystallization", "")); + cubeCards.add(new CardIdentity("Cultist's Staff", "")); cubeCards.add(new CardIdentity("Cultivate", "")); cubeCards.add(new CardIdentity("Cunning Strike", "")); cubeCards.add(new CardIdentity("Curse of Chains", "")); @@ -127,15 +127,16 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Deprive", "")); cubeCards.add(new CardIdentity("Deputy of Acquittals", "")); cubeCards.add(new CardIdentity("Desert", "")); + cubeCards.add(new CardIdentity("Desperate Sentry", "")); cubeCards.add(new CardIdentity("Devour Flesh", "")); cubeCards.add(new CardIdentity("Diabolic Edict", "")); cubeCards.add(new CardIdentity("Dimir Guildgate", "")); cubeCards.add(new CardIdentity("Disfigure", "")); cubeCards.add(new CardIdentity("Dismal Backwater", "")); cubeCards.add(new CardIdentity("Disowned Ancestor", "")); - cubeCards.add(new CardIdentity("Distortion Strike", "")); cubeCards.add(new CardIdentity("Doom Blade", "")); cubeCards.add(new CardIdentity("Doomed Traveler", "")); + cubeCards.add(new CardIdentity("Drag Under", "")); cubeCards.add(new CardIdentity("Dragon Fodder", "")); cubeCards.add(new CardIdentity("Driver of the Dead", "")); cubeCards.add(new CardIdentity("Dynacharge", "")); @@ -151,6 +152,7 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Essence Scatter", "")); cubeCards.add(new CardIdentity("Evincar's Justice", "")); cubeCards.add(new CardIdentity("Evolving Wilds", "")); + cubeCards.add(new CardIdentity("Exultant Cultist", "")); cubeCards.add(new CardIdentity("Faceless Butcher", "")); cubeCards.add(new CardIdentity("Faith's Fetters", "")); cubeCards.add(new CardIdentity("Fall of the Hammer", "")); @@ -158,17 +160,15 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Fellwar Stone", "")); cubeCards.add(new CardIdentity("Fertile Thicket", "")); cubeCards.add(new CardIdentity("Fervent Cathar", "")); + cubeCards.add(new CardIdentity("Fire Ambush", "")); cubeCards.add(new CardIdentity("Firebolt", "")); cubeCards.add(new CardIdentity("Firefiend Elemental", "")); cubeCards.add(new CardIdentity("Fireslinger", "")); - cubeCards.add(new CardIdentity("Fists of Ironwood", "")); cubeCards.add(new CardIdentity("Flayer Husk", "")); cubeCards.add(new CardIdentity("Flurry of Horns", "")); cubeCards.add(new CardIdentity("Fortify", "")); cubeCards.add(new CardIdentity("Frilled Oculus", "")); cubeCards.add(new CardIdentity("Frostburn Weird", "")); - cubeCards.add(new CardIdentity("Fyndhorn Elves", "")); - cubeCards.add(new CardIdentity("Garruk's Companion", "")); cubeCards.add(new CardIdentity("Gathan Raiders", "")); cubeCards.add(new CardIdentity("Gather the Townsfolk", "")); cubeCards.add(new CardIdentity("Ghastly Demise", "")); @@ -182,7 +182,7 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Gods Willing", "")); cubeCards.add(new CardIdentity("Goldmeadow Harrier", "")); cubeCards.add(new CardIdentity("Golgari Guildgate", "")); - cubeCards.add(new CardIdentity("Gore-House Chainwalker", "")); + cubeCards.add(new CardIdentity("Grapple with the Past", "")); cubeCards.add(new CardIdentity("Gravedigger", "")); cubeCards.add(new CardIdentity("Gray Merchant of Asphodel", "")); cubeCards.add(new CardIdentity("Grim Contest", "")); @@ -199,7 +199,6 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Hissing Iguanar", "")); cubeCards.add(new CardIdentity("Hooting Mandrills", "")); cubeCards.add(new CardIdentity("Humble", "")); - cubeCards.add(new CardIdentity("Hymn to Tourach", "")); cubeCards.add(new CardIdentity("Imperiosaur", "")); cubeCards.add(new CardIdentity("Incinerate", "")); cubeCards.add(new CardIdentity("Inner-Flame Acolyte", "")); @@ -221,18 +220,16 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Krenko's Command", "")); cubeCards.add(new CardIdentity("Krosan Tusker", "")); cubeCards.add(new CardIdentity("Kruin Striker", "")); + cubeCards.add(new CardIdentity("Laboratory Brute", "")); cubeCards.add(new CardIdentity("Lash Out", "")); cubeCards.add(new CardIdentity("Last Gasp", "")); cubeCards.add(new CardIdentity("Leonin Bola", "")); cubeCards.add(new CardIdentity("Leonin Scimitar", "")); cubeCards.add(new CardIdentity("Lightning Bolt", "")); - cubeCards.add(new CardIdentity("Lightning Strike", "")); cubeCards.add(new CardIdentity("Liliana's Specter", "")); - cubeCards.add(new CardIdentity("Llanowar Elves", "")); cubeCards.add(new CardIdentity("Lone Missionary", "")); cubeCards.add(new CardIdentity("Looming Spires", "")); cubeCards.add(new CardIdentity("Lotus Path Djinn", "")); - cubeCards.add(new CardIdentity("Loyal Cathar", "")); cubeCards.add(new CardIdentity("Loyal Pegasus", "")); cubeCards.add(new CardIdentity("Lurking Automaton", "")); cubeCards.add(new CardIdentity("Makeshift Mauler", "")); @@ -242,6 +239,8 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Mardu Skullhunter", "")); cubeCards.add(new CardIdentity("Maul Splicer", "")); cubeCards.add(new CardIdentity("Maze of Ith", "")); + cubeCards.add(new CardIdentity("Mental Note", "")); + cubeCards.add(new CardIdentity("Midnight Scavengers", "")); cubeCards.add(new CardIdentity("Mind Stone", "")); cubeCards.add(new CardIdentity("Minotaur Skullcleaver", "")); cubeCards.add(new CardIdentity("Mire's Malice", "")); @@ -317,12 +316,11 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Remove Soul", "")); cubeCards.add(new CardIdentity("Rend Flesh", "")); cubeCards.add(new CardIdentity("Rendclaw Trow", "")); - cubeCards.add(new CardIdentity("Rhox Maulers", "")); + cubeCards.add(new CardIdentity("Rift Bolt", "")); cubeCards.add(new CardIdentity("Rishadan Airship", "")); cubeCards.add(new CardIdentity("Ronin Houndmaster", "")); cubeCards.add(new CardIdentity("Rugged Highlands", "")); cubeCards.add(new CardIdentity("Runed Servitor", "")); - cubeCards.add(new CardIdentity("Rush of Adrenaline", "")); cubeCards.add(new CardIdentity("Rushing River", "")); cubeCards.add(new CardIdentity("Safehold Elite", "")); cubeCards.add(new CardIdentity("Sakura-Tribe Elder", "")); @@ -336,9 +334,9 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Scion of the Wild", "")); cubeCards.add(new CardIdentity("Scion Summoner", "")); cubeCards.add(new CardIdentity("Scoured Barrens", "")); + cubeCards.add(new CardIdentity("Screeching Skaab", "")); cubeCards.add(new CardIdentity("Scuzzback Marauders", "")); cubeCards.add(new CardIdentity("Searing Blaze", "")); - cubeCards.add(new CardIdentity("Searing Spear", "")); cubeCards.add(new CardIdentity("Sejiri Steppe", "")); cubeCards.add(new CardIdentity("Selesnya Guildgate", "")); cubeCards.add(new CardIdentity("Sentinel Spider", "")); @@ -357,11 +355,11 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Skyknight Legionnaire", "")); cubeCards.add(new CardIdentity("Skyline Cascade", "")); cubeCards.add(new CardIdentity("Slash Panther", "")); - cubeCards.add(new CardIdentity("Slippery Bogle", "")); cubeCards.add(new CardIdentity("Snakeform", "")); cubeCards.add(new CardIdentity("Snap", "")); cubeCards.add(new CardIdentity("Snuff Out", "")); cubeCards.add(new CardIdentity("Soul Manipulation", "")); + cubeCards.add(new CardIdentity("Spectral Reserves", "")); cubeCards.add(new CardIdentity("Sphere of the Suns", "")); cubeCards.add(new CardIdentity("Spined Thopter", "")); cubeCards.add(new CardIdentity("Splatter Thug", "")); @@ -370,12 +368,11 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Stitched Drake", "")); cubeCards.add(new CardIdentity("Stormfront Pegasus", "")); cubeCards.add(new CardIdentity("Stormscape Apprentice", "")); - cubeCards.add(new CardIdentity("Strider Harness", "")); cubeCards.add(new CardIdentity("Strip Mine", "")); cubeCards.add(new CardIdentity("Sultai Scavenger", "")); cubeCards.add(new CardIdentity("Suppression Bonds", "")); cubeCards.add(new CardIdentity("Suq'Ata Lancer", "")); - cubeCards.add(new CardIdentity("Sweep Away", "")); + cubeCards.add(new CardIdentity("Swift Spinner", "")); cubeCards.add(new CardIdentity("Swiftwater Cliffs", "")); cubeCards.add(new CardIdentity("Sylvan Might", "")); cubeCards.add(new CardIdentity("Sylvok Lifestaff", "")); @@ -388,6 +385,7 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Test of Faith", "")); cubeCards.add(new CardIdentity("Thornweald Archer", "")); cubeCards.add(new CardIdentity("Thornwood Falls", "")); + cubeCards.add(new CardIdentity("Thought Scour", "")); cubeCards.add(new CardIdentity("Thraben Inspector", "")); cubeCards.add(new CardIdentity("Thundering Giant", "")); cubeCards.add(new CardIdentity("Thundering Tanadon", "")); @@ -402,21 +400,23 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Tumble Magnet", "")); cubeCards.add(new CardIdentity("Typhoid Rats", "")); cubeCards.add(new CardIdentity("Ulamog's Crusher", "")); + cubeCards.add(new CardIdentity("Ulvenwald Captive", "")); cubeCards.add(new CardIdentity("Undying Evil", "")); cubeCards.add(new CardIdentity("Undying Rage", "")); cubeCards.add(new CardIdentity("Unearth", "")); cubeCards.add(new CardIdentity("Unmake", "")); cubeCards.add(new CardIdentity("Unnatural Aggression", "")); - cubeCards.add(new CardIdentity("Vampire Envoy", "")); cubeCards.add(new CardIdentity("Vampire Interloper", "")); cubeCards.add(new CardIdentity("Vault Skirge", "")); cubeCards.add(new CardIdentity("Viashino Firstblade", "")); cubeCards.add(new CardIdentity("Vines of Vastwood", "")); cubeCards.add(new CardIdentity("Voidwielder", "")); + cubeCards.add(new CardIdentity("Volcanic Hammer", "")); cubeCards.add(new CardIdentity("Voldaren Duelist", "")); cubeCards.add(new CardIdentity("Vulshok Morningstar", "")); cubeCards.add(new CardIdentity("Vulshok Sorcerer", "")); cubeCards.add(new CardIdentity("Vulturous Aven", "")); + cubeCards.add(new CardIdentity("Wailing Ghoul", "")); cubeCards.add(new CardIdentity("Wakedancer", "")); cubeCards.add(new CardIdentity("Walker of the Grove", "")); cubeCards.add(new CardIdentity("Wall of Roots", "")); @@ -425,8 +425,8 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Warped Landscape", "")); cubeCards.add(new CardIdentity("Warren Pilferers", "")); cubeCards.add(new CardIdentity("Wayfarer's Bauble", "")); + cubeCards.add(new CardIdentity("Werebear", "")); cubeCards.add(new CardIdentity("Whirlpool Whelm", "")); - cubeCards.add(new CardIdentity("Whispers of the Muse", "")); cubeCards.add(new CardIdentity("Whitemane Lion", "")); cubeCards.add(new CardIdentity("Wickerbough Elder", "")); cubeCards.add(new CardIdentity("Wild Instincts", "")); @@ -435,12 +435,12 @@ public AdamStyborskisPauperCube() { cubeCards.add(new CardIdentity("Wildsize", "")); cubeCards.add(new CardIdentity("Will-Forged Golem", "")); cubeCards.add(new CardIdentity("Wind-Scarred Crag", "")); - cubeCards.add(new CardIdentity("Withdraw", "")); + cubeCards.add(new CardIdentity("Winged Coatl", "")); cubeCards.add(new CardIdentity("Wojek Halberdiers", "")); cubeCards.add(new CardIdentity("Wrecking Ball", "")); + cubeCards.add(new CardIdentity("Wretched Gryff", "")); cubeCards.add(new CardIdentity("Yavimaya Elder", "")); cubeCards.add(new CardIdentity("Yotian Soldier", "")); - cubeCards.add(new CardIdentity("Youthful Knight", "")); cubeCards.add(new CardIdentity("Zada's Commando", "")); cubeCards.add(new CardIdentity("Zhur-Taa Swine", "")); } From ebeb20681e96891ad6dcf9cf03f5f1fed9a5788f Mon Sep 17 00:00:00 2001 From: Eric McVicker Date: Tue, 23 Aug 2016 20:05:04 -0500 Subject: [PATCH 9/9] No spells cast last turn transform fix to not transform turn 1 #2188 --- .../abilities/keywords/TransformTest.java | 17 ++++++++++++ .../cards/single/soi/SurviveTheNightTest.java | 26 +++++++++---------- .../NoSpellsWereCastLastTurnCondition.java | 9 ++++++- 3 files changed, 38 insertions(+), 14 deletions(-) diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/TransformTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/TransformTest.java index c19e9c4780..0aec7dc363 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/TransformTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/TransformTest.java @@ -27,6 +27,7 @@ */ package org.mage.test.cards.abilities.keywords; +import mage.abilities.keyword.IndestructibleAbility; import mage.constants.CardType; import mage.constants.PhaseStep; import mage.constants.Zone; @@ -321,4 +322,20 @@ public class TransformTest extends CardTestPlayerBase { assertPermanentCount(playerA, "Avacyn, the Purifier", 0); assertPermanentCount(playerA, "Archangel Avacyn", 1); } + + /** + * Cards that transform if no spells cast last turn should not transform if the cards were added on turn 1. + * This would happen with tests and cheat testing. + */ + @Test + public void testNoSpellsCastLastTurnTransformDoesNotTriggerTurn1() { + + // At the beginning of each upkeep, if no spells were cast last turn, transform Hinterland Logger. + addCard(Zone.BATTLEFIELD, playerA, "Hinterland Logger"); + + setStopAt(1, PhaseStep.PRECOMBAT_MAIN); + execute(); + + assertPermanentCount(playerA, "Hinterland Logger", 1); + } } diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/single/soi/SurviveTheNightTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/single/soi/SurviveTheNightTest.java index 02892bb8f2..d96af683aa 100644 --- a/Mage.Tests/src/test/java/org/mage/test/cards/single/soi/SurviveTheNightTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/cards/single/soi/SurviveTheNightTest.java @@ -21,21 +21,21 @@ public class SurviveTheNightTest extends CardTestPlayerBase { // Investigate addCard(Zone.HAND, playerA, "Survive the Night"); addCard(Zone.BATTLEFIELD, playerA, "Plains", 3); - addCard(Zone.BATTLEFIELD, playerA, "Bronze Sable"); // 2/1 - addCard(Zone.BATTLEFIELD, playerB, "Hill Giant"); // 3/3 - - attack(1, playerA, "Bronze Sable"); - block(1, playerB, "Hill Giant", "Bronze Sable"); - castSpell(1, PhaseStep.DECLARE_BLOCKERS, playerA, "Survive the Night", "Bronze Sable"); - - setStopAt(1, PhaseStep.END_COMBAT); + addCard(Zone.BATTLEFIELD, playerA, "Hinterland Logger"); // 2/1 + addCard(Zone.BATTLEFIELD, playerB, "Bloodbriar"); // 2/3 + + attack(1, playerA, "Hinterland Logger"); + block(1, playerB, "Bloodbriar", "Hinterland Logger"); + castSpell(1, PhaseStep.DECLARE_BLOCKERS, playerA, "Survive the Night", "Hinterland Logger"); + + setStopAt(1, PhaseStep.POSTCOMBAT_MAIN); execute(); - + assertGraveyardCount(playerA, "Survive the Night", 1); - assertGraveyardCount(playerB, "Hill Giant", 1); + assertGraveyardCount(playerB, "Bloodbriar", 1); assertPermanentCount(playerA, "Clue", 1); - assertPermanentCount(playerA, "Bronze Sable", 1); - assertPowerToughness(playerA, "Bronze Sable", 3, 1); - assertAbility(playerA, "Bronze Sable", IndestructibleAbility.getInstance(), true); + assertPermanentCount(playerA, "Hinterland Logger", 1); + assertPowerToughness(playerA, "Hinterland Logger", 3, 1); + assertAbility(playerA, "Hinterland Logger", IndestructibleAbility.getInstance(), true); } } diff --git a/Mage/src/main/java/mage/abilities/condition/common/NoSpellsWereCastLastTurnCondition.java b/Mage/src/main/java/mage/abilities/condition/common/NoSpellsWereCastLastTurnCondition.java index 345e18ce59..d721c0e030 100644 --- a/Mage/src/main/java/mage/abilities/condition/common/NoSpellsWereCastLastTurnCondition.java +++ b/Mage/src/main/java/mage/abilities/condition/common/NoSpellsWereCastLastTurnCondition.java @@ -45,6 +45,12 @@ public class NoSpellsWereCastLastTurnCondition implements Condition { @Override public boolean apply(Game game, Ability source) { + // Do not check at start of game. + // Needed for tests to keep add to battlefield cards setting off condition when not intended. + if (game.getTurnNum() < 2) { + return false; + } + CastSpellLastTurnWatcher watcher = (CastSpellLastTurnWatcher) game.getState().getWatchers().get(CastSpellLastTurnWatcher.class.getName()); // if any player cast spell, return false for (Integer count : watcher.getAmountOfSpellsCastOnPrevTurn().values()) { @@ -52,7 +58,8 @@ public class NoSpellsWereCastLastTurnCondition implements Condition { return false; } } - // no one cast spell this turn + + // no one cast spell last turn return true; } }