mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-17 19:14:15 +01:00
92fb372a8c
## About The Pull Request I'm working on a pubby update for the map depot for admins to run, and thought I should throw this here. Removes a varedit from Pubby and makes the monastery telescreen replaceable by making it researchable and printable through the service techfab. Also re-adds the pubby map wall item, using the new map item outlines. ## Why It's Good For The Game Repairability for a map that seems to be ran frequently by admins (judging by it getting actual issue reports), this has no effect otherwise.
112 lines
3.8 KiB
Plaintext
112 lines
3.8 KiB
Plaintext
//map and direction signs
|
|
|
|
/obj/structure/sign/map
|
|
name = "station map"
|
|
desc = "A navigational chart of the station."
|
|
max_integrity = 500
|
|
|
|
/obj/structure/sign/map/left
|
|
icon_state = "map-left"
|
|
desc = "A navigational chart of the decommissioned Spinward Sector Station SS-02: 'Box' Class Outpost."
|
|
|
|
/obj/structure/sign/map/right
|
|
icon_state = "map-right"
|
|
desc = "A navigational chart of the decommissioned Spinward Sector Station SS-02: 'Box' Class Outpost."
|
|
|
|
/obj/structure/sign/map/meta
|
|
desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), \
|
|
escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."
|
|
|
|
/obj/structure/sign/map/meta/left
|
|
icon_state = "map-left-MS"
|
|
|
|
/obj/structure/sign/map/meta/right
|
|
icon_state = "map-right-MS"
|
|
|
|
/obj/structure/sign/map/pubby
|
|
icon_state = "map-pubby"
|
|
|
|
/obj/structure/sign/directions/science
|
|
name = "science department sign"
|
|
desc = "A direction sign, pointing out which way the Science department is."
|
|
icon_state = "direction_sci"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/science, 32)
|
|
|
|
/obj/structure/sign/directions/engineering
|
|
name = "engineering department sign"
|
|
desc = "A direction sign, pointing out which way the Engineering department is."
|
|
icon_state = "direction_eng"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/engineering, 32)
|
|
|
|
/obj/structure/sign/directions/security
|
|
name = "security department sign"
|
|
desc = "A direction sign, pointing out which way the Security department is."
|
|
icon_state = "direction_sec"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/security, 32)
|
|
|
|
/obj/structure/sign/directions/medical
|
|
name = "medbay sign"
|
|
desc = "A direction sign, pointing out which way the Medbay is."
|
|
icon_state = "direction_med"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/medical, 32)
|
|
|
|
/obj/structure/sign/directions/evac
|
|
name = "evacuation sign"
|
|
desc = "A direction sign, pointing out which way the escape shuttle dock is."
|
|
icon_state = "direction_evac"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/evac, 32)
|
|
|
|
/obj/structure/sign/directions/supply
|
|
name = "cargo sign"
|
|
desc = "A direction sign, pointing out which way the Cargo Bay is."
|
|
icon_state = "direction_supply"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/supply, 32)
|
|
|
|
/obj/structure/sign/directions/command
|
|
name = "command department sign"
|
|
desc = "A direction sign, pointing out which way the Command department is."
|
|
icon_state = "direction_bridge"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/command, 32)
|
|
|
|
/obj/structure/sign/directions/vault
|
|
name = "vault sign"
|
|
desc = "A direction sign, pointing out which way the station's Vault is."
|
|
icon_state = "direction_vault"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/vault, 32)
|
|
|
|
/obj/structure/sign/directions/upload
|
|
name = "upload sign"
|
|
desc = "A direction sign, pointing out which way the station's AI Upload is."
|
|
icon_state = "direction_upload"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/upload, 32)
|
|
|
|
/obj/structure/sign/directions/dorms
|
|
name = "dormitories sign"
|
|
desc = "A direction sign, pointing out which way the dormitories are."
|
|
icon_state = "direction_dorms"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/dorms, 32)
|
|
|
|
/obj/structure/sign/directions/lavaland
|
|
name = "lava sign"
|
|
desc = "A direction sign, pointing out which way the hot stuff is."
|
|
icon_state = "direction_lavaland"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/lavaland, 32)
|
|
|
|
/obj/structure/sign/directions/arrival
|
|
name = "arrivals sign"
|
|
desc = "A direction sign, pointing out which way the arrivals shuttle dock is."
|
|
icon_state = "direction_arrival"
|
|
|
|
MAPPING_DIRECTIONAL_HELPERS(/obj/structure/sign/directions/arrival, 32)
|