diff --git a/modular_nova/modules/loadouts/loadout_items/loadout_datum_belts.dm b/modular_nova/modules/loadouts/loadout_items/loadout_datum_belts.dm
index eaca1035a27..9ee9430e64e 100644
--- a/modular_nova/modules/loadouts/loadout_items/loadout_datum_belts.dm
+++ b/modular_nova/modules/loadouts/loadout_items/loadout_datum_belts.dm
@@ -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
+
diff --git a/modular_nova/modules/loadouts/loadout_items/loadout_datum_neck.dm b/modular_nova/modules/loadouts/loadout_items/loadout_datum_neck.dm
index 2ad73df23ca..3fcb7bec9df 100644
--- a/modular_nova/modules/loadouts/loadout_items/loadout_datum_neck.dm
+++ b/modular_nova/modules/loadouts/loadout_items/loadout_datum_neck.dm
@@ -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
 */
diff --git a/modular_nova/modules/loadouts/loadout_items/loadout_datum_pocket.dm b/modular_nova/modules/loadouts/loadout_items/loadout_datum_pocket.dm
index 405a8aad695..f6e697a2624 100644
--- a/modular_nova/modules/loadouts/loadout_items/loadout_datum_pocket.dm
+++ b/modular_nova/modules/loadouts/loadout_items/loadout_datum_pocket.dm
@@ -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
@@ -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
diff --git a/modular_nova/modules/loadouts/loadout_items/under/loadout_datum_under.dm b/modular_nova/modules/loadouts/loadout_items/under/loadout_datum_under.dm
index e5fffce11aa..acef423787c 100644
--- a/modular_nova/modules/loadouts/loadout_items/under/loadout_datum_under.dm
+++ b/modular_nova/modules/loadouts/loadout_items/under/loadout_datum_under.dm
@@ -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"
@@ -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"