spawn_pool  
Keeps track of the available points for a given pool, as well as any spawners that need to keep track globally of the number of any specific item that they spawn.
| Vars | |
| available_points | The number of points left for the spawner to use. Starts at its initial value. | 
|---|---|
| guaranteed_spawners | A list of spawners whose guaranteedisTRUE. These spawners will
always spawn, and always before anything else, | 
| id | The ID of the spawn pool. All spawners registered to this pool must use this ID. | 
| known_spawners | A list of all spawners registered to this pool. | 
| unique_spawners | A key-value list of spawners with TRUE unique_picksto a shared copy of their
loot pool. When items from one of these spawners are spawned, it is removed
from the shared loot pool so it never spawns again. | 
Var Details
available_points  
The number of points left for the spawner to use. Starts at its initial value.
guaranteed_spawners  
A list of spawners whose guaranteed is TRUE. These spawners will
always spawn, and always before anything else,
id  
The ID of the spawn pool. All spawners registered to this pool must use this ID.
known_spawners  
A list of all spawners registered to this pool.
unique_spawners  
A key-value list of spawners with TRUE unique_picks to a shared copy of their
loot pool. When items from one of these spawners are spawned, it is removed
from the shared loot pool so it never spawns again.