forked from External/mage
35 lines
974 B
Java
35 lines
974 B
Java
package mage.abilities.dynamicvalue.common;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.dynamicvalue.DynamicValue;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.game.Game;
|
|
import mage.watchers.common.CommanderPlaysCountWatcher;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public enum CommanderCastCountValue implements DynamicValue {
|
|
instance;
|
|
|
|
@Override
|
|
public int calculate(Game game, Ability sourceAbility, Effect effect) {
|
|
CommanderPlaysCountWatcher watcher = game.getState().getWatcher(CommanderPlaysCountWatcher.class);
|
|
return watcher != null ? watcher.getPlayerCount(sourceAbility.getControllerId()) : 0;
|
|
}
|
|
|
|
@Override
|
|
public CommanderCastCountValue copy() {
|
|
return CommanderCastCountValue.instance;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "for each";
|
|
}
|
|
|
|
@Override
|
|
public String getMessage() {
|
|
return "time you've cast a commander from the command zone this game";
|
|
}
|
|
}
|