Skip to content

Commit

Permalink
add medical eyepatch and mask to store (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
Salted-Zen authored Oct 9, 2023
1 parent cdba241 commit e56f2f9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
6 changes: 5 additions & 1 deletion monkestation/code/modules/loadouts/items/glasses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Check warning on line 94 in monkestation/code/modules/loadouts/items/glasses.dm

View workflow job for this annotation

GitHub Actions / Run Linters

relatively pathed type defined here
name = "Medical Eyepatch"
item_path = /obj/item/clothing/glasses/eyepatch/medical

/datum/loadout_item/glasses/blindfold
name = "Blindfold"
Expand Down
3 changes: 3 additions & 0 deletions monkestation/code/modules/loadouts/items/masks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions monkestation/code/modules/store/store_items/glasses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions monkestation/code/modules/store/store_items/masks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e56f2f9

Please sign in to comment.