Skip to content

Commit

Permalink
Cleans up compost descriptions (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cartlord authored Feb 13, 2024
1 parent 6001939 commit 32ae3aa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/modules/fallout/reagents/other_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// Left-4-Zed Tribal edition
/datum/reagent/reactive_compost
name = "reactive compost"
description = "Compost mixed with mutjuice and daturatea. The resulting mixture is capable of drawing forth the inner potential of plants, at the expense of it's well being."
description = "Compost mixed with mutfruit juice and datura tea. The resulting mixture is capable of drawing forth the inner potential of a plant, at the expense of its well being."
reagent_state = "LIQUID"
color = "#8181E9"
taste_description = "sizzling rot"
Expand All @@ -45,7 +45,7 @@
// Enduro Grow Tribal Edition
/datum/reagent/fortifying_compost
name = "fortifying compost"
description = "Compost mixed with tatojuice and yucca juice. The resulting mixture will fortify the plant from weed infestations, toxins and the toils of gardening."
description = "Compost mixed with tato juice and yucca juice. The resulting mixture will fortify the plant from weed infestations, toxins and the toils of gardening."
reagent_state = "LIQUID"
color = "#AD462C"
taste_description = "earthy rot"
Expand All @@ -55,7 +55,7 @@
id = /datum/reagent/fortifying_compost
results = list(/datum/reagent/fortifying_compost = 3)
required_reagents = list(/datum/reagent/compost = 1, /datum/reagent/consumable/yuccajuice = 1, /datum/reagent/consumable/tato_juice = 1)
mix_message = "The compost emits an earthy armora"
mix_message = "The compost emits an earthy aroma"

//If used on trays
/datum/reagent/fortifying_compost/on_hydroponics_apply(obj/item/seeds/myseed, datum/reagents/chems, obj/machinery/hydroponics/mytray)
Expand All @@ -68,7 +68,7 @@
// Saltpetre Tribal Edition
/datum/reagent/alacritous_compost
name = "alacritous compost"
description = "A strange mixture of compost, ashes and pungajuice. This potent mixture will hasten the plant's harvest while increasing the yield."
description = "A strange mixture of compost, ashes and pungafruit juice. This potent mixture will hasten the plant's harvest while increasing the yield."
reagent_state = "LIQUID"
color = "#4CB529"
taste_description = "cool, salty rot"
Expand All @@ -93,7 +93,7 @@
// Stabilizing Compost
/datum/reagent/stabilizing_compost
name = "stabilizing compost"
description = "A soothing mixture of compost, milk and honey. The resulting mixture will stabilize a soil at the cost of potency."
description = "A soothing mixture of compost, milk and honey. The resulting mixture will stabilize a plant at the cost of potency."
reagent_state = "LIQUID"
color = "#B5ABAB"
taste_description = "sweet rot"
Expand All @@ -103,7 +103,7 @@
id = /datum/reagent/stabilizing_compost
results = list(/datum/reagent/stabilizing_compost = 3)
required_reagents = list(/datum/reagent/compost = 1, /datum/reagent/consumable/honey = 1, /datum/reagent/consumable/milk = 1)
mix_message= "A sweet smell comes over the compost"
mix_message= "A sweet smell comes from the compost"

// If added to tray
/datum/reagent/stabilizing_compost/on_hydroponics_apply(obj/item/seeds/myseed, datum/reagents/chems, obj/machinery/hydroponics/mytray)
Expand Down

0 comments on commit 32ae3aa

Please sign in to comment.