mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 06:22:26 +01:00
Adds a Static GPS to the Intrepid (#15151)
This commit is contained in:
@@ -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 **********/
|
||||
Reference in New Issue
Block a user