From 662dd2948a93f0a46d289c46d75bdaa263324d70 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Tue, 1 Mar 2011 08:32:35 +0300 Subject: [PATCH] [MBS] Burn the Impure + test --- .../sets/mirrodinbesieged/BurntheImpure.java | 116 ++++++++++++++++++ .../mage/test/serverside/PlayGameTest.java | 2 +- Mage.Tests/tests/Burn the Impure.test | 34 +++++ 3 files changed, 151 insertions(+), 1 deletion(-) create mode 100644 Mage.Sets/src/mage/sets/mirrodinbesieged/BurntheImpure.java create mode 100644 Mage.Tests/tests/Burn the Impure.test diff --git a/Mage.Sets/src/mage/sets/mirrodinbesieged/BurntheImpure.java b/Mage.Sets/src/mage/sets/mirrodinbesieged/BurntheImpure.java new file mode 100644 index 00000000000..f576bc7f3e9 --- /dev/null +++ b/Mage.Sets/src/mage/sets/mirrodinbesieged/BurntheImpure.java @@ -0,0 +1,116 @@ +/* + * 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.mirrodinbesieged; + +import java.util.UUID; + +import mage.Constants; +import mage.Constants.CardType; +import mage.Constants.Rarity; +import mage.abilities.Ability; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.DamageTargetEffect; +import mage.abilities.keyword.InfectAbility; +import mage.cards.CardImpl; +import mage.game.Game; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.common.TargetCreatureOrPlayer; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author Loki + */ +public class BurntheImpure extends CardImpl { + + public BurntheImpure (UUID ownerId) { + super(ownerId, 59, "Burn the Impure", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{R}"); + this.expansionSetCode = "MBS"; + this.color.setRed(true); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + this.getSpellAbility().addEffect(new BurntheImpureEffect(3)); + } + + public BurntheImpure (final BurntheImpure card) { + super(card); + } + + @Override + public BurntheImpure copy() { + return new BurntheImpure(this); + } + + public class BurntheImpureEffect extends OneShotEffect { + + protected int amount; + + public BurntheImpureEffect(int amount) { + super(Constants.Outcome.Damage); + this.amount = amount; + } + + public int getAmount() { + return amount; + } + + public BurntheImpureEffect(final BurntheImpureEffect effect) { + super(effect); + this.amount = effect.amount; + } + + @Override + public BurntheImpureEffect copy() { + return new BurntheImpureEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Permanent permanent = game.getPermanent(source.getFirstTarget()); + if (permanent != null) { + permanent.damage(amount, source.getId(), game, true, false); + if (permanent.getAbilities().contains(InfectAbility.getInstance())) { + Player controller = game.getPlayer(permanent.getControllerId()); + if (controller != null) { + controller.damage(amount, source.getId(), game, true, false); + } + } + return true; + } + return false; + } + + @Override + public String getText(Ability source) { + return "Burn the Impure deals 3 damage to target creature. If that creature has infect, Burn the Impure deals 3 damage to that creature's controller."; + } + +} + +} diff --git a/Mage.Tests/src/test/java/org/mage/test/serverside/PlayGameTest.java b/Mage.Tests/src/test/java/org/mage/test/serverside/PlayGameTest.java index 69bfda3b01a..d8e2df7e794 100644 --- a/Mage.Tests/src/test/java/org/mage/test/serverside/PlayGameTest.java +++ b/Mage.Tests/src/test/java/org/mage/test/serverside/PlayGameTest.java @@ -61,7 +61,7 @@ public class PlayGameTest extends MageTestBase { game.addPlayer(computerB, deck2); game.loadCards(deck2.getCards(), computerB.getId()); - parseScenario("scenario2.txt"); + parseScenario("tests/Burn the Impure.test"); game.cheat(computerA.getId(), commandsA); game.cheat(computerA.getId(), libraryCardsA, handCardsA, battlefieldCardsA, graveyardCardsA); game.cheat(computerB.getId(), commandsB); diff --git a/Mage.Tests/tests/Burn the Impure.test b/Mage.Tests/tests/Burn the Impure.test new file mode 100644 index 00000000000..e7944112a91 --- /dev/null +++ b/Mage.Tests/tests/Burn the Impure.test @@ -0,0 +1,34 @@ +# Test playing Burn the Impure + +### ComputerA ### + +# Battlefield +battlefield:ComputerA:Mountain:2 + +# Hand +hand:ComputerA:Mountain:4 +hand:ComputerA:Burn the Impure:1 + +# Library +# from down to top +library:ComputerA:clear:0 +library:ComputerA:Mountain:10 + +### ComputerB ### + +# Battlefield +battlefield:ComputerB:Plains:1 +battlefield:ComputerB:Tine Shrike:1 +#battlefield:ComputerB:Runeclaw Bear:1 + +# Hand +hand:ComputerB:Plains:2 + +# Library +# from down to top +library:ComputerB:clear:0 +library:ComputerB:Plains:10 + +# Life +player:ComputerB:life:3 +