From 9e5dd044e30b71d938c866039c97d1829404cdb0 Mon Sep 17 00:00:00 2001 From: BetaSteward Date: Thu, 15 Mar 2012 22:29:37 -0400 Subject: [PATCH] 1 DKA --- .../mage/sets/darkascension/FaithsShield.java | 120 ++++++++++++++++++ .../org/mage/test/cards/TestFaithsShield.java | 56 ++++++++ .../java/org/mage/test/player/TestPlayer.java | 22 ++++ .../base/impl/CardTestPlayerAPIImpl.java | 4 + 4 files changed, 202 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/darkascension/FaithsShield.java create mode 100644 Mage.Tests/src/test/java/org/mage/test/cards/TestFaithsShield.java diff --git a/Mage.Sets/src/mage/sets/darkascension/FaithsShield.java b/Mage.Sets/src/mage/sets/darkascension/FaithsShield.java new file mode 100644 index 00000000000..ef944ba8e43 --- /dev/null +++ b/Mage.Sets/src/mage/sets/darkascension/FaithsShield.java @@ -0,0 +1,120 @@ +/* + * 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.darkascension; + +import java.util.UUID; +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Duration; +import mage.Constants.Outcome; +import mage.Constants.Rarity; +import mage.abilities.Ability; +import mage.abilities.condition.common.FatefulHourCondition; +import mage.abilities.condition.common.MetalcraftCondition; +import mage.abilities.decorator.ConditionalOneShotEffect; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.effects.common.continious.GainAbilityControlledEffect; +import mage.abilities.effects.common.continious.GainAbilityControllerEffect; +import mage.abilities.effects.common.continious.GainProtectionFromColorTargetEffect; +import mage.abilities.keyword.ProtectionAbility; +import mage.cards.CardImpl; +import mage.choices.ChoiceColor; +import mage.filter.Filter; +import mage.filter.FilterCard; +import mage.filter.common.FilterCreaturePermanent; +import mage.game.Game; +import mage.target.common.TargetControlledPermanent; + +/** + * + * @author BetaSteward + */ +public class FaithsShield extends CardImpl { + + public FaithsShield(UUID ownerId) { + super(ownerId, 7, "Faith's Shield", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{W}"); + this.expansionSetCode = "DKA"; + + this.color.setWhite(true); + + // Target permanent you control gains protection from the color of your choice until end of turn. + + // Fateful hour — If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn. + this.getSpellAbility().addEffect(new FaithsShieldEffect()); + this.getSpellAbility().addTarget(new TargetControlledPermanent()); + this.getSpellAbility().addChoice(new ChoiceColor()); + } + + public FaithsShield(final FaithsShield card) { + super(card); + } + + @Override + public FaithsShield copy() { + return new FaithsShield(this); + } +} + +class FaithsShieldEffect extends OneShotEffect { + + public FaithsShieldEffect() { + super(Outcome.Protect); + staticText = "Target permanent you control gains protection from the color of your choice until end of turn\nFateful hour — If you have 5 or less life, instead you and each permanent you control gain protection from the color of your choice until end of turn"; + } + + public FaithsShieldEffect(final FaithsShieldEffect effect) { + super(effect); + } + + @Override + public boolean apply(Game game, Ability source) { + if (FatefulHourCondition.getInstance().apply(game, source)) { + ChoiceColor choice = (ChoiceColor) source.getChoices().get(0); + FilterCard filter = new FilterCard(); + filter.setUseColor(true); + filter.setColor(choice.getColor()); + filter.setMessage(choice.getChoice()); + filter.setScopeColor(Filter.ComparisonScope.Any); + + Ability ability = new ProtectionAbility(filter) ; + game.addEffect(new GainAbilityControlledEffect(ability, Duration.EndOfTurn), source); + game.addEffect(new GainAbilityControllerEffect(ability, Duration.EndOfTurn), source); + } + else { + game.addEffect(new GainProtectionFromColorTargetEffect(Duration.EndOfTurn), source); + } + return false; + } + + @Override + public FaithsShieldEffect copy() { + return new FaithsShieldEffect(this); + } + +} diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/TestFaithsShield.java b/Mage.Tests/src/test/java/org/mage/test/cards/TestFaithsShield.java new file mode 100644 index 00000000000..d944862943f --- /dev/null +++ b/Mage.Tests/src/test/java/org/mage/test/cards/TestFaithsShield.java @@ -0,0 +1,56 @@ +package org.mage.test.cards; + +import mage.Constants; +import org.junit.Test; +import org.mage.test.serverside.base.CardTestPlayerBase; + +/** + * + * also tests regenerate and + * tests that permanents with protection can be sacrificed + * + * @author BetaSteward + */ +public class TestFaithsShield extends CardTestPlayerBase { + + @Test + public void testCard() { + addCard(Constants.Zone.BATTLEFIELD, playerA, "White Knight"); + addCard(Constants.Zone.BATTLEFIELD, playerA, "Plains"); + addCard(Constants.Zone.BATTLEFIELD, playerA, "Mountain"); + addCard(Constants.Zone.HAND, playerA, "Faith's Shield"); + addCard(Constants.Zone.HAND, playerA, "Lightning Bolt"); + + setChoice(playerA, "Red"); + castSpell(1, Constants.PhaseStep.PRECOMBAT_MAIN, playerA, "Faith's Shield", "White Knight"); + castSpell(1, Constants.PhaseStep.POSTCOMBAT_MAIN, playerA, "Lightning Bolt", "White Knight"); + + setStopAt(1, Constants.PhaseStep.END_TURN); + execute(); + + assertLife(playerA, 20); + assertLife(playerB, 17); + assertPermanentCount(playerA, "White Knight", 1); + } + + @Test + public void testCardExile1() { + setLife(playerA, 5); + addCard(Constants.Zone.BATTLEFIELD, playerA, "White Knight"); + addCard(Constants.Zone.BATTLEFIELD, playerA, "Plains"); + addCard(Constants.Zone.BATTLEFIELD, playerA, "Mountain"); + addCard(Constants.Zone.HAND, playerA, "Faith's Shield"); + addCard(Constants.Zone.HAND, playerA, "Lightning Bolt"); + + setChoice(playerA, "Red"); + castSpell(1, Constants.PhaseStep.PRECOMBAT_MAIN, playerA, "Faith's Shield", "White Knight"); + castSpell(1, Constants.PhaseStep.POSTCOMBAT_MAIN, playerA, "Lightning Bolt", playerA); + + setStopAt(1, Constants.PhaseStep.END_TURN); + execute(); + + assertLife(playerA, 5); + assertLife(playerB, 20); + } + +} diff --git a/Mage.Tests/src/test/java/org/mage/test/player/TestPlayer.java b/Mage.Tests/src/test/java/org/mage/test/player/TestPlayer.java index 95886a372a6..44f111781b1 100644 --- a/Mage.Tests/src/test/java/org/mage/test/player/TestPlayer.java +++ b/Mage.Tests/src/test/java/org/mage/test/player/TestPlayer.java @@ -38,6 +38,7 @@ import mage.MageObject; import mage.abilities.Ability; import mage.abilities.ActivatedAbility; import mage.cards.Card; +import mage.choices.Choice; import mage.counters.Counter; import mage.filter.FilterPermanent; import mage.filter.common.FilterAttackingCreature; @@ -57,6 +58,7 @@ import org.junit.Ignore; public class TestPlayer extends ComputerPlayer { private List actions = new ArrayList(); + private List choices = new ArrayList(); public TestPlayer(String name, Constants.RangeOfInfluence range) { super(name, range); @@ -71,6 +73,10 @@ public class TestPlayer extends ComputerPlayer { actions.add(new PlayerAction(turnNum, step, action)); } + public void addChoice(String choice) { + choices.add(choice); + } + @Override public TestPlayer copy() { return new TestPlayer(this); @@ -153,6 +159,22 @@ public class TestPlayer extends ComputerPlayer { } } + @Override + public boolean choose(Constants.Outcome outcome, Choice choice, Game game) { + if (!choices.isEmpty()) { + for (String choose1: choice.getChoices()) { + for (String choose2: choices) { + if (choose1.equals(choose2)) { + choice.setChoice(choose2); + choices.remove(choose2); + return true; + } + } + } + } + return super.choose(outcome, choice, game); + } + protected Permanent findPermanent(FilterPermanent filter, UUID controllerId, Game game) { List permanents = game.getBattlefield().getAllActivePermanents(filter, controllerId); if (permanents.size() > 0) diff --git a/Mage.Tests/src/test/java/org/mage/test/serverside/base/impl/CardTestPlayerAPIImpl.java b/Mage.Tests/src/test/java/org/mage/test/serverside/base/impl/CardTestPlayerAPIImpl.java index 064a66ff281..b157bd396f2 100644 --- a/Mage.Tests/src/test/java/org/mage/test/serverside/base/impl/CardTestPlayerAPIImpl.java +++ b/Mage.Tests/src/test/java/org/mage/test/serverside/base/impl/CardTestPlayerAPIImpl.java @@ -559,4 +559,8 @@ public abstract class CardTestPlayerAPIImpl extends MageTestPlayerBase implement public void block(int turnNum, TestPlayer player, String blocker, String attacker) { player.addAction(turnNum, PhaseStep.DECLARE_BLOCKERS, "block:"+blocker+";"+attacker); } + + public void setChoice(TestPlayer player, String choice) { + player.addChoice(choice); + } }