[MODULAR] New Mining Map! (#5100)

* Tidally Locked Planet Mining

* Work

* Bad

* Wait it works

* Close to last fix?
This commit is contained in:
Cheshify
2021-04-23 01:12:35 +01:00
committed by GitHub
parent c7bfe6ec53
commit fbb874e101
5 changed files with 68327 additions and 2 deletions
+1
View File
@@ -17,6 +17,7 @@
#include "map_files\IceBoxStation\IceBoxStation.dmm"
#include "map_files\tramstation\tramstation.dmm"
#include "map_files\NSSJourney\NSSJourney.dmm" //SKYRAT EDIT ADDITON
#include "map_files\Mining\TidalLock.dmm" //SKYRAT EDIT ADDITION
#ifdef CIBUILDING
#include "templates.dm"
File diff suppressed because it is too large Load Diff
+9
View File
@@ -14,3 +14,12 @@
ZTRAIT_ICE_RUINS_UNDERGROUND = TRUE, \
ZTRAIT_BOMBCAP_MULTIPLIER = 2, \
ZTRAIT_BASETURF = /turf/open/lava/plasma/ice_moon) //Remove ZTRAIT_ICE_RUINS if anyone makes multi-z icemoon ruins, as it'll cause problems here.
#define ZTRAITS_TIDALLOCK list(\
ZTRAIT_MINING = TRUE, \
ZTRAIT_ACIDRAIN = TRUE, \
ZTRAIT_LAVA_RUINS = TRUE, \
ZTRAIT_ICE_RUINS = TRUE, \
ZTRAIT_ICE_RUINS_UNDERGROUND = TRUE, \
ZTRAIT_BOMBCAP_MULTIPLIER = 2, \
ZTRAIT_BASETURF = /turf/open/floor/plating/asteroid)
@@ -4,5 +4,6 @@
GLOBAL_LIST_INIT(mining_traits, list(
"lavaland" = ZTRAITS_LAVALAND,
"rockplanet" = ZTRAITS_ROCKPLANET,
"icemoon" = ZTRAITS_ICEMOONSKYRAT
"icemoon" = ZTRAITS_ICEMOONSKYRAT,
"tidallock" = ZTRAITS_TIDALLOCK
))
+2 -1
View File
@@ -1,3 +1,4 @@
Lavaland.dmm+lavaland
Rockplanet.dmm+rockplanet
Icemoon.dmm+icemoon
Icemoon.dmm+icemoon
TidalLock.dmm+tidallock