From f1d50ba81c54919ef7fe39ad8fdaff6547ca3ad6 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sat, 9 Jan 2016 10:15:23 +0100 Subject: [PATCH] [OGW] Added 5 green cards. --- .../oathofthegatewatch/RuinInTheirWake.java | 123 ++++++++++++++++++ .../oathofthegatewatch/SaddlebackLagac.java | 64 +++++++++ .../sets/oathofthegatewatch/SeedGuardian.java | 114 ++++++++++++++++ .../oathofthegatewatch/StalkingDrone.java | 70 ++++++++++ .../oathofthegatewatch/VinesOfTheRecluse.java | 76 +++++++++++ .../mage/abilities/keyword/DevoidAbility.java | 1 + 6 files changed, 448 insertions(+) create mode 100644 Mage.Sets/src/mage/sets/oathofthegatewatch/RuinInTheirWake.java create mode 100644 Mage.Sets/src/mage/sets/oathofthegatewatch/SaddlebackLagac.java create mode 100644 Mage.Sets/src/mage/sets/oathofthegatewatch/SeedGuardian.java create mode 100644 Mage.Sets/src/mage/sets/oathofthegatewatch/StalkingDrone.java create mode 100644 Mage.Sets/src/mage/sets/oathofthegatewatch/VinesOfTheRecluse.java diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/RuinInTheirWake.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/RuinInTheirWake.java new file mode 100644 index 00000000000..167c5361621 --- /dev/null +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/RuinInTheirWake.java @@ -0,0 +1,123 @@ +/* + * 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.oathofthegatewatch; + +import java.util.UUID; +import mage.MageObject; +import mage.abilities.Ability; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.keyword.DevoidAbility; +import mage.cards.Card; +import mage.cards.CardImpl; +import mage.cards.Cards; +import mage.cards.CardsImpl; +import mage.constants.CardType; +import mage.constants.Outcome; +import mage.constants.Rarity; +import mage.constants.Zone; +import mage.filter.common.FilterBasicLandCard; +import mage.filter.common.FilterLandPermanent; +import mage.filter.predicate.mageobject.NamePredicate; +import mage.game.Game; +import mage.players.Player; +import mage.target.Target; +import mage.target.common.TargetCardInLibrary; + +/** + * + * @author LevelX2 + */ +public class RuinInTheirWake extends CardImpl { + + public RuinInTheirWake(UUID ownerId) { + super(ownerId, 122, "Ruin in Their Wake", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{1}{G}"); + this.expansionSetCode = "OGW"; + + // Devoid + this.addAbility(new DevoidAbility(this.color)); + // Search your library for a basic land card and reveal it. You may put that card onto the battlefield tapped if you control a land named Wastes. Otherwise, put that card into your hand. Then shuffle your library. + getSpellAbility().addEffect(new RuinInTheirWakeEffect()); + } + + public RuinInTheirWake(final RuinInTheirWake card) { + super(card); + } + + @Override + public RuinInTheirWake copy() { + return new RuinInTheirWake(this); + } +} + +class RuinInTheirWakeEffect extends OneShotEffect { + + private final static FilterLandPermanent filterWastes = new FilterLandPermanent(); + + static { + filterWastes.add(new NamePredicate("Wastes")); + } + + public RuinInTheirWakeEffect() { + super(Outcome.Benefit); + this.staticText = "Search your library for a basic land card and reveal it. You may put that card onto the battlefield tapped if you control a land named Wastes. Otherwise, put that card into your hand. Then shuffle your library"; + } + + public RuinInTheirWakeEffect(final RuinInTheirWakeEffect effect) { + super(effect); + } + + @Override + public RuinInTheirWakeEffect copy() { + return new RuinInTheirWakeEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Player controller = game.getPlayer(source.getControllerId()); + MageObject sourceObject = source.getSourceObject(game); + if (controller != null && sourceObject != null) { + Target target = new TargetCardInLibrary(new FilterBasicLandCard()); + if (controller.choose(outcome, target, source.getSourceId(), game)) { + Card card = game.getCard(target.getFirstTarget()); + if (card != null) { + Cards cardsToReveal = new CardsImpl(card); + controller.revealCards(sourceObject.getIdName(), cardsToReveal, game); + boolean controlWastes = game.getBattlefield().countAll(filterWastes, controller.getId(), game) > 0; + if (controlWastes && controller.chooseUse(outcome, "Put " + card.getLogName() + " onto battlefield tapped?", source, game)) { + controller.moveCards(card, Zone.BATTLEFIELD, source, game, true, false, true, null); + } else { + controller.moveCards(card, Zone.HAND, source, game); + } + } + } + controller.shuffleLibrary(game); + return true; + } + return false; + } +} diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/SaddlebackLagac.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/SaddlebackLagac.java new file mode 100644 index 00000000000..2759f7b1336 --- /dev/null +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/SaddlebackLagac.java @@ -0,0 +1,64 @@ +/* + * 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.oathofthegatewatch; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.keyword.SupportEffect; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Rarity; + +/** + * + * @author LevelX2 + */ +public class SaddlebackLagac extends CardImpl { + + public SaddlebackLagac(UUID ownerId) { + super(ownerId, 142, "Saddleback Lagac", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{G}"); + this.expansionSetCode = "OGW"; + this.subtype.add("Lizard"); + this.power = new MageInt(3); + this.toughness = new MageInt(1); + + // When Saddleback Lagac enters the battlefield, support 2. + this.addAbility(new EntersBattlefieldTriggeredAbility(new SupportEffect(this, 2), false)); + + } + + public SaddlebackLagac(final SaddlebackLagac card) { + super(card); + } + + @Override + public SaddlebackLagac copy() { + return new SaddlebackLagac(this); + } +} diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/SeedGuardian.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/SeedGuardian.java new file mode 100644 index 00000000000..7faa78e0e10 --- /dev/null +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/SeedGuardian.java @@ -0,0 +1,114 @@ +/* + * 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.oathofthegatewatch; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.common.DiesTriggeredAbility; +import mage.abilities.effects.OneShotEffect; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.keyword.ReachAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Outcome; +import mage.constants.Rarity; +import mage.filter.common.FilterCreatureCard; +import mage.game.Game; +import mage.game.permanent.token.Token; +import mage.players.Player; + +/** + * + * @author LevelX2 + */ +public class SeedGuardian extends CardImpl { + + public SeedGuardian(UUID ownerId) { + super(ownerId, 143, "Seed Guardian", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}{G}{G}"); + this.expansionSetCode = "OGW"; + this.subtype.add("Elemental"); + this.power = new MageInt(3); + this.toughness = new MageInt(4); + + // Reach + this.addAbility(ReachAbility.getInstance()); + // When Seed Guardian dies, put an X/X green Elemental creature token onto the battlefield, where X is the number of creature cards in your graveyard. + this.addAbility(new DiesTriggeredAbility(new SeedGuardianEffect(), false)); + } + + public SeedGuardian(final SeedGuardian card) { + super(card); + } + + @Override + public SeedGuardian copy() { + return new SeedGuardian(this); + } +} + +class SeedGuardianEffect extends OneShotEffect { + + public SeedGuardianEffect() { + super(Outcome.PutCreatureInPlay); + this.staticText = "put an X/X green Elemental creature token onto the battlefield, where X is the number of creature cards in your graveyard"; + } + + public SeedGuardianEffect(final SeedGuardianEffect effect) { + super(effect); + } + + @Override + public SeedGuardianEffect copy() { + return new SeedGuardianEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Player controller = game.getPlayer(source.getControllerId()); + if (controller != null) { + int creaturesInGraveyard = controller.getGraveyard().count(new FilterCreatureCard(), game); + return new CreateTokenEffect(new SeedGuardianToken(creaturesInGraveyard)).apply(game, source); + } + return false; + } +} + +class SeedGuardianToken extends Token { + + public SeedGuardianToken(int xValue) { + super("Elemental", "X/X green Elemental creature token"); + setOriginalExpansionSetCode("OGW"); + cardType.add(CardType.CREATURE); + color.setGreen(true); + subtype.add("Elemental"); + power = new MageInt(xValue); + toughness = new MageInt(xValue); + + } +} diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/StalkingDrone.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/StalkingDrone.java new file mode 100644 index 00000000000..4ebabdcae79 --- /dev/null +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/StalkingDrone.java @@ -0,0 +1,70 @@ +/* + * 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.oathofthegatewatch; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.LimitedTimesPerTurnActivatedAbility; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.continuous.BoostSourceEffect; +import mage.abilities.keyword.DevoidAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Duration; +import mage.constants.Rarity; +import mage.constants.Zone; + +/** + * + * @author LevelX2 + */ +public class StalkingDrone extends CardImpl { + + public StalkingDrone(UUID ownerId) { + super(ownerId, 126, "Stalking Drone", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{1}{G}"); + this.expansionSetCode = "OGW"; + this.subtype.add("Eldrazi"); + this.subtype.add("Drone"); + this.power = new MageInt(2); + this.toughness = new MageInt(2); + + // Devoid + this.addAbility(new DevoidAbility(this.color)); + // {C}: Stalking Drone gets +1/+2 until end of turn. Activate this ability only once each turn. + this.addAbility(new LimitedTimesPerTurnActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 2, Duration.EndOfTurn), new ManaCostsImpl("{C}"))); + } + + public StalkingDrone(final StalkingDrone card) { + super(card); + } + + @Override + public StalkingDrone copy() { + return new StalkingDrone(this); + } +} diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/VinesOfTheRecluse.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/VinesOfTheRecluse.java new file mode 100644 index 00000000000..d38f34e5b86 --- /dev/null +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/VinesOfTheRecluse.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.oathofthegatewatch; + +import java.util.UUID; +import mage.abilities.effects.Effect; +import mage.abilities.effects.common.UntapTargetEffect; +import mage.abilities.effects.common.continuous.BoostTargetEffect; +import mage.abilities.effects.common.continuous.GainAbilityTargetEffect; +import mage.abilities.keyword.ReachAbility; +import mage.cards.CardImpl; +import mage.constants.CardType; +import mage.constants.Duration; +import mage.constants.Rarity; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author LevelX2 + */ +public class VinesOfTheRecluse extends CardImpl { + + public VinesOfTheRecluse(UUID ownerId) { + super(ownerId, 146, "Vines of the Recluse", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{G}"); + this.expansionSetCode = "OGW"; + + // Target creature gets +1/+2 and gains reach until end of turn. + Effect effect = new BoostTargetEffect(1, 2, Duration.EndOfTurn); + effect.setText("Target creature gets +1/+2"); + this.getSpellAbility().addEffect(effect); + effect = new GainAbilityTargetEffect(ReachAbility.getInstance(), Duration.EndOfTurn); + effect.setText("and gains reach until end of turn"); + this.getSpellAbility().addEffect(effect); + // Untap it. + effect = new UntapTargetEffect(); + effect.setText("untap it"); + this.getSpellAbility().addEffect(effect); + + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + + } + + public VinesOfTheRecluse(final VinesOfTheRecluse card) { + super(card); + } + + @Override + public VinesOfTheRecluse copy() { + return new VinesOfTheRecluse(this); + } +} diff --git a/Mage/src/main/java/mage/abilities/keyword/DevoidAbility.java b/Mage/src/main/java/mage/abilities/keyword/DevoidAbility.java index 7aff3d5e46a..c05b3598915 100644 --- a/Mage/src/main/java/mage/abilities/keyword/DevoidAbility.java +++ b/Mage/src/main/java/mage/abilities/keyword/DevoidAbility.java @@ -22,6 +22,7 @@ public class DevoidAbility extends SimpleStaticAbility { color.setGreen(false); color.setBlue(false); color.setRed(false); + setRuleAtTheTop(true); } public DevoidAbility(final DevoidAbility ability) {