From 294be4835569c412350893bb955880ffb8f3f436 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 13 Sep 2014 12:11:11 +0200 Subject: [PATCH] [KTK] Added 3 blue cards. --- .../sets/khansoftarkir/BlindingSpray.java | 74 ++++++++++++++++++ .../khansoftarkir/EmbodimentOfSpring.java | 76 +++++++++++++++++++ .../mage/sets/khansoftarkir/ForceAway.java | 71 +++++++++++++++++ .../common/DrawDiscardControllerEffect.java | 14 +++- 4 files changed, 232 insertions(+), 3 deletions(-) create mode 100644 Mage.Sets/src/mage/sets/khansoftarkir/BlindingSpray.java create mode 100644 Mage.Sets/src/mage/sets/khansoftarkir/EmbodimentOfSpring.java create mode 100644 Mage.Sets/src/mage/sets/khansoftarkir/ForceAway.java diff --git a/Mage.Sets/src/mage/sets/khansoftarkir/BlindingSpray.java b/Mage.Sets/src/mage/sets/khansoftarkir/BlindingSpray.java new file mode 100644 index 00000000000..05a8dba5e01 --- /dev/null +++ b/Mage.Sets/src/mage/sets/khansoftarkir/BlindingSpray.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.khansoftarkir; + +import java.util.UUID; +import mage.abilities.effects.common.DrawCardSourceControllerEffect; +import mage.abilities.effects.common.continious.BoostAllEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Duration; +import mage.constants.Rarity; +import mage.constants.TargetController; +import mage.filter.common.FilterCreaturePermanent; +import mage.filter.predicate.permanent.ControllerPredicate; + +/** + * + * @author LevelX2 + */ +public class BlindingSpray extends CardImpl { + + private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Creatures your opponents control"); + + static { + filter.add(new ControllerPredicate(TargetController.OPPONENT)); + } + + public BlindingSpray(UUID ownerId) { + super(ownerId, 32, "Blinding Spray", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{4}{U}"); + this.expansionSetCode = "KTK"; + + this.color.setBlue(true); + + // Creatures your opponents control get -4/-0 until end of turn. + this.getSpellAbility().addEffect(new BoostAllEffect(-4, 0, Duration.EndOfTurn, filter, false)); + + // Draw a card. + this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1)); + } + + public BlindingSpray(final BlindingSpray card) { + super(card); + } + + @Override + public BlindingSpray copy() { + return new BlindingSpray(this); + } +} diff --git a/Mage.Sets/src/mage/sets/khansoftarkir/EmbodimentOfSpring.java b/Mage.Sets/src/mage/sets/khansoftarkir/EmbodimentOfSpring.java new file mode 100644 index 00000000000..48440e53c46 --- /dev/null +++ b/Mage.Sets/src/mage/sets/khansoftarkir/EmbodimentOfSpring.java @@ -0,0 +1,76 @@ +/* + * 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.khansoftarkir; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.costs.common.SacrificeSourceCost; +import mage.abilities.costs.common.TapSourceCost; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.constants.Zone; +import mage.filter.common.FilterBasicLandCard; +import mage.target.common.TargetCardInLibrary; + +/** + * + * @author LevelX2 + */ +public class EmbodimentOfSpring extends CardImpl { + + public EmbodimentOfSpring(UUID ownerId) { + super(ownerId, 39, "Embodiment of Spring", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{U}"); + this.expansionSetCode = "KTK"; + this.subtype.add("Elemental"); + + this.color.setBlue(true); + this.power = new MageInt(0); + this.toughness = new MageInt(3); + + // {1}{G}, {T}, Sacrifice Embodiment of Spring: Search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library. + SimpleActivatedAbility ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, + new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(new FilterBasicLandCard()), true), + new ManaCostsImpl("{1}{G}")); + ability.addCost(new TapSourceCost()); + ability.addCost(new SacrificeSourceCost()); + this.addAbility(ability); + } + + public EmbodimentOfSpring(final EmbodimentOfSpring card) { + super(card); + } + + @Override + public EmbodimentOfSpring copy() { + return new EmbodimentOfSpring(this); + } +} diff --git a/Mage.Sets/src/mage/sets/khansoftarkir/ForceAway.java b/Mage.Sets/src/mage/sets/khansoftarkir/ForceAway.java new file mode 100644 index 00000000000..d7cf6449fed --- /dev/null +++ b/Mage.Sets/src/mage/sets/khansoftarkir/ForceAway.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.khansoftarkir; + +import java.util.UUID; +import mage.abilities.condition.common.FerociousCondition; +import mage.abilities.decorator.ConditionalOneShotEffect; +import mage.abilities.effects.Effect; +import mage.abilities.effects.common.DrawDiscardControllerEffect; +import mage.abilities.effects.common.ReturnToHandTargetEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author LevelX2 + */ +public class ForceAway extends CardImpl { + + public ForceAway(UUID ownerId) { + super(ownerId, 40, "Force Away", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{U}"); + this.expansionSetCode = "KTK"; + + this.color.setBlue(true); + + // Return target creature to its owner's hand. + this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + + // Ferocious - If you control a creature with power 4 or greater, you may draw a card. If you do, discard a card. + Effect effect = new ConditionalOneShotEffect(new DrawDiscardControllerEffect(1,1, true), + FerociousCondition.getInstance() , "

Ferocious - If you control a creature with power 4 or greater, you may draw a card. If you do, discard a card"); + this.getSpellAbility().addEffect(effect); + } + + public ForceAway(final ForceAway card) { + super(card); + } + + @Override + public ForceAway copy() { + return new ForceAway(this); + } +} diff --git a/Mage/src/mage/abilities/effects/common/DrawDiscardControllerEffect.java b/Mage/src/mage/abilities/effects/common/DrawDiscardControllerEffect.java index 3536f8701f2..18d40a552af 100644 --- a/Mage/src/mage/abilities/effects/common/DrawDiscardControllerEffect.java +++ b/Mage/src/mage/abilities/effects/common/DrawDiscardControllerEffect.java @@ -43,12 +43,17 @@ public class DrawDiscardControllerEffect extends OneShotEffect { private int cardsToDraw; private int cardsToDiscard; + private boolean optional; public DrawDiscardControllerEffect() { this(1,1); } - + public DrawDiscardControllerEffect(int cardsToDraw, int cardsToDiscard) { + this(cardsToDraw, cardsToDiscard, false); + } + + public DrawDiscardControllerEffect(int cardsToDraw, int cardsToDiscard, boolean optional) { super(Outcome.DrawCard); this.cardsToDraw = cardsToDraw; this.cardsToDiscard = cardsToDiscard; @@ -64,6 +69,7 @@ public class DrawDiscardControllerEffect extends OneShotEffect { super(effect); this.cardsToDraw = effect.cardsToDraw; this.cardsToDiscard = effect.cardsToDiscard; + this.optional = effect.optional; } @Override @@ -75,8 +81,10 @@ public class DrawDiscardControllerEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { Player player = game.getPlayer(source.getControllerId()); if (player != null) { - player.drawCards(cardsToDraw, game); - player.discard(cardsToDiscard, source, game); + if (!optional || player.chooseUse(outcome, "User draw, then discard effect?", game)) { + player.drawCards(cardsToDraw, game); + player.discard(cardsToDiscard, source, game); + } return true; } return false;