mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 11:34:19 +01:00
Adds mint, a new plant that can be processed into menthol (#15383)
* Update medicine.dm * Update herbals.dm * Update vending.dm * added mint seeds * added mint harvest * added mint plant * an attempt to fix the problem the pr is having trouble with growing.dmi for some reason, i was told to do this * another empty line for the above reason * wow okay, be like that then * no empty lines since you're bickering * lets see if you like this * forgot the mint chem in reagents/misc.dm daily reminder that im a smooth brain * made it green and distill into menthol * made it goon * moving it to the appropriate file * moved to food.dm since it's a consumable * clarification of new distilling result for desc
This commit is contained in:
@@ -1363,6 +1363,7 @@
|
||||
/obj/item/seeds/grass = 3,
|
||||
/obj/item/seeds/lemon = 3,
|
||||
/obj/item/seeds/lime = 3,
|
||||
/obj/item/seeds/mint = 3,
|
||||
/obj/item/seeds/onion = 3,
|
||||
/obj/item/seeds/orange = 3,
|
||||
/obj/item/seeds/peanuts = 3,
|
||||
|
||||
@@ -53,3 +53,28 @@
|
||||
to_chat(user, "<span class='notice'>You mash [src] into a poultice.</span>")
|
||||
user.drop_item()
|
||||
qdel(src)
|
||||
|
||||
// mint
|
||||
/obj/item/seeds/mint
|
||||
name = "pack of mint seeds"
|
||||
desc = "These seeds grow into mint plants."
|
||||
icon_state = "seed-mint"
|
||||
species = "mint"
|
||||
plantname = "Mint Plant"
|
||||
product = /obj/item/reagent_containers/food/snacks/grown/mint
|
||||
lifespan = 20
|
||||
maturation = 4
|
||||
production = 5
|
||||
yield = 5
|
||||
growthstages = 3
|
||||
icon_dead = "mint-dead"
|
||||
reagents_add = list("mint" = 0.03, "plantmatter" = 0.03)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/grown/mint
|
||||
seed = /obj/item/seeds/mint
|
||||
name = "mint leaves"
|
||||
desc = "Process for mint. Distill for menthol. No need to experi-mint." //haha
|
||||
icon_state = "mint"
|
||||
tastes = list("mint" = 1)
|
||||
filling_color = "#A7EE9F"
|
||||
distill_reagent = "menthol"
|
||||
|
||||
@@ -983,3 +983,11 @@
|
||||
update_flags |= M.adjustBruteLoss(-1 * REAGENTS_EFFECT_MULTIPLIER, FALSE)
|
||||
update_flags |= M.adjustFireLoss(-1 * REAGENTS_EFFECT_MULTIPLIER, FALSE)
|
||||
return ..() | update_flags
|
||||
|
||||
/datum/reagent/consumable/mint
|
||||
name = "Mint"
|
||||
id = "mint"
|
||||
description = "A light green liquid extracted from mint leaves."
|
||||
reagent_state = LIQUID
|
||||
color = "#A7EE9F"
|
||||
taste_description = "mint"
|
||||
|
||||
@@ -280,3 +280,13 @@
|
||||
result_amount = 3
|
||||
min_temp = T0C + 100
|
||||
mix_message = "The solution gently swirls with a metallic sheen."
|
||||
|
||||
/datum/chemical_reaction/menthol
|
||||
name = "Menthol"
|
||||
id = "menthol"
|
||||
result = "menthol"
|
||||
required_reagents = list("mint" = 1, "ethanol" = 1)
|
||||
result_amount = 1
|
||||
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
|
||||
min_temp = T0C + 50
|
||||
mix_message = "Large white crystals precipitate out of the mixture."
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 24 KiB |
Reference in New Issue
Block a user