diff --git a/code/game/area/Space Station 13 areas_vr.dm b/code/game/area/Space Station 13 areas_vr.dm new file mode 100644 index 00000000000..67d1b6b06ed --- /dev/null +++ b/code/game/area/Space Station 13 areas_vr.dm @@ -0,0 +1,27 @@ +//TFF 28/8/19 - cleanup of areas placement - removes all but rogueminer_vr stuff. + +//Rouguelike Mining +/area/asteroid/rogue + var/asteroid_spawns = list() + var/mob_spawns = list() + var/shuttle_area //It would be neat if this were more dynamic, but eh. + +/area/asteroid/rogue/zone1 + name = "Asteroid Belt Zone 1" + icon_state = "red2" + shuttle_area = /area/shuttle/belter/belt/zone1 + +/area/asteroid/rogue/zone2 + name = "Asteroid Belt Zone 2" + icon_state = "blue2" + shuttle_area = /area/shuttle/belter/belt/zone2 + +/area/asteroid/rogue/zone3 + name = "Asteroid Belt Zone 3" + icon_state = "blue2" + shuttle_area = /area/shuttle/belter/belt/zone3 + +/area/asteroid/rogue/zone4 + name = "Asteroid Belt Zone 4" + icon_state = "red2" + shuttle_area = /area/shuttle/belter/belt/zone4 \ No newline at end of file diff --git a/maps/tether/tether_areas2.dm b/maps/tether/tether_areas2.dm index a60d638440f..6d272a9f88d 100644 --- a/maps/tether/tether_areas2.dm +++ b/maps/tether/tether_areas2.dm @@ -846,32 +846,6 @@ name = "Belter Shuttle Warp" icon_state = "shuttle" -//Rouguelike Mining -/area/asteroid/rogue - var/asteroid_spawns = list() - var/mob_spawns = list() - var/shuttle_area //It would be neat if this were more dynamic, but eh. - -/area/asteroid/rogue/zone1 - name = "Asteroid Belt Zone 1" - icon_state = "red2" - shuttle_area = /area/shuttle/belter/belt/zone1 - -/area/asteroid/rogue/zone2 - name = "Asteroid Belt Zone 2" - icon_state = "blue2" - shuttle_area = /area/shuttle/belter/belt/zone2 - -/area/asteroid/rogue/zone3 - name = "Asteroid Belt Zone 3" - icon_state = "blue2" - shuttle_area = /area/shuttle/belter/belt/zone3 - -/area/asteroid/rogue/zone4 - name = "Asteroid Belt Zone 4" - icon_state = "red2" - shuttle_area = /area/shuttle/belter/belt/zone4 - /area/medical/resleeving name = "Resleeving Lab" icon_state = "genetics" diff --git a/vorestation.dme b/vorestation.dme index 546dc9effa1..e68f4c096ae 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -486,6 +486,7 @@ #include "code\game\area\asteroid_areas.dm" #include "code\game\area\Away Mission areas.dm" #include "code\game\area\Space Station 13 areas.dm" +#include "code\game\area\Space Station 13 areas_vr.dm" #include "code\game\dna\dna2.dm" #include "code\game\dna\dna2_domutcheck.dm" #include "code\game\dna\dna2_helpers.dm"