mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 19:17:50 +01:00
Ports Condiment Sprites from TG. Ports Mayonnaise, Peanut Butter, Olives, and Olive Oil from TG (#22796)
* sprites * Code Phase 1 * olives ur oil * grammars ur sentences * the hash slinging slasher * the trash thinging * salts ur olives * bottles ur wasabi
This commit is contained in:
@@ -42,6 +42,8 @@
|
||||
/obj/item/reagent_containers/food/snacks/grown/bluecherries = list("bluecherryjelly" = 0),
|
||||
/obj/item/reagent_containers/food/snacks/egg = list("egg" = -5),
|
||||
/obj/item/reagent_containers/food/snacks/grown/rice = list("rice" = -5),
|
||||
/obj/item/reagent_containers/food/snacks/grown/olive = list("olivepaste" = 0, "sodiumchloride" = 0),
|
||||
/obj/item/reagent_containers/food/snacks/grown/peanuts = list("peanutbutter" = 0),
|
||||
|
||||
//Grinder stuff, but only if dry
|
||||
/obj/item/reagent_containers/food/snacks/grown/coffee/robusta = list("coffeepowder" = 0, "morphine" = 0),
|
||||
|
||||
@@ -140,6 +140,23 @@
|
||||
color = "#731008" // rgb: 115, 16, 8
|
||||
taste_description = "ketchup"
|
||||
|
||||
/datum/reagent/consumable/mayonnaise
|
||||
name = "Mayonnaise"
|
||||
id = "mayonnaise"
|
||||
description = "A white and oily mixture of mixed egg yolks."
|
||||
reagent_state = LIQUID
|
||||
color = "#DFDFDF" // rgb: 223, 223, 223
|
||||
taste_description = "mayonnaise"
|
||||
|
||||
/datum/reagent/consumable/peanutbutter
|
||||
name = "Peanut Butter"
|
||||
id = "peanutbutter"
|
||||
description = "A rich, creamy spread made by grinding peanuts."
|
||||
reagent_state = LIQUID
|
||||
nutriment_factor = 5 * REAGENTS_METABOLISM
|
||||
color = "#D9A066" // rgb: 217, 160, 102
|
||||
taste_description = "peanuts"
|
||||
|
||||
/datum/reagent/consumable/bbqsauce
|
||||
name = "BBQ Sauce"
|
||||
id = "bbqsauce"
|
||||
@@ -381,6 +398,23 @@
|
||||
color = "#302000" // rgb: 48, 32, 0
|
||||
taste_description = "oil"
|
||||
|
||||
/datum/reagent/consumbale/olivepaste
|
||||
name = "Olive Paste"
|
||||
id = "olivepaste"
|
||||
description = "A mushy pile of freshly ground olives."
|
||||
reagent_state = LIQUID
|
||||
color = "#adcf77" //rgb: 173, 207, 119
|
||||
taste_description = "mushy olives"
|
||||
|
||||
/datum/reagent/consumable/oliveoil
|
||||
name = "Olive Oil"
|
||||
id = "oliveoil"
|
||||
description = "A high quality oil derived from olives. Suitable for dishes or mixtures requiring oil."
|
||||
reagent_state = LIQUID
|
||||
nutriment_factor = 10 * REAGENTS_METABOLISM
|
||||
color = "#DBCF5C" //rgb: 219, 207, 92
|
||||
taste_description = "olive oil"
|
||||
|
||||
/datum/reagent/consumable/cornoil/reaction_turf(turf/simulated/T, volume)
|
||||
if(!istype(T))
|
||||
return
|
||||
|
||||
@@ -43,6 +43,20 @@
|
||||
required_reagents = list("soymilk" = 1,"sodiumchloride" = 1, "water" = 8)
|
||||
result_amount = 10
|
||||
|
||||
/datum/chemical_reaction/oliveoil
|
||||
name = "Olive Oil"
|
||||
id = "oliveoil"
|
||||
result = "oliveoil"
|
||||
required_reagents = list("olivepaste" = 5, "water" = 5)
|
||||
result_amount = 10
|
||||
|
||||
/datum/chemical_reaction/mayonnaise
|
||||
name = "Mayonnaise"
|
||||
id = "mayonnaise"
|
||||
result = "mayonnaise"
|
||||
required_reagents = list("egg" = 5, "sodiumchloride" = 1, "oliveoil" = 5)
|
||||
result_amount = 10
|
||||
|
||||
/datum/chemical_reaction/bbqsauce
|
||||
name = "BBQ Sauce"
|
||||
id = "bbqsauce"
|
||||
|
||||
Reference in New Issue
Block a user