From 6dd7ec996af499d4857dd717aff6748eb027ed23 Mon Sep 17 00:00:00 2001 From: Silvore <62766806+Silvore@users.noreply.github.com> Date: Mon, 1 Jul 2024 08:11:08 -0500 Subject: [PATCH] Adds tajara archeology gear to loadout + spelling changes (#19546) Added tajara archeology items to the loadout menu so you can LARP as your favorite archeologist, and changed the spelling of one of them to be the US spelling like all of the other tajara archeology items. --------- Signed-off-by: Silvore <62766806+Silvore@users.noreply.github.com> --- .../loadout/items/xeno/tajara.dm | 21 +++++++ code/modules/clothing/head/xenos/tajara.dm | 4 +- code/modules/clothing/under/xenos/tajara.dm | 4 +- html/changelogs/Silvorz- Archeology.yml | 15 +++++ html/changelogs/Silvorz- Loadout-Items.yml | 59 +++++++++++++++++++ 5 files changed, 99 insertions(+), 4 deletions(-) create mode 100644 html/changelogs/Silvorz- Archeology.yml create mode 100644 html/changelogs/Silvorz- Loadout-Items.yml 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 e528dffe076..9028655f596 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/tajara.dm @@ -8,6 +8,27 @@ whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI) sort_category = "Xenowear - Tajara" +/datum/gear/uniform/archeologist_uniform + display_name = "archeologist uniform" + description = "A rugged uniform used by Adhomian archeologists." + path = /obj/item/clothing/under/tajaran/archeologist + whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI) + sort_category = "Xenowear - Tajara" + +/datum/gear/suit/archaeologist_jacket + display_name = "archeologist jacket" + description = "A leather jacket used by Adhomian archeologists." + path = /obj/item/clothing/suit/storage/tajaran/archeologist + whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI) + sort_category = "Xenowear - Tajara" + +/datum/gear/suit/archaeologist_hat + display_name = "archeologist hat" + description = "A well-worn fedora favored by Adhomian explorers and archeologists." + path = /obj/item/clothing/head/tajaran/archeologist + whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI) + sort_category = "Xenowear - Tajara" + /datum/gear/shoes/tajara/boots/New() ..() var/list/boots = list() diff --git a/code/modules/clothing/head/xenos/tajara.dm b/code/modules/clothing/head/xenos/tajara.dm index 97217810d0a..9dcf1e04b70 100644 --- a/code/modules/clothing/head/xenos/tajara.dm +++ b/code/modules/clothing/head/xenos/tajara.dm @@ -153,8 +153,8 @@ item_state = "nka_consularhat" /obj/item/clothing/head/tajaran/archeologist - name = "archaeologist hat" - desc = "A well-worn fedora favored by Adhomian explorers and archaeologists. Not very protective but still very stylish." + name = "archeologist hat" + desc = "A well-worn fedora favored by Adhomian explorers and archeologists. Not very protective but still very stylish." icon_state = "explorer_hat" item_state = "explorer_hat" diff --git a/code/modules/clothing/under/xenos/tajara.dm b/code/modules/clothing/under/xenos/tajara.dm index 354e3de8aa4..5d778e5bdc0 100644 --- a/code/modules/clothing/under/xenos/tajara.dm +++ b/code/modules/clothing/under/xenos/tajara.dm @@ -376,8 +376,8 @@ sprite_sheets = list(BODYTYPE_TESLA_BODY = 'icons/mob/species/tajaran/tesla_body/uniform.dmi') /obj/item/clothing/under/tajaran/archeologist - name = "archaeologist uniform" - desc = "A rugged uniform used by Adhomian archaeologists. It is already covered in dirt and ancient dust." + name = "archeologist uniform" + desc = "A rugged uniform used by Adhomian archeologists. It is already covered in dirt and ancient dust." icon_state = "explorer_uniform" item_state = "explorer_uniform" diff --git a/html/changelogs/Silvorz- Archeology.yml b/html/changelogs/Silvorz- Archeology.yml new file mode 100644 index 00000000000..6b31f9ba9a4 --- /dev/null +++ b/html/changelogs/Silvorz- Archeology.yml @@ -0,0 +1,15 @@ + +# Your name. +author: Silvorz + +# 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 tajara archeology items to the loadout menu." + - qol: "Changed the spelling of one tajara archeology item to better fit in with other spellings" diff --git a/html/changelogs/Silvorz- Loadout-Items.yml b/html/changelogs/Silvorz- Loadout-Items.yml new file mode 100644 index 00000000000..8ac9c3aa056 --- /dev/null +++ b/html/changelogs/Silvorz- Loadout-Items.yml @@ -0,0 +1,59 @@ +################################ +# 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: Silvorz + +# 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 the old wizard's 'gentleman set' of clothes, carp slippers, and the bear pelt hat to the loadout." + - qol: "Removed the hide jumpsuit variable from the gentlemans coat, as it looked strange."