forked from External/mage
* [MKM] Implement Agrus Kos, Spirit of Justice * rework effects * [MKM] Implement Airtight Alibi * [MKM] Implement Convenient Target * [MKM] Implement Repeat Offender * add test * add more tests * add tooltip for suspected * implement requested changes
63 lines
2.2 KiB
Java
63 lines
2.2 KiB
Java
package mage.abilities.effects;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.keyword.MenaceAbility;
|
|
import mage.constants.*;
|
|
import mage.counters.AbilityCounter;
|
|
import mage.counters.BoostCounter;
|
|
import mage.game.Game;
|
|
import mage.game.permanent.Permanent;
|
|
|
|
/**
|
|
* @author BetaSteward_at_googlemail.com
|
|
* <p>
|
|
* Applies boost from from boost counters and also adds abilities from ability counters and suspected mechanic
|
|
*/
|
|
public class ApplyStatusEffect extends ContinuousEffectImpl {
|
|
|
|
ApplyStatusEffect() {
|
|
super(Duration.EndOfGame, Outcome.BoostCreature);
|
|
}
|
|
|
|
private ApplyStatusEffect(ApplyStatusEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Game game, Ability source) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game) {
|
|
if (layer == Layer.AbilityAddingRemovingEffects_6) {
|
|
for (Permanent permanent : game.getBattlefield().getAllActivePermanents()) {
|
|
for (AbilityCounter counter : permanent.getCounters(game).getAbilityCounters()) {
|
|
permanent.addAbility(counter.getAbility(), source == null ? permanent.getId() : source.getSourceId(), game);
|
|
}
|
|
if (permanent.isSuspected()) {
|
|
permanent.addAbility(new MenaceAbility(false), source == null ? permanent.getId() : source.getSourceId(), game);
|
|
}
|
|
}
|
|
}
|
|
if (layer == Layer.PTChangingEffects_7 && sublayer == SubLayer.Counters_7d) {
|
|
for (Permanent permanent : game.getBattlefield().getAllActivePermanents(CardType.CREATURE, game)) {
|
|
for (BoostCounter counter : permanent.getCounters(game).getBoostCounters()) {
|
|
permanent.addPower(counter.getPower() * counter.getCount());
|
|
permanent.addToughness(counter.getToughness() * counter.getCount());
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean hasLayer(Layer layer) {
|
|
return layer == Layer.PTChangingEffects_7 || layer == Layer.AbilityAddingRemovingEffects_6;
|
|
}
|
|
|
|
@Override
|
|
public ApplyStatusEffect copy() {
|
|
return new ApplyStatusEffect(this);
|
|
}
|
|
}
|