Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ClownMoff committed Sep 6, 2024
1 parent 23658ba commit e6a4232
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions code/game/objects/items/storage/belt.dm
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,21 @@
))
STR.can_hold = can_hold

/obj/item/storage/belt/medical/cmo
name = "Chief Medical Officer's toolbelt"
desc = "Can hold various medical equipment."
icon_state = "medicalbelt_cmo"
item_state = "medicalbelt_cmo"
worn_icon_state = "medicalbelt_cmo"
content_overlays = TRUE

/obj/item/storage/belt/medical/cmo/full/PopulateContents()
new /obj/item/healthanalyzer/advanced(src)
new /obj/item/surgical_drapes(src)
new /obj/item/scalpel/advanced(src)
new /obj/item/retractor/advanced(src)
new /obj/item/surgicaldrill/advanced(src)

/obj/item/storage/belt/medical/ert
name = "emergency response medical belt"
desc = "A belt containing field surgical supplies for use by medical response teams."
Expand Down
6 changes: 3 additions & 3 deletions code/modules/jobs/job_types/chief_medical_officer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@
jobtype = /datum/job/chief_medical_officer

id = /obj/item/card/id/job/chief_medical_officer
belt = /obj/item/modular_computer/tablet/pda/heads/chief_medical_officer
belt = /obj/item/storage/belt/medical/cmo/full
l_pocket = /obj/item/pinpointer/crew
r_pocket = /obj/item/flashlight/pen
r_pocket = /obj/item/modular_computer/tablet/pda/heads/chief_medical_officer
ears = /obj/item/radio/headset/heads/cmo
uniform = /obj/item/clothing/under/rank/medical/chief_medical_officer
shoes = /obj/item/clothing/shoes/sneakers/brown
suit = /obj/item/clothing/suit/toggle/labcoat/cmo
suit_store = /obj/item/storage/firstaid/medical
backpack_contents = list(/obj/item/melee/classic_baton/police/telescopic=1)
backpack_contents = list(/obj/item/melee/classic_baton/police/telescopic=1, /obj/item/flashlight/pen=1)

backpack = /obj/item/storage/backpack/medic
satchel = /obj/item/storage/backpack/satchel/med
Expand Down
Binary file modified icons/mob/clothing/belt.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/belts.dmi
Binary file not shown.

0 comments on commit e6a4232

Please sign in to comment.