Skip to content

Commit

Permalink
More loadout choices: uniforms, chest rigs, holsters & hairbrushes (#…
Browse files Browse the repository at this point in the history
…3427)

* Add a large assortment of existing items to loadout selection

* Remove loadout role restriction from NRI imperial police uniform

* Add imperial police cloak and frontier chest rig to loadout options

* Add basic synthetic repair kits to pocket loadout slots

Co-authored-by: Ephemeralis <[email protected]>
  • Loading branch information
Steals-The-PRs and Ephemeralis authored May 21, 2024
1 parent f08a37e commit f69ce6d
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 1 deletion.
37 changes: 37 additions & 0 deletions modular_nova/modules/loadouts/loadout_items/loadout_datum_belts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,40 @@ GLOBAL_LIST_INIT(loadout_belts, generate_loadout_items(/datum/loadout_item/belts
/datum/loadout_item/belts/candle_box
name = "Candle Box"
item_path = /obj/item/storage/fancy/candle_box

// HOLSTERS

/datum/loadout_item/belts/holster_shoulders
name = "Shoulder Holster"
item_path = /obj/item/storage/belt/holster

/datum/loadout_item/belts/holster_cowboy
name = "Cowboy Belt (Thigh Holster)"
item_path = /obj/item/storage/belt/holster/cowboy

// RIGS/WEBBING (for military larpers)

/datum/loadout_item/belts/cin_surplus_chestrig
name = "CIN Surplus Chest Rig (Standard)"
item_path = /obj/item/storage/belt/military/cin_surplus

/datum/loadout_item/belts/cin_surplus_chestrig_desert
name = "CIN Surplus Chest Rig (Desert)"
item_path = /obj/item/storage/belt/military/cin_surplus/desert

/datum/loadout_item/belts/cin_surplus_chestrig_forest
name = "CIN Surplus Chest Rig (Forest)"
item_path = /obj/item/storage/belt/military/cin_surplus/forest

/datum/loadout_item/belts/cin_surplus_chestrig_marine
name = "CIN Surplus Chest Rig (Marine)"
item_path = /obj/item/storage/belt/military/cin_surplus/marine

/datum/loadout_item/belts/expeditionary_chestrig_belt
name = "Expeditionary Chest Rig/Webbing Belt"
item_path = /obj/item/storage/belt/military/expeditionary_corps

/datum/loadout_item/belts/frontier_chestrig
name = "Frontier Chest Rig"
item_path = /obj/item/storage/belt/utility/frontier_colonist

Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,10 @@ GLOBAL_LIST_INIT(loadout_necks, generate_loadout_items(/datum/loadout_item/neck)
name = "MODlink Scryer"
item_path = /obj/item/clothing/neck/link_scryer/loaded

/datum/loadout_item/neck/imperial_police_cloak
name = "Imperial Police Cloak"
item_path = /obj/item/clothing/neck/cloak/colonial/nri_police

/*
* DONATOR
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,14 @@ GLOBAL_LIST_INIT(loadout_pocket_items, generate_loadout_items(/datum/loadout_ite
* UTILITY
*/

/datum/loadout_item/pocket_items/hairbrush
name = "Hairbrush"
item_path = /obj/item/hairbrush

/datum/loadout_item/pocket_items/comb
name = "Comb"
item_path = /obj/item/hairbrush/comb

/datum/loadout_item/pocket_items/moth_mre
name = "Mothic Rations Pack"
item_path = /obj/item/storage/box/mothic_rations
Expand All @@ -224,6 +232,10 @@ GLOBAL_LIST_INIT(loadout_pocket_items, generate_loadout_items(/datum/loadout_ite
name = "Frontier Medical Kit"
item_path = /obj/item/storage/medkit/frontier/stocked

/datum/loadout_item/pocket_items/synthetic_medkit
name = "Robotic Repair Equipment Kit"
item_path = /obj/item/storage/medkit/robotic_repair/stocked

/datum/loadout_item/pocket_items/ingredients
name = "Wildcard Ingredient Box"
item_path = /obj/item/storage/box/ingredients/wildcard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,10 @@ GLOBAL_LIST_INIT(loadout_miscunders, generate_loadout_items(/datum/loadout_item/
/datum/loadout_item/under/jumpsuit/imperial_police_uniform
name = "Imperial Police Uniform"
item_path = /obj/item/clothing/under/colonial/nri_police
restricted_roles = list(JOB_SECURITY_OFFICER, JOB_DETECTIVE)

/datum/loadout_item/under/jumpsuit/cin_surplus_uniform
name = "CIN Combat Uniform"
item_path = /obj/item/clothing/under/syndicate/rus_army/cin_surplus

/datum/loadout_item/under/jumpsuit/disco
name = "Superstar Cop Uniform"
Expand Down Expand Up @@ -594,6 +597,26 @@ GLOBAL_LIST_INIT(loadout_miscunders, generate_loadout_items(/datum/loadout_item/
name = "Blastwave Uniform"
item_path = /obj/item/clothing/under/blastwave

/datum/loadout_item/under/miscellaneous/black_bunnysuit
name = "Black Bunny Suit"
item_path = /obj/item/clothing/under/costume/bunnylewd //contrary to the path, it's actually tame

/datum/loadout_item/under/miscellaneous/white_bunnysuit
name = "White Bunny Suit"
item_path = /obj/item/clothing/under/costume/bunnylewd/white //also tame

/datum/loadout_item/under/miscellaneous/latex_catsuit
name = "Latex Catsuit"
item_path = /obj/item/clothing/under/misc/latex_catsuit

/datum/loadout_item/under/miscellaneous/geisha_suit
name = "Geisha Suit"
item_path = /obj/item/clothing/under/costume/geisha

/datum/loadout_item/under/miscellaneous/jabroni
name = "Jabroni Outfit"
item_path = /obj/item/clothing/under/costume/jabroni

//HALLOWEEN
/datum/loadout_item/under/miscellaneous/pj_blood
name = "Blood-red Pajamas"
Expand Down

0 comments on commit f69ce6d

Please sign in to comment.