diff --git a/code/game/objects/items/food/salad.dm b/code/game/objects/items/food/salad.dm index 4e133f75db8..2b2a0b7ef9e 100644 --- a/code/game/objects/items/food/salad.dm +++ b/code/game/objects/items/food/salad.dm @@ -93,6 +93,15 @@ tastes = list("rice" = 1, "meat" = 1) foodtypes = GRAIN | MEAT +/obj/item/food/salad/risotto + name = "risotto" + desc = "Proof the Italians mastered every carb." + icon_state = "risotto" + food_reagents = list(/datum/reagent/consumable/nutriment = 10, /datum/reagent/consumable/nutriment/vitamin = 6) + tastes = list("rice" = 1, "cheese" = 1) + foodtypes = GRAIN | DAIRY + venue_value = FOOD_PRICE_EXOTIC + /obj/item/food/salad/eggbowl name = "egg bowl" desc = "A bowl of rice with a fried egg." diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm index 76c313f3232..1742815e628 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm @@ -138,6 +138,17 @@ result = /obj/item/food/salad/ricepudding subcategory = CAT_MISCFOOD +/datum/crafting_recipe/food/risotto + name = "Risotto" + reqs = list( + /obj/item/food/cheese = 1, + /datum/reagent/consumable/ethanol/wine = 5, + /obj/item/food/salad/boiledrice = 1, + /obj/item/food/grown/mushroom/chanterelle = 1 + ) + result = /obj/item/food/salad/risotto + subcategory = CAT_MISCFOOD + /datum/crafting_recipe/food/butterbear //ITS ALIVEEEEEE! name = "Living bear/butter hybrid" reqs = list( diff --git a/code/modules/food_and_drinks/restaurant/customers/_customer.dm b/code/modules/food_and_drinks/restaurant/customers/_customer.dm index 97fdb553b12..0307ad8ea38 100644 --- a/code/modules/food_and_drinks/restaurant/customers/_customer.dm +++ b/code/modules/food_and_drinks/restaurant/customers/_customer.dm @@ -92,8 +92,8 @@ second_warning_line = "Last warning! Do not touch my spaghet." self_defense_line = "I'm going to knead you like mama kneaded her delicious meatballs!" orderable_objects = list( - /datum/venue/restaurant = list(/obj/item/food/spaghetti/pastatomato = 20, /obj/item/food/spaghetti/copypasta = 6, /obj/item/food/spaghetti/meatballspaghetti = 4, /obj/item/food/spaghetti/butternoodles = 4, /obj/item/food/pizza/vegetable = 2, /obj/item/food/pizza/mushroom = 2, /obj/item/food/pizza/meat = 2, /obj/item/food/pizza/margherita = 2, /obj/item/food/lasagna = 4, /obj/item/food/cannoli = 3, /obj/item/food/eggplantparm = 3, /obj/item/food/cornuto = 2), - /datum/venue/bar = list(/datum/reagent/consumable/ethanol/fanciulli = 5, /datum/reagent/consumable/ethanol/branca_menta = 3, /datum/reagent/consumable/ethanol/beer = 5, , /datum/reagent/consumable/lemonade = 8, /datum/reagent/consumable/ethanol/godfather = 5, /datum/reagent/consumable/ethanol/wine = 3, /datum/reagent/consumable/ethanol/grappa = 3, /datum/reagent/consumable/ethanol/amaretto = 3)) + /datum/venue/restaurant = list(/obj/item/food/spaghetti/pastatomato = 20, /obj/item/food/spaghetti/copypasta = 6, /obj/item/food/spaghetti/meatballspaghetti = 4, /obj/item/food/spaghetti/butternoodles = 4, /obj/item/food/pizza/vegetable = 2, /obj/item/food/pizza/mushroom = 2, /obj/item/food/pizza/meat = 2, /obj/item/food/pizza/margherita = 2, /obj/item/food/lasagna = 4, /obj/item/food/cannoli = 3, /obj/item/food/salad/risotto =5, /obj/item/food/eggplantparm = 3, /obj/item/food/cornuto = 2), + /datum/venue/bar = list(/datum/reagent/consumable/ethanol/fanciulli = 5, /datum/reagent/consumable/ethanol/branca_menta = 3, /datum/reagent/consumable/ethanol/beer = 5, , /datum/reagent/consumable/lemonade = 8, /datum/reagent/consumable/ethanol/godfather = 5, /datum/reagent/consumable/ethanol/wine = 3, /datum/reagent/consumable/ethanol/grappa = 3, /datum/reagent/consumable/ethanol/amaretto = 5)) /datum/customer_data/french diff --git a/icons/obj/food/soupsalad.dmi b/icons/obj/food/soupsalad.dmi index 9b947afb804..c453392f3dc 100644 Binary files a/icons/obj/food/soupsalad.dmi and b/icons/obj/food/soupsalad.dmi differ