Files
Bubberstation/code/modules/procedural_mapping/mapGenerators/lavaland.dm
SkyratBot 38ad81aac6 [MIRROR] [MDB IGNORE] Moves non floor turfs off /floor. You can put lattices on lavaland edition [MDB IGNORE] (#12119)
* [MDB IGNORE] Moves non floor turfs off /floor. You can put lattices on lavaland edition

* 123

* fixes more typepaths

* typepaths

* Update planet_turfs.dm

Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
Co-authored-by: Kat <53862927+KathrinBailey@users.noreply.github.com>
2022-03-18 03:07:00 +00:00

34 lines
1.4 KiB
Plaintext

/datum/map_generator_module/bottom_layer/lavaland_default
spawnableTurfs = list(/turf/open/misc/asteroid/basalt/lava_land_surface = 100)
/datum/map_generator_module/bottom_layer/lavaland_mineral
spawnableTurfs = list(/turf/closed/mineral/random/volcanic = 100)
/datum/map_generator_module/bottom_layer/lavaland_mineral/dense
spawnableTurfs = list(/turf/closed/mineral/random/high_chance/volcanic = 100)
/datum/map_generator_module/splatter_layer/lavaland_monsters
spawnableTurfs = list()
spawnableAtoms = list(/mob/living/simple_animal/hostile/asteroid/goliath/beast = 10,
/mob/living/simple_animal/hostile/asteroid/hivelord/legion = 10,
/mob/living/simple_animal/hostile/asteroid/basilisk/watcher = 10)
/datum/map_generator_module/splatter_layer/lavaland_tendrils
spawnableTurfs = list()
spawnableAtoms = list(/obj/structure/spawner/lavaland = 5,
/obj/structure/spawner/lavaland/legion = 5,
/obj/structure/spawner/lavaland/goliath = 5)
/datum/map_generator/lavaland/ground_only
modules = list(/datum/map_generator_module/bottom_layer/lavaland_default)
buildmode_name = "Block: Lavaland Floor"
/datum/map_generator/lavaland/dense_ores
modules = list(/datum/map_generator_module/bottom_layer/lavaland_mineral/dense)
buildmode_name = "Block: Lavaland Ores: Dense"
/datum/map_generator/lavaland/normal_ores
modules = list(/datum/map_generator_module/bottom_layer/lavaland_mineral)
buildmode_name = "Block: Lavaland Ores"