Goonstation 13 - Modules - TypesVar Details

/datum/rc_entry/seed

Vars

cropnameName of the desired crop, as it appears in plant genes.
gene_reqsList of required plant gene parameters, each formatted as a key-value pair. Add your key value pairs to this list, either hard-coded or with a thing in New() BEFORE ..(), for evaluation. Example of the latter: src.gene_reqs["Maturation"] = rand(10,20) * -1

Var Details

cropname

Name of the desired crop, as it appears in plant genes.

gene_reqs

List of required plant gene parameters, each formatted as a key-value pair. Add your key value pairs to this list, either hard-coded or with a thing in New() BEFORE ..(), for evaluation. Example of the latter: src.gene_reqs["Maturation"] = rand(10,20) * -1

Available keys (strings): Maturation, Production, Lifespan, Yield, Potency, Endurance. Number paired with key should be a negative integer for maturation or production, or a positive integer otherwise.

If this is left empty, any seed with a genome and the appropriate crop name will be accepted.