diff --git a/code/modules/mob/living/carbon/human/species/station/monkey.dm b/code/modules/mob/living/carbon/human/species/station/monkey.dm index 0c1021084b9..8059aec55b2 100644 --- a/code/modules/mob/living/carbon/human/species/station/monkey.dm +++ b/code/modules/mob/living/carbon/human/species/station/monkey.dm @@ -142,6 +142,7 @@ name = SPECIES_MONKEY_UNATHI short_name = "sto" name_plural = LANGUAGE_STOK + meat_type = /obj/item/reagent_containers/food/snacks/meat/moghes icobase = 'icons/mob/human_races/monkeys/r_stok.dmi' deform = 'icons/mob/human_races/monkeys/r_stok.dmi' diff --git a/code/modules/reagents/reagent_containers/food/snacks/meat.dm b/code/modules/reagents/reagent_containers/food/snacks/meat.dm index 6ba779aa3bc..58402190d33 100644 --- a/code/modules/reagents/reagent_containers/food/snacks/meat.dm +++ b/code/modules/reagents/reagent_containers/food/snacks/meat.dm @@ -134,6 +134,7 @@ /obj/item/reagent_containers/food/snacks/meat/human /obj/item/reagent_containers/food/snacks/meat/bug + name = "vaurca meat" icon_state = "bugmeat" filling_color = "#E6E600" reagents_to_add = list(/singleton/reagent/nutriment/protein = 6, /singleton/reagent/nutriment/triglyceride = 2, /singleton/reagent/toxin/phoron = 27) @@ -188,6 +189,7 @@ /obj/item/reagent_containers/food/snacks/meat/moghes name = "moghresian meat" desc = "A slab of meat from an animal native to Moghes." + icon_state = "moghesmeat" /obj/item/reagent_containers/food/snacks/meat/rat name = "rat meat" diff --git a/html/changelogs/Acetrea-meatfixes.yml b/html/changelogs/Acetrea-meatfixes.yml new file mode 100644 index 00000000000..20da0b005f5 --- /dev/null +++ b/html/changelogs/Acetrea-meatfixes.yml @@ -0,0 +1,61 @@ +################################ +# 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: Acetrea + +# 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 sprites for moghresian meat." + - rscadd: "Added a name for vaurca meat." + - balance: "Made stok meat type moghresian." + - bugfix: "Fixed bugmeat sprite." diff --git a/icons/obj/item/reagent_containers/food/meat.dmi b/icons/obj/item/reagent_containers/food/meat.dmi index 2f6a14daaf5..4d432df8331 100644 Binary files a/icons/obj/item/reagent_containers/food/meat.dmi and b/icons/obj/item/reagent_containers/food/meat.dmi differ