diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 6e57504e6de..cecf9f5c146 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -264,6 +264,62 @@ desc = "A direction sign, pointing out which way the nearest propulsion area is." icon_state = "direction_prop" +/obj/structure/sign/directions/deck1 + name = "\improper DECK1 sign" + desc = "A sign, telling you that you're on the first deck." + icon_state = "deck1" + +/obj/structure/sign/directions/deck2 + name = "\improper DECK2 sign" + desc = "A sign, telling you that you're on the second deck." + icon_state = "deck2" + +/obj/structure/sign/directions/deck3 + name = "\improper DECK3 sign" + desc = "A sign, telling you that you're on the third deck." + icon_state = "deck3" + +/obj/structure/sign/directions/deck3 + name = "\improper DECK4 sign" + desc = "A sign, telling you, that you're on the fourth deck." + icon_state = "deck4" + +/obj/structure/sign/directions/restricted + name = "\improper RESTRICTED sign" + desc = "A sign, telling you, that where you are going is somewhere you're probably not meant to be." + icon_state = "restricted" + +/obj/structure/sign/directions/cic + name = "\improper CIC sign" + desc = "A direction sign, pointing out the direction of a command center." + icon_state = "direction_cic" + +/obj/structure/sign/directions/cargobay + name = "\improper Cargo Bay sign" + desc = "A direction sign, pointing you in the direction of a cargo bay." + icon_state = "direction_cargobay" + +/obj/structure/sign/directions/garage + name = "\improper Garage sign" + desc = "A direction sign, pointing you in the direction of a vehicle garage." + icon_state = "direction_garage" + +/obj/structure/sign/directions/shuttlepad + name = "\improper Shuttle Pad sign" + desc = "A sign, telling you that you are at a shuttle landing pad." + icon_state = "shuttle_pad" + +/obj/structure/sign/directions/service + name = "\improper SERVICE sign" + desc = "A direction sign, pointing out which way the Service department is. " + icon_state = "direction_service" + +/obj/structure/sign/directions/commissary + name = "\improper STORE sign" + desc = "A direction sign, pointing out which way a store or commissary is. " + icon_state = "direction_commissary" + + // // Danger, Warning, and Hazard Signs // @@ -313,6 +369,15 @@ desc = "A danger sign which reads \"DANGER: CRUSH HAZARD\" and \"AUTOMATIC EQUIPMENT STARTS AND STOPS AUTOMATICALLY\"." icon_state = "crush" +/obj/structure/sign/air_station + name = "\improper AIR STATION sign" + desc = "A sign which reads \"AIR REFILLING STATION\" and some smaller printed warnings: \"DANGER: EXERCISE CAUTION. PRESSURIZED AIR.\"." + icon_state = "air_station" + +/obj/structure/sign/waste_station + name = "\improper WASTE STATION sign" + desc = "A danger sign which reads \"WASTE GAS COLLECTION\" and some smaller printed warnings: \"DANGER: EXERCISE CAUTION. WASTE MAY BE TOXIC. PRESSURIZED GASSES.\"." + icon_state = "waste" // // Emergency Signs // diff --git a/html/changelogs/KingOfThePing - 21205.yml b/html/changelogs/KingOfThePing - 21205.yml new file mode 100644 index 00000000000..9b2673e5d1a --- /dev/null +++ b/html/changelogs/KingOfThePing - 21205.yml @@ -0,0 +1,14 @@ +# Your name. +author: KingOfThePing + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - imageadd: "Added a few miscellaneous (direction) signs for general use on ships and away sites." + diff --git a/icons/obj/signs.dmi b/icons/obj/signs.dmi index 095c3d5c632..4daa5780b55 100644 Binary files a/icons/obj/signs.dmi and b/icons/obj/signs.dmi differ