"""Spawn budget table by phase.""" from __future__ import annotations from game.sim.stage_table import spawn_budget, SPAWN_BUDGET def budget_for(phase: str) -> int: return spawn_budget(phase)