Adds Konyanger food. (#14176)

This commit is contained in:
TheStryker
2022-06-06 14:12:29 +08:00
committed by GitHub
parent 8cd9cc54a5
commit e90e6a635b
12 changed files with 133 additions and 1 deletions

View File

@@ -96,6 +96,12 @@
reagents = list(/decl/reagent/water = 5, /decl/reagent/nutriment/rice = 10) reagents = list(/decl/reagent/water = 5, /decl/reagent/nutriment/rice = 10)
result = /obj/item/reagent_containers/food/snacks/boiledrice result = /obj/item/reagent_containers/food/snacks/boiledrice
/decl/recipe/mossbowl
appliance = SAUCEPAN | POT
reagents = list(/decl/reagent/water = 5, /decl/reagent/nutriment/protein/egg = 3)
fruit = list("moss" = 2)
result = /obj/item/reagent_containers/food/snacks/mossbowl
/decl/recipe/ricepudding /decl/recipe/ricepudding
appliance = SAUCEPAN | POT appliance = SAUCEPAN | POT
reagents = list(/decl/reagent/drink/milk = 5, /decl/reagent/nutriment/rice = 10) reagents = list(/decl/reagent/drink/milk = 5, /decl/reagent/nutriment/rice = 10)

View File

@@ -159,3 +159,12 @@
/obj/item/reagent_containers/food/snacks/dough /obj/item/reagent_containers/food/snacks/dough
) )
result = /obj/item/reagent_containers/food/snacks/rofflewaffles result = /obj/item/reagent_containers/food/snacks/rofflewaffles
/decl/recipe/moss_dumplings
appliance = OVEN
fruit = list("moss" = 2)
items = list(
/obj/item/reagent_containers/food/snacks/dough
)
result = /obj/item/reagent_containers/food/snacks/moss_dumplings
result_quantity = 2

View File

@@ -194,7 +194,7 @@
reagents = list(/decl/reagent/nutriment/cherryjelly = 5, /decl/reagent/nutriment/peanutbutter = 5) reagents = list(/decl/reagent/nutriment/cherryjelly = 5, /decl/reagent/nutriment/peanutbutter = 5)
items = list( items = list(
/obj/item/reagent_containers/food/snacks/breadslice, /obj/item/reagent_containers/food/snacks/breadslice,
/obj/item/reagent_containers/food/snacks/breadslice /obj/item/reagent_containers/food/snacks/breadslice
) )
result = /obj/item/reagent_containers/food/snacks/pbjsandwich result = /obj/item/reagent_containers/food/snacks/pbjsandwich

View File

@@ -107,6 +107,20 @@
items = list(/obj/item/reagent_containers/food/snacks/fish) items = list(/obj/item/reagent_containers/food/snacks/fish)
result = /obj/item/reagent_containers/food/snacks/soup/brudet result = /obj/item/reagent_containers/food/snacks/soup/brudet
/decl/recipe/maeuntang
appliance = SAUCEPAN | POT
fruit = list("chili" = 1, "moss" = 1)
reagents = list(/decl/reagent/water = 10)
items = list(/obj/item/reagent_containers/food/snacks/fish)
result = /obj/item/reagent_containers/food/snacks/soup/maeuntang
/decl/recipe/miyeokguk
appliance = SAUCEPAN | POT
fruit = list("moss" = 1, "seaweed" = 1)
reagents = list(/decl/reagent/water = 10)
items = list(/obj/item/reagent_containers/food/snacks/meat)
result = /obj/item/reagent_containers/food/snacks/soup/miyeokguk
// Stews // Stews
/decl/recipe/stew /decl/recipe/stew
appliance = POT appliance = POT

View File

@@ -77,6 +77,21 @@
/obj/item/seeds/seaweed /obj/item/seeds/seaweed
seed_type = "seaweed" seed_type = "seaweed"
/datum/seed/grass/moss
name = "moss"
seed_name = "moss"
display_name = "moss"
kitchen_tag = "moss"
/datum/seed/grass/moss/setup_traits()
..()
set_trait(TRAIT_PRODUCT_ICON,"moss")
set_trait(TRAIT_PRODUCT_COLOUR, "#83D27F")
set_trait(TRAIT_PLANT_COLOUR, "#589755")
/obj/item/seeds/mossseed
seed_type = "moss"
/datum/seed/peppercorn /datum/seed/peppercorn
name = "peppercorn" name = "peppercorn"
seed_name = "peppercorn" seed_name = "peppercorn"

View File

@@ -65,6 +65,7 @@
/obj/item/seeds/guamiseed = 2, /obj/item/seeds/guamiseed = 2,
/obj/item/seeds/lemonseed = 3, /obj/item/seeds/lemonseed = 3,
/obj/item/seeds/limeseed = 3, /obj/item/seeds/limeseed = 3,
/obj/item/seeds/mossseed = 2,
/obj/item/seeds/mtearseed = 2, /obj/item/seeds/mtearseed = 2,
/obj/item/seeds/mintseed = 3, /obj/item/seeds/mintseed = 3,
/obj/item/seeds/nifberries = 2, /obj/item/seeds/nifberries = 2,

View File

@@ -489,6 +489,18 @@
condiment_icon_state = "rice" condiment_icon_state = "rice"
condiment_center_of_mass = list("x"=16, "y"=8) condiment_center_of_mass = list("x"=16, "y"=8)
/decl/reagent/nutriment/moss
name = "Moss"
description = "Enjoy the Konyanger taste of nothing."
reagent_state = SOLID
nutriment_factor = 1
color = "#FFFFFF"
taste_description = "moss"
taste_mult = 0.4
condiment_name = "moss sack"
condiment_icon_state = "moss"
condiment_center_of_mass = list("x"=16, "y"=8)
/decl/reagent/nutriment/cherryjelly /decl/reagent/nutriment/cherryjelly
name = "Cherry Jelly" name = "Cherry Jelly"
description = "Totally the best. Only to be spread on foods with excellent lateral symmetry." description = "Totally the best. Only to be spread on foods with excellent lateral symmetry."

View File

@@ -1741,6 +1741,21 @@
reagent_data = list(/decl/reagent/nutriment = list("hot stew" = 3, "spices" = 1, "vegetables" = 1, "fish" = 2)) reagent_data = list(/decl/reagent/nutriment = list("hot stew" = 3, "spices" = 1, "vegetables" = 1, "fish" = 2))
reagents_to_add = list(/decl/reagent/nutriment = 8, /decl/reagent/water = 5) reagents_to_add = list(/decl/reagent/nutriment = 8, /decl/reagent/water = 5)
/obj/item/reagent_containers/food/snacks/soup/maeuntang
name = "maeuntang"
desc = "A popular fish soup originating from Korea, this spicy dish has been given a distinctly Konyanger twist by the addition of \
moss to the ingredients, and has since proven to be a staple on the planet."
icon_state = "maeuntang"
reagent_data = list(/decl/reagent/nutriment = list("hot stew" = 3, "spices" = 1, "vegetables" = 1, "fish" = 2, "moss" = 2))
reagents_to_add = list(/decl/reagent/nutriment = 8, /decl/reagent/water = 5)
/obj/item/reagent_containers/food/snacks/soup/miyeokguk
name = "miyeokguk"
desc = "A simple soup made from fish broth, beef, seaweed, and moss. It is known for its health properties and commonly eaten on celebrations."
icon_state = "miyeokguk"
reagent_data = list(/decl/reagent/nutriment = list("hot stew" = 3, "beef" = 1, "seaweed" = 2, "moss" = 2))
reagents_to_add = list(/decl/reagent/nutriment = 8, /decl/reagent/water = 5)
/obj/item/reagent_containers/food/snacks/hotchili /obj/item/reagent_containers/food/snacks/hotchili
name = "hot chili" name = "hot chili"
desc = "A five alarm Texan Chili!" desc = "A five alarm Texan Chili!"
@@ -4669,6 +4684,14 @@
reagent_data = list(/decl/reagent/nutriment = list("flatbread" = 3)) reagent_data = list(/decl/reagent/nutriment = list("flatbread" = 3))
filling_color = "#BD8939" filling_color = "#BD8939"
/obj/item/reagent_containers/food/snacks/moss_dumplings
name = "moss dumplings"
desc = "A relatively common Konyanger dish, this appears to be steamed moss set in steamed dough."
icon_state = "moss_dumplings"
reagents_to_add = list(/decl/reagent/nutriment = 3, /decl/reagent/nutriment/protein = 3)
reagent_data = list(/decl/reagent/nutriment = list("flatbread" = 3))
filling_color = "#589755"
/obj/item/reagent_containers/food/snacks/fish_taco /obj/item/reagent_containers/food/snacks/fish_taco
name = "fish taco" name = "fish taco"
desc = "A questionably cooked fish taco decorated with herbs, spices, and special sauce." desc = "A questionably cooked fish taco decorated with herbs, spices, and special sauce."
@@ -5006,6 +5029,16 @@
reagents_to_add = list(/decl/reagent/nutriment/rice = 6, /decl/reagent/nutriment/protein = 4) reagents_to_add = list(/decl/reagent/nutriment/rice = 6, /decl/reagent/nutriment/protein = 4)
/obj/item/reagent_containers/food/snacks/mossbowl
name = "moss bowl"
desc = "A bowl of fried rice with moss on top."
icon_state = "mossbowl"
trash = /obj/item/trash/snack_bowl
filling_color = "#FFFBDB"
bitesize = 2
reagents_to_add = list(/decl/reagent/nutriment/moss = 6, /decl/reagent/nutriment/protein/egg = 3)
/obj/item/reagent_containers/food/snacks/mashedpotato /obj/item/reagent_containers/food/snacks/mashedpotato
name = "mashed potato" name = "mashed potato"
desc = "Pillowy mounds of mashed potato." desc = "Pillowy mounds of mashed potato."

View File

@@ -0,0 +1,42 @@
################################
# 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: Lancer, Stryker
# 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 moss bowls with egg, miyeokguk, maeuntang, and moss dumplings to the kitchen recipes."
- rscadd: "Adds moss to the garden vending machine."

Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 KiB

After

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB