mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[DMU] Implemented Academy Loremaster
This commit is contained in:
parent
2e94364b2a
commit
06d7b508dc
3 changed files with 84 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue