diff --git a/code/modules/food_and_drinks/drinks/drinks.dm b/code/modules/food_and_drinks/drinks/drinks.dm index c8a3be2787..a3ee8c5228 100644 --- a/code/modules/food_and_drinks/drinks/drinks.dm +++ b/code/modules/food_and_drinks/drinks/drinks.dm @@ -302,25 +302,25 @@ /obj/item/reagent_containers/food/drinks/mug/tea/red name = "Dutchess Red tea" icon_state = "tea" - desc = "Dutchess Red personal blend of red tea leaves and hot water. Grate addtion for any meal." + desc = "Duchess Red's personal blend of red tea leaves and hot water. Great addition to any meal." list_reagents = list(/datum/reagent/consumable/tea/red = 30) /obj/item/reagent_containers/food/drinks/mug/tea/green name = "Prince Green tea" icon_state = "tea" - desc = "Prince Green's brew of tea. Well the blend may be different from time to time, Prince Green swares by it!" + desc = "Prince Green's brew of tea. The blend may be different from time to time, but Prince Green swears by it!" list_reagents = list(/datum/reagent/consumable/tea/green = 30) /obj/item/reagent_containers/food/drinks/mug/tea/forest name = "Royal Forest tea" icon_state = "tea" - desc = "Tea fit for anyone with a sweet thooth like Royal Forest." + desc = "Tea fit for anyone with a sweet tooth like Royal Forest." list_reagents = list(/datum/reagent/consumable/tea/forest = 30) /obj/item/reagent_containers/food/drinks/mug/tea/mush name = "Rebel Mush tea" icon_state = "tea" - desc = "Rebel Mush, hallucinogenic tea to help people fine their inner self." + desc = "Rebel Mush, a hallucinogenic tea to help people find their inner self." list_reagents = list(/datum/reagent/consumable/tea/mush = 30) diff --git a/code/modules/reagents/chemistry/reagents/drink_reagents.dm b/code/modules/reagents/chemistry/reagents/drink_reagents.dm index 72f19851a8..cb9264f255 100644 --- a/code/modules/reagents/chemistry/reagents/drink_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drink_reagents.dm @@ -325,13 +325,13 @@ /datum/reagent/consumable/tea/red name = "Red Tea" - description = "Tasty red tea, it has digestive properties. Drink in moderation!" + description = "Tasty red tea, helps the body digest food. Drink in moderation!" color = "#101000" // rgb: 16, 16, 0 nutriment_factor = 0 taste_description = "sweet red tea" glass_icon_state = "teaglass" glass_name = "glass of red tea" - glass_desc = "A piping hot tea that helps with digestion of food." + glass_desc = "A piping hot tea that helps with the digestion of food." /datum/reagent/consumable/tea/red/on_mob_life(mob/living/carbon/M) if(M.nutrition > NUTRITION_LEVEL_HUNGRY) @@ -344,7 +344,7 @@ /datum/reagent/consumable/tea/green name = "Green Tea" - description = "Tasty green tea, known to heal liver it's good for you!" + description = "Tasty green tea, known to heal livers, it's good for you!" color = "#101000" // rgb: 16, 16, 0 nutriment_factor = 0 taste_description = "tart green tea" @@ -362,7 +362,7 @@ /datum/reagent/consumable/tea/forest name = "Forest Tea" - description = "Tea mixed with honey, has antitoxins and sweetness in one!" + description = "Tea mixed with honey, has both antitoxins and sweetness in one!" color = "#101000" // rgb: 16, 16, 0 nutriment_factor = 0 quality = DRINK_NICE @@ -382,7 +382,7 @@ /datum/reagent/consumable/tea/mush name = "Mush Tea" - description = "Tea mixed with mushroom hallucinogen, used for fun rides or self reflect." + description = "Tea mixed with mushroom hallucinogen, used for fun rides or self reflection." color = "#101000" // rgb: 16, 16, 0 nutriment_factor = 0 quality = DRINK_NICE