Renderer/assets/Data/items.json
austin caa1bcd5d5 closes #60
Adds in world item entities that can be placed on ground. Physics needs
major tweaking before they're really test-able
2021-10-28 00:15:21 -04:00

55 lines
1.2 KiB
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"
]
},
{
"name" : "Bow",
"modelPath": "Models/bow1.fbx",
"tokens" : [
"GRAVITY",
"WEAPON",
"RANGED"
],
"collidable": {
"type" : "CUBE",
"dimension1" : 0.1,
"dimension2" : 0.1,
"dimension3" : 0.1,
"offsetX" : 0,
"offsetY" : 0.1,
"offsetZ" : 0
}
}
]
}