From 4dffa21640c49737d656e0a07d4e7101a47f3eac Mon Sep 17 00:00:00 2001 From: mikomyazaki <47489928+mikomyazaki@users.noreply.github.com> Date: Thu, 27 Feb 2020 15:17:39 +0000 Subject: [PATCH] Can print hands & feet from the prosthetics printer. (#8359) --- .../designs/mechfab/prosthetics/external.dm | 30 ++++++++++++++++++- html/changelogs/print_feets_hands.yml | 6 ++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/print_feets_hands.yml diff --git a/code/modules/research/designs/mechfab/prosthetics/external.dm b/code/modules/research/designs/mechfab/prosthetics/external.dm index 59b5f713378..ec4f0e0e614 100644 --- a/code/modules/research/designs/mechfab/prosthetics/external.dm +++ b/code/modules/research/designs/mechfab/prosthetics/external.dm @@ -40,4 +40,32 @@ id = "prosthetic_r_leg" build_path = /obj/item/organ/external/leg/right/industrial time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 15000) \ No newline at end of file + materials = list(DEFAULT_WALL_MATERIAL = 15000) + +/datum/design/item/mechfab/prosthetic/l_hand + name = "Prosthetic left hand" + id = "prosthetic_l_hand" + build_path = /obj/item/organ/external/hand/industrial + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 8000) + +/datum/design/item/mechfab/prosthetic/r_hand + name = "Prosthetic right hand" + id = "prosthetic_r_hand" + build_path = /obj/item/organ/external/hand/right/industrial + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 8000) + +/datum/design/item/mechfab/prosthetic/l_foot + name = "Prosthetic left foot" + id = "prosthetic_l_foot" + build_path = /obj/item/organ/external/foot/industrial + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 8000) + +/datum/design/item/mechfab/prosthetic/r_foot + name = "Prosthetic right foot" + id = "prosthetic_r_hand" + build_path = /obj/item/organ/external/foot/right/industrial + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 8000) \ No newline at end of file diff --git a/html/changelogs/print_feets_hands.yml b/html/changelogs/print_feets_hands.yml new file mode 100644 index 00000000000..e026bda43cb --- /dev/null +++ b/html/changelogs/print_feets_hands.yml @@ -0,0 +1,6 @@ +author: mikomyazaki + +delete-after: True + +changes: + - bugfix: "Prosthetics printer can now also print hands and feet. It is necessary to print these in addition to an arm/leg if you are doing a full limb replacement."