From 8e7e111fb935cf6bd06bd03c6648dd29f4e505dc Mon Sep 17 00:00:00 2001 From: BetaSteward Date: Thu, 23 Feb 2012 15:30:11 -0500 Subject: [PATCH] 2 DKA --- .../sets/darkascension/AfflictedDeserter.java | 171 ++++++++++++++++++ .../sets/darkascension/FiendOfTheShadows.java | 131 ++++++++++++++ .../sets/darkascension/WerewolfRansacker.java | 167 +++++++++++++++++ .../mage/test/cards/TestHomicidalBrute.java | 26 +++ .../test/cards/TestWerewolfRansacker.java | 28 +++ 5 files changed, 523 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/darkascension/AfflictedDeserter.java create mode 100644 Mage.Sets/src/mage/sets/darkascension/FiendOfTheShadows.java create mode 100644 Mage.Sets/src/mage/sets/darkascension/WerewolfRansacker.java create mode 100644 Mage.Tests/src/test/java/org/mage/test/cards/TestHomicidalBrute.java create mode 100644 Mage.Tests/src/test/java/org/mage/test/cards/TestWerewolfRansacker.java diff --git a/Mage.Sets/src/mage/sets/darkascension/AfflictedDeserter.java b/Mage.Sets/src/mage/sets/darkascension/AfflictedDeserter.java new file mode 100644 index 00000000000..c0b28500d69 --- /dev/null +++ b/Mage.Sets/src/mage/sets/darkascension/AfflictedDeserter.java @@ -0,0 +1,171 @@ +/* + * 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.Rarity; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.TriggeredAbility; +import mage.abilities.TriggeredAbilityImpl; +import mage.abilities.common.BeginningOfUpkeepTriggeredAbility; +import mage.abilities.condition.common.NoSpellsWereCastLastTurnCondition; +import mage.abilities.decorator.ConditionalTriggeredAbility; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.DestroyTargetEffect; +import mage.abilities.effects.common.TransformSourceEffect; +import mage.abilities.keyword.TransformAbility; +import mage.cards.CardImpl; +import mage.filter.Filter; +import mage.filter.FilterPermanent; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.Target; +import mage.target.TargetPermanent; + +/** + * + * @author BetaSteward + */ +public class AfflictedDeserter extends CardImpl { + + public AfflictedDeserter(UUID ownerId) { + super(ownerId, 81, "Afflicted Deserter", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{R}"); + this.expansionSetCode = "DKA"; + this.subtype.add("Human"); + this.subtype.add("Werewolf"); + + this.canTransform = true; + this.secondSideCard = new WerewolfRansacker(ownerId); + + this.color.setRed(true); + this.power = new MageInt(3); + this.toughness = new MageInt(2); + + // Whenever this creature transforms into Werewolf Ransacker, you may destroy target artifact. If that artifact is put into a graveyard this way, Werewolf Ransacker deals 3 damage to that artifact's controller. + this.addAbility(new WerewolfRansackerAbility()); + + // At the beginning of each upkeep, if no spells were cast last turn, transform Afflicted Deserter. + this.addAbility(new TransformAbility()); + TriggeredAbility ability = new BeginningOfUpkeepTriggeredAbility(new TransformSourceEffect(true), Constants.TargetController.ANY, false); + this.addAbility(new ConditionalTriggeredAbility(ability, NoSpellsWereCastLastTurnCondition.getInstance(), TransformAbility.NO_SPELLS_TRANSFORM_RULE)); + } + + public AfflictedDeserter(final AfflictedDeserter card) { + super(card); + } + + @Override + public AfflictedDeserter copy() { + return new AfflictedDeserter(this); + } +} + +class WerewolfRansackerAbility extends TriggeredAbilityImpl { + + private static final FilterPermanent filter = new FilterPermanent("artifact"); + + static { + filter.getCardType().add(CardType.ARTIFACT); + filter.setScopeCardType(Filter.ComparisonScope.Any); + } + + public WerewolfRansackerAbility() { + super(Constants.Zone.BATTLEFIELD, new DestroyTargetEffect(), true); + Target target = new TargetPermanent(filter); + target.setRequired(true); + this.addTarget(target); + } + + public WerewolfRansackerAbility(final WerewolfRansackerAbility ability) { + super(ability); + } + + @Override + public WerewolfRansackerAbility copy() { + return new WerewolfRansackerAbility(this); + } + + @Override + public boolean checkTrigger(GameEvent event, Game game) { + if (event.getType() == GameEvent.EventType.TRANSFORMED) { + if (event.getTargetId().equals(sourceId)) { + Permanent permanent = game.getPermanent(sourceId); + if (permanent != null && permanent.isTransformed()) + return true; + } + } + return false; + } + + @Override + public String getRule() { + return "Whenever this creature transforms into Werewolf Ransacker, you may destroy target artifact. If that artifact is put into a graveyard this way, Werewolf Ransacker deals 3 damage to that artifact's controller."; + } + +} + +class WerewolfRansackerEffect extends OneShotEffect { + + public WerewolfRansackerEffect() { + super(Constants.Outcome.DestroyPermanent); + } + + public WerewolfRansackerEffect(final WerewolfRansackerEffect effect) { + super(effect); + } + + @Override + public WerewolfRansackerEffect copy() { + return new WerewolfRansackerEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + int affectedTargets = 0; + if (targetPointer.getTargets(source).size() > 0) { + for (UUID permanentId : targetPointer.getTargets(source)) { + Permanent permanent = game.getPermanent(permanentId); + if (permanent != null) { + if (permanent.destroy(source.getId(), game, false)) { + Player player = game.getPlayer(permanent.getControllerId()); + if (player != null) + player.damage(3, source.getSourceId(), game, false, true); + affectedTargets++; + } + } + } + } + return affectedTargets > 0; + } + +} diff --git a/Mage.Sets/src/mage/sets/darkascension/FiendOfTheShadows.java b/Mage.Sets/src/mage/sets/darkascension/FiendOfTheShadows.java new file mode 100644 index 00000000000..5ef33b775fa --- /dev/null +++ b/Mage.Sets/src/mage/sets/darkascension/FiendOfTheShadows.java @@ -0,0 +1,131 @@ +/* + * 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.Rarity; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility; +import mage.abilities.common.SimpleActivatedAbility; +import mage.abilities.common.SimpleStaticAbility; +import mage.abilities.costs.common.SacrificeTargetCost; +import mage.abilities.effects.AsThoughEffectImpl; +import mage.abilities.effects.common.ExileFromZoneTargetEffect; +import mage.abilities.effects.common.RegenerateSourceEffect; +import mage.abilities.keyword.FlyingAbility; +import mage.cards.Card; +import mage.cards.CardImpl; +import mage.filter.Filter; +import mage.filter.FilterCard; +import mage.filter.common.FilterControlledCreaturePermanent; +import mage.game.Game; +import mage.target.common.TargetControlledCreaturePermanent; + +/** + * + * @author BetaSteward + */ +public class FiendOfTheShadows extends CardImpl { + + private UUID exileId = UUID.randomUUID(); + + private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("a human"); + + static { + filter.getSubtype().add("Human"); + filter.setScopeSubtype(Filter.ComparisonScope.Any); + } + + public FiendOfTheShadows(UUID ownerId) { + super(ownerId, 62, "Fiend of the Shadows", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{B}{B}"); + this.expansionSetCode = "DKA"; + this.subtype.add("Vampire"); + this.subtype.add("Wizard"); + + this.color.setBlack(true); + this.power = new MageInt(3); + this.toughness = new MageInt(3); + + this.addAbility(FlyingAbility.getInstance()); + // Whenever Fiend of the Shadows deals combat damage to a player, that player exiles a card from his or her hand. You may play that card for as long as it remains exiled. + this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new ExileFromZoneTargetEffect(Constants.Zone.HAND, exileId, "Fiend of the Shadows", new FilterCard()), false)); + this.addAbility(new SimpleStaticAbility(Constants.Zone.ALL, new FiendOfTheShadowsEffect(exileId))); + + // Sacrifice a Human: Regenerate Fiend of the Shadows. + this.addAbility(new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new RegenerateSourceEffect(), new SacrificeTargetCost(new TargetControlledCreaturePermanent(1, 1, filter, false)))); + } + + public FiendOfTheShadows(final FiendOfTheShadows card) { + super(card); + } + + @Override + public FiendOfTheShadows copy() { + return new FiendOfTheShadows(this); + } +} + +class FiendOfTheShadowsEffect extends AsThoughEffectImpl { + + private UUID exileId; + + public FiendOfTheShadowsEffect(UUID exileId) { + super(Constants.AsThoughEffectType.CAST, Constants.Duration.WhileOnBattlefield, Constants.Outcome.Benefit); + this.exileId = exileId; + staticText = "You may play that card for as long as it remains exiled"; + } + + public FiendOfTheShadowsEffect(final FiendOfTheShadowsEffect effect) { + super(effect); + this.exileId = effect.exileId; + } + + @Override + public boolean apply(Game game, Ability source) { + return true; + } + + @Override + public FiendOfTheShadowsEffect copy() { + return new FiendOfTheShadowsEffect(this); + } + + @Override + public boolean applies(UUID sourceId, Ability source, Game game) { + Card card = game.getCard(sourceId); + if (card != null) { + if (game.getExile().getExileZone(exileId).contains(card.getId())) + return true; + } + return false; + } + +} \ No newline at end of file diff --git a/Mage.Sets/src/mage/sets/darkascension/WerewolfRansacker.java b/Mage.Sets/src/mage/sets/darkascension/WerewolfRansacker.java new file mode 100644 index 00000000000..a41be84927b --- /dev/null +++ b/Mage.Sets/src/mage/sets/darkascension/WerewolfRansacker.java @@ -0,0 +1,167 @@ +/* + * 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.Rarity; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.TriggeredAbility; +import mage.abilities.TriggeredAbilityImpl; +import mage.abilities.common.BeginningOfUpkeepTriggeredAbility; +import mage.abilities.condition.common.TwoOrMoreSpellsWereCastLastTurnCondition; +import mage.abilities.decorator.ConditionalTriggeredAbility; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.DestroyTargetEffect; +import mage.abilities.effects.common.TransformSourceEffect; +import mage.abilities.keyword.TransformAbility; +import mage.cards.CardImpl; +import mage.filter.Filter; +import mage.filter.FilterPermanent; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.permanent.Permanent; +import mage.players.Player; +import mage.target.Target; +import mage.target.TargetPermanent; + +/** + * + * @author BetaSteward + */ +public class WerewolfRansacker extends CardImpl { + + public WerewolfRansacker(UUID ownerId) { + super(ownerId, 81, "Werewolf Ransacker", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, ""); + this.expansionSetCode = "DKA"; + this.subtype.add("Werewolf"); + + // this card is the second face of double-faced card + this.nightCard = true; + this.canTransform = true; + + this.power = new MageInt(5); + this.toughness = new MageInt(4); + + // Whenever this creature transforms into Werewolf Ransacker, you may destroy target artifact. If that artifact is put into a graveyard this way, Werewolf Ransacker deals 3 damage to that artifact's controller. +// this.addAbility(new WerewolfRansackerAbility()); + + // At the beginning of each upkeep, if a player cast two or more spells last turn, transform Werewolf Ransacker. + TriggeredAbility ability = new BeginningOfUpkeepTriggeredAbility(new TransformSourceEffect(false), Constants.TargetController.ANY, false); + this.addAbility(new ConditionalTriggeredAbility(ability, TwoOrMoreSpellsWereCastLastTurnCondition.getInstance(), TransformAbility.TWO_OR_MORE_SPELLS_TRANSFORM_RULE)); + } + + public WerewolfRansacker(final WerewolfRansacker card) { + super(card); + } + + @Override + public WerewolfRansacker copy() { + return new WerewolfRansacker(this); + } +} + +//class WerewolfRansackerAbility extends TriggeredAbilityImpl { +// +// private static final FilterPermanent filter = new FilterPermanent("artifact"); +// +// static { +// filter.getCardType().add(CardType.ARTIFACT); +// filter.setScopeCardType(Filter.ComparisonScope.Any); +// } +// +// public WerewolfRansackerAbility() { +// super(Constants.Zone.BATTLEFIELD, new DestroyTargetEffect(), true); +// Target target = new TargetPermanent(filter); +// target.setRequired(true); +// this.addTarget(target); +// } +// +// public WerewolfRansackerAbility(final WerewolfRansackerAbility ability) { +// super(ability); +// } +// +// @Override +// public WerewolfRansackerAbility copy() { +// return new WerewolfRansackerAbility(this); +// } +// +// @Override +// public boolean checkTrigger(GameEvent event, Game game) { +// if (event.getType() == GameEvent.EventType.TRANSFORMED) { +// if (event.getTargetId().equals(sourceId)) { +// return true; +// } +// } +// return false; +// } +// +// @Override +// public String getRule() { +// return "Whenever this creature transforms into Werewolf Ransacker, you may destroy target artifact. If that artifact is put into a graveyard this way, Werewolf Ransacker deals 3 damage to that artifact's controller."; +// } +// +//} +// +//class WerewolfRansackerEffect extends OneShotEffect { +// +// public WerewolfRansackerEffect() { +// super(Constants.Outcome.DestroyPermanent); +// } +// +// public WerewolfRansackerEffect(final WerewolfRansackerEffect effect) { +// super(effect); +// } +// +// @Override +// public WerewolfRansackerEffect copy() { +// return new WerewolfRansackerEffect(this); +// } +// +// @Override +// public boolean apply(Game game, Ability source) { +// int affectedTargets = 0; +// if (targetPointer.getTargets(source).size() > 0) { +// for (UUID permanentId : targetPointer.getTargets(source)) { +// Permanent permanent = game.getPermanent(permanentId); +// if (permanent != null) { +// if (permanent.destroy(source.getId(), game, false)) { +// Player player = game.getPlayer(permanent.getControllerId()); +// if (player != null) +// player.damage(3, source.getSourceId(), game, false, true); +// affectedTargets++; +// } +// } +// } +// } +// return affectedTargets > 0; +// } +// +//} diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/TestHomicidalBrute.java b/Mage.Tests/src/test/java/org/mage/test/cards/TestHomicidalBrute.java new file mode 100644 index 00000000000..2e493b8fa32 --- /dev/null +++ b/Mage.Tests/src/test/java/org/mage/test/cards/TestHomicidalBrute.java @@ -0,0 +1,26 @@ +package org.mage.test.cards; + +import mage.Constants; +import org.junit.Test; +import org.mage.test.serverside.base.CardTestPlayerBase; + +/** + * + * @author BetaSteward + */ +public class TestHomicidalBrute extends CardTestPlayerBase { + + @Test + public void testCard() { + addCard(Constants.Zone.BATTLEFIELD, playerA, "Civilized Scholar"); + + setStopAt(2, Constants.PhaseStep.BEGIN_COMBAT); + execute(); + + assertLife(playerA, 20); + assertLife(playerB, 20); + assertPermanentCount(playerA, "Civilized Scholar", 0); + assertPermanentCount(playerA, "Homicidal Brute", 1); + } + +} diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/TestWerewolfRansacker.java b/Mage.Tests/src/test/java/org/mage/test/cards/TestWerewolfRansacker.java new file mode 100644 index 00000000000..a9f773c8357 --- /dev/null +++ b/Mage.Tests/src/test/java/org/mage/test/cards/TestWerewolfRansacker.java @@ -0,0 +1,28 @@ +package org.mage.test.cards; + +import mage.Constants; +import org.junit.Test; +import org.mage.test.serverside.base.CardTestPlayerBase; + +/** + * + * @author BetaSteward + */ +public class TestWerewolfRansacker extends CardTestPlayerBase { + + @Test + public void testCard() { + addCard(Constants.Zone.BATTLEFIELD, playerA, "Afflicted Deserter"); + addCard(Constants.Zone.BATTLEFIELD, playerB, "Ornithopter"); + + setStopAt(2, Constants.PhaseStep.BEGIN_COMBAT); + execute(); + + assertLife(playerA, 20); + assertLife(playerB, 20); + assertPermanentCount(playerB, "Ornithopter", 0); + assertPermanentCount(playerA, "Afflicted Deserter", 0); + assertPermanentCount(playerA, "Werewolf Ransacker", 1); + } + +}