diff --git a/code/modules/client/preference_setup/loadout/items/xeno/unathi.dm b/code/modules/client/preference_setup/loadout/items/xeno/unathi.dm index b4b05143896..b5ea2524b2b 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/unathi.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/unathi.dm @@ -13,6 +13,7 @@ var/list/mantles = list() mantles["hide mantle, desert"] = /obj/item/clothing/accessory/poncho/unathimantle mantles["hide mantle, mountain"] = /obj/item/clothing/accessory/poncho/unathimantle/mountain + mantles["hide mantle, jungle"] = /obj/item/clothing/accessory/poncho/unathimantle/jungle gear_tweaks += new /datum/gear_tweak/path(mantles) /datum/gear/suit/unathi_mantle_noble diff --git a/code/modules/clothing/under/accessories/xeno/unathi.dm b/code/modules/clothing/under/accessories/xeno/unathi.dm index fef7fd7ed3b..0c8dd4ea88b 100644 --- a/code/modules/clothing/under/accessories/xeno/unathi.dm +++ b/code/modules/clothing/under/accessories/xeno/unathi.dm @@ -100,6 +100,19 @@ they can live up to half a millenia- should enough foolish adventurers try to slay it, that is." worn_overlay = "mountain" +/obj/item/clothing/accessory/poncho/unathimantle/jungle + name = "jungle hide mantle" + desc = "A mantle made to mimic the original Moghesian ones with the resources found on Ouerea, which can be seen \ + on the backs of both the destitute and the more powerful Sinta. Made from awth'una hide, its bright colors made it quite \ + fashionable, and some have even been exported to Unathi abroad." + desc_extended = "The jungle mantle was originally made to replace the traditional mantles of Moghes a few years after the first Unathi \ + colonists landed on Ouerea, a way for them to preserve their tradition and fashion, and to stand out from those on the home world. These \ + mantles are made from awth'una hide, the largest one requiring the hide of multiple ones to be made, proving to be surprisingly light yet tough. \ + The jungle mantle is more of a fashion statement than a sign of status, and thus, Unathi from various backgrounds can be seen wearing it. \ + The bright green colors of the awth'una have made these mantles quite popular among Sinta abroad, and though they are still a very rare sight \ + on Moghes, Sinta from across the Spur have imported some of these mantles, namely on Mictlan." + worn_overlay = "jungle" + /obj/item/clothing/accessory/poncho/unathimantle/hephaestus name = "hephaestus guild mantle" desc = "The cured hide and skin of a large beast, dyed in the deep green of Hephaestus Industries. These mantles are reserved for guildsmen of Haphaestus Industries, \ diff --git a/html/changelogs/SimpleMaroon-junglemantle.yml b/html/changelogs/SimpleMaroon-junglemantle.yml new file mode 100644 index 00000000000..9a7735da278 --- /dev/null +++ b/html/changelogs/SimpleMaroon-junglemantle.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: SimpleMaroon + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added a jungle hide mantle to the peasant hide mantle selection for Unathi." diff --git a/icons/obj/unathi_items.dmi b/icons/obj/unathi_items.dmi index 07f8867e1f7..c6a190391da 100644 Binary files a/icons/obj/unathi_items.dmi and b/icons/obj/unathi_items.dmi differ