Renderer/assets/Data/entity/creatures/animals.json
austin d152047fe1
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Add cat
2026-02-05 20:28:47 -05:00

118 lines
3.5 KiB
JSON

{
"creatures" : [
{
"id" : "Deer",
"displayName" : "Deer",
"hitboxes" : [
{
"type": "hurt",
"bone": "Bone",
"radius": 0.04
}
],
"tokens" : [
"GRAVITY"
],
"movementSystems" : [
{
"type" : "GROUND",
"acceleration" : 0.001,
"maxVelocity" : 0.025
}
],
"collidable" : {
"type" : "CYLINDER",
"dimension1" : 0.1,
"dimension2" : 0.2,
"dimension3" : 0.1,
"rotX": 0,
"rotY": 0,
"rotZ": 0,
"rotW": 1,
"offsetX" : 0,
"offsetY" : 0.2,
"offsetZ" : 0
},
"healthSystem" : {
"maxHealth" : 100,
"onDamageIFrames" : 30
},
"modelPath" : "Models/deer1.fbx"
},
{
"id" : "Cat",
"displayName" : "Cat",
"hitboxes" : [
{
"type": "hurt",
"bone": "Bone",
"radius": 0.04
}
],
"tokens" : [
"GRAVITY"
],
"movementSystems" : [
{
"type" : "GROUND",
"acceleration" : 300.0,
"maxVelocity" : 10.0,
"strafeMultiplier" : 1.0,
"backpedalMultiplier" : 0.5,
"footstepFirstAudioOffset" : 0.2,
"footstepSecondAudioOffset" : 0.6,
"animationStartup" : {
"nameThirdPerson" : "Walk",
"priorityCategory" : "CORE_MOVEMENT"
},
"animationLoop" : {
"nameThirdPerson" : "Walk",
"priorityCategory" : "CORE_MOVEMENT"
},
"animationWindDown" : {
"nameThirdPerson" : "Walk",
"priorityCategory" : "CORE_MOVEMENT"
}
}
],
"collidable" : {
"type" : "CAPSULE",
"dimension1" : 0.35,
"dimension2" : 0.7,
"dimension3" : 0.35,
"linearFriction": 0.001,
"mass": 0.3,
"rotX": 0,
"rotY": 0,
"rotZ": 0,
"rotW": 1,
"offsetX" : 0,
"offsetY" : 0.7,
"offsetZ" : 0,
"angularlyStatic" : true
},
"healthSystem" : {
"maxHealth" : 100,
"onDamageIFrames" : 30
},
"aiTrees" : [
{
"name" : "Wander"
}
],
"graphicsTemplate": {
"model": {
"idleData": {
"animation": {
"nameFirstPerson" : "Pose",
"nameThirdPerson" : "Pose",
"priorityCategory" : "IDLE"
}
},
"path" : "Models/creatures/cat1/cat1.glb"
}
}
}
],
"files" : []
}