mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 22:42:26 +01:00
NTella food, drinks, and crepes (#17948)
* Notella food, drinks, and crepes Added some foods and drinks using notella. Made several different kinds of crepes. * added changelog changelog wooo * fixed merge conflicts * Update code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it> * Update code/modules/reagents/reagent_containers/food/snacks/confections.dm Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it> * Update code/modules/reagents/reagent_containers/food/snacks/pastries.dm Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it> * changed all the notella names to NTella --------- Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>
This commit is contained in:
co-authored by
Matt Atlas
parent
deed012786
commit
c234a555fd
@@ -608,9 +608,9 @@
|
||||
color = "#2c1000"
|
||||
taste_description = "nutty chocolate"
|
||||
taste_mult = 2
|
||||
condiment_name = "notella jar"
|
||||
condiment_desc = "Humans insist this chocolatey spread might be the best thing they've ever created."
|
||||
condiment_icon_state = "notellajar"
|
||||
condiment_name = "NTella jar"
|
||||
condiment_desc = "Originally called 'Entella', it was rebranded after being bought by Getmore. Some Humans insist this chocolate hazelnut spread might be the best thing they've ever created."
|
||||
condiment_icon_state = "NTellajar"
|
||||
condiment_center_of_mass = list("x"=16, "y"=8)
|
||||
|
||||
/singleton/reagent/nutriment/groundpeanuts
|
||||
@@ -2407,6 +2407,28 @@
|
||||
glass_name = "mug of apple cider juice"
|
||||
glass_desc = "It's just spiced up apple juice. Sometimes the barista can't work miracles."
|
||||
|
||||
/singleton/reagent/drink/NTellamilkshake
|
||||
name = "NTella Milkshake"
|
||||
description = "An intensely sweet chocolatey concoction with whipped cream on top."
|
||||
color = "#6d4124"
|
||||
taste_description = "overwhelmingly sweet chocolate"
|
||||
|
||||
glass_icon_state = "NTellamilkshake"
|
||||
glass_name = "glass of NTella milkshake"
|
||||
glass_desc = "Oh look, it's that thing you actually want to get but probably shouldn't."
|
||||
glass_center_of_mass = list("x"=16, "y"=7)
|
||||
|
||||
/singleton/reagent/drink/NTellahotchocolate
|
||||
name = "NTella Hot Chocolate"
|
||||
description = "It's like a cup of hot chocolate except... More everything."
|
||||
color = "#63432e"
|
||||
taste_description = "hazelnutty, creamy chocolate"
|
||||
|
||||
glass_icon_state = "NTellahotchocolate"
|
||||
glass_name = "glass of NTella hot chocolate"
|
||||
glass_desc = "A very chocolatey drink for the days so rough, so cold, or so celebratory that a regular hot hcocolate just won't cut it. It has marshmallows!"
|
||||
glass_center_of_mass = list("x"=16, "y"=7)
|
||||
|
||||
/singleton/reagent/drink/toothpaste
|
||||
name = "Toothpaste"
|
||||
description = "A paste commonly used in oral hygiene."
|
||||
@@ -2421,6 +2443,7 @@
|
||||
glass_desc = "Dentists recommend drinking zero glasses a day, and instead brushing normally."
|
||||
glass_center_of_mass = list("x"=7, "y"=8)
|
||||
|
||||
|
||||
/singleton/reagent/drink/toothpaste/affect_ingest(var/mob/living/carbon/human/M, var/alien, var/removed, var/datum/reagents/holder)
|
||||
|
||||
if(!istype(M))
|
||||
|
||||
@@ -3020,6 +3020,20 @@
|
||||
catalysts = list(/singleton/reagent/enzyme = 5)
|
||||
result_amount = 1
|
||||
|
||||
/datum/chemical_reaction/drink/NTellashake
|
||||
name = "NTella milkshake"
|
||||
id = "NTellamilkshake"
|
||||
result = /singleton/reagent/drink/NTellamilkshake
|
||||
required_reagents = list(/singleton/reagent/drink/milkshake = 5, /singleton/reagent/nutriment/choconutspread = 1)
|
||||
result_amount = 6
|
||||
|
||||
/datum/chemical_reaction/drink/NTellahotchocolate
|
||||
name = "NTella hot chocolate"
|
||||
id = "NTellahotchocolate"
|
||||
result = /singleton/reagent/drink/NTellahotchocolate
|
||||
required_reagents = list(/singleton/reagent/drink/milk = 2, /singleton/reagent/nutriment/choconutspread = 2, /singleton/reagent/drink/milk/cream = 2)
|
||||
result_amount = 6
|
||||
|
||||
/datum/chemical_reaction/drink/drink/mimosa
|
||||
name = "Mimosa"
|
||||
id = "mimosa"
|
||||
|
||||
@@ -385,8 +385,8 @@
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("toasted bread" = 2))
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/notellabread
|
||||
name = "notella bread slice"
|
||||
/obj/item/reagent_containers/food/snacks/NTellabread
|
||||
name = "NTella bread slice"
|
||||
desc = "A slice of bread covered with delicious chocolate-hazelnut spread."
|
||||
icon = 'icons/obj/item/reagent_containers/food/bread.dmi'
|
||||
icon_state = "chocobread"
|
||||
|
||||
@@ -135,3 +135,67 @@
|
||||
desc = "A square made of layers of three chocolates."
|
||||
icon_state = "praline10"
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("milk, white, and dark chocolate" = 1))
|
||||
|
||||
//crepe dishes
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/crepe
|
||||
name = "crepe"
|
||||
desc = "A very thin pancake."
|
||||
trash = /obj/item/trash/plate
|
||||
icon = 'icons/obj/item/reagent_containers/food/confections.dmi'
|
||||
filling_color = "#d4b28b"
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/crepe/chocolate
|
||||
name = "chocolate crepe"
|
||||
desc = "A very thin pancake with some NTella spread in it."
|
||||
icon_state = "chocolatecrepe"
|
||||
filling_color = "#3d2313"
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 2, /singleton/reagent/nutriment/choconutspread = 4)
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("dough" = 2))
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/crepe/chocolatefancy
|
||||
name = "fancy chocolate crepe"
|
||||
desc = "chocolate crepes, ice cream, blueberries and banana slices. separately they're all cheap snacks from a 10 year old's birthday party snack table. But together they somehow make a really fancy looking dessert."
|
||||
icon_state = "chocolatecrepe_fancy"
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 6, /singleton/reagent/nutriment/choconutspread = 4)
|
||||
reagent_data = list(/singleton/reagent/nutriment/choconutspread = list("hazelnutty chocolate" = 10), /singleton/reagent/nutriment = list("banana" = 4, "ice cream" = 4, "dough" = 3))
|
||||
filling_color = "#3d2313"
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/crepe/whitechocolate
|
||||
name = "white chocolate crepe"
|
||||
desc = "A very thin pancake with some white chocolate in it."
|
||||
icon_state = "whitechocolatecrepe"
|
||||
filling_color = "#fffcd3"
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 2, /singleton/reagent/nutriment/choconutspread = 4, /singleton/reagent/sugar = 2)
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("dough" = 2))
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/crepe/whitechocolate_fancy
|
||||
name = "fancy white chocolate crepe"
|
||||
desc = "White chocolate, strawberries and ice cream! Yum yum!"
|
||||
icon_state = "whitechocolatecrepe_fancy"
|
||||
filling_color = "#fffcd3"
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 6, /singleton/reagent/sugar = 4, /singleton/reagent/nutriment/vanilla = 2)
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("white chocolate" = 8, "strawberry" = 5, "dough" = 2))
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/crepe/breakfast
|
||||
name = "savory breakfast crepe"
|
||||
desc = "Cheddar cheese, eggs, crepe."
|
||||
icon_state = "savorycrepe"
|
||||
filling_color = "#ffe367"
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 5)
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("egg" = 6, "cheese" = 7, "chives" = 4))
|
||||
bitesize = 3
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/crepe/hamcheese
|
||||
name = "ham and cheese crepe"
|
||||
desc = "For people who look at desserts and think 'this would be better if we took out all the sweet things and replaced them with meat'."
|
||||
icon_state = "hamcheesecrepe"
|
||||
filling_color = "#e7aac7"
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 5)
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("chives" = 2))
|
||||
bitesize = 3
|
||||
|
||||
@@ -231,3 +231,14 @@
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("pickled lettuce" = 4))
|
||||
bitesize = 2
|
||||
trash = /obj/item/trash/plate
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/plaincrepe
|
||||
name = "plain crepe"
|
||||
desc = "A very thin type of pancake, typically used to wrap sweet things for desserts or, more controversially, savory things."
|
||||
icon = 'icons/obj/item/reagent_containers/food/ingredients.dmi'
|
||||
icon_state = "plaincrepe"
|
||||
bitesize = 2
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("dough" = 2))
|
||||
center_of_mass = list("x"=16, "y"=16)
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 1)
|
||||
filling_color = "#caa178"
|
||||
|
||||
@@ -415,6 +415,28 @@
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 3)
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("cake" = 5, "sweetness" = 5, "apple" = 5))
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/cake/NTellacheesecake
|
||||
name = "NTella cheesecake"
|
||||
desc = "An elaborate layer cheesecake made with chocolate hazelnut spread. You gain calories just by looking at it for too long."
|
||||
icon = 'icons/obj/item/reagent_containers/food/pastries.dmi'
|
||||
icon_state = "NTellacheesecake"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/cakeslice/NTellacheesecake_slice
|
||||
slices_num = 5
|
||||
filling_color = "#331c03"
|
||||
center_of_mass = list("x"=16, "y"=10)
|
||||
reagents_to_add = list(/singleton/reagent/nutriment = 20)
|
||||
reagent_data = list(/singleton/reagent/nutriment = list("hazelnut chocolate" = 15, "creamy cheese" = 10, "crunchy cookie base" = 5))
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cakeslice/NTellacheesecake_slice
|
||||
name = "NTella cheesecake slice"
|
||||
desc = "A slice of cake marrying the chocolate taste of NTella with the creamy smoothness of cheesecake, all on a cookie crumble base."
|
||||
icon = 'icons/obj/item/reagent_containers/food/pastries.dmi'
|
||||
icon_state = "NTellacheesecake_slice"
|
||||
trash = /obj/item/trash/plate
|
||||
filling_color = "#331c03"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=14)
|
||||
|
||||
//Predesigned pies
|
||||
//=======================
|
||||
/obj/item/reagent_containers/food/snacks/berryclafoutis
|
||||
|
||||
Reference in New Issue
Block a user