diff --git a/monkestation/code/modules/loadouts/items/glasses.dm b/monkestation/code/modules/loadouts/items/glasses.dm index a9a0b7fd2a3d..a81ba50600dc 100644 --- a/monkestation/code/modules/loadouts/items/glasses.dm +++ b/monkestation/code/modules/loadouts/items/glasses.dm @@ -89,7 +89,11 @@ GLOBAL_LIST_INIT(loadout_glasses, generate_loadout_items(/datum/loadout_item/gla /datum/loadout_item/glasses/eyepatch name = "Eyepatch" - item_path = /obj/item/clothing/glasses/eyepatch + item_path = /obj/item/clothing/glasses/ + +datum/loadout_item/glasses/eyepatch_medical + name = "Medical Eyepatch" + item_path = /obj/item/clothing/glasses/eyepatch/medical /datum/loadout_item/glasses/blindfold name = "Blindfold" diff --git a/monkestation/code/modules/loadouts/items/masks.dm b/monkestation/code/modules/loadouts/items/masks.dm index b9b51b647065..8835e0987793 100644 --- a/monkestation/code/modules/loadouts/items/masks.dm +++ b/monkestation/code/modules/loadouts/items/masks.dm @@ -49,6 +49,9 @@ GLOBAL_LIST_INIT(loadout_masks, generate_loadout_items(/datum/loadout_item/mask) name = "Skull Bandana" item_path = /obj/item/clothing/mask/bandana/skull +/datum/loadout_item/mask/surgical_mask + name = "Sterile Mask" + item_path = /obj/item/clothing/mask/surgical /* * GAS MASKS diff --git a/monkestation/code/modules/store/store_items/glasses.dm b/monkestation/code/modules/store/store_items/glasses.dm index a4917d8fce23..597a9c3a7a45 100644 --- a/monkestation/code/modules/store/store_items/glasses.dm +++ b/monkestation/code/modules/store/store_items/glasses.dm @@ -60,6 +60,10 @@ GLOBAL_LIST_INIT(store_glasses, generate_store_items(/datum/store_item/glasses)) name = "Eyepatch" item_path = /obj/item/clothing/glasses/eyepatch +/datum/store_item/glasses/eyepatch_medical + name = "Medical Eyepatch" + item_path = /obj/item/clothing/glasses/eyepatch/medical + /datum/store_item/glasses/blindfold name = "Blindfold" item_path = /obj/item/clothing/glasses/blindfold diff --git a/monkestation/code/modules/store/store_items/masks.dm b/monkestation/code/modules/store/store_items/masks.dm index ee61b7ab519d..7c4c019ce5d8 100644 --- a/monkestation/code/modules/store/store_items/masks.dm +++ b/monkestation/code/modules/store/store_items/masks.dm @@ -27,6 +27,10 @@ GLOBAL_LIST_INIT(store_masks, generate_store_items(/datum/store_item/mask)) name = "Skull Bandana" item_path = /obj/item/clothing/mask/bandana/skull +/datum/store_item/mask/surgical_mask + name = "Sterile Mask" + item_path = /obj/item/clothing/mask/surgical + /* * GAS MASKS