diff --git a/aurorastation.dme b/aurorastation.dme index f6772a0baca..cc7981e67a6 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -1300,6 +1300,7 @@ #include "code\modules\clothing\shoes\leg_guard.dm" #include "code\modules\clothing\shoes\magboots.dm" #include "code\modules\clothing\shoes\miscellaneous.dm" +#include "code\modules\clothing\shoes\vaurca.dm" #include "code\modules\clothing\spacesuits\alien.dm" #include "code\modules\clothing\spacesuits\breaches.dm" #include "code\modules\clothing\spacesuits\miscellaneous.dm" diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno/vaurca.dm b/code/modules/client/preference_setup/loadout/loadout_xeno/vaurca.dm index f5f62f0c85a..b4d7b38d24e 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/vaurca.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/vaurca.dm @@ -79,5 +79,15 @@ cost = 1 /datum/gear/suit/vaurca/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) + +/datum/gear/shoes/vaurca/ + display_name = "vaurca shoes" + path = /obj/item/clothing/shoes/vaurca + whitelisted = list("Vaurca Worker", "Vaurca Warrior") + sort_category = "Xenowear - Vaurca" + +/datum/gear/shoes/vaurca/New() ..() gear_tweaks = list(gear_tweak_free_color_choice) \ No newline at end of file diff --git a/code/modules/clothing/shoes/vaurca.dm b/code/modules/clothing/shoes/vaurca.dm new file mode 100644 index 00000000000..a1d9494c43e --- /dev/null +++ b/code/modules/clothing/shoes/vaurca.dm @@ -0,0 +1,10 @@ +/obj/item/clothing/shoes/vaurca + name = "vaurca shoes" + desc = "A standard pattern of Vaurcaesian footwear, these shoes are tight, yet comfortable enough to allow space for claws. These are equipped with heels, both for higher vantage, and to allow sleeping while standing." + icon = 'icons/obj/vaurca_items.dmi' + icon_state = "vaurca_shoes" + item_state = "vaurca_shoes" + armor = list(melee = 10, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) + body_parts_covered = FEET|LEGS + species_restricted = list("Vaurca") + contained_sprite = TRUE \ No newline at end of file diff --git a/html/changelogs/paradoxspace-adjuzztment.yml b/html/changelogs/paradoxspace-adjuzztment.yml new file mode 100644 index 00000000000..427db44fd40 --- /dev/null +++ b/html/changelogs/paradoxspace-adjuzztment.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: ParadoxSpace + +# 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 a pair of Vaurca shoes to the loadout." diff --git a/icons/obj/vaurca_items.dmi b/icons/obj/vaurca_items.dmi index 28355576906..7ce8d6968fe 100644 Binary files a/icons/obj/vaurca_items.dmi and b/icons/obj/vaurca_items.dmi differ