From 8644687479f6ec12c52eef1f076632675f44bd38 Mon Sep 17 00:00:00 2001 From: ASmallCuteCat Date: Wed, 15 Jan 2025 17:01:56 -0500 Subject: [PATCH] Added flavor text to more organs --- code/modules/organs/internal/eyes.dm | 1 + code/modules/organs/internal/heart.dm | 1 + code/modules/organs/internal/kidneys.dm | 1 + code/modules/organs/internal/liver.dm | 1 + code/modules/organs/internal/lungs.dm | 1 + html/changelogs/more_organ_flavor_text.yml | 58 ++++++++++++++++++++++ 6 files changed, 63 insertions(+) create mode 100644 html/changelogs/more_organ_flavor_text.yml diff --git a/code/modules/organs/internal/eyes.dm b/code/modules/organs/internal/eyes.dm index d236256faf7..dbfdbd77b15 100644 --- a/code/modules/organs/internal/eyes.dm +++ b/code/modules/organs/internal/eyes.dm @@ -1,5 +1,6 @@ /obj/item/organ/internal/eyes name = "eyeballs" + desc = "One could say that picking these up would be a sight to behold. Literally." icon_state = "eyes" gender = PLURAL organ_tag = BP_EYES diff --git a/code/modules/organs/internal/heart.dm b/code/modules/organs/internal/heart.dm index ed27da765af..a371f010f7c 100644 --- a/code/modules/organs/internal/heart.dm +++ b/code/modules/organs/internal/heart.dm @@ -1,5 +1,6 @@ /obj/item/organ/internal/heart name = "heart" + desc = "When it's calling to you, you'd better listen." icon_state = "heart-on" organ_tag = BP_HEART parent_organ = BP_CHEST diff --git a/code/modules/organs/internal/kidneys.dm b/code/modules/organs/internal/kidneys.dm index f4f1d6345a6..9e849477628 100644 --- a/code/modules/organs/internal/kidneys.dm +++ b/code/modules/organs/internal/kidneys.dm @@ -1,5 +1,6 @@ /obj/item/organ/internal/kidneys name = "kidneys" + desc = "Found right above the kidshins." icon_state = "kidneys" gender = PLURAL organ_tag = BP_KIDNEYS diff --git a/code/modules/organs/internal/liver.dm b/code/modules/organs/internal/liver.dm index cbdb46645cc..454e9b7b45a 100644 --- a/code/modules/organs/internal/liver.dm +++ b/code/modules/organs/internal/liver.dm @@ -1,5 +1,6 @@ /obj/item/organ/internal/liver name = "liver" + desc = "If it stops working, should it be called the die-er?" icon_state = "liver" organ_tag = BP_LIVER parent_organ = BP_GROIN diff --git a/code/modules/organs/internal/lungs.dm b/code/modules/organs/internal/lungs.dm index c702f31b2d9..d184689bc7f 100644 --- a/code/modules/organs/internal/lungs.dm +++ b/code/modules/organs/internal/lungs.dm @@ -2,6 +2,7 @@ /obj/item/organ/internal/lungs name = "lungs" + desc = "Think of them as a portable air alarm! If something's wrong with the atmosphere, they'll let you know right away." icon_state = "lungs" gender = PLURAL organ_tag = BP_LUNGS diff --git a/html/changelogs/more_organ_flavor_text.yml b/html/changelogs/more_organ_flavor_text.yml new file mode 100644 index 00000000000..cde7eb6da79 --- /dev/null +++ b/html/changelogs/more_organ_flavor_text.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: ASmallCuteCat + +# 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: + - qol: "More organs now have description text. Enjoy my stupid sense of humor, or lack thereof. The taste of said organs has not been affected."