mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-24 16:41:48 +00:00
Like seriously, don't use spaces in file names, this is a codebase, they're annoying. Hopefully Github will show these renames correctly.
45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
//Asteroid turfs
|
|
/datum/mapGeneratorModule/bottomLayer/asteroidTurfs
|
|
spawnableTurfs = list(/turf/open/floor/plating/asteroid = 100)
|
|
|
|
/datum/mapGeneratorModule/bottomLayer/asteroidWalls
|
|
spawnableTurfs = list(/turf/closed/mineral = 100)
|
|
|
|
//Border walls
|
|
/datum/mapGeneratorModule/border/asteroidWalls
|
|
spawnableAtoms = list()
|
|
spawnableTurfs = list(/turf/closed/mineral = 100)
|
|
|
|
//Random walls
|
|
/datum/mapGeneratorModule/splatterLayer/asteroidWalls
|
|
clusterCheckFlags = CLUSTER_CHECK_NONE
|
|
spawnableAtoms = list()
|
|
spawnableTurfs = list(/turf/closed/mineral = 30)
|
|
|
|
//Monsters
|
|
/datum/mapGeneratorModule/splatterLayer/asteroidMonsters
|
|
spawnableTurfs = list()
|
|
spawnableAtoms = list(/mob/living/simple_animal/hostile/asteroid/basilisk = 10, \
|
|
/mob/living/simple_animal/hostile/asteroid/hivelord = 10, \
|
|
/mob/living/simple_animal/hostile/asteroid/goliath = 10)
|
|
|
|
|
|
// GENERATORS
|
|
|
|
/datum/mapGenerator/asteroid/hollow
|
|
modules = list(/datum/mapGeneratorModule/bottomLayer/asteroidTurfs, \
|
|
/datum/mapGeneratorModule/border/asteroidWalls)
|
|
|
|
/datum/mapGenerator/asteroid/hollow/random
|
|
modules = list(/datum/mapGeneratorModule/bottomLayer/asteroidTurfs, \
|
|
/datum/mapGeneratorModule/border/asteroidWalls, \
|
|
/datum/mapGeneratorModule/splatterLayer/asteroidWalls)
|
|
|
|
/datum/mapGenerator/asteroid/hollow/random/monsters
|
|
modules = list(/datum/mapGeneratorModule/bottomLayer/asteroidTurfs, \
|
|
/datum/mapGeneratorModule/border/asteroidWalls, \
|
|
/datum/mapGeneratorModule/splatterLayer/asteroidWalls, \
|
|
/datum/mapGeneratorModule/splatterLayer/asteroidMonsters)
|
|
|
|
/datum/mapGenerator/asteroid/filled
|
|
modules = list(/datum/mapGeneratorModule/bottomLayer/asteroidWalls) |