diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 32a68f80a44..5729e154daf 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -981,6 +981,24 @@ icon_state = "seccape" item_state = "seccape" +/obj/item/storage/backpack/cloak/zora + name = "\improper Zo'ra tunnel cloak" + desc = "A Vaurca cloak with storage pockets. This one has the Zo'ra Hive flag design." + icon_state = "zoracape" + item_state = "zoracape" + +/obj/item/storage/backpack/cloak/klax + name = "\improper K'lax tunnel cloak" + desc = "A Vaurca cloak with storage pockets. This one has the K'lax Hive flag design." + icon_state = "klaxcape" + item_state = "klaxcape" + +/obj/item/storage/backpack/cloak/cthur + name = "\improper C'thur tunnel cloak" + desc = "A Vaurca cloak with storage pockets. This one has the C'thur Hive flag design." + icon_state = "cthurcape" + item_state = "cthurcape" + /obj/item/storage/backpack/kala name = "skrell backpack" desc = "A lightly padded, waterproof backpack worn by Skrell." diff --git a/code/modules/client/preference_setup/loadout/items/xeno/vaurca.dm b/code/modules/client/preference_setup/loadout/items/xeno/vaurca.dm index 633456b866f..c27129d0afc 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/vaurca.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/vaurca.dm @@ -60,6 +60,9 @@ ..() var/list/capes = list() capes["tunnel cloak, Sedantis"] = /obj/item/storage/backpack/cloak/sedantis + capes["tunnel cloak, Zo'ra"] = /obj/item/storage/backpack/cloak/zora + capes["tunnel cloak, K'lax"] = /obj/item/storage/backpack/cloak/klax + capes["tunnel cloak, C'thur"] = /obj/item/storage/backpack/cloak/cthur capes["tunnel cloak, medical"] = /obj/item/storage/backpack/cloak/medical capes["tunnel cloak, engineering"] = /obj/item/storage/backpack/cloak/engi capes["tunnel cloak, atmospherics"] = /obj/item/storage/backpack/cloak/atmos diff --git a/html/changelogs/RustingWithYou - hivedrip.yml b/html/changelogs/RustingWithYou - hivedrip.yml new file mode 100644 index 00000000000..dfc1e6ebc33 --- /dev/null +++ b/html/changelogs/RustingWithYou - hivedrip.yml @@ -0,0 +1,41 @@ +################################ +# 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 +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: RustingWithYou + +# 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, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds Zo'ra, K'lax and C'thur hive flag versions of tunnel cloaks." diff --git a/icons/mob/species/bulwark/back.dmi b/icons/mob/species/bulwark/back.dmi index 48b8e5693de..7159d16cc56 100644 Binary files a/icons/mob/species/bulwark/back.dmi and b/icons/mob/species/bulwark/back.dmi differ diff --git a/icons/mob/species/vaurca/back.dmi b/icons/mob/species/vaurca/back.dmi index e1bfdd63b2a..35fb9ab5963 100644 Binary files a/icons/mob/species/vaurca/back.dmi and b/icons/mob/species/vaurca/back.dmi differ diff --git a/icons/obj/vaurca_items.dmi b/icons/obj/vaurca_items.dmi index c80acc298d4..495f9adf5b1 100644 Binary files a/icons/obj/vaurca_items.dmi and b/icons/obj/vaurca_items.dmi differ