mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-21 15:42:53 +00:00
56 lines
2.3 KiB
Plaintext
56 lines
2.3 KiB
Plaintext
///If the machine is used/deleted in the crafting process
|
|
#define CRAFTING_MACHINERY_CONSUME 1
|
|
///If the machine is only "used" i.e. it checks to see if it's nearby and allows crafting, but doesn't delete it
|
|
#define CRAFTING_MACHINERY_USE 0
|
|
|
|
/datum/crafting_recipe
|
|
var/name = "" //in-game display name
|
|
var/list/reqs = list() //type paths of items consumed associated with how many are needed
|
|
var/list/blacklist = list() //type paths of items explicitly not allowed as an ingredient
|
|
var/result //type path of item resulting from this craft
|
|
/// String defines of items needed but not consumed. Lazy list.
|
|
var/list/tool_behaviors
|
|
/// Type paths of items needed but not consumed. Lazy list.
|
|
var/list/tool_paths
|
|
var/time = 30 //time in deciseconds
|
|
var/list/parts = list() //type paths of items that will be placed in the result
|
|
var/list/chem_catalysts = list() //like tool_behaviors but for reagents
|
|
var/category = CAT_NONE //where it shows up in the crafting UI
|
|
var/subcategory = CAT_NONE
|
|
var/always_available = TRUE //Set to FALSE if it needs to be learned first.
|
|
/// Additonal requirements text shown in UI
|
|
var/additional_req_text
|
|
///Required machines for the craft, set the assigned value of the typepath to CRAFTING_MACHINERY_CONSUME or CRAFTING_MACHINERY_USE. Lazy associative list: type_path key -> flag value.
|
|
var/list/machinery
|
|
///Should only one object exist on the same turf?
|
|
var/one_per_turf = FALSE
|
|
|
|
/datum/crafting_recipe/New()
|
|
if(!(result in reqs))
|
|
blacklist += result
|
|
if(tool_behaviors)
|
|
tool_behaviors = string_list(tool_behaviors)
|
|
if(tool_paths)
|
|
tool_paths = string_list(tool_paths)
|
|
|
|
/**
|
|
* Run custom pre-craft checks for this recipe
|
|
*
|
|
* user: The /mob that initiated the crafting
|
|
* collected_requirements: A list of lists of /obj/item instances that satisfy reqs. Top level list is keyed by requirement path.
|
|
*/
|
|
/datum/crafting_recipe/proc/check_requirements(mob/user, list/collected_requirements)
|
|
return TRUE
|
|
|
|
/datum/crafting_recipe/proc/on_craft_completion(mob/user, atom/result)
|
|
return
|
|
|
|
/datum/crafting_recipe/stunprod
|
|
name = "Stunprod"
|
|
result = /obj/item/weapon/melee/baton/cattleprod
|
|
reqs = list(/obj/item/weapon/handcuffs/cable = 1,
|
|
/obj/item/stack/rods = 1,
|
|
/obj/item/weapon/tool/wirecutters = 1)
|
|
time = 40
|
|
category = CAT_WEAPONRY
|
|
subcategory = CAT_WEAPON |