Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Medic & Engineer voidsuits #2094

Merged
merged 24 commits into from
Apr 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
хранилища
  • Loading branch information
ddorou committed Mar 28, 2024
commit e42e114f34717a9bd1fd8afa8b4d74207d9e20f0
22 changes: 22 additions & 0 deletions maps/sierra/machinery/machinery.dm
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,28 @@
islocked = 1
ssu_color = "#990000"

/obj/machinery/suit_storage_unit/engineer
name = "Expeditionary Engineer Voidsuit Storage Unit"
suit = /obj/item/clothing/suit/space/void/pilot
helmet = /obj/item/clothing/head/helmet/space/void/pilot
boots = /obj/item/clothing/shoes/magboots
tank = /obj/item/tank/oxygen
mask = /obj/item/clothing/mask/breath
req_access = list(access_explorer, access_expedition_shuttle_helm)
islocked = 1
ssu_color = "#bf8833"

/obj/machinery/suit_storage_unit/medic
name = "Expeditionary Medic Voidsuit Storage Unit"
suit = /obj/item/clothing/suit/space/void/pilot
helmet = /obj/item/clothing/head/helmet/space/void/pilot
boots = /obj/item/clothing/shoes/magboots
tank = /obj/item/tank/oxygen
mask = /obj/item/clothing/mask/breath
req_access = list(access_explorer, access_expedition_shuttle_helm)
islocked = 1
ssu_color = "#8caecb"

/obj/machinery/suit_storage_unit/standard_unit
icon_state = "industrial"
base_icon_state = "industrial"
Expand Down