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."