11 lines
619 B
Plaintext
11 lines
619 B
Plaintext
/datum/crafting_recipe
|
|
var/name = "" //in-game display name
|
|
var/reqs[] = list() //type paths of items consumed associated with how many are needed
|
|
var/result //type path of item resulting from this craft
|
|
var/tools[] = list() //type paths of items needed but not consumed
|
|
var/time = 30 //time in deciseconds
|
|
var/parts[] = list() //type paths of items that will be placed in the result
|
|
var/chem_catalysts[] = list() //like tools but for reagents
|
|
var/category = CAT_NONE //where it shows up in the crafting UI
|
|
var/subcategory = CAT_NONE
|
|
var/always_availible = TRUE //Set to FALSE if it needs to be learned first. |