diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/SoulParry.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/SoulParry.java new file mode 100644 index 0000000000..af6c750bfe --- /dev/null +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/SoulParry.java @@ -0,0 +1,65 @@ +/* + * 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.scarsofmirrodin; + +import java.util.UUID; +import mage.Constants.CardType; +import mage.Constants.Duration; +import mage.Constants.Rarity; +import mage.Constants.Zone; +import mage.abilities.effects.common.PreventDamageFromTargetEffect; +import mage.cards.CardImpl; +import mage.target.Target; +import mage.target.common.TargetCreaturePermanent; + +/** + * + * @author nantuko + */ +public class SoulParry extends CardImpl<SoulParry> { + + public SoulParry (UUID ownerId) { + super(ownerId, 21, "Soul Parry", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{W}"); + this.expansionSetCode = "SOM"; + this.color.setWhite(true); + Target target = new TargetCreaturePermanent(1,2); + this.getSpellAbility().addEffect(new PreventDamageFromTargetEffect(Duration.EndOfTurn, true)); + this.getSpellAbility().addTarget(target); + } + + public SoulParry (final SoulParry card) { + super(card); + } + + @Override + public SoulParry copy() { + return new SoulParry(this); + } + +} diff --git a/Mage/src/mage/abilities/effects/common/PreventDamageFromTargetEffect.java b/Mage/src/mage/abilities/effects/common/PreventDamageFromTargetEffect.java new file mode 100644 index 0000000000..f1e2215c11 --- /dev/null +++ b/Mage/src/mage/abilities/effects/common/PreventDamageFromTargetEffect.java @@ -0,0 +1,122 @@ +/* + * 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.abilities.effects.common; + +import mage.Constants.Duration; +import mage.abilities.Ability; +import mage.abilities.effects.PreventionEffectImpl; +import mage.game.Game; +import mage.game.events.GameEvent; + +/** + * + * @author nantuko + */ +public class PreventDamageFromTargetEffect extends PreventionEffectImpl<PreventDamageFromTargetEffect> { + + private int amount; + private boolean all; + + public PreventDamageFromTargetEffect(Duration duration, int amount) { + super(duration); + this.amount = amount; + } + + public PreventDamageFromTargetEffect(Duration duration, boolean all) { + super(duration); + this.amount = 0; + this.all = all; + } + + public PreventDamageFromTargetEffect(final PreventDamageFromTargetEffect effect) { + super(effect); + this.amount = effect.amount; + this.all = effect.all; + } + + @Override + public PreventDamageFromTargetEffect copy() { + return new PreventDamageFromTargetEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + return true; + } + + @Override + public boolean replaceEvent(GameEvent event, Ability source, Game game) { + GameEvent preventEvent = new GameEvent(GameEvent.EventType.PREVENT_DAMAGE, source.getFirstTarget(), source.getId(), source.getControllerId(), event.getAmount(), false); + if (!game.replaceEvent(preventEvent)) { + if (all) { + int damage = event.getAmount(); + event.setAmount(0); + game.fireEvent(GameEvent.getEvent(GameEvent.EventType.PREVENTED_DAMAGE, source.getFirstTarget(), source.getId(), source.getControllerId(), damage)); + } else { + if (event.getAmount() >= this.amount) { + int damage = event.getAmount(); + event.setAmount(event.getAmount() - amount); + this.used = true; + game.fireEvent(GameEvent.getEvent(GameEvent.EventType.PREVENTED_DAMAGE, source.getFirstTarget(), source.getId(), source.getControllerId(), damage)); + } else { + int damage = event.getAmount(); + event.setAmount(0); + amount -= damage; + game.fireEvent(GameEvent.getEvent(GameEvent.EventType.PREVENTED_DAMAGE, source.getFirstTarget(), source.getId(), source.getControllerId(), damage)); + } + } + } + return false; + } + + @Override + public boolean applies(GameEvent event, Ability source, Game game) { + if (!this.used && super.applies(event, source, game) && event.getSourceId().equals(source.getFirstTarget())) { + return true; + } + return false; + } + + @Override + public String getText(Ability source) { + if (this.all) { + StringBuilder sb = new StringBuilder(); + sb.append("Prevent all damage target "); + sb.append(source.getTargets().get(0).getTargetName()).append(" would deal ").append(duration.toString()); + return sb.toString(); + } else { + StringBuilder sb = new StringBuilder(); + sb.append("Prevent the next ").append(amount).append(" damage that "); + sb.append(source.getTargets().get(0).getTargetName()).append(" would deal ").append(duration.toString()); + return sb.toString(); + } + + } + +} diff --git a/Mage/src/mage/target/common/TargetCreaturePermanent.java b/Mage/src/mage/target/common/TargetCreaturePermanent.java index 37085d74a2..6502f3d3dc 100644 --- a/Mage/src/mage/target/common/TargetCreaturePermanent.java +++ b/Mage/src/mage/target/common/TargetCreaturePermanent.java @@ -49,6 +49,10 @@ public class TargetCreaturePermanent<T extends TargetCreaturePermanent<T>> exten this(numTargets, numTargets, FilterCreaturePermanent.getDefault(), false); } + public TargetCreaturePermanent(int minNumTargets, int maxNumTargets) { + this(minNumTargets, maxNumTargets, FilterCreaturePermanent.getDefault(), false); + } + public TargetCreaturePermanent(int minNumTargets, int maxNumTargets, FilterCreaturePermanent filter, boolean notTarget) { super(minNumTargets, maxNumTargets, filter, notTarget); this.targetName = filter.getMessage();