From 953fbca0db46636c2d39371041af9fe691693285 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 11 Jun 2014 00:08:23 +0200 Subject: [PATCH] Added Fortune Thief and Krosan Cloudscraper. --- .../mage/sets/legions/KrosanCloudscraper.java | 54 ++++++++ .../sets/timeshifted/KrosanCloudscraper.java | 72 ++++++++++ .../mage/sets/timespiral/FortuneThief.java | 128 ++++++++++++++++++ 3 files changed, 254 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/legions/KrosanCloudscraper.java create mode 100644 Mage.Sets/src/mage/sets/timeshifted/KrosanCloudscraper.java create mode 100644 Mage.Sets/src/mage/sets/timespiral/FortuneThief.java diff --git a/Mage.Sets/src/mage/sets/legions/KrosanCloudscraper.java b/Mage.Sets/src/mage/sets/legions/KrosanCloudscraper.java new file mode 100644 index 00000000000..f628480e0b7 --- /dev/null +++ b/Mage.Sets/src/mage/sets/legions/KrosanCloudscraper.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.legions; + +import java.util.UUID; +import mage.constants.Rarity; + +/** + * + * @author LevelX2 + */ +public class KrosanCloudscraper extends mage.sets.timeshifted.KrosanCloudscraper { + + public KrosanCloudscraper(UUID ownerId) { + super(ownerId); + this.cardNumber = 130; + this.expansionSetCode = "LGN"; + this.rarity = Rarity.RARE; + } + + public KrosanCloudscraper(final KrosanCloudscraper card) { + super(card); + } + + @Override + public KrosanCloudscraper copy() { + return new KrosanCloudscraper(this); + } +} diff --git a/Mage.Sets/src/mage/sets/timeshifted/KrosanCloudscraper.java b/Mage.Sets/src/mage/sets/timeshifted/KrosanCloudscraper.java new file mode 100644 index 00000000000..6c245a6a515 --- /dev/null +++ b/Mage.Sets/src/mage/sets/timeshifted/KrosanCloudscraper.java @@ -0,0 +1,72 @@ +/* + * Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, are + * permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this list of + * conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, this list + * of conditions and the following disclaimer in the documentation and/or other materials + * provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * The views and conclusions contained in the software and documentation are those of the + * authors and should not be interpreted as representing official policies, either expressed + * or implied, of BetaSteward_at_googlemail.com. + */ +package mage.sets.timeshifted; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.BeginningOfUpkeepTriggeredAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.SacrificeSourceUnlessPaysEffect; +import mage.abilities.keyword.MorphAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.constants.TargetController; + +/** + * + * @author LevelX2 + */ +public class KrosanCloudscraper extends CardImpl { + + public KrosanCloudscraper(UUID ownerId) { + super(ownerId, 82, "Krosan Cloudscraper", Rarity.SPECIAL, new CardType[]{CardType.CREATURE}, "{7}{G}{G}{G}"); + this.expansionSetCode = "TSB"; + this.subtype.add("Beast"); + this.subtype.add("Mutant"); + + this.color.setGreen(true); + this.power = new MageInt(13); + this.toughness = new MageInt(13); + + // At the beginning of your upkeep, sacrifice Krosan Cloudscraper unless you pay {G}{G}. + this.addAbility(new BeginningOfUpkeepTriggeredAbility(new SacrificeSourceUnlessPaysEffect(new ManaCostsImpl("{G}{G}")), TargetController.YOU, false)); + + // Morph {7}{G}{G} + this.addAbility(new MorphAbility(this, new ManaCostsImpl("{7}{G}{G}"))); + } + + public KrosanCloudscraper(final KrosanCloudscraper card) { + super(card); + } + + @Override + public KrosanCloudscraper copy() { + return new KrosanCloudscraper(this); + } +} diff --git a/Mage.Sets/src/mage/sets/timespiral/FortuneThief.java b/Mage.Sets/src/mage/sets/timespiral/FortuneThief.java new file mode 100644 index 00000000000..a0af9efa860 --- /dev/null +++ b/Mage.Sets/src/mage/sets/timespiral/FortuneThief.java @@ -0,0 +1,128 @@ +/* + * 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.timespiral; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.ReplacementEffectImpl; +import mage.abilities.keyword.MorphAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Duration; +import mage.constants.Outcome; +import mage.constants.Rarity; +import mage.constants.Zone; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.permanent.Permanent; +import mage.players.Player; + +/** + * + * @author LevelX2 + */ +public class FortuneThief extends CardImpl { + + public FortuneThief(UUID ownerId) { + super(ownerId, 156, "Fortune Thief", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{4}{R}"); + this.expansionSetCode = "TSP"; + this.subtype.add("Human"); + this.subtype.add("Rogue"); + + this.color.setRed(true); + this.power = new MageInt(0); + this.toughness = new MageInt(1); + + // Damage that would reduce your life total to less than 1 reduces it to 1 instead. + this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new FortuneThiefReplacementEffect())); + // Morph {R}{R} + this.addAbility(new MorphAbility(this, new ManaCostsImpl("{R}{R}"))); + } + + public FortuneThief(final FortuneThief card) { + super(card); + } + + @Override + public FortuneThief copy() { + return new FortuneThief(this); + } +} + +class FortuneThiefReplacementEffect extends ReplacementEffectImpl { + + public FortuneThiefReplacementEffect() { + super(Duration.WhileOnBattlefield, Outcome.Benefit); + staticText = "Damage that would reduce your life total to less than 1 reduces it to 1 instead"; + } + + public FortuneThiefReplacementEffect(final FortuneThiefReplacementEffect effect) { + super(effect); + } + + @Override + public FortuneThiefReplacementEffect copy() { + return new FortuneThiefReplacementEffect(this); + } + + @Override + public boolean applies(GameEvent event, Ability source, Game game) { + if (event.getType().equals(GameEvent.EventType.DAMAGE_CAUSES_LIFE_LOSS)) { + Permanent permanent = game.getPermanent(source.getSourceId()); + if (permanent != null) { + Player controller = game.getPlayer(source.getControllerId()); + if (controller != null + && (controller.getLife() > 0) &&(controller.getLife() - event.getAmount()) < 1 + && event.getPlayerId().equals(controller.getId()) + ) { + event.setAmount(controller.getLife() - 1); + //unsure how to make this comply with + // 10/1/2008: The ability doesn't change how much damage is dealt; + // it just changes how much life that damage makes you lose. + // An effect such as Spirit Link will see the full amount of damage being dealt. + } + } + } + + return false; + } + + @Override + public boolean apply(Game game, Ability source) { + return false; + } + + @Override + public boolean replaceEvent(GameEvent event, Ability source, Game game) { + return false; + } + +} \ No newline at end of file