mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-20 19:43:13 +01:00
Replaced the outside turfs with exoplanet ones for the digsite. Fixed some exoplanet areas not having an exoplanet base turf. Wrote a unit test for exoplanet areas to ensure they have an exoplanet base turf.
35 lines
1019 B
Plaintext
35 lines
1019 B
Plaintext
/singleton/biome/barren
|
|
turf_type = /turf/simulated/floor/exoplanet/barren
|
|
generators = list()
|
|
spawn_types = list()
|
|
|
|
/singleton/biome/barren/asteroid
|
|
turf_type = /turf/simulated/floor/exoplanet/asteroid/ash
|
|
generators = list(
|
|
WILDLIFE = list(POISSON_SAMPLE, 15)
|
|
)
|
|
spawn_types = list(
|
|
WILDLIFE = list(
|
|
/mob/living/simple_animal/hostile/gnat = 5,
|
|
/mob/living/simple_animal/hostile/carp/asteroid = 3,
|
|
/mob/living/simple_animal/hostile/carp/bloater = 1,
|
|
/mob/living/simple_animal/hostile/carp/shark/reaver = 1,
|
|
/mob/living/simple_animal/hostile/carp/shark/reaver/eel = 1
|
|
)
|
|
)
|
|
|
|
/singleton/biome/barren/raskara
|
|
turf_type = /turf/simulated/floor/exoplanet/barren/raskara
|
|
|
|
/singleton/biome/barren/asteroid/ice
|
|
turf_type = /turf/simulated/floor/exoplanet/ice
|
|
|
|
/singleton/biome/barren/pid
|
|
turf_type = /turf/simulated/floor/exoplanet/barren
|
|
generators = list(SMALL_FLORA = list(POISSON_SAMPLE, 7))
|
|
spawn_types = list(
|
|
SMALL_FLORA = list(
|
|
/obj/effect/landmark/exoplanet_spawn/plant = 2
|
|
)
|
|
)
|