diff --git a/monkestation/code/modules/loadouts/items/heads.dm b/monkestation/code/modules/loadouts/items/heads.dm index 3875733ada03..0d14aa467748 100644 --- a/monkestation/code/modules/loadouts/items/heads.dm +++ b/monkestation/code/modules/loadouts/items/heads.dm @@ -187,6 +187,14 @@ GLOBAL_LIST_INIT(loadout_helmets, generate_loadout_items(/datum/loadout_item/hea name = "Tragic Mime Headpiece" item_path = /obj/item/clothing/head/tragic +/datum/loadout_item/head/pharaoh + name = "Pharaoh's Hat" + item_path = /obj/item/clothing/head/costume/pharaoh + +/datum/loadout_item/head/nemes + name = "Headdress of Nemes" + item_path = /obj/item/clothing/head/costume/nemes + /* * CHRISTMAS */ diff --git a/monkestation/code/modules/loadouts/items/suits.dm b/monkestation/code/modules/loadouts/items/suits.dm index 6647d99e2991..e8b57022eba9 100644 --- a/monkestation/code/modules/loadouts/items/suits.dm +++ b/monkestation/code/modules/loadouts/items/suits.dm @@ -331,6 +331,10 @@ GLOBAL_LIST_INIT(loadout_exosuits, generate_loadout_items(/datum/loadout_item/su name = "driscoll poncho" item_path = /obj/item/clothing/suit/driscoll +/datum/loadout_item/suit/dinojammies + name = "Dinosaur Pajamas" + item_path = /obj/item/clothing/suit/hooded/dinojammies + /* * DONATOR */ diff --git a/monkestation/code/modules/store/store_items/head.dm b/monkestation/code/modules/store/store_items/head.dm index 14a725404faa..1b7a0926cc0b 100644 --- a/monkestation/code/modules/store/store_items/head.dm +++ b/monkestation/code/modules/store/store_items/head.dm @@ -262,6 +262,16 @@ GLOBAL_LIST_INIT(store_head, generate_store_items(/datum/store_item/head)) item_path = /obj/item/clothing/head/tragic item_cost = 1000 +/datum/store_item/head/pharaoh + name = "Pharaoh's Hat" + item_path = /obj/item/clothing/head/costume/pharaoh + item_cost = 2000 + +/datum/store_item/head/nemes + name = "Headdress of Nemes" + item_path = /obj/item/clothing/head/costume/nemes + item_cost = 2000 + /* * JOB-LOCKED */ diff --git a/monkestation/code/modules/store/store_items/suits.dm b/monkestation/code/modules/store/store_items/suits.dm index 41d67fc1a97d..799666dfe8dd 100644 --- a/monkestation/code/modules/store/store_items/suits.dm +++ b/monkestation/code/modules/store/store_items/suits.dm @@ -195,6 +195,11 @@ GLOBAL_LIST_INIT(store_suits, generate_store_items(/datum/store_item/suit)) item_path = /obj/item/clothing/suit/wizrobe/marisa/fake item_cost = 2000 +/datum/store_item/suit/dinojammies + name = "Dinosaur Pajamas" + item_path = /obj/item/clothing/suit/hooded/dinojammies + item_cost = 10000 + /* * MISC */