forked from External/mage
70 lines
1.9 KiB
Java
70 lines
1.9 KiB
Java
package mage.abilities.effects.common;
|
|
|
|
import java.util.UUID;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.Mode;
|
|
import mage.abilities.dynamicvalue.DynamicValue;
|
|
import mage.abilities.dynamicvalue.common.StaticValue;
|
|
import mage.abilities.effects.OneShotEffect;
|
|
import mage.constants.Outcome;
|
|
import mage.game.Game;
|
|
import mage.players.Player;
|
|
|
|
/**
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class GainLifeTargetEffect extends OneShotEffect {
|
|
|
|
private final DynamicValue life;
|
|
|
|
public GainLifeTargetEffect(int life) {
|
|
this(StaticValue.get(life));
|
|
}
|
|
|
|
public GainLifeTargetEffect(DynamicValue life) {
|
|
super(Outcome.GainLife);
|
|
this.life = life;
|
|
}
|
|
|
|
protected GainLifeTargetEffect(final GainLifeTargetEffect effect) {
|
|
super(effect);
|
|
this.life = effect.life;
|
|
}
|
|
|
|
@Override
|
|
public GainLifeTargetEffect copy() {
|
|
return new GainLifeTargetEffect(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
for (UUID playerId : getTargetPointer().getTargets(game, source)) {
|
|
Player player = game.getPlayer(playerId);
|
|
if (player != null) {
|
|
player.gainLife(life.calculate(game, source, this), game, source);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public String getText(Mode mode) {
|
|
if (staticText != null && !staticText.isEmpty()) {
|
|
return staticText;
|
|
}
|
|
StringBuilder sb = new StringBuilder(getTargetPointer().describeTargets(mode.getTargets(), "that player"));
|
|
sb.append(" gains ");
|
|
String message = life.getMessage();
|
|
if (!message.equals("1")) {
|
|
sb.append(life.toString()).append(' ');
|
|
}
|
|
sb.append("life");
|
|
if (!message.isEmpty()) {
|
|
sb.append(message.equals("1") ? " equal to the number of " : " for each ");
|
|
sb.append(message);
|
|
}
|
|
return sb.toString();
|
|
}
|
|
|
|
}
|