diff --git a/code/modules/client/preference_setup/loadout/loadout_factions.dm b/code/modules/client/preference_setup/loadout/loadout_factions.dm index 66be6ca418f..23cbcbd1593 100644 --- a/code/modules/client/preference_setup/loadout/loadout_factions.dm +++ b/code/modules/client/preference_setup/loadout/loadout_factions.dm @@ -216,6 +216,12 @@ slot = slot_gloves faction = "Zeng-Hu Pharmaceuticals" +/datum/gear/faction/zenghu_cloak + display_name = "Zeng-Hu Jargon Division cloak" + path = /obj/item/clothing/accessory/poncho/shouldercape/qeblak/zeng + slot = slot_wear_suit + faction = "Zeng-Hu Pharmaceuticals" + /datum/gear/faction/zavodskoi_patch display_name = "zavodskoi sleeve patch" path = /obj/item/clothing/accessory/sleevepatch/zavodskoi diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 4f3a7bb0476..f4da7a767ce 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -573,6 +573,19 @@ item_state = "qeblak_cape" flippable = FALSE +/obj/item/clothing/accessory/poncho/shouldercape/qeblak/zeng + name = "Jargon Division Zeng-Hu cloak" + desc = "This cloak is given to Zeng-Hu employees who have assisted or worked in collaboration with the Jargon Federation." + desc_fluff = "A cloak given to senior level doctors and researchers for Zeng-Hu who has \ + in the past been given the privilege of working within or in collaboration with the Jargon Federation\ + as a show of goodwill between the corporation and federation." + icon = 'icons/obj/contained_items/accessories/ZH_cape.dmi' + icon_override = 'icons/obj/contained_items/accessories/ZH_cape.dmi' + icon_state = "ZH_cape" + item_state = "ZH_cape" + flippable = FALSE + contained_sprite = TRUE + /obj/item/clothing/accessory/poncho/trinary name = "trinary perfection cape" desc = "A brilliant red and brown cape, commonly worn by those who serve the Trinary Perfection." diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 809ab587120..64bbdf84294 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -2380,3 +2380,11 @@ All custom items with worn sprites must follow the contained sprite system: http if(has_suit) has_suit.verbs -= /obj/item/clothing/accessory/poncho/tajarancloak/fluff/kathira_cloak/verb/change_cloak ..() + +/obj/item/clothing/accessory/poncho/shouldercape/qeblak/zeng/fluff/eden_cloak // Zeng-Hu Jargon division cloak - Eden Li - Huntime + name = "Zeng-Hu cloak: Jargon Division" + desc = "A cloak worn by Zeng-Hu personnel who worked with or in the Jargon Federation." + icon = 'icons/obj/custom_items/eden_cloak.dmi' + icon_override = 'icons/obj/custom_items/eden_cloak.dmi' + icon_state = "ZH_cape_custom" + item_state = "ZH_cape_custom" diff --git a/html/changelogs/ZengCloak.yml b/html/changelogs/ZengCloak.yml new file mode 100644 index 00000000000..cd46733c53c --- /dev/null +++ b/html/changelogs/ZengCloak.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Added the zeng-hu jargon division cloak to the loadout under factions." diff --git a/icons/obj/contained_items/accessories/zh_cape.dmi b/icons/obj/contained_items/accessories/zh_cape.dmi new file mode 100644 index 00000000000..883019e2135 Binary files /dev/null and b/icons/obj/contained_items/accessories/zh_cape.dmi differ diff --git a/icons/obj/custom_items/eden_cloak.dmi b/icons/obj/custom_items/eden_cloak.dmi new file mode 100644 index 00000000000..db9138599fa Binary files /dev/null and b/icons/obj/custom_items/eden_cloak.dmi differ