mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-13 08:57:01 +01:00
9ba7d398f6
This reverts commit 8cda8bbd16.
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
/////////////////////////////////////
|
|
//////////Limb Grower Designs ///////
|
|
/////////////////////////////////////
|
|
|
|
/datum/design/leftarm
|
|
name = "Left Arm"
|
|
id = "leftarm"
|
|
build_type = LIMBGROWER
|
|
reagents_list = list(/datum/reagent/medicine/synthflesh = 25)
|
|
build_path = /obj/item/bodypart/l_arm
|
|
category = list("initial","human","lizard","fly","moth","plasmaman")
|
|
|
|
/datum/design/rightarm
|
|
name = "Right Arm"
|
|
id = "rightarm"
|
|
build_type = LIMBGROWER
|
|
reagents_list = list(/datum/reagent/medicine/synthflesh = 25)
|
|
build_path = /obj/item/bodypart/r_arm
|
|
category = list("initial","human","lizard","fly","moth","plasmaman")
|
|
|
|
/datum/design/leftleg
|
|
name = "Left Leg"
|
|
id = "leftleg"
|
|
build_type = LIMBGROWER
|
|
reagents_list = list(/datum/reagent/medicine/synthflesh = 25)
|
|
build_path = /obj/item/bodypart/l_leg
|
|
category = list("initial","human","lizard","fly","moth","plasmaman")
|
|
|
|
/datum/design/rightleg
|
|
name = "Right Leg"
|
|
id = "rightleg"
|
|
build_type = LIMBGROWER
|
|
reagents_list = list(/datum/reagent/medicine/synthflesh = 25)
|
|
build_path = /obj/item/bodypart/r_leg
|
|
category = list("initial","human","lizard","fly","moth","plasmaman")
|
|
|
|
/datum/design/armblade
|
|
name = "Arm Blade"
|
|
id = "armblade"
|
|
build_type = LIMBGROWER
|
|
reagents_list = list(/datum/reagent/medicine/synthflesh = 75)
|
|
build_path = /obj/item/melee/synthetic_arm_blade
|
|
category = list("other","emagged") |