mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 19:41:59 -08:00
Minor change.
This commit is contained in:
parent
87e953f6ba
commit
1c9e7d653d
1 changed files with 5 additions and 9 deletions
|
|
@ -25,7 +25,6 @@
|
||||||
* authors and should not be interpreted as representing official policies, either expressed
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
* or implied, of BetaSteward_at_googlemail.com.
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package mage.abilities.effects.common.cost;
|
package mage.abilities.effects.common.cost;
|
||||||
|
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
|
|
@ -39,12 +38,10 @@ import mage.constants.Outcome;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.util.CardUtil;
|
import mage.util.CardUtil;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
|
public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
|
||||||
|
|
||||||
private final int amount;
|
private final int amount;
|
||||||
|
|
@ -66,7 +63,6 @@ public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
|
||||||
this.staticText = sb.toString();
|
this.staticText = sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public SpellCostReductionSourceEffect(int amount, Condition condition) {
|
public SpellCostReductionSourceEffect(int amount, Condition condition) {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Benefit, CostModificationType.REDUCE_COST);
|
super(Duration.WhileOnBattlefield, Outcome.Benefit, CostModificationType.REDUCE_COST);
|
||||||
this.amount = amount;
|
this.amount = amount;
|
||||||
|
|
@ -76,7 +72,7 @@ public class SpellCostReductionSourceEffect extends CostModificationEffectImpl {
|
||||||
this.staticText = sb.toString();
|
this.staticText = sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected SpellCostReductionSourceEffect(SpellCostReductionSourceEffect effect) {
|
protected SpellCostReductionSourceEffect(final SpellCostReductionSourceEffect effect) {
|
||||||
super(effect);
|
super(effect);
|
||||||
this.amount = effect.amount;
|
this.amount = effect.amount;
|
||||||
this.manaCostsToReduce = effect.manaCostsToReduce;
|
this.manaCostsToReduce = effect.manaCostsToReduce;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue