diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index 79b42f024f7..1d023de6eb0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -102,6 +102,22 @@ whitelisted = list("Vaurca Worker", "Vaurca Warrior",) sort_category = "Xenowear" +/datum/gear/vaurca_robe + display_name = "hive cloak (Vaurca)" + path = /obj/item/clothing/suit/vaurca + cost = 1 + whitelisted = list("Vaurca Worker", "Vaurca Warrior",) + sort_category = "Xenowear" + +/datum/gear/vaurca_robe/New() + ..() + var/cloaks = list() + cloaks["hive cloak, red and golden"] = /obj/item/clothing/suit/vaurca + cloaks["hive cloak, red and silver"] = /obj/item/clothing/suit/vaurca/silver + cloaks["hive cloak, brown and silver"] = /obj/item/clothing/suit/vaurca/brown + cloaks["hive cloak, blue and golden"] = /obj/item/clothing/suit/vaurca/blue + gear_tweaks += new/datum/gear_tweak/path(cloaks) + //tajara items /datum/gear/gloves/tajara diff --git a/code/modules/clothing/suits/alien.dm b/code/modules/clothing/suits/alien.dm index 5fd5fd84c14..4c3d2bb64a4 100644 --- a/code/modules/clothing/suits/alien.dm +++ b/code/modules/clothing/suits/alien.dm @@ -51,3 +51,29 @@ item_state = "taj_jacket" icon_open = "taj_jacket_open" icon_closed = "taj_jacket" + +//Vaurca clothing + +/obj/item/clothing/suit/vaurca + name = "hive cloak" + desc = "A fashionable robe tailored for nonhuman proportions, this one is red and golden." + icon = 'icons/obj/vaurca_items.dmi' + icon_state = "robegold" + item_state = "robegold" + contained_sprite = TRUE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + +/obj/item/clothing/suit/vaurca/silver + desc = "A fashionable robe tailored for nonhuman proportions, this one is red and silver." + icon_state = "robesilver" + item_state = "robesilver" + +/obj/item/clothing/suit/vaurca/brown + desc = "A fashionable robe tailored for nonhuman proportions, this one is brown and silver." + icon_state = "robebrown" + item_state = "robebrown" + +/obj/item/clothing/suit/vaurca/blue + desc = "A fashionable robe tailored for nonhuman proportions, this one is blue and golden." + icon_state = "robeblue" + item_state = "robeblue" \ No newline at end of file diff --git a/html/changelogs/alberyk-zzzzzzzoda.yml b/html/changelogs/alberyk-zzzzzzzoda.yml new file mode 100644 index 00000000000..a99af75c98e --- /dev/null +++ b/html/changelogs/alberyk-zzzzzzzoda.yml @@ -0,0 +1,5 @@ +author: Alberyk +delete-after: True + +changes: + - rscadd: "Added new a vaurca fashion option to the custom loadout." diff --git a/icons/obj/vaurca_items.dmi b/icons/obj/vaurca_items.dmi index 683436eb4ce..0bd676388ed 100644 Binary files a/icons/obj/vaurca_items.dmi and b/icons/obj/vaurca_items.dmi differ