17 lines
707 B
Lua
17 lines
707 B
Lua
_TOCRegistries = {}
|
|
|
|
_TOCRegistries.traits = {
|
|
Amputee_Hand = CharacterTrait.register("toc:amputee_hand"),
|
|
Amputee_ForeArm = CharacterTrait.register("toc:amputee_forearm"),
|
|
Amputee_UpperArm = CharacterTrait.register("toc:amputee_upperarm"),
|
|
}
|
|
|
|
_TOCRegistries.bodylocations = {
|
|
TOC_Arm_L = ItemBodyLocation.register("toc:toc_arm_l"),
|
|
TOC_Arm_R = ItemBodyLocation.register("toc:toc_arm_r"),
|
|
TOC_ArmProst_L = ItemBodyLocation.register("toc:toc_armprost_l"),
|
|
TOC_ArmProst_R = ItemBodyLocation.register("toc:toc_armprost_r"),
|
|
TOC_ArmAccessory_L = ItemBodyLocation.register("toc:toc_armaccessory_l"),
|
|
TOC_ArmAccessory_R = ItemBodyLocation.register("toc:toc_armaccessory_r"),
|
|
}
|