mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-11 16:08:32 +01:00
soup and salad from your local panera
The waste of many good materials, the vexation that frequently attends such mismanagements, and the curses not unfrequently bestowed on cooks with the usual reflection, that whereas God sends good meat, the Devil sends cooks.
This commit is contained in:
@@ -116,3 +116,11 @@
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
tastes = list("rice" = 1, "egg" = 1)
|
||||
foodtype = GRAIN | MEAT //EGG = MEAT -NinjaNomNom 2017
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/salad/hellcobb
|
||||
name = "hell cobb salad"
|
||||
desc = "If you're being honest with yourself it's just a bowl of mushrooms with chunks of meat and an egg."
|
||||
icon_state = "hellcobb"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 4)
|
||||
tastes = list("fruity cactus" = 5, "ash" = 1, "tough meat" = 3, "your eternal damnation" = 1)
|
||||
foodtype = FRUIT | MEAT | VEGETABLES //MUSHROOM = VEGETABLE -VladinXXV 2021
|
||||
|
||||
@@ -254,3 +254,19 @@
|
||||
tastes = list("bungo" = 2, "hot curry" = 4, "tropical sweetness" = 1)
|
||||
filling_color = "#E6A625"
|
||||
foodtype = VEGETABLES | FRUIT | DAIRY
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/soup/creamofwastes
|
||||
name = "cream of the wastes soup"
|
||||
desc = "Locals say the bowl gives it a unique flavor each time. That might just be whatever killed the goliath getting in your bowl, though."
|
||||
icon_state = "wastessoup"
|
||||
var/snowflake_reagent = null
|
||||
list_reagents = list(/datum/reagent/consumable/nutriment = 6)
|
||||
tastes = list("a fresh kill" = 3, "creamy mushroom" = 5, "a warm sunset over the scorched landscape of hell" = 1)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/soup/creamofwastes/Initialize()
|
||||
. = ..()
|
||||
snowflake_reagent = pick(/datum/reagent/consumable/capsaicin, /datum/reagent/consumable/frostoil,
|
||||
/datum/reagent/blood, /datum/reagent/oil, /datum/reagent/consumable/honey,
|
||||
/datum/reagent/carbon, /datum/reagent/drug/mushroomhallucinogen)
|
||||
bonus_reagents = list(snowflake_reagent = 5, /datum/reagent/consumable/nutriment = 6)
|
||||
reagents.add_reagent(snowflake_reagent, 5)
|
||||
|
||||
@@ -94,3 +94,16 @@
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/salad/citrusdelight
|
||||
subcategory = CAT_SALAD
|
||||
|
||||
/datum/crafting_recipe/food/hellcobb
|
||||
name = "Hell Cobb Salad"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/glass/bowl/mushroom_bowl = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_leaf = 3,
|
||||
/obj/item/reagent_containers/food/snacks/grown/ash_flora/cactus_fruit = 2,
|
||||
/obj/item/reagent_containers/food/snacks/meat/steak/goliath = 1,
|
||||
/obj/item/reagent_containers/food/snacks/boiledegg = 1
|
||||
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/salad/hellcobb
|
||||
subcategory = CAT_SALAD
|
||||
|
||||
@@ -247,3 +247,15 @@
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/soup/macaco
|
||||
subcategory = CAT_SOUP
|
||||
|
||||
/datum/crafting_recipe/food/creamofwastes
|
||||
name = "Cream of the Wastes soup"
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/milk = 10,
|
||||
/obj/item/reagent_containers/glass/bowl/mushroom_bowl = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_leaf = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/ash_flora/mushroom_stem =2,
|
||||
/obj/item/reagent_containers/food/snacks/meat/steak/goliath = 2 //wanted to make this three cutlets, but goliath meat doesn't get a unique cutlet
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/soup/creamofwastes
|
||||
subcategory = CAT_SOUP
|
||||
|
||||
Reference in New Issue
Block a user