mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-20 19:43:13 +01:00
5ae3436695
     --------- Co-authored-by: DreamySkrell <>
22 lines
613 B
Plaintext
22 lines
613 B
Plaintext
/singleton/biome
|
|
/// Fallback turf if no PLANET_TURF generator is specified, which is true in most cases
|
|
var/turf_type
|
|
var/list/generators = list()
|
|
var/list/spawn_types = list()
|
|
var/list/exclusive_generators = list(LARGE_FLORA)
|
|
|
|
/singleton/biome/mountain
|
|
turf_type = /turf/simulated/mineral
|
|
|
|
/singleton/biome/mountain/adhomai
|
|
turf_type = /turf/simulated/mineral/adhomai
|
|
|
|
/singleton/biome/mountain/basalt
|
|
turf_type = /turf/simulated/mineral/lava
|
|
|
|
/singleton/biome/water
|
|
turf_type = /turf/simulated/floor/exoplanet/water/shallow
|
|
|
|
/singleton/biome/water/ice
|
|
turf_type = /turf/simulated/floor/exoplanet/ice
|