From d79776ce58c9f4d48bdfbc70c93de163ec1962fb Mon Sep 17 00:00:00 2001 From: awdaw Date: Tue, 25 Aug 2020 00:09:54 +0200 Subject: [PATCH] Update space.dm Adds mazeA, B and C to the map list. --- code/datums/ruins/space.dm | 59 +++++++++++++++++++++++++++++++++++++- 1 file changed, 58 insertions(+), 1 deletion(-) diff --git a/code/datums/ruins/space.dm b/code/datums/ruins/space.dm index cc8ad88a9d4..b022a9b211c 100644 --- a/code/datums/ruins/space.dm +++ b/code/datums/ruins/space.dm @@ -249,8 +249,65 @@ always_place = TRUE // Its designed to make exploring other space ruins more accessible cost = 0 // Force spawned so shouldnt have a cost -/datum/map_template/ruin/space/syndicakes +/datum/map_template/ruin/space/syndicakesfactory id = "syndicakesfactory" suffix = "syndicakesfactory.dmm" name = "Syndicakes Factory" description = "Syndicate used to get funds selling corgi cakes produced here. Was it hit by meteors or by a Nanotrasen comando?" + allow_duplicates = FALSE //just in case + always_place = FALSE + cost = 2 //telecomms + multiple mobs + +/datum/map_template/ruin/space/debris1 + id = "debris1" + suffix = "debris1.dmm" + name = "Debris field 1" + description = "A bunch of metal chunks, wires and space waste" + allow_duplicates = TRUE + always_place = FALSE + cost = 1 + +/datum/map_template/ruin/space/debris2 + id = "debris2" + suffix = "debris2.dmm" + name = "Debris field 2" + description = "A bunch of metal chunks, wires and space waste that used to be some kind of secure storage facility" + allow_duplicates = FALSE + always_place = FALSE + cost = 1 + +/datum/map_template/ruin/space/debris3 + id = "debris3" + suffix = "debris3.dmm" + name = "Debris field 3" + description = "A bunch of metal chunks, wires and space waste. It used to be an arcade." + allow_duplicates = TRUE + always_place = FALSE + cost = 1 + +/datum/map_template/ruin/space/mazeA + id = "mazeA" + suffix = "mazeA.dmm" + name = "Maze variant A" + description = "A huge cube with a labyrinth inside." + allow_duplicates = FALSE + always_place = FALSE + cost = 6 //Although it does not have many entities, it's a 100x120 sized map + +/datum/map_template/ruin/space/mazeB + id = "mazeB" + suffix = "mazeB.dmm" + name = "Maze variant B" + description = "A huge cube with a labyrinth inside." + allow_duplicates = FALSE + always_place = FALSE + cost = 6 //same as above + +/datum/map_template/ruin/space/mazeC + id = "mazeC" + suffix = "mazeC.dmm" + name = "Maze variant C" + description = "A huge cube with a labyrinth inside." + allow_duplicates = FALSE + always_place = FALSE + cost = 6 //same as above