Potato Meals, Sweet and Sour.
This commit is contained in:
@@ -302,6 +302,16 @@
|
||||
desc = "A 'chicken' nugget vaguely shaped like a [shape]."
|
||||
icon_state = "nugget_[shape]"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/nugget
|
||||
name = "sweet and sour chicken"
|
||||
desc = "More sweet than sour, but delicious nonetheless."
|
||||
icon_state = "sweet_and_sour"
|
||||
filling_color = "#B22222"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 2, /datum/reagent/consumable/nutriment/vitamin = 1, /datum/reagent/consumable/soysauce = 2)
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 6, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/soysauce = 2)
|
||||
tastes = list("\"chicken\"" = 1)
|
||||
foodtype = MEAT | PINEAPPLE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pigblanket
|
||||
name = "pig in a blanket"
|
||||
desc = "A tiny sausage wrapped in a flakey, buttery roll. Free this pig from its blanket prison by eating it."
|
||||
|
||||
@@ -557,6 +557,26 @@
|
||||
tastes = list("butter" = 1)
|
||||
foodtype = JUNKFOOD
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/butter/mashedpotato
|
||||
name = "mashed potatoes"
|
||||
desc = "A diced and smashed potato, served with sour cream."
|
||||
icon_state = "mashedpotato"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/sodiumchloride = 1)
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 1, /datum/reagent/consumable/nutriment/vitamin = 1)
|
||||
filling_color = "#FFD700"
|
||||
tastes = list("butter" = 1, "sour cream" = 1)
|
||||
foodtype = GRAIN
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/butteredpotato
|
||||
name = "buttered potatoes"
|
||||
desc = "Mashed potatoes served with an ample serving of butter, and sour cream."
|
||||
icon_state = "buttermash"
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 7, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/consumable/sodiumchloride = 2)
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment/vitamin = 1)
|
||||
filling_color = "#FFD700"
|
||||
tastes = list("potatoes" = 1, "sour cream" = 1, "butter" = 1)
|
||||
foodtype = GRAIN | DAIRY
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/onionrings
|
||||
name = "onion rings"
|
||||
desc = "Onion slices coated in batter."
|
||||
|
||||
@@ -84,6 +84,17 @@
|
||||
result = /obj/item/reagent_containers/food/snacks/nugget
|
||||
subcategory = CAT_MEAT
|
||||
|
||||
/datum/crafting_recipe/food/sweet_and_sour
|
||||
name = "Sweet and sour \"chicken\""
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/nugget = 2,
|
||||
/obj/item/reagent_containers/food/snacks/pineappleslice = 1,
|
||||
/datum/reagent/consumable/soysauce = 2,
|
||||
/datum/reagent/consumable/sodiumchloride = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/sweet_and_sour
|
||||
subcategory = CAT_MEAT
|
||||
|
||||
/datum/crafting_recipe/food/corndog
|
||||
name = "Corndog meal"
|
||||
reqs = list(
|
||||
|
||||
@@ -113,6 +113,25 @@
|
||||
result = /obj/item/reagent_containers/food/snacks/loadedbakedpotato
|
||||
subcategory = CAT_MISCFOOD
|
||||
|
||||
/datum/crafting_recipe/food/mashedpotato
|
||||
name = "Mashed potato"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/grown/potato = 1,
|
||||
/datum/reagent/consumable/cream = 5,
|
||||
/datum/reagent/consumable/sodiumchloride = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/mashedpotato
|
||||
subcategory = CAT_MISCFOOD
|
||||
|
||||
/datum/crafting_recipe/food/butteredpotato
|
||||
name = "Mashed potato"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/mashedpotato
|
||||
/obj/item/reagent_containers/food/snacks/butter
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/butteredpotato
|
||||
subcategory = CAT_MISCFOOD
|
||||
|
||||
/datum/crafting_recipe/food/melonfruitbowl
|
||||
name ="Melon fruit bowl"
|
||||
reqs = list(
|
||||
|
||||
Reference in New Issue
Block a user