Adds a Static GPS to the Intrepid (#15151)

This commit is contained in:
SleepyGemmy
2022-11-23 22:31:42 +01:00
committed by GitHub
parent 3973999661
commit d7edc33511
4 changed files with 100 additions and 71 deletions
+17 -4
View File
@@ -310,10 +310,14 @@ var/list/GPS_list = list()
compass_color = "#EAD152"
gpstag = "MAROON0"
/********** Static GPS Start **********/
// Static GPS
/obj/item/device/gps/stationary
name = "static GPS"
desc = "A static global positioning system."
anchored = TRUE
unacidable = TRUE
layer = 2.1
gpstag = "STAT0"
/obj/item/device/gps/stationary/Initialize()
@@ -350,12 +354,21 @@ var/list/GPS_list = list()
/obj/item/device/gps/stationary/attack_hand() // Don't let users pick it up.
return
// Spark
/obj/item/device/gps/stationary/mining_shuttle
name = "static GPS (mining shuttle)"
name = "static GPS (SCCV Spark)"
desc = "A static global positioning system helpful for finding your way back to the mining shuttle."
icon_state = "gps-min"
anchored = TRUE
layer = 2.1
gps_prefix = "MIN"
compass_color = "#5F4519"
gpstag = "MINSHUT"
gpstag = "SPARK"
// Intrepid
/obj/item/device/gps/stationary/sccv_intrepid
name = "static GPS (SCCV Intrepid)"
desc = "A static global positioning system helpful for finding your way back to the SCCV Intrepid."
icon_state = "gps-com"
gps_prefix = "COM"
compass_color = "#193A7A"
gpstag = "INTREPID"
/********** Static GPS End **********/