diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm
index 6a94cb93d65..c5ddf6658c1 100644
--- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm
@@ -503,7 +503,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
taste_description = "cola"
glass_icon_state = "whiskeycolaglass"
glass_name = "whiskey cola"
- glass_desc = "An innocent-looking mixture of cola and Whiskey. Delicious."
+ glass_desc = "An innocent-looking mixture of cola and whiskey. Delicious."
/datum/reagent/consumable/ethanol/martini
@@ -574,7 +574,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
taste_description = "tomatoes with a hint of lime"
glass_icon_state = "bloodymaryglass"
glass_name = "Bloody Mary"
- glass_desc = "Tomato juice, mixed with Vodka and a lil' bit of lime. Tastes like liquid murder."
+ glass_desc = "Tomato juice, mixed with Vodka and a li'l bit of lime. Tastes like liquid murder."
/datum/reagent/consumable/ethanol/bloody_mary/on_mob_life(mob/living/carbon/C)
if(C.blood_volume < BLOOD_VOLUME_NORMAL)
@@ -974,7 +974,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
taste_description = "sweet and salty alcohol"
glass_icon_state = "red_meadglass"
glass_name = "Red Mead"
- glass_desc = "A True Viking's Beverage, though its color is strange."
+ glass_desc = "A true Viking's beverage, though its color is strange."
/datum/reagent/consumable/ethanol/mead
name = "Mead"
@@ -986,7 +986,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
taste_description = "sweet, sweet alcohol"
glass_icon_state = "meadglass"
glass_name = "Mead"
- glass_desc = "A Viking's Beverage, though a cheap one."
+ glass_desc = "A Viking's beverage, though a cheap one."
/datum/reagent/consumable/ethanol/iced_beer
name = "Iced Beer"
@@ -1004,7 +1004,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
/datum/reagent/consumable/ethanol/grog
name = "Grog"
- description = "Watered down rum, Nanotrasen approves!"
+ description = "Watered-down rum, Nanotrasen approves!"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 1 //Basically nothing
taste_description = "a poor excuse for alcohol"
@@ -1791,7 +1791,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
/datum/reagent/consumable/ethanol/fanciulli
name = "Fanciulli"
- description = "What if the Manhattan coctail ACTUALLY used a bitter herb liquour? Helps you sobers up." //also causes a bit of stamina damage to symbolize the afterdrink lazyness
+ description = "What if the Manhattan cocktail ACTUALLY used a bitter herb liquour? Helps you sober up." //also causes a bit of stamina damage to symbolize the afterdrink lazyness
color = "#CA933F" // rgb: 202, 147, 63
boozepwr = -10
quality = DRINK_NICE
@@ -1821,7 +1821,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
taste_description = "a bitter freshness"
glass_icon_state= "minted_fernet"
glass_name = "glass of branca menta"
- glass_desc = "A glass of Branca Menta, perfect for those lazy and hot sunday summer afternoons." //Get lazy literally by drinking this
+ glass_desc = "A glass of Branca Menta, perfect for those lazy and hot Sunday summer afternoons." //Get lazy literally by drinking this
/datum/reagent/consumable/ethanol/branca_menta/on_mob_life(mob/living/carbon/M)
diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm
index 017b30a369a..417368930b2 100755
--- a/code/modules/reagents/chemistry/reagents/food_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm
@@ -228,7 +228,7 @@
/datum/reagent/consumable/frostoil
name = "Frost Oil"
- description = "A special oil that noticably chills the body. Extracted from Icepeppers and slimes."
+ description = "A special oil that noticeably chills the body. Extracted from chilly peppers and slimes."
color = "#8BA6E9" // rgb: 139, 166, 233
taste_description = "mint"
@@ -299,7 +299,7 @@
if(method == INGEST)
if(!holder.has_reagent(/datum/reagent/consumable/milk))
if(prob(15))
- to_chat(M, "[pick("Your head pounds.", "Your mouth feels like its on fire.", "You feel dizzy.")]")
+ to_chat(M, "[pick("Your head pounds.", "Your mouth feels like it's on fire.", "You feel dizzy.")]")
if(prob(10))
victim.blur_eyes(1)
if(prob(10))
@@ -432,7 +432,7 @@
/datum/reagent/consumable/enzyme
name = "Universal Enzyme"
- description = "A universal enzyme used in the preperation of certain chemicals and foods."
+ description = "A universal enzyme used in the preparation of certain chemicals and foods."
color = "#365E30" // rgb: 54, 94, 48
taste_description = "sweetness"
@@ -718,7 +718,7 @@
name = "Peptides"
color = "#BBD4D9"
taste_description = "mint frosting"
- description = "These restorative peptides not only speed up wound healing, but are nutrious as well!"
+ description = "These restorative peptides not only speed up wound healing, but are nutritious as well!"
nutriment_factor = 10 * REAGENTS_METABOLISM // 33% less than nutriment to reduce weight gain
brute_heal = 3
burn_heal = 1
@@ -750,7 +750,7 @@
/datum/reagent/consumable/bbqsauce
name = "BBQ Sauce"
- description = "Sweet, Smokey, Savory, and gets everywhere. Perfect for Grilling."
+ description = "Sweet, smoky, savory, and gets everywhere. Perfect for grilling."
nutriment_factor = 5 * REAGENTS_METABOLISM
color = "#78280A" // rgb: 120 40, 10
taste_mult = 2.5 //sugar's 1.5, capsacin's 1.5, so a good middle ground.
diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm
index 52ad85ec33a..8e9b0c8c975 100644
--- a/code/modules/reagents/chemistry/reagents/other_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm
@@ -796,7 +796,7 @@
/datum/reagent/sodium
name = "Sodium"
- description = "A soft silver metal that can easily be cut with a knife. It's not salt just yet, so refrain from putting in on your chips."
+ description = "A soft silver metal that can easily be cut with a knife. It's not salt just yet, so refrain from putting it on your chips."
reagent_state = SOLID
color = "#808080" // rgb: 128, 128, 128
taste_description = "salty metal"
@@ -1881,7 +1881,7 @@
/datum/reagent/bz_metabolites
name = "BZ metabolites"
- description = "A harmless metabolite of BZ gas"
+ description = "A harmless metabolite of BZ gas."
color = "#FAFF00"
taste_description = "acrid cinnamon"
metabolization_rate = 0.2 * REAGENTS_METABOLISM
@@ -1922,7 +1922,7 @@
if(M.dizziness < 6)
M.dizziness = CLAMP(M.dizziness + 3, 0, 5)
if(prob(20))
- to_chat(M, "You feel confused and disorientated.")
+ to_chat(M, "You feel confused and disoriented.")
..()
/datum/reagent/peaceborg/tire