Fixed test errors and fixed newlines (#7391)

* Fixed test errors

* Fixed newlines
This commit is contained in:
Daniel Bomar 2021-01-14 15:35:28 -06:00 committed by GitHub
parent 3f7f4a0f82
commit 69eed4cc2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 235 additions and 235 deletions

View file

@ -1,112 +1,112 @@
package mage.abilities.effects.common;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.costs.Cost;
import mage.abilities.effects.ContinuousEffect;
import mage.abilities.effects.Effect;
import mage.abilities.effects.Effects;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.util.CardUtil;
/**
*
* @author jeffwadsworth
*/
public class DoUnlessAttachedControllerPaysEffect extends OneShotEffect {
protected Effects executingEffects = new Effects();
private final Cost cost;
private String chooseUseText;
public DoUnlessAttachedControllerPaysEffect(Effect effect, Cost cost) {
this(effect, cost, null);
}
public DoUnlessAttachedControllerPaysEffect(Effect effect, Cost cost, String chooseUseText) {
super(Outcome.Neutral);
this.executingEffects.add(effect);
this.cost = cost;
this.chooseUseText = chooseUseText;
}
public DoUnlessAttachedControllerPaysEffect(final DoUnlessAttachedControllerPaysEffect effect) {
super(effect);
this.executingEffects = effect.executingEffects.copy();
this.cost = effect.cost.copy();
this.chooseUseText = effect.chooseUseText;
}
public void addEffect(Effect effect) {
executingEffects.add(effect);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent aura = game.getPermanentOrLKIBattlefield(source.getSourceId());
if (aura == null) {
return false;
}
Permanent attachedTo = game.getPermanentOrLKIBattlefield(aura.getAttachedTo());
if (attachedTo == null) {
return false;
}
Player controllerOfAttachedTo = game.getPlayer(attachedTo.getControllerId());
if (controllerOfAttachedTo != null) {
String message;
if (chooseUseText == null) {
String effectText = executingEffects.getText(source.getModes().getMode());
message = "Pay " + cost.getText() + " to prevent (" + effectText.substring(0, effectText.length() - 1) + ")?";
} else {
message = chooseUseText;
}
message = CardUtil.replaceSourceName(message, aura.getName());
boolean result = true;
boolean doEffect = true;
// check if controller is willing to pay
if (cost.canPay(source, source, controllerOfAttachedTo.getId(), game)
&& controllerOfAttachedTo.chooseUse(Outcome.Neutral, message, source, game)) {
cost.clearPaid();
if (cost.pay(source, game, source, controllerOfAttachedTo.getId(), false, null)) {
if (!game.isSimulation()) {
game.informPlayers(controllerOfAttachedTo.getLogName() + " pays the cost to prevent the effect");
}
doEffect = false;
}
}
// do the effects if not paid
if (doEffect) {
for (Effect effect : executingEffects) {
effect.setTargetPointer(this.targetPointer);
if (effect instanceof OneShotEffect) {
result &= effect.apply(game, source);
} else {
game.addEffect((ContinuousEffect) effect, source);
}
}
}
return result;
}
return false;
}
@Override
public String getText(Mode mode) {
if (!staticText.isEmpty()) {
return staticText;
}
String effectsText = executingEffects.getText(mode);
return effectsText.substring(0, effectsText.length() - 1) + " unless controller pays " + cost.getText();
}
@Override
public DoUnlessAttachedControllerPaysEffect copy() {
return new DoUnlessAttachedControllerPaysEffect(this);
}
}
package mage.abilities.effects.common;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.costs.Cost;
import mage.abilities.effects.ContinuousEffect;
import mage.abilities.effects.Effect;
import mage.abilities.effects.Effects;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.players.Player;
import mage.util.CardUtil;
/**
*
* @author jeffwadsworth
*/
public class DoUnlessAttachedControllerPaysEffect extends OneShotEffect {
protected Effects executingEffects = new Effects();
private final Cost cost;
private String chooseUseText;
public DoUnlessAttachedControllerPaysEffect(Effect effect, Cost cost) {
this(effect, cost, null);
}
public DoUnlessAttachedControllerPaysEffect(Effect effect, Cost cost, String chooseUseText) {
super(Outcome.Neutral);
this.executingEffects.add(effect);
this.cost = cost;
this.chooseUseText = chooseUseText;
}
public DoUnlessAttachedControllerPaysEffect(final DoUnlessAttachedControllerPaysEffect effect) {
super(effect);
this.executingEffects = effect.executingEffects.copy();
this.cost = effect.cost.copy();
this.chooseUseText = effect.chooseUseText;
}
public void addEffect(Effect effect) {
executingEffects.add(effect);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent aura = game.getPermanentOrLKIBattlefield(source.getSourceId());
if (aura == null) {
return false;
}
Permanent attachedTo = game.getPermanentOrLKIBattlefield(aura.getAttachedTo());
if (attachedTo == null) {
return false;
}
Player controllerOfAttachedTo = game.getPlayer(attachedTo.getControllerId());
if (controllerOfAttachedTo != null) {
String message;
if (chooseUseText == null) {
String effectText = executingEffects.getText(source.getModes().getMode());
message = "Pay " + cost.getText() + " to prevent (" + effectText.substring(0, effectText.length() - 1) + ")?";
} else {
message = chooseUseText;
}
message = CardUtil.replaceSourceName(message, aura.getName());
boolean result = true;
boolean doEffect = true;
// check if controller is willing to pay
if (cost.canPay(source, source, controllerOfAttachedTo.getId(), game)
&& controllerOfAttachedTo.chooseUse(Outcome.Neutral, message, source, game)) {
cost.clearPaid();
if (cost.pay(source, game, source, controllerOfAttachedTo.getId(), false, null)) {
if (!game.isSimulation()) {
game.informPlayers(controllerOfAttachedTo.getLogName() + " pays the cost to prevent the effect");
}
doEffect = false;
}
}
// do the effects if not paid
if (doEffect) {
for (Effect effect : executingEffects) {
effect.setTargetPointer(this.targetPointer);
if (effect instanceof OneShotEffect) {
result &= effect.apply(game, source);
} else {
game.addEffect((ContinuousEffect) effect, source);
}
}
}
return result;
}
return false;
}
@Override
public String getText(Mode mode) {
if (!staticText.isEmpty()) {
return staticText;
}
String effectsText = executingEffects.getText(mode);
return effectsText.substring(0, effectsText.length() - 1) + " unless controller pays " + cost.getText();
}
@Override
public DoUnlessAttachedControllerPaysEffect copy() {
return new DoUnlessAttachedControllerPaysEffect(this);
}
}

View file

@ -1,50 +1,50 @@
package mage.abilities.effects.common.continuous;
import mage.abilities.Ability;
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;
import mage.game.permanent.Permanent;
/**
*
* @author jeffwadsworth
*/
public class SetPowerEnchantedEffect extends ContinuousEffectImpl {
private final int power;
public SetPowerEnchantedEffect(int power) {
super(Duration.WhileOnBattlefield, Layer.PTChangingEffects_7, SubLayer.SetPT_7b, Outcome.Neutral);
staticText = "Enchanted creature has base power " + power;
this.power = power;
}
public SetPowerEnchantedEffect(final SetPowerEnchantedEffect effect) {
super(effect);
this.power = effect.power;
}
@Override
public SetPowerEnchantedEffect copy() {
return new SetPowerEnchantedEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent enchantment = game.getPermanent(source.getSourceId());
if (enchantment != null
&& enchantment.getAttachedTo() != null) {
Permanent enchanted = game.getPermanent(enchantment.getAttachedTo());
if (enchanted != null) {
enchanted.getPower().setValue(power);
}
return true;
}
return false;
}
}
package mage.abilities.effects.common.continuous;
import mage.abilities.Ability;
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;
import mage.game.permanent.Permanent;
/**
*
* @author jeffwadsworth
*/
public class SetPowerEnchantedEffect extends ContinuousEffectImpl {
private final int power;
public SetPowerEnchantedEffect(int power) {
super(Duration.WhileOnBattlefield, Layer.PTChangingEffects_7, SubLayer.SetPT_7b, Outcome.Neutral);
staticText = "Enchanted creature has base power " + power;
this.power = power;
}
public SetPowerEnchantedEffect(final SetPowerEnchantedEffect effect) {
super(effect);
this.power = effect.power;
}
@Override
public SetPowerEnchantedEffect copy() {
return new SetPowerEnchantedEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent enchantment = game.getPermanent(source.getSourceId());
if (enchantment != null
&& enchantment.getAttachedTo() != null) {
Permanent enchanted = game.getPermanent(enchantment.getAttachedTo());
if (enchanted != null) {
enchanted.getPower().setValue(power);
}
return true;
}
return false;
}
}