diff --git a/code/modules/economy/price_list.dm b/code/modules/economy/price_list.dm index 457962aa6d..04c7ee6cf9 100644 --- a/code/modules/economy/price_list.dm +++ b/code/modules/economy/price_list.dm @@ -54,6 +54,8 @@ /datum/reagent/drink/collins_mix price_tag = 2 +/datum/reagent/drink/horchata + price_tag = 2 // Beer // diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index 9be6af6911..9b51c86a41 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -1582,6 +1582,17 @@ glass_name = "banana bubble tea" glass_desc = "A sweet tea with tasty little flavoured gelatin balls in it, this one is with banana." +/datum/reagent/drink/horchata + name = "Horchata" + id = "horchata" + description = "A sweet and cold rice milk beverage." + taste_description = "sweet rice milk and cinnamon" + color = "#ebcdc1" + adj_temp = -5 + + glass_name = "horchata" + glass_desc = "A sweet and cold rice milk beverage." + /* Alcohol */ // Basic diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 00cfd04ce9..c4eac67cfd 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -2271,7 +2271,14 @@ result = "banana bubble tea" required_reagents = list("gelatin" = 2, "tea" = 5, "banana" = 1, "milk" = 2) result_amount = 10 - + +/datum/chemical_reaction/drinks/horchata + name = "Horchata" + id = "horchata" + result = "horchata" + required_reagents = list("milk" = 1, "sugar" = 2, "rice" = 2) + result_amount = 5 + //R-UST Port /datum/chemical_reaction/hyrdophoron name = "Hydrophoron" diff --git a/code/modules/reagents/reagent_containers/drinkingglass/metaglass.dm b/code/modules/reagents/reagent_containers/drinkingglass/metaglass.dm index d334ff5b89..a58e20fdb2 100644 --- a/code/modules/reagents/reagent_containers/drinkingglass/metaglass.dm +++ b/code/modules/reagents/reagent_containers/drinkingglass/metaglass.dm @@ -533,4 +533,8 @@ Drinks Data /datum/reagent/bubbletea/watermelon glass_icon_state = "bubbleteabananaglass" - glass_center_of_mass = list("x"=16, "y"=9) \ No newline at end of file + glass_center_of_mass = list("x"=16, "y"=9) + +/datum/reagent/drink/horchata + glass_icon_state = "horchata" + glass_center_of_mass = list("x"=16, "y"=7) \ No newline at end of file diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index e622b44620..925c595e61 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ