From 80a01341205206cc623913501b0ecbe4736e699e Mon Sep 17 00:00:00 2001 From: drmDev Date: Sat, 9 Apr 2016 05:53:00 -0400 Subject: [PATCH] Card implementations Epic Struggle, Primitive Etchings --- .../src/mage/sets/gatecrash/Biovisionary.java | 10 +- .../src/mage/sets/judgment/EpicStruggle.java | 68 ++++++++++ .../mage/sets/scourge/PrimitiveEtchings.java | 117 ++++++++++++++++++ .../src/mage/sets/seventhedition/Rowen.java | 4 +- 4 files changed, 189 insertions(+), 10 deletions(-) create mode 100644 Mage.Sets/src/mage/sets/judgment/EpicStruggle.java create mode 100644 Mage.Sets/src/mage/sets/scourge/PrimitiveEtchings.java diff --git a/Mage.Sets/src/mage/sets/gatecrash/Biovisionary.java b/Mage.Sets/src/mage/sets/gatecrash/Biovisionary.java index 5c32f5d319..cbca2ef8a3 100644 --- a/Mage.Sets/src/mage/sets/gatecrash/Biovisionary.java +++ b/Mage.Sets/src/mage/sets/gatecrash/Biovisionary.java @@ -28,14 +28,13 @@ package mage.sets.gatecrash; import java.util.UUID; - -import mage.constants.CardType; -import mage.constants.Rarity; import mage.MageInt; import mage.abilities.common.BeginningOfEndStepTriggeredAbility; import mage.abilities.condition.common.PermanentsOnTheBattlefieldCondition; import mage.abilities.effects.common.WinGameSourceControllerEffect; import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; import mage.constants.TargetController; import mage.constants.Zone; import mage.filter.common.FilterControlledCreaturePermanent; @@ -56,10 +55,7 @@ public class Biovisionary extends CardImpl { super(ownerId, 146, "Biovisionary", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{1}{G}{U}"); this.expansionSetCode = "GTC"; this.subtype.add("Human"); - this.subtype.add("Wizard"); - - - + this.subtype.add("Wizard"); this.power = new MageInt(2); this.toughness = new MageInt(3); diff --git a/Mage.Sets/src/mage/sets/judgment/EpicStruggle.java b/Mage.Sets/src/mage/sets/judgment/EpicStruggle.java new file mode 100644 index 0000000000..514b8cbd56 --- /dev/null +++ b/Mage.Sets/src/mage/sets/judgment/EpicStruggle.java @@ -0,0 +1,68 @@ +/* + * 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.judgment; + +import java.util.UUID; +import mage.abilities.common.BeginningOfUpkeepTriggeredAbility; +import mage.abilities.condition.common.PermanentsOnTheBattlefieldCondition; +import mage.abilities.decorator.ConditionalTriggeredAbility; +import mage.abilities.effects.common.WinGameSourceControllerEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.constants.TargetController; +import mage.filter.common.FilterControlledCreaturePermanent; + +/** + * + * @author escplan9 (Derek Monturo - dmontur1 at gmail dot com) + */ +public class EpicStruggle extends CardImpl { + + private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("if you control twenty or more creatures"); + + public EpicStruggle(UUID ownerId) { + super(ownerId, 112, "Epic Struggle", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}{G}"); + this.expansionSetCode = "JUD"; + + // At the beginning of your upkeep, if you control twenty or more creatures, you win the game. + this.addAbility(new ConditionalTriggeredAbility( + new BeginningOfUpkeepTriggeredAbility(new WinGameSourceControllerEffect(), TargetController.YOU, false), + new PermanentsOnTheBattlefieldCondition(filter, PermanentsOnTheBattlefieldCondition.CountType.MORE_THAN, 19), + "At the beginning of your upkeep, if you control twenty or more creatures, you win the game.")); + } + + public EpicStruggle(final EpicStruggle card) { + super(card); + } + + @Override + public EpicStruggle copy() { + return new EpicStruggle(this); + } +} diff --git a/Mage.Sets/src/mage/sets/scourge/PrimitiveEtchings.java b/Mage.Sets/src/mage/sets/scourge/PrimitiveEtchings.java new file mode 100644 index 0000000000..bc5536d6ca --- /dev/null +++ b/Mage.Sets/src/mage/sets/scourge/PrimitiveEtchings.java @@ -0,0 +1,117 @@ +/* + * 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.scourge; + +import java.util.UUID; +import mage.abilities.TriggeredAbilityImpl; +import mage.abilities.effects.common.DrawCardSourceControllerEffect; +import mage.abilities.effects.common.InfoEffect; +import mage.cards.Card; +import mage.cards.CardImpl; +import mage.cards.CardsImpl; +import mage.constants.CardType; +import mage.constants.Rarity; +import mage.constants.Zone; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.events.GameEvent.EventType; +import mage.game.permanent.Permanent; +import mage.players.Player; + +/** + * + * @author escplan9 (Derek Monturo - dmontur1 at gmail dot com) + */ +public class PrimitiveEtchings extends CardImpl { + + public PrimitiveEtchings(UUID ownerId) { + super(ownerId, 126, "Primitive Etchings", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}{G}"); + this.expansionSetCode = "SCG"; + + // Reveal the first card you draw each turn. Whenever you reveal a creature card this way, draw a card. + this.addAbility(new PrimitiveEtchingsAbility()); + } + + public PrimitiveEtchings(final PrimitiveEtchings card) { + super(card); + } + + @Override + public PrimitiveEtchings copy() { + return new PrimitiveEtchings(this); + } +} + +class PrimitiveEtchingsAbility extends TriggeredAbilityImpl { + + private int lastTriggeredTurn; + + PrimitiveEtchingsAbility() { + super(Zone.BATTLEFIELD, new InfoEffect(""), false); + } + + PrimitiveEtchingsAbility(final PrimitiveEtchingsAbility ability) { + super(ability); + } + + @Override + public PrimitiveEtchingsAbility copy() { + return new PrimitiveEtchingsAbility(this); + } + + @Override + public boolean checkEventType(GameEvent event, Game game) { + return event.getType() == EventType.DREW_CARD; + } + + @Override + public boolean checkTrigger(GameEvent event, Game game) { + if (event.getPlayerId().equals(this.getControllerId())) { + if (game.getActivePlayerId().equals(this.getControllerId()) && this.lastTriggeredTurn != game.getTurnNum()) { + Card card = game.getCard(event.getTargetId()); + Player controller = game.getPlayer(this.getControllerId()); + Permanent sourcePermanent = game.getPermanentOrLKIBattlefield(this.getSourceId()); + if (card != null && controller != null && sourcePermanent != null) { + lastTriggeredTurn = game.getTurnNum(); + controller.revealCards(sourcePermanent.getName(), new CardsImpl(card), game); + this.getEffects().clear(); + if (card.getCardType().contains(CardType.CREATURE)) { + this.addEffect(new DrawCardSourceControllerEffect(1)); + } + return true; + } + } + } + return false; + } + + @Override + public String getRule() { + return "Reveal the first card you draw each turn. Whenever you reveal a creature card this way, draw a card."; + } +} diff --git a/Mage.Sets/src/mage/sets/seventhedition/Rowen.java b/Mage.Sets/src/mage/sets/seventhedition/Rowen.java index 92ffd483ee..68b542bbd6 100644 --- a/Mage.Sets/src/mage/sets/seventhedition/Rowen.java +++ b/Mage.Sets/src/mage/sets/seventhedition/Rowen.java @@ -53,7 +53,6 @@ public class Rowen extends CardImpl { super(ownerId, 266, "Rowen", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}{G}"); this.expansionSetCode = "7ED"; - // Reveal the first card you draw each turn. Whenever you reveal a basic land card this way, draw a card. this.addAbility(new RowenAbility()); } @@ -114,6 +113,5 @@ class RowenAbility extends TriggeredAbilityImpl { @Override public String getRule() { return "Reveal the first card you draw each turn. Whenever you reveal a basic land card this way, draw a card."; - } - + } }