This commit is contained in:
Aria 2025-03-21 22:23:30 +11:00
commit 9c94d113d3
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
10260 changed files with 1237388 additions and 0 deletions

View file

@ -0,0 +1,91 @@
{
"animatedParts" : {
"stateTypes" : {
"movement" : {
"default" : "idle",
"states" : {
"idle" : { },
"jump" : {
"frames" : 2,
"cycle" : 0.5,
"mode" : "end",
"properties" : {
"immediateSound" : "/sfx/tech/tech_doublejump.ogg"
}
},
"fall" : {
"frames" : 2,
"cycle" : 0.5,
"mode" : "end"
},
"driveForward" : {
"frames" : 4,
"cycle" : 0.5,
"mode" : "loop"
},
"driveReverse" : {
"frames" : 4,
"cycle" : 0.5,
"mode" : "loop"
}
}
}
},
"parts" : {
"foreground" : {
"properties" : {
"centered" : true,
"zLevel" : 1
},
"partStates" : {
"movement" : {
"idle" : {
"properties" : {
"image" : "humancarforeground.png:idle.<frame>"
}
},
"jump" : {
"properties" : {
"image" : "humancarforeground.png:jump.<frame>"
}
},
"fall" : {
"properties" : {
"image" : "humancarforeground.png:fall.<frame>"
}
},
"driveForward" : {
"properties" : {
"image" : "humancarforeground.png:move.<frame>"
}
},
"driveReverse" : {
"properties" : {
"image" : "humancarforeground.png:bmove.<frame>"
}
}
}
}
}
}
},
"sounds" : {
"carHorn" : ["/sfx/tech/honk.ogg"]
},
"particleEmitters" : {
"carActivateParticles" : {
"particles" : [ ]
},
"carDeactivateParticles" : {
"particles" : [ ]
}
}
}

View file

@ -0,0 +1,56 @@
{
"name" : "humancar",
"type" : "head",
"scripts" : [
"/scripts/vec2.lua",
"/tech/automobile/car.lua"
],
"animator" : "humancar.animation",
"description" : "Press F to use this. Traverses rough terrain quicker.",
"shortDescription" : "Human Car",
"rarity" : "Legendary",
"icon" : "/tech/humancar.png",
"chipCost" : 8,
"carCustomMovementParameters" : {
"standingPoly" : [ [-3.5, 0.25], [-2, -2.25], [2, -2.25], [3.5, 0.25], [3.5, 0.5], [2, 0.5], [-2, 0.5], [-3.5, 0.5] ],
"crouchingPoly" : [ [-3.5, 0.25], [-2, -2.25], [2, -2.25], [3.5, 0.25], [3.5, 0.5], [2, 0.5], [-2, 0.5], [-3.5, 0.5] ],
"mass" : 5.0,
"normalGroundFriction" : 50.0,
"ambulatingGroundFriction" : 6.0,
"groundForce" : 160.0,
"airForce" : 50.0,
"liquidForce" : 70.0,
"walkSpeed" : 6.0,
"runSpeed" : 30.0,
"airJumpProfile" : {
"jumpSpeed" : 20.0,
"jumpControlForce" : 700.0,
"jumpInitialPercentage" : 0.75,
"jumpHoldTime" : 0.15
},
"liquidJumpProfile" : {
"jumpSpeed" : 8.0,
"jumpControlForce" : 400.0,
"jumpInitialPercentage" : 0.75,
"jumpHoldTime" : 0.1
}
},
"energyCostPerSecond" : 10,
"parentOffset" : [0.0, 0.4],
"carCollisionTest" : [-3.5, -2.5, 3.5, 5],
"honkTime" : 1.0
}

View file

@ -0,0 +1,20 @@
{
"frameGrid" : {
"size" : [70, 38],
"dimensions" : [4, 3],
"names" : [
[ "move.1", "move.2", "move.3", "move.4" ],
[ "fall.1", "fall.2", "idle.1" ],
[ "jump.1", "jump.2" ]
]
},
"aliases" : {
"bmove.4" : "move.1",
"bmove.3" : "move.2",
"bmove.2" : "move.3",
"bmove.1" : "move.4"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB