Can print hands & feet from the prosthetics printer. (#8359)

This commit is contained in:
mikomyazaki
2020-02-27 12:17:39 -03:00
committed by GitHub
parent b35e3b177a
commit 4dffa21640
2 changed files with 35 additions and 1 deletions
@@ -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)
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)
+6
View File
@@ -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."