Skip to content

Commit

Permalink
Merge pull request #527 from DexeeXI/code-shit
Browse files Browse the repository at this point in the history
Dino Jammies and More!
  • Loading branch information
dwasint authored Nov 11, 2023
2 parents 250535d + 33f15e9 commit 340f288
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions monkestation/code/modules/loadouts/items/heads.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
4 changes: 4 additions & 0 deletions monkestation/code/modules/loadouts/items/suits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
10 changes: 10 additions & 0 deletions monkestation/code/modules/store/store_items/head.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
5 changes: 5 additions & 0 deletions monkestation/code/modules/store/store_items/suits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 340f288

Please sign in to comment.