Files
RustingWithYou 6f9140382f Exoplanet Random Plants (#17967)
* icons

* and now, we suffer

* i keep screaming but god wont answer

* adapt seed

* Update code/modules/hydroponics/trays/tray_update_icons.dm

Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>

* Update code/modules/hydroponics/trays/tray_update_icons.dm

Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>

* Update code/modules/hydroponics/trays/tray_update_icons.dm

Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>

* Update code/modules/hydroponics/trays/tray_update_icons.dm

Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>

* addresses requested changes

---------

Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>
2023-12-19 11:45:10 +00:00

35 lines
969 B
Plaintext

/singleton/biome/marsh
turf_type = /turf/simulated/floor/exoplanet/grass/marsh
generators = list(
LARGE_FLORA = list(POISSON_SAMPLE, 15),
GRASSES = list(BATCHED_NOISE, -0.1, 360, 16),
SMALL_FLORA = list(POISSON_SAMPLE, 6),
WILDLIFE = list(POISSON_SAMPLE, 15)
)
exclusive_generators = list(LARGE_FLORA)
spawn_types = list(
LARGE_FLORA = list(
/obj/structure/flora/tree/mushroom = 1
),
GRASSES = list(
/obj/effect/floor_decal/fungus/random = 1
),
SMALL_FLORA = list(
/obj/structure/flora/bush/mushroom = 1,
/obj/effect/landmark/exoplanet_spawn/plant = 1
),
WILDLIFE = list(
/mob/living/simple_animal/yithian = 1,
/mob/living/simple_animal/tindalos = 1,
/mob/living/simple_animal/cosmozoan = 3,
)
)
/singleton/biome/marsh/forest
generators = list(
LARGE_FLORA = list(POISSON_SAMPLE, 4),
GRASSES = list(BATCHED_NOISE, -0.3, 360, 16),
SMALL_FLORA = list(POISSON_SAMPLE, 2),
WILDLIFE = list(POISSON_SAMPLE, 10)
)