From b4903488b623658e220d78d6e287de65190ea863 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 21 May 2014 08:35:19 +0200 Subject: [PATCH] Added SetPowerSourceEffect. Some changes to SetPTSourceEffect calsses. --- .../continious/SetPowerSourceEffect.java | 77 +++++++++++++++++++ .../SetPowerToughnessSourceEffect.java | 42 +++------- .../continious/SetToughnessSourceEffect.java | 34 +++----- 3 files changed, 98 insertions(+), 55 deletions(-) create mode 100644 Mage/src/mage/abilities/effects/common/continious/SetPowerSourceEffect.java diff --git a/Mage/src/mage/abilities/effects/common/continious/SetPowerSourceEffect.java b/Mage/src/mage/abilities/effects/common/continious/SetPowerSourceEffect.java new file mode 100644 index 0000000000..a2910f1e8b --- /dev/null +++ b/Mage/src/mage/abilities/effects/common/continious/SetPowerSourceEffect.java @@ -0,0 +1,77 @@ +/* + * Copyright 2012 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.continious; + +import mage.MageObject; +import mage.abilities.Ability; +import mage.abilities.dynamicvalue.DynamicValue; +import mage.abilities.effects.ContinuousEffectImpl; +import mage.constants.Duration; +import mage.constants.Layer; +import mage.constants.Outcome; +import mage.constants.SubLayer; +import mage.game.Game; + +/** + * + * @author LevelX2 + */ + +public class SetPowerSourceEffect extends ContinuousEffectImpl { + + private final DynamicValue amount; + + public SetPowerSourceEffect(DynamicValue amount, Duration duration) { + super(duration, Layer.PTChangingEffects_7, SubLayer.SetPT_7b, Outcome.BoostCreature); + this.amount = amount; + staticText = "{this}'s power is equal to the number of " + amount.getMessage(); + } + + public SetPowerSourceEffect(final SetPowerSourceEffect effect) { + super(effect); + this.amount = effect.amount; + } + + @Override + public SetPowerSourceEffect copy() { + return new SetPowerSourceEffect(this); + } + + @Override + public boolean apply(Game game, Ability source) { + MageObject mageObject = game.getObject(source.getSourceId()); + if (mageObject != null) { + int value = amount.calculate(game, source); + mageObject.getPower().setValue(value); + return true; + } + return false; + } + +} \ No newline at end of file diff --git a/Mage/src/mage/abilities/effects/common/continious/SetPowerToughnessSourceEffect.java b/Mage/src/mage/abilities/effects/common/continious/SetPowerToughnessSourceEffect.java index 2c45b41c82..6232f9ce45 100644 --- a/Mage/src/mage/abilities/effects/common/continious/SetPowerToughnessSourceEffect.java +++ b/Mage/src/mage/abilities/effects/common/continious/SetPowerToughnessSourceEffect.java @@ -28,16 +28,15 @@ package mage.abilities.effects.common.continious; +import mage.MageObject; +import mage.abilities.Ability; +import mage.abilities.dynamicvalue.DynamicValue; +import mage.abilities.effects.ContinuousEffectImpl; import mage.constants.Duration; import mage.constants.Layer; import mage.constants.Outcome; import mage.constants.SubLayer; -import mage.abilities.Ability; -import mage.abilities.dynamicvalue.DynamicValue; -import mage.abilities.effects.ContinuousEffectImpl; -import mage.cards.Card; import mage.game.Game; -import mage.game.permanent.Permanent; /** * @@ -76,42 +75,23 @@ public class SetPowerToughnessSourceEffect extends ContinuousEffectImpl { - private DynamicValue amount; - private int toughness; + private final DynamicValue amount; public SetToughnessSourceEffect(DynamicValue amount, Duration duration) { super(duration, Layer.PTChangingEffects_7, SubLayer.SetPT_7b, Outcome.BoostCreature); @@ -53,16 +51,9 @@ public class SetToughnessSourceEffect extends ContinuousEffectImpl