From 7cd14bb733022e065b741a1fd6d439ed19f238f9 Mon Sep 17 00:00:00 2001 From: Cody Brittain Date: Wed, 30 Aug 2023 18:36:53 -0400 Subject: [PATCH] Changed the uplink spacesuit into a standard spacesuit with extra armor. (#17154) --- code/datums/uplink/devices_and_tools.dm | 2 +- .../items/weapons/storage/uplink_kits.dm | 10 +++++ code/modules/clothing/spacesuits/syndi.dm | 27 ++++++++++++ .../GeneralCamo - Covert Spacesuit.yml | 41 +++++++++++++++++++ 4 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/GeneralCamo - Covert Spacesuit.yml diff --git a/code/datums/uplink/devices_and_tools.dm b/code/datums/uplink/devices_and_tools.dm index ee84da5dd2c..3c20390c464 100644 --- a/code/datums/uplink/devices_and_tools.dm +++ b/code/datums/uplink/devices_and_tools.dm @@ -96,7 +96,7 @@ name = "Space Suit" telecrystal_cost = 2 bluecrystal_cost = 2 - path = /obj/item/storage/box/syndie_kit/space + path = /obj/item/storage/box/syndie_kit/space/covert /datum/uplink_item/item/tools/thermal name = "Thermal Imaging Glasses" diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm index 965d56b2079..6e4eda40cde 100644 --- a/code/game/objects/items/weapons/storage/uplink_kits.dm +++ b/code/game/objects/items/weapons/storage/uplink_kits.dm @@ -42,6 +42,16 @@ /obj/item/tank/emergency_oxygen/double = 1 ) +/obj/item/storage/box/syndie_kit/space/covert + name = "boxed space suit and helmet" + worn_overlay = "syndiesuit" + starts_with = list( + /obj/item/clothing/suit/space/syndicate/covert = 1, + /obj/item/clothing/head/helmet/space/syndicate/covert = 1, + /obj/item/clothing/mask/breath = 1, + /obj/item/tank/emergency_oxygen/double = 1 + ) + /obj/item/storage/box/syndie_kit/chameleon name = "chameleon kit" diff --git a/code/modules/clothing/spacesuits/syndi.dm b/code/modules/clothing/spacesuits/syndi.dm index d5b066a25c5..5cfb42bd4ea 100644 --- a/code/modules/clothing/spacesuits/syndi.dm +++ b/code/modules/clothing/spacesuits/syndi.dm @@ -39,6 +39,33 @@ siemens_coefficient = 0.5 contained_sprite = FALSE +/obj/item/clothing/head/helmet/space/syndicate/covert + name = "softsuit helmet" + desc = "A special helmet designed for work in a hazardous, low-pressure environment." + desc_antag = "This helmet is specially armored for additional protection, compared to a standard softsuit helmet." + icon = 'icons/obj/item/clothing/softsuits/softsuit.dmi' + icon_state = "softsuit_helmet" + item_state = "softsuit_helmet" + contained_sprite = TRUE + +/obj/item/clothing/head/helmet/space/syndicate/covert/examine(mob/user, distance) + ..() + if(distance <= 1) + to_chat(user, SPAN_NOTICE("This helmet has extra armor compared to a normal softsuit helmet.")) + +/obj/item/clothing/suit/space/syndicate/covert + name = "softsuit" + desc = "A suit that protects against low pressure environments." + desc_antag = "This suit is specially armored for additional protection, compared to a standard softsuit." + icon = 'icons/obj/item/clothing/softsuits/softsuit.dmi' + icon_state = "softsuit" + item_state = "softsuit" + contained_sprite = TRUE + +/obj/item/clothing/suit/space/syndicate/covert/examine(mob/user, distance) + ..() + if(distance <= 1) + to_chat(user, SPAN_NOTICE("This suit has extra armor compared to a normal softsuit.")) //Green syndicate space suit /obj/item/clothing/head/helmet/space/syndicate/green diff --git a/html/changelogs/GeneralCamo - Covert Spacesuit.yml b/html/changelogs/GeneralCamo - Covert Spacesuit.yml new file mode 100644 index 00000000000..85789064bc7 --- /dev/null +++ b/html/changelogs/GeneralCamo - Covert Spacesuit.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: GeneralCamo + +# 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, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "The standard uplink spacesuit is now a modified standard softsuit, that only looks different up-close. It has the same armor values as the red softsuit."