From 721a411aadc989ef3260cce34e85209dfb7af3ec Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 1 Oct 2013 08:32:37 +0200 Subject: [PATCH] * Added Krosan Tusker, Deus of Calamity and Winds of Rath. --- .../src/mage/sets/commander/KrosanTusker.java | 52 ++++++++ .../sets/heroesvsmonsters/DeusOfCalamity.java | 115 ++++++++++++++++++ .../sets/heroesvsmonsters/KrosanTusker.java | 74 +++++++++++ .../sets/heroesvsmonsters/WindsOfRath.java | 68 +++++++++++ .../src/mage/sets/onslaught/KrosanTusker.java | 52 ++++++++ .../mage/sets/shadowmoor/DeusOfCalamity.java | 52 ++++++++ .../src/mage/sets/tempest/WindsOfRath.java | 52 ++++++++ 7 files changed, 465 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/commander/KrosanTusker.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/DeusOfCalamity.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/KrosanTusker.java create mode 100644 Mage.Sets/src/mage/sets/heroesvsmonsters/WindsOfRath.java create mode 100644 Mage.Sets/src/mage/sets/onslaught/KrosanTusker.java create mode 100644 Mage.Sets/src/mage/sets/shadowmoor/DeusOfCalamity.java create mode 100644 Mage.Sets/src/mage/sets/tempest/WindsOfRath.java diff --git a/Mage.Sets/src/mage/sets/commander/KrosanTusker.java b/Mage.Sets/src/mage/sets/commander/KrosanTusker.java new file mode 100644 index 00000000000..34a80ab6dff --- /dev/null +++ b/Mage.Sets/src/mage/sets/commander/KrosanTusker.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.commander; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class KrosanTusker extends mage.sets.heroesvsmonsters.KrosanTusker { + + public KrosanTusker(UUID ownerId) { + super(ownerId); + this.cardNumber = 164; + this.expansionSetCode = "CMD"; + } + + public KrosanTusker(final KrosanTusker card) { + super(card); + } + + @Override + public KrosanTusker copy() { + return new KrosanTusker(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/DeusOfCalamity.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/DeusOfCalamity.java new file mode 100644 index 00000000000..1c2e8948b5b --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/DeusOfCalamity.java @@ -0,0 +1,115 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.heroesvsmonsters; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.TriggeredAbilityImpl; +import mage.abilities.effects.common.DestroyTargetEffect; +import mage.abilities.keyword.TrampleAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.constants.Zone; +import mage.filter.common.FilterLandPermanent; +import mage.filter.predicate.permanent.ControllerIdPredicate; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.events.GameEvent.EventType; +import mage.target.Target; +import mage.target.common.TargetLandPermanent; + +/** + * + * @author LevelX2 + */ +public class DeusOfCalamity extends CardImpl { + + public DeusOfCalamity(UUID ownerId) { + super(ownerId, 54, "Deus of Calamity", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{R/G}{R/G}{R/G}{R/G}{R/G}"); + this.expansionSetCode = "DDL"; + this.subtype.add("Spirit"); + this.subtype.add("Avatar"); + + this.color.setRed(true); + this.color.setGreen(true); + this.power = new MageInt(6); + this.toughness = new MageInt(6); + + // Trample + this.addAbility(TrampleAbility.getInstance()); + // Whenever Deus of Calamity deals 6 or more damage to an opponent, destroy target land that player controls. + this.addAbility(new DeusOfCalamityTriggeredAbility()); + } + + public DeusOfCalamity(final DeusOfCalamity card) { + super(card); + } + + @Override + public DeusOfCalamity copy() { + return new DeusOfCalamity(this); + } +} + +class DeusOfCalamityTriggeredAbility extends TriggeredAbilityImpl { + + public DeusOfCalamityTriggeredAbility() { + super(Zone.BATTLEFIELD, new DestroyTargetEffect(), false); + } + + public DeusOfCalamityTriggeredAbility(final DeusOfCalamityTriggeredAbility ability) { + super(ability); + } + + @Override + public DeusOfCalamityTriggeredAbility copy() { + return new DeusOfCalamityTriggeredAbility(this); + } + + @Override + public boolean checkTrigger(GameEvent event, Game game) { + if (event.getType().equals(EventType.DAMAGED_PLAYER) + && event.getSourceId().equals(this.getSourceId()) + && event.getAmount() > 5 + && game.getOpponents(this.getControllerId()).contains(event.getTargetId())) { + FilterLandPermanent filter = new FilterLandPermanent("land of the damaged player"); + filter.add(new ControllerIdPredicate(event.getTargetId())); + Target target = new TargetLandPermanent(filter); + this.getTargets().clear(); + this.addTarget(target); + return true; + } + return false; + } + + @Override + public String getRule() { + return "Whenever Deus of Calamity deals 6 or more damage to an opponent, destroy target land that player controls."; + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/KrosanTusker.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/KrosanTusker.java new file mode 100644 index 00000000000..6d9f0fedc25 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/KrosanTusker.java @@ -0,0 +1,74 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.heroesvsmonsters; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.CycleTriggeredAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect; +import mage.abilities.keyword.CyclingAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.filter.common.FilterBasicLandCard; +import mage.target.common.TargetCardInLibrary; + +/** + * + * @author LevelX2 + */ +public class KrosanTusker extends CardImpl { + + public KrosanTusker(UUID ownerId) { + super(ownerId, 59, "Krosan Tusker", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{5}{G}{G}"); + this.expansionSetCode = "DDL"; + this.subtype.add("Boar"); + this.subtype.add("Beast"); + + this.color.setGreen(true); + this.power = new MageInt(6); + this.toughness = new MageInt(5); + + // Cycling {2}{G} + this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}{G}"))); + // When you cycle Krosan Tusker, you may search your library for a basic land card, reveal that card, put it into your hand, then shuffle your library. + this.addAbility(new CycleTriggeredAbility( + new SearchLibraryPutInHandEffect(new TargetCardInLibrary(new FilterBasicLandCard()), true, true), + true)); + } + + public KrosanTusker(final KrosanTusker card) { + super(card); + } + + @Override + public KrosanTusker copy() { + return new KrosanTusker(this); + } +} diff --git a/Mage.Sets/src/mage/sets/heroesvsmonsters/WindsOfRath.java b/Mage.Sets/src/mage/sets/heroesvsmonsters/WindsOfRath.java new file mode 100644 index 00000000000..c1e82db0406 --- /dev/null +++ b/Mage.Sets/src/mage/sets/heroesvsmonsters/WindsOfRath.java @@ -0,0 +1,68 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.heroesvsmonsters; + +import java.util.UUID; +import mage.abilities.effects.common.DestroyAllEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.filter.common.FilterCreaturePermanent; +import mage.filter.predicate.Predicates; +import mage.filter.predicate.permanent.EnchantedPredicate; + +/** + * + * @author LevelX2 + */ +public class WindsOfRath extends CardImpl { + + private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("creatures that aren't enchanted"); + static { + filter.add(Predicates.not(new EnchantedPredicate())); + } + + public WindsOfRath(UUID ownerId) { + super(ownerId, 31, "Winds of Rath", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{3}{W}{W}"); + this.expansionSetCode = "DDL"; + + this.color.setWhite(true); + + // Destroy all creatures that aren't enchanted. They can't be regenerated. + this.getSpellAbility().addEffect(new DestroyAllEffect(filter, true)); + } + + public WindsOfRath(final WindsOfRath card) { + super(card); + } + + @Override + public WindsOfRath copy() { + return new WindsOfRath(this); + } +} diff --git a/Mage.Sets/src/mage/sets/onslaught/KrosanTusker.java b/Mage.Sets/src/mage/sets/onslaught/KrosanTusker.java new file mode 100644 index 00000000000..5d9dc7d947c --- /dev/null +++ b/Mage.Sets/src/mage/sets/onslaught/KrosanTusker.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.onslaught; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class KrosanTusker extends mage.sets.heroesvsmonsters.KrosanTusker { + + public KrosanTusker(UUID ownerId) { + super(ownerId); + this.cardNumber = 272; + this.expansionSetCode = "ONS"; + } + + public KrosanTusker(final KrosanTusker card) { + super(card); + } + + @Override + public KrosanTusker copy() { + return new KrosanTusker(this); + } +} diff --git a/Mage.Sets/src/mage/sets/shadowmoor/DeusOfCalamity.java b/Mage.Sets/src/mage/sets/shadowmoor/DeusOfCalamity.java new file mode 100644 index 00000000000..382a2021f67 --- /dev/null +++ b/Mage.Sets/src/mage/sets/shadowmoor/DeusOfCalamity.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.shadowmoor; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class DeusOfCalamity extends mage.sets.heroesvsmonsters.DeusOfCalamity { + + public DeusOfCalamity(UUID ownerId) { + super(ownerId); + this.cardNumber = 204; + this.expansionSetCode = "SHM"; + } + + public DeusOfCalamity(final DeusOfCalamity card) { + super(card); + } + + @Override + public DeusOfCalamity copy() { + return new DeusOfCalamity(this); + } +} diff --git a/Mage.Sets/src/mage/sets/tempest/WindsOfRath.java b/Mage.Sets/src/mage/sets/tempest/WindsOfRath.java new file mode 100644 index 00000000000..d9df039ce71 --- /dev/null +++ b/Mage.Sets/src/mage/sets/tempest/WindsOfRath.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.tempest; + +import java.util.UUID; + +/** + * + * @author LevelX2 + */ +public class WindsOfRath extends mage.sets.heroesvsmonsters.WindsOfRath { + + public WindsOfRath(UUID ownerId) { + super(ownerId); + this.cardNumber = 264; + this.expansionSetCode = "TMP"; + } + + public WindsOfRath(final WindsOfRath card) { + super(card); + } + + @Override + public WindsOfRath copy() { + return new WindsOfRath(this); + } +}