Skip to content

Commit

Permalink
Merge pull request #5783 from Smokingsquirrel/Food-and-drink-taste-ta…
Browse files Browse the repository at this point in the history
…g-overhaul

Add Umami Tags to drinks
  • Loading branch information
Trilbyspaceclone authored Oct 23, 2024
2 parents 53be096 + 40aac44 commit 787fc04
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/modules/reagents/reagents/food-Drinks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1616,17 +1616,17 @@
/datum/reagent/ethanol/Kvass
name = "Kvass"
id = "Kvass"
description = "A traditonal, and very popular russian drink. Made on the colony."
description = "A traditonal, and very popular slavic drink. Made on the colony."
taste_description = "sweet, yet very light dark beer."
taste_tag = list(TASTE_BUBBLY, TASTE_SWEET)
taste_tag = list(TASTE_BUBBLY, TASTE_SWEET, TASTE_UMAMI)
color = "#9F3400d0"
strength = 60
adj_temp = -5

glass_unique_appearance = TRUE
glass_icon_state = "Kvass_Glass"
glass_name = "Kvass"
glass_desc = "A traditonal russian drink. This version of Kvass is darker, and a bit bolder than normal."
glass_desc = "A traditonal slavic drink. This version of Kvass is darker, and a bit bolder than normal."

/datum/reagent/ethanol/bluecuracao
name = "Blue Curacao"
Expand Down Expand Up @@ -2150,7 +2150,7 @@
id = "bilk"
description = "This appears to be beer mixed with milk. Disgusting."
taste_description = "desperation and lactate"
taste_tag = list(TASTE_BUBBLY,TASTE_BITTER)
taste_tag = list(TASTE_BUBBLY,TASTE_BITTER,TASTE_UMAMI)
color = "#895C4C"
strength = 40
nutriment_factor = 2
Expand Down Expand Up @@ -2181,7 +2181,7 @@
id = "bloodymary"
description = "A strange yet pleasurable mixture made of vodka, tomato and lime juice. Tastes like liquid murder"
taste_description = "tomatoes with a hint of lime"
taste_tag = list(TASTE_SALTY,TASTE_REFRESHING)
taste_tag = list(TASTE_SALTY,TASTE_REFRESHING, TASTE_UMAMI)
color = "#660000d0"
strength = 15

Expand Down Expand Up @@ -2225,7 +2225,7 @@
id = "changelingsting"
description = "You take a tiny sip and feel a burning sensation..."
taste_description = "your brain coming out your nose"
taste_tag = list(TASTE_STRONG,TASTE_SOUR)
taste_tag = list(TASTE_STRONG,TASTE_SOUR,TASTE_UMAMI)
color = "#2E6671"
strength = 5

Expand Down

0 comments on commit 787fc04

Please sign in to comment.