mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-09 17:02:56 +00:00
72 lines
2.3 KiB
Plaintext
72 lines
2.3 KiB
Plaintext
/datum/design/item/autolathe/medical //Datum for object designs, used in construction //IDs of that techs the object originated from and the minimum level requirements.
|
|
category = "Medical" //category item goes to
|
|
|
|
/datum/design/item/autolathe/medical/scalpel
|
|
name = "scalpel"
|
|
id = "scalpel"
|
|
build_path = /obj/item/weapon/surgical/scalpel
|
|
materials = list(DEFAULT_WALL_MATERIAL = 12500, "glass" = 6250)
|
|
|
|
/datum/design/item/autolathe/medical/circularsaw
|
|
name = "circular saw"
|
|
id = "circularsaw"
|
|
build_path = /obj/item/weapon/surgical/circular_saw
|
|
materials = list(DEFAULT_WALL_MATERIAL = 25000, "glass" = 12500)
|
|
|
|
/datum/design/item/autolathe/medical/surgicaldrill
|
|
name = "surgical drill"
|
|
id = "surgicaldrill"
|
|
build_path = /obj/item/weapon/surgical/surgicaldrill
|
|
materials = list(DEFAULT_WALL_MATERIAL = 18750, "glass" = 12500)
|
|
|
|
/datum/design/item/autolathe/medical/retractor
|
|
name = "retractor"
|
|
id = "retractor"
|
|
build_path = /obj/item/weapon/surgical/retractor
|
|
materials = list(DEFAULT_WALL_MATERIAL = 12500, "glass" = 6250)
|
|
|
|
/datum/design/item/autolathe/medical/cautery
|
|
name = "cautery"
|
|
id = "cautery"
|
|
build_path = /obj/item/weapon/surgical/cautery
|
|
materials = list(DEFAULT_WALL_MATERIAL = 6250, "glass" = 3125)
|
|
|
|
/datum/design/item/autolathe/medical/hemostat
|
|
name = "hemostat"
|
|
id = "hemostat"
|
|
build_path = /obj/item/weapon/surgical/hemostat
|
|
materials = list(DEFAULT_WALL_MATERIAL = 6250, "glass" = 3125)
|
|
|
|
/datum/design/item/autolathe/medical/beaker
|
|
name = "glass beaker"
|
|
id = "beaker"
|
|
build_path = /obj/item/weapon/reagent_containers/glass/beaker
|
|
materials = list("glass" = 625)
|
|
|
|
/datum/design/item/autolathe/medical/large_beaker
|
|
name = "large glass beaker"
|
|
id = "large_beaker"
|
|
build_path = /obj/item/weapon/reagent_containers/glass/beaker/large
|
|
materials = list("glass" = 1300)
|
|
|
|
/datum/design/item/autolathe/medical/vial
|
|
name = "glass vial"
|
|
id = "vial"
|
|
build_path = /obj/item/weapon/reagent_containers/glass/beaker/vial
|
|
materials = list("glass" = 312)
|
|
|
|
/datum/design/item/autolathe/medical/syringe
|
|
name = "syringe"
|
|
id = "syringe"
|
|
build_path = /obj/item/weapon/reagent_containers/syringe
|
|
materials = list("glass" = 187)
|
|
|
|
/datum/design/item/autolathe/medical/implanter
|
|
name = "implanter"
|
|
id = "implanter"
|
|
build_path = /obj/item/weapon/implanter
|
|
materials = list(DEFAULT_WALL_MATERIAL = 1250, "glass" = 1250)
|
|
|
|
|
|
|