[DMU] Implemented Academy Loremaster

This commit is contained in:
Evan Kranzler 2022-08-29 20:09:16 -04:00
parent 2e94364b2a
commit 06d7b508dc
3 changed files with 84 additions and 0 deletions

View file

@ -55,6 +55,9 @@ public class SpellsCostIncreasingAllEffect extends CostModificationEffectImpl {
case OPPONENT:
sb.append(" your opponents cast");
break;
case ACTIVE:
sb.append(" the active player casts");
break;
case ANY:
break;
default:
@ -110,6 +113,10 @@ public class SpellsCostIncreasingAllEffect extends CostModificationEffectImpl {
return false;
}
break;
case ACTIVE:
if (!game.isActivePlayer(abilityController.getId())) {
return false;
}
case ANY:
break;
default: