[refactoring][minor] Replaced all tabs with four spaces.

This commit is contained in:
North 2012-06-19 23:50:20 +03:00
parent e646e4768d
commit 239a4fb100
2891 changed files with 79411 additions and 79411 deletions

View file

@ -12,65 +12,65 @@ import java.util.UUID;
public class BoostOpponentsEffect extends ContinuousEffectImpl<BoostOpponentsEffect> {
protected int power;
protected int toughness;
protected FilterCreaturePermanent filter;
protected int toughness;
protected FilterCreaturePermanent filter;
public BoostOpponentsEffect(int power, int toughness, Constants.Duration duration) {
this(power, toughness, duration, new FilterCreaturePermanent("Creatures"));
}
public BoostOpponentsEffect(int power, int toughness, Constants.Duration duration) {
this(power, toughness, duration, new FilterCreaturePermanent("Creatures"));
}
public BoostOpponentsEffect(int power, int toughness, Constants.Duration duration, FilterCreaturePermanent filter) {
super(duration, Constants.Layer.PTChangingEffects_7, Constants.SubLayer.ModifyPT_7c, Constants.Outcome.BoostCreature);
this.power = power;
this.toughness = toughness;
this.filter = filter;
setText();
}
public BoostOpponentsEffect(int power, int toughness, Constants.Duration duration, FilterCreaturePermanent filter) {
super(duration, Constants.Layer.PTChangingEffects_7, Constants.SubLayer.ModifyPT_7c, Constants.Outcome.BoostCreature);
this.power = power;
this.toughness = toughness;
this.filter = filter;
setText();
}
public BoostOpponentsEffect(final BoostOpponentsEffect effect) {
super(effect);
this.power = effect.power;
this.toughness = effect.toughness;
this.filter = effect.filter.copy();
}
public BoostOpponentsEffect(final BoostOpponentsEffect effect) {
super(effect);
this.power = effect.power;
this.toughness = effect.toughness;
this.filter = effect.filter.copy();
}
@Override
public BoostOpponentsEffect copy() {
return new BoostOpponentsEffect(this);
}
@Override
public BoostOpponentsEffect copy() {
return new BoostOpponentsEffect(this);
}
@Override
public void init(Ability source, Game game) {
super.init(source, game);
if (this.affectedObjectsSet) {
@Override
public void init(Ability source, Game game) {
super.init(source, game);
if (this.affectedObjectsSet) {
Set<UUID> opponents = game.getOpponents(source.getControllerId());
for (Permanent perm: game.getBattlefield().getAllActivePermanents(filter, game)) {
for (Permanent perm: game.getBattlefield().getAllActivePermanents(filter, game)) {
if (opponents.contains(perm.getControllerId())) {
objects.add(perm.getId());
objects.add(perm.getId());
}
}
}
}
}
}
}
@Override
public boolean apply(Game game, Ability source) {
@Override
public boolean apply(Game game, Ability source) {
Set<UUID> opponents = game.getOpponents(source.getControllerId());
for (Permanent perm: game.getBattlefield().getAllActivePermanents(filter, game)) {
if (!this.affectedObjectsSet || objects.contains(perm.getId())) {
for (Permanent perm: game.getBattlefield().getAllActivePermanents(filter, game)) {
if (!this.affectedObjectsSet || objects.contains(perm.getId())) {
if (opponents.contains(perm.getControllerId())) {
perm.addPower(power);
perm.addToughness(toughness);
perm.addPower(power);
perm.addToughness(toughness);
}
}
}
return true;
}
}
}
return true;
}
private void setText() {
StringBuilder sb = new StringBuilder();
sb.append(filter.getMessage());
sb.append(" your opponents control get ").append(String.format("%1$+d/%2$+d", power, toughness));
sb.append((duration== Constants.Duration.EndOfTurn?" until end of turn":""));
staticText = sb.toString();
}
private void setText() {
StringBuilder sb = new StringBuilder();
sb.append(filter.getMessage());
sb.append(" your opponents control get ").append(String.format("%1$+d/%2$+d", power, toughness));
sb.append((duration== Constants.Duration.EndOfTurn?" until end of turn":""));
staticText = sb.toString();
}
}