[LCI] Implement Enterprising Scallywag

This commit is contained in:
theelk801 2023-10-28 10:04:33 -04:00
parent 39b2e3401a
commit fb0917c4e6
5 changed files with 163 additions and 0 deletions

View file

@ -0,0 +1,23 @@
package mage.abilities.condition.common;
import mage.abilities.Ability;
import mage.abilities.condition.Condition;
import mage.game.Game;
import mage.watchers.common.DescendedWatcher;
/**
* @author TheElk801
*/
public enum DescendedThisTurnCondition implements Condition {
instance;
@Override
public boolean apply(Game game, Ability source) {
return DescendedWatcher.getDescendedCount(source.getControllerId(), game) > 0;
}
@Override
public String toString() {
return "you descended this turn";
}
}