diff --git a/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm b/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm index d9a5f221b05..cafa5cf5be0 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm @@ -696,3 +696,25 @@ ABSTRACT_TYPE(/datum/gear/shoes/tajara) sort_category = "Xenowear - Tajara" path = /obj/item/typewriter_case flags = GEAR_HAS_DESC_SELECTION + +/datum/gear/prosthetic_tail + display_name = "prosthetic tail selection" + description = "A selection of colourable prosthetics tails for tajara. Only useable with the Hakh'jar tail." + path = /obj/item/clothing/tail_accessory/prosthetic + sort_category = "Xenowear - Tajara" + whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI) + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + +/datum/gear/prosthetic_tail/tajara/New() + ..() + var/list/tail_pros = list() + tail_pros["solid prosthetic"] = /obj/item/clothing/tail_accessory/prosthetic + tail_pros["flexible prosthetic"] = /obj/item/clothing/tail_accessory/prosthetic/flexible + gear_tweaks += new /datum/gear_tweak/path(tail_pros) + +/datum/gear/tesla_prosthetic_tail + display_name = "tesla prosthetic tail" + path = /obj/item/clothing/tail_accessory/prosthetic/tesla + sort_category = "Xenowear - Tajara" + whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI) + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION diff --git a/code/modules/clothing/tail_accessory.dm b/code/modules/clothing/tail_accessory.dm index 71070f0922f..7844b562cac 100644 --- a/code/modules/clothing/tail_accessory.dm +++ b/code/modules/clothing/tail_accessory.dm @@ -27,3 +27,23 @@ compatible_species_type = list(/datum/species/tajaran) compatible_tail_type = list("Tail") compatible_animated_tail = list("Tail") + +/obj/item/clothing/tail_accessory/prosthetic + name = "solid prosthetic tail" + desc = "A simple prosthetic tail made to help tajara with a stunted tail to balance." + icon = 'icons/clothing/tail/taj_solid_prosthetic.dmi' + icon_state = "tail_prosthetic" + + compatible_species_type = list(/datum/species/tajaran) + compatible_tail_type = list("Hakh'jar Tail") + compatible_animated_tail = list("Hakh'jar Tail") + +/obj/item/clothing/tail_accessory/prosthetic/flexible + name = "flexible prosthetic tail" + desc = "A flexible prosthetic tail for a tajara. Still rather stiff." + icon = 'icons/clothing/tail/taj_flexible_prosthetic.dmi' + +/obj/item/clothing/tail_accessory/prosthetic/tesla + name = "tesla prosthetic tail" + desc = "A prosthetic tail made for Republican citizens born with Hakh'jar." + icon = 'icons/clothing/tail/taj_tesla_prosthetic.dmi' diff --git a/html/changelogs/greenjoe12345-tails.yml b/html/changelogs/greenjoe12345-tails.yml new file mode 100644 index 00000000000..ea1292fb34b --- /dev/null +++ b/html/changelogs/greenjoe12345-tails.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: Greenjoe12345 + +# 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: "Adds several prosthetic tails for tajara." diff --git a/icons/clothing/tail/taj_flexible_prosthetic.dmi b/icons/clothing/tail/taj_flexible_prosthetic.dmi new file mode 100644 index 00000000000..81747b1def5 Binary files /dev/null and b/icons/clothing/tail/taj_flexible_prosthetic.dmi differ diff --git a/icons/clothing/tail/taj_solid_prosthetic.dmi b/icons/clothing/tail/taj_solid_prosthetic.dmi new file mode 100644 index 00000000000..032a06795bf Binary files /dev/null and b/icons/clothing/tail/taj_solid_prosthetic.dmi differ diff --git a/icons/clothing/tail/taj_tesla_prosthetic.dmi b/icons/clothing/tail/taj_tesla_prosthetic.dmi new file mode 100644 index 00000000000..0773bcf71b7 Binary files /dev/null and b/icons/clothing/tail/taj_tesla_prosthetic.dmi differ