diff --git a/Mage.Sets/src/mage/sets/mirrodinbesieged/PistonSledge.java b/Mage.Sets/src/mage/sets/mirrodinbesieged/PistonSledge.java index 4fce6e43f5..093e938408 100644 --- a/Mage.Sets/src/mage/sets/mirrodinbesieged/PistonSledge.java +++ b/Mage.Sets/src/mage/sets/mirrodinbesieged/PistonSledge.java @@ -32,6 +32,7 @@ import java.util.UUID; import mage.Constants; import mage.Constants.CardType; +import mage.Constants.Outcome; import mage.Constants.Rarity; import mage.Constants.Zone; import mage.abilities.Ability; @@ -61,7 +62,7 @@ public class PistonSledge extends CardImpl { this.addAbility(new EquipAbility(Constants.Outcome.AddAbility, new PistonSledgeEquipCost())); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEquippedEffect(3, 1))); - Ability ability = new EntersBattlefieldTriggeredAbility(new AttachEffect(Constants.Outcome.AddAbility), false); + Ability ability = new EntersBattlefieldTriggeredAbility(new PistonSledgeEffect(Constants.Outcome.AddAbility), false); ability.addTarget(new TargetControlledCreaturePermanent()); this.addAbility(ability); } @@ -74,10 +75,6 @@ public class PistonSledge extends CardImpl { public PistonSledge copy() { return new PistonSledge(this); } - - public String getText(Ability source) { - return "When Piston Sledge enters the battlefield, attach it to target creature you control.\nEquipped creature gets +3/+1.\nEquip-Sacrifice an artifact"; - } } class PistonSledgeEquipCost extends AlternativeCost { @@ -106,4 +103,19 @@ class PistonSledgeEquipCost extends AlternativeCost { return " sacrifice an artifact"; } +} + +class PistonSledgeEffect extends AttachEffect{ + public PistonSledgeEffect(Outcome outcome) { + super(outcome); + } + + public PistonSledgeEffect(final AttachEffect effect) { + super(effect); + } + + @Override + public String getText(Ability source) { + return "attach it to target creature you control"; + } } \ No newline at end of file diff --git a/Mage.Sets/src/mage/sets/worldwake/Groundswell.java b/Mage.Sets/src/mage/sets/worldwake/Groundswell.java new file mode 100644 index 0000000000..8035b6586a --- /dev/null +++ b/Mage.Sets/src/mage/sets/worldwake/Groundswell.java @@ -0,0 +1,142 @@ +/* + * 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.worldwake; + +import java.util.UUID; + +import mage.Constants.CardType; +import mage.Constants.Duration; +import mage.Constants.Layer; +import mage.Constants.Outcome; +import mage.Constants.Rarity; +import mage.Constants.SubLayer; +import mage.Constants.Zone; +import mage.abilities.Ability; +import mage.abilities.effects.ContinuousEffectImpl; +import mage.cards.CardImpl; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.events.GameEvent.EventType; +import mage.game.events.ZoneChangeEvent; +import mage.game.permanent.Permanent; +import mage.target.common.TargetCreaturePermanent; +import mage.watchers.Watcher; +import mage.watchers.WatcherImpl; + +/** + * + * @author Viserion + */ +public class Groundswell extends CardImpl { + + public Groundswell(UUID ownerId) { + super(ownerId, 104, "Groundswell", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{G}"); + this.expansionSetCode = "WWK"; + this.color.setGreen(true); + + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + this.getSpellAbility().addEffect(new GroundswellEffect(Duration.EndOfTurn)); + + this.watchers.add(new GroundswellWatcher(ownerId)); + } + + public Groundswell(final Groundswell card) { + super(card); + } + + @Override + public Groundswell copy() { + return new Groundswell(this); + } +} + +class GroundswellWatcher extends WatcherImpl { + + public GroundswellWatcher(UUID controllerId) { + super("LandPlayed", controllerId); + } + + public GroundswellWatcher(final GroundswellWatcher watcher) { + super(watcher); + } + + @Override + public GroundswellWatcher copy() { + return new GroundswellWatcher(this); + } + + @Override + public void watch(GameEvent event, Game game) { + if (event.getType() == EventType.ZONE_CHANGE && ((ZoneChangeEvent)event).getToZone() == Zone.BATTLEFIELD) { + Permanent permanent = game.getPermanent(event.getTargetId()); + if (permanent.getCardType().contains(CardType.LAND) && permanent.getControllerId().equals(this.controllerId)) { + condition = true; + } + } + } +} + +class GroundswellEffect extends ContinuousEffectImpl { + + public GroundswellEffect(Duration duration) { + super(duration, Layer.PTChangingEffects_7, SubLayer.ModifyPT_7c, Outcome.BoostCreature); + } + + public GroundswellEffect(final GroundswellEffect effect) { + super(effect); + } + + @Override + public GroundswellEffect copy() { + return new GroundswellEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + Watcher watcher = game.getState().getWatchers().get(source.getControllerId(), "LandPlayed"); + Permanent target = (Permanent) game.getPermanent(source.getFirstTarget()); + if (target != null) { + if (watcher != null && watcher.conditionMet()) { + target.addPower(4); + target.addToughness(4); + } + else{ + target.addPower(2); + target.addToughness(2); + } + return true; + } + return false; + } + + @Override + public String getText(Ability source) { + return "Target creature gets +2/+2 until end of turn.\nLandfall - If you had a land enter the battlefield under your control this turn, that creature gets +4/+4 until end of turn instead"; + } +} diff --git a/Mage.Sets/src/mage/sets/zendikar/VinesOfVastwood.java b/Mage.Sets/src/mage/sets/zendikar/VinesOfVastwood.java new file mode 100644 index 0000000000..39bac99993 --- /dev/null +++ b/Mage.Sets/src/mage/sets/zendikar/VinesOfVastwood.java @@ -0,0 +1,135 @@ +/* + * 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.zendikar; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Duration; +import mage.Constants.Outcome; +import mage.Constants.Rarity; +import mage.Constants.TargetController; +import mage.abilities.Ability; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.ReplacementEffectImpl; +import mage.abilities.effects.common.continious.BoostTargetEffect; +import mage.abilities.keyword.KickerAbility; +import mage.cards.CardImpl; +import mage.filter.FilterStackObject; +import mage.game.Game; +import mage.game.events.GameEvent; +import mage.game.events.GameEvent.EventType; +import mage.game.stack.StackObject; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author Viserion + */ +public class VinesOfVastwood extends CardImpl { + + private static FilterStackObject filter = new FilterStackObject("spells or abilities your opponents control"); + + static { + filter.setTargetController(TargetController.OPPONENT); + } + + public VinesOfVastwood(UUID ownerId) { + super(ownerId, 193, "Vines of Vastwood", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{G}"); + this.expansionSetCode = "ZEN"; + this.color.setGreen(true); + TargetCreaturePermanent target = new TargetCreaturePermanent(); + this.getSpellAbility().addTarget(target); + this.getSpellAbility().addEffect(new VinesOfVastwoodEffect(filter, Duration.EndOfTurn)); + + KickerAbility ability = new KickerAbility(new BoostTargetEffect(4, 4, Duration.EndOfTurn), false); + ability.addTarget(target); + ability.addCost(new ManaCostsImpl("{G}")); + this.addAbility(ability); + } + + public VinesOfVastwood(final VinesOfVastwood card) { + super(card); + } + + @Override + public VinesOfVastwood copy() { + return new VinesOfVastwood(this); + } +} + +class VinesOfVastwoodEffect extends ReplacementEffectImpl { + + private FilterStackObject filterSource; + + public VinesOfVastwoodEffect(FilterStackObject filterSource, Duration duration) { + super(duration, Outcome.Benefit); + this.filterSource = filterSource; + } + + public VinesOfVastwoodEffect(final VinesOfVastwoodEffect effect) { + super(effect); + this.filterSource = effect.filterSource.copy(); + } + + @Override + public VinesOfVastwoodEffect copy() { + return new VinesOfVastwoodEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + return true; + } + + @Override + public boolean replaceEvent(GameEvent event, Ability source, Game game) { + return true; + } + + @Override + public boolean applies(GameEvent event, Ability source, Game game) { + if (event.getType() == EventType.TARGET && event.getTargetId().equals(source.getFirstTarget())) { + StackObject sourceObject = game.getStack().getStackObject(event.getSourceId()); + if (sourceObject != null && filterSource.match(sourceObject, source.getControllerId(), game)) { + return true; + } + } + return false; + } + + @Override + public String getText(Ability source) { + StringBuilder sb = new StringBuilder(); + sb.append("Target creature can't be the target of "); + sb.append(filterSource.getMessage()); + sb.append(" ").append(duration.toString()); + return sb.toString(); + } + +}