[PIP] Implement Overencumbered

This commit is contained in:
ciaccona007 2024-11-05 17:58:19 -05:00
parent dcc721cc68
commit 6c2e7a3fd3
3 changed files with 125 additions and 0 deletions

View file

@ -55,6 +55,8 @@ public class BeginningOfCombatTriggeredAbility extends AtStepTriggeredAbility {
return "At the beginning of combat on each player's turn, ";
case ANY:
return "At the beginning of each combat, ";
case ENCHANTED:
return "At the beginning of combat on enchanted player's turn, ";
default:
throw new UnsupportedOperationException("Unsupported TargetController in BeginningOfCombatTriggeredAbility: " + targetController);
}