mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-18 11:36:24 +01:00
28 lines
1004 B
Plaintext
28 lines
1004 B
Plaintext
// Herbs
|
|
/obj/item/seeds/herbs
|
|
name = "herb seed pack"
|
|
desc = "These seeds grow to produce an assortment of herbs and seasonings."
|
|
icon_state = "seed-herbs"
|
|
species = "herbs"
|
|
plantname = "Herbs"
|
|
product = /obj/item/food/grown/herbs
|
|
growthstages = 2
|
|
yield = 5
|
|
potency = 20
|
|
growing_icon = 'icons/obj/service/hydroponics/growing.dmi'
|
|
icon_grow = "herbs-grow"
|
|
icon_dead = "herbs-dead"
|
|
genes = list(/datum/plant_gene/trait/repeated_harvest)
|
|
reagents_add = list(/datum/reagent/consumable/nutriment/vitamin = 0.04, /datum/reagent/consumable/nutriment = 0.1)
|
|
|
|
/obj/item/food/grown/herbs
|
|
seed = /obj/item/seeds/herbs
|
|
name = "bundle of herbs"
|
|
desc = "A bundle of various herbs. Somehow, you're always able to pick what you need out."
|
|
icon_state = "herbs"
|
|
foodtypes = VEGETABLES
|
|
grind_results = list(/datum/reagent/consumable/nutriment = 0)
|
|
juice_typepath = /datum/reagent/consumable/nutriment
|
|
tastes = list("nondescript herbs" = 1)
|
|
distill_reagent = /datum/reagent/consumable/ethanol/fernet
|