From 55c3ba323f17701dcb0487dc51befc5211cfc512 Mon Sep 17 00:00:00 2001 From: jeffwadsworth <> Date: Tue, 25 Sep 2012 11:26:50 -0500 Subject: [PATCH] - Added Kazuul, Tyrant of the Cliffs and Crusher Zendikon. --- .../mage/sets/worldwake/CrusherZendikon.java | 99 +++++++++++ .../worldwake/KazuulTyrantOfTheCliffs.java | 158 ++++++++++++++++++ .../src/mage/sets/worldwake/UrgeToFeed.java | 2 +- 3 files changed, 258 insertions(+), 1 deletion(-) create mode 100644 Mage.Sets/src/mage/sets/worldwake/CrusherZendikon.java create mode 100644 Mage.Sets/src/mage/sets/worldwake/KazuulTyrantOfTheCliffs.java diff --git a/Mage.Sets/src/mage/sets/worldwake/CrusherZendikon.java b/Mage.Sets/src/mage/sets/worldwake/CrusherZendikon.java new file mode 100644 index 0000000000..5b0986a273 --- /dev/null +++ b/Mage.Sets/src/mage/sets/worldwake/CrusherZendikon.java @@ -0,0 +1,99 @@ +/* + * 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.worldwake; + +import java.util.UUID; +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.DiesAttachedTriggeredAbility; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.effects.common.AttachEffect; +import mage.abilities.effects.common.ReturnToHandAttachedEffect; +import mage.abilities.effects.common.continious.BecomesCreatureAttachedEffect; +import mage.abilities.keyword.EnchantAbility; +import mage.abilities.keyword.TrampleAbility; +import mage.cards.CardImpl; +import mage.game.permanent.token.Token; +import mage.target.TargetPermanent; +import mage.target.common.TargetLandPermanent; + +/** + * + * @author jeffwadsworth + */ +public class CrusherZendikon extends CardImpl { + + public CrusherZendikon(UUID ownerId) { + super(ownerId, 78, "Crusher Zendikon", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{2}{R}"); + this.expansionSetCode = "WWK"; + this.subtype.add("Aura"); + + this.color.setRed(true); + + // Enchant land + // Enchanted land is a 4/2 red Beast creature with trample. It's still a land. + // When enchanted land dies, return that card to its owner's hand. + + TargetPermanent auraTarget = new TargetLandPermanent(); + this.getSpellAbility().addTarget(auraTarget); + this.getSpellAbility().addEffect(new AttachEffect(Constants.Outcome.PutCreatureInPlay)); + Ability ability = new EnchantAbility(auraTarget.getTargetName()); + this.addAbility(ability); + + Ability ability2 = new SimpleStaticAbility(Constants.Zone.BATTLEFIELD, new BecomesCreatureAttachedEffect(new BeastToken(), "Enchanted land is a 4/2 red Beast creature with trample. It's still a land.", Constants.Duration.Custom)); + this.addAbility(ability2); + + Ability ability3 = new DiesAttachedTriggeredAbility(new ReturnToHandAttachedEffect(), "enchanted land"); + this.addAbility(ability3); + } + + public CrusherZendikon(final CrusherZendikon card) { + super(card); + } + + @Override + public CrusherZendikon copy() { + return new CrusherZendikon(this); + } +} + +class BeastToken extends Token { + + BeastToken() { + super("", "4/2 red Beast creature with trample"); + cardType.add(CardType.CREATURE); + color.setRed(true); + subtype.add("Beast"); + power = new MageInt(4); + toughness = new MageInt(2); + this.addAbility(TrampleAbility.getInstance()); + } +} diff --git a/Mage.Sets/src/mage/sets/worldwake/KazuulTyrantOfTheCliffs.java b/Mage.Sets/src/mage/sets/worldwake/KazuulTyrantOfTheCliffs.java new file mode 100644 index 0000000000..5bc4f94af8 --- /dev/null +++ b/Mage.Sets/src/mage/sets/worldwake/KazuulTyrantOfTheCliffs.java @@ -0,0 +1,158 @@ +/* + * 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.worldwake; + +import java.util.UUID; +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.TriggeredAbilityImpl; +import mage.abilities.costs.Cost; +import mage.abilities.costs.mana.GenericManaCost; +import mage.abilities.effects.OneShotEffect; +import mage.cards.CardImpl; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.permanent.Permanent; +import mage.game.permanent.token.Token; +import mage.players.Player; +import mage.target.targetpointer.FixedTarget; + +/** + * + * @author jeffwadsworth + */ +public class KazuulTyrantOfTheCliffs extends CardImpl { + + public KazuulTyrantOfTheCliffs(UUID ownerId) { + super(ownerId, 84, "Kazuul, Tyrant of the Cliffs", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{R}{R}"); + this.expansionSetCode = "WWK"; + this.supertype.add("Legendary"); + this.subtype.add("Ogre"); + this.subtype.add("Warrior"); + + this.color.setRed(true); + this.power = new MageInt(5); + this.toughness = new MageInt(4); + + // Whenever a creature an opponent controls attacks, if you're the defending player, put a 3/3 red Ogre creature token onto the battlefield unless that creature's controller pays {3}. + this.addAbility(new KazuulTyrantOfTheCliffsTriggeredAbility()); + } + + public KazuulTyrantOfTheCliffs(final KazuulTyrantOfTheCliffs card) { + super(card); + } + + @Override + public KazuulTyrantOfTheCliffs copy() { + return new KazuulTyrantOfTheCliffs(this); + } +} + +class KazuulTyrantOfTheCliffsTriggeredAbility extends TriggeredAbilityImpl { + + public KazuulTyrantOfTheCliffsTriggeredAbility() { + super(Constants.Zone.BATTLEFIELD, new KazuulTyrantOfTheCliffsEffect(new GenericManaCost(3))); + } + + public KazuulTyrantOfTheCliffsTriggeredAbility(final KazuulTyrantOfTheCliffsTriggeredAbility ability) { + super(ability); + } + + @Override + public KazuulTyrantOfTheCliffsTriggeredAbility copy() { + return new KazuulTyrantOfTheCliffsTriggeredAbility(this); + } + + @Override + public boolean checkTrigger(GameEvent event, Game game) { + if (event.getType() == GameEvent.EventType.ATTACKER_DECLARED) { + Permanent attacker = game.getPermanent(event.getSourceId()); + Player defender = game.getPlayer(event.getTargetId()); + Player you = game.getPlayer(controllerId); + if (attacker.getControllerId() != you.getId() + && defender == you) { + this.getEffects().get(0).setTargetPointer(new FixedTarget(attacker.getControllerId())); + return true; + } + } + return false; + } + + @Override + public String getRule() { + return "Whenever a creature an opponent controls attacks, if you're the defending player, put a 3/3 red Ogre creature token onto the battlefield unless that creature's controller pays {3}"; + } +} + +class KazuulTyrantOfTheCliffsEffect extends OneShotEffect { + + protected Cost cost; + private static OgreToken token = new OgreToken(); + + public KazuulTyrantOfTheCliffsEffect(Cost cost) { + super(Constants.Outcome.PutCreatureInPlay); + this.cost = cost; + } + + public KazuulTyrantOfTheCliffsEffect(KazuulTyrantOfTheCliffsEffect effect) { + super(effect); + this.cost = effect.cost.copy(); + } + + @Override + public boolean apply(Game game, Ability source) { + Player payee = game.getPlayer(targetPointer.getFirst(game, source)); + if (payee != null) { + cost.clearPaid(); + if (!cost.pay(source, game, source.getId(), payee.getId(), false)) { + return token.putOntoBattlefield(1, game, source.getSourceId(), source.getControllerId()); + } + } + return false; + } + + @Override + public KazuulTyrantOfTheCliffsEffect copy() { + return new KazuulTyrantOfTheCliffsEffect(this); + } +} + +class OgreToken extends Token { + + OgreToken() { + super("", "3/3 red Ogre creature"); + cardType.add(CardType.CREATURE); + color.setRed(true); + subtype.add("Ogre"); + power = new MageInt(3); + toughness = new MageInt(3); + } +} diff --git a/Mage.Sets/src/mage/sets/worldwake/UrgeToFeed.java b/Mage.Sets/src/mage/sets/worldwake/UrgeToFeed.java index 63b253ad2f..4fb1220b75 100644 --- a/Mage.Sets/src/mage/sets/worldwake/UrgeToFeed.java +++ b/Mage.Sets/src/mage/sets/worldwake/UrgeToFeed.java @@ -85,7 +85,7 @@ class UrgeToFeedEffect extends OneShotEffect { } public UrgeToFeedEffect() { - super(Constants.Outcome.GainLife); + super(Constants.Outcome.BoostCreature); staticText = "You may tap any number of untapped Vampire creatures you control. If you do, put a +1/+1 counter on each of those Vampires"; }