Skip to content

Commit

Permalink
suit_storage_fix_3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
LordNest committed Nov 3, 2024
1 parent 83f3cc3 commit 143a616
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 8 deletions.
Binary file modified maps/sierra/icons/obj/suitstorage.dmi
Binary file not shown.
44 changes: 36 additions & 8 deletions maps/sierra/machinery/machinery.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,20 +73,48 @@
islocked = 1
ssu_color = "#55aaaa"

/obj/machinery/suit_storage_unit/mining/Initialize()
. = ..()
/obj/machinery/suit_storage_unit/mining
name = "mining voidsuit storage unit"
suit= /obj/item/clothing/suit/space/void/mining
helmet = /obj/item/clothing/head/helmet/space/void/mining
boots = /obj/item/clothing/shoes/magboots
tank = /obj/item/tank/oxygen
mask = /obj/item/clothing/mask/breath
req_access = list(access_mining)
islocked = 1
ssu_color = "#b88a3b"

/obj/machinery/suit_storage_unit/engineering/Initialize()
. = ..()
/obj/machinery/suit_storage_unit/engineering
name = "engineering voidsuit storage unit"
suit= /obj/item/clothing/suit/space/void/engineering
helmet = /obj/item/clothing/head/helmet/space/void/engineering
boots = /obj/item/clothing/shoes/magboots
tank = /obj/item/tank/oxygen
mask = /obj/item/clothing/mask/breath
req_access = list(access_construction)
islocked = 1
ssu_color = "#ffbf00"

/obj/machinery/suit_storage_unit/atmos/Initialize()
. = ..()
/obj/machinery/suit_storage_unit/atmos
name = "atmospherics voidsuit storage unit"
suit= /obj/item/clothing/suit/space/void/atmos
helmet = /obj/item/clothing/head/helmet/space/void/atmos
boots = /obj/item/clothing/shoes/magboots
tank = /obj/item/tank/oxygen
mask = /obj/item/clothing/mask/breath
req_access = list(access_atmospherics)
islocked = 1
ssu_color = "#00cccc"

/obj/machinery/suit_storage_unit/science/Initialize()
. = ..()
/obj/machinery/suit_storage_unit/science
name = "excavation voidsuit storage unit"
suit= /obj/item/clothing/suit/space/void/excavation
helmet = /obj/item/clothing/head/helmet/space/void/excavation
boots = /obj/item/clothing/shoes/magboots
tank = /obj/item/tank/oxygen
mask = /obj/item/clothing/mask/breath
req_access = list(access_xenoarch)
islocked = 1
ssu_color = "#990000"

/obj/machinery/suit_storage_unit/security/sapper
Expand Down
2 changes: 2 additions & 0 deletions maps/sierra/machinery/suit_storage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,7 @@
AddOverlays(overlay_image(icon,"[base_icon_state]_uvstrong", plane = EFFECTS_ABOVE_LIGHTING_PLANE, layer = ABOVE_LIGHTING_LAYER))
else
AddOverlays(overlay_image(icon,"[base_icon_state]_uv", plane = EFFECTS_ABOVE_LIGHTING_PLANE, layer = ABOVE_LIGHTING_LAYER))
if(islocked)
AddOverlays(overlay_image(icon, "[base_icon_state]_locked", plane = EFFECTS_ABOVE_LIGHTING_PLANE, layer = ABOVE_LIGHTING_LAYER))
else
AddOverlays(overlay_image(icon, "[base_icon_state]_ready", plane = EFFECTS_ABOVE_LIGHTING_PLANE, layer = ABOVE_LIGHTING_LAYER))

0 comments on commit 143a616

Please sign in to comment.