diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 4308271f60..1711603ff6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -40,6 +40,15 @@ path = /obj/item/clothing/under/rank/khi/sci allowed_roles = list("Research Director", "Scientist", "Roboticist", "Xenobiologist", "Xenobotanist", "Pathfinder", "Explorer") +/datum/gear/uniform/job_khi/crg + display_name = "khi uniform, cargo" + path = /obj/item/clothing/under/rank/khi/crg + allowed_roles = list("Quartermaster", "Cargo Technician", "Shaft Miner") + +/datum/gear/uniform/job_khi/civ + display_name = "khi uniform, civ" + path = /obj/item/clothing/under/rank/khi/civ + //Federation jackets /datum/gear/suit/job_fed/sec display_name = "fed uniform, sec" diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index b127475a85..ed5b6284b2 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -937,6 +937,22 @@ No. With a teleporter? Just *no*. - Hawk, YW worn_state = "khi_uniform_sci" armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 10, bio = 0, rad = 0) +/obj/item/clothing/under/rank/khi/crg //Cargo version + name = "KHI cargo suit" + desc = "Kitsuhana Heavy Industries uniform. Looks like it's in supply and cargo division colors. Even post-scarcity societies need things moved and mined sometimes." + icon_state = "khi_uniform_crg_i" + item_state = "khi_uniform_crg" + worn_state = "khi_uniform_crg" + armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) + +/obj/item/clothing/under/rank/khi/civ //Science version + name = "KHI civilian suit" + desc = "Kitsuhana Heavy Industries uniform. Snazzy silver trim marks this is as the general civilian branch. Smells like paperwork and bureaucracy." + icon_state = "khi_uniform_civ_i" + item_state = "khi_uniform_civ" + worn_state = "khi_uniform_civ" + armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) + /obj/item/clothing/under/rank/khi/fluff/aronai //Aro fluff version name = "KHI meditech suit" desc = "An outdated uniform of some sort. You get the sense that whoever wore this must've been very full of themselves" diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index 80b46f62af..e9b58a4c7f 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ