Files
FluffyandGitHub a40c981263 Made all the design template production speed into seconds (#19169)
Made all the design template production speed into seconds, slowing the
printing down.
This also works in fixing the UI hitting the rate limit.

Fixes #19168
2024-05-23 19:22:57 +00:00

35 lines
1.1 KiB
Plaintext

/datum/design/item/mechfab/prosthetic/internal
category = "Prosthetic (Internal)"
time = 20 SECONDS
materials = list(DEFAULT_WALL_MATERIAL = 9000, MATERIAL_GLASS = 3000)
//make sure the printed organ is actually robotic
/datum/design/item/mechfab/prosthetic/internal/Fabricate()
var/obj/item/organ/O = ..()
O.robotize()
return O
/datum/design/item/mechfab/prosthetic/internal/heart
name = "Prosthetic Heart"
build_path = /obj/item/organ/internal/heart
/datum/design/item/mechfab/prosthetic/internal/lungs
name = "Prosthetic Lungs"
build_path = /obj/item/organ/internal/lungs
/datum/design/item/mechfab/prosthetic/internal/kidneys
name = "Prosthetic Kidneys"
build_path = /obj/item/organ/internal/kidneys
/datum/design/item/mechfab/prosthetic/internal/eyes
name = "Prosthetic Eyes"
build_path = /obj/item/organ/internal/eyes
/datum/design/item/mechfab/prosthetic/internal/liver
name = "Prosthetic Liver"
build_path = /obj/item/organ/internal/liver
/datum/design/item/mechfab/prosthetic/internal/stomach
name = "Prosthetic Stomach"
build_path = /obj/item/organ/internal/stomach