Files
Paradise/code/modules/hydroponics/grown/herbals.dm
T
sneksnekandGitHub fdb8b94c3c 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
2021-01-30 16:53:51 -05:00

81 lines
2.4 KiB
Plaintext

/obj/item/seeds/comfrey
name = "pack of comfrey seeds"
desc = "These seeds grow into comfrey."
icon_state = "seed-cabbage"
species = "cabbage"
plantname = "comfrey"
product = /obj/item/reagent_containers/food/snacks/grown/comfrey
yield = 2
maturation = 3
growthstages = 1
growing_icon = 'icons/obj/hydroponics/growing_vegetables.dmi'
reagents_add = list("styptic_powder" = 0.1)
/obj/item/reagent_containers/food/snacks/grown/comfrey
seed = /obj/item/seeds/comfrey
name = "comfrey leaf"
desc = "Mash to turn into a poultice."
icon_state = "tea_astra_leaves"
color = "#378C61"
tastes = list("comfrey" = 1)
bitesize_mod = 2
/obj/item/reagent_containers/food/snacks/grown/comfrey/attack_self(mob/user)
var/obj/item/stack/medical/bruise_pack/comfrey/C = new(get_turf(user))
C.heal_brute = seed.potency
to_chat(user, "<span class='notice'>You mash [src] into a poultice.</span>")
user.drop_item()
qdel(src)
/obj/item/seeds/aloe
name = "pack of aloe seeds"
desc = "These seeds grow into aloe vera plant."
icon_state = "seed-ambrosiavulgaris"
species = "ambrosiavulgaris"
plantname = "Aloe Vera Plant"
product = /obj/item/reagent_containers/food/snacks/grown/aloe
yield = 2
icon_dead = "ambrosia-dead"
reagents_add = list("silver_sulfadiazine" = 0.1)
/obj/item/reagent_containers/food/snacks/grown/aloe
seed = /obj/item/seeds/aloe
name = "aloe leaf"
desc = "Mash to turn into a poultice."
icon_state = "ambrosiavulgaris"
color = "#4CC5C7"
tastes = list("aloe" = 1)
bitesize_mod = 2
/obj/item/reagent_containers/food/snacks/grown/aloe/attack_self(mob/user)
var/obj/item/stack/medical/ointment/aloe/A = new(get_turf(user))
A.heal_burn = seed.potency
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"