Renderer/assets/Data/items.json
austin f4bcc35cbf First pass at attacking
assumptions created:
creatures always have facing vector
animation frames for attack animation
items attached to attacking creatures have hitboxes
2021-07-03 23:25:11 -04:00

37 lines
736 B
JSON

{
"items" : [
{
"name" : "Katana",
"modelPath" : "Models/katana1alt.fbx",
"hitboxes" : [
{
"type": "hit",
"bone": "Blade1",
"radius": 0.04
},
{
"type": "hit",
"bone": "Blade2",
"radius": 0.04
},
{
"type": "hit",
"bone": "Blade3",
"radius": 0.04
}
],
"tokens" : [
"BLENDER_TRANSFORM",
"WEAPON",
"MELEE"
]
}
]
}