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,26 @@
{
"projectileName" : "groundfire",
"image" : "invisibleprojectile.png",
"physics" : "groundspread",
"onlyHitTerrain" : true,
"hydrophobic" : true,
"frameNumber" : 1,
"flippable" : true,
"speed" : 10,
"timeToLive" : 0.8,
"bounces" : -1,
"periodicActions" : [
{
"time" : 0.1,
"repeat" : true,
"action" : "projectile",
"type" : "groundfireburst",
"angle" : 0,
"inheritDamageFactor" : 1.0
}
],
// "lightColor" : [255, 180, 0],
"damageType" : "NoDamage",
"damageKind" : "default"
}

View file

@ -0,0 +1,10 @@
{
"frameGrid" : {
"size" : [8, 8],
"dimensions" : [1, 1],
"names" : [
[ "0" ]
]
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,10 @@
{
"frameGrid" : {
"size" : [16, 9],
"dimensions" : [7, 1],
"names" : [
[ "0", "1", "2", "3", "4", "5", "6" ]
]
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,29 @@
{
"projectileName" : "groundfirebomb",
"physics" : "grenade",
"bounces" : 0,
"timeToLive" : 5,
"image" : "groundfirebomb.png",
"animationCycle" : 5,
"lightColor" : [105, 64, 0],
"frameNumber" : 7,
"actionOnReap" : [
{
"action" : "projectile",
"type" : "groundfire",
"angle" : 0,
"inheritDamageFactor" : 0.5
},
{
"action" : "projectile",
"type" : "groundfire",
"angle" : 180,
"inheritDamageFactor" : 0.5
}
],
"power" : 50,
"damageType" : "NoDamage",
"damageKind" : "default",
"damagePoly" : [ [-6, 0], [-4, -4], [0, -6], [4, -4], [6, 0], [4, 4], [0, 6], [-4, 4] ],
"emitters" : [ "sparks" ]
}

View file

@ -0,0 +1,10 @@
{
"frameGrid" : {
"size" : [8, 72],
"dimensions" : [8, 1],
"names" : [
[ "0", "1", "2", "3", "4", "5", "6", "7" ]
]
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 812 B

View file

@ -0,0 +1,14 @@
{
"projectileName" : "groundfireburst",
"image" : "groundfireburst.png",
"animationCycle" : 0.2,
"frameNumber" : 8,
"speed" : 0,
"damagePoly" : [ [-4, 0], [4, 0], [0, 40] ],
"animationLoops" : false,
"piercing" : true,
"flippable" : true,
"damageTeam" : { "type" : "indiscriminate" },
"damageKind" : "default",
"lightColor" : [255, 220, 50]
}

View file

@ -0,0 +1,6 @@
{
"frameGrid" : {
"size" : [32, 8],
"dimensions" : [2, 1]
}
}

View file

@ -0,0 +1,3 @@
function init()
mcontroller.setRotation(0)
end

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

View file

@ -0,0 +1,35 @@
{
"projectileName" : "platform",
"image" : "platform.png",
"animationCycle" : 0.25,
"physics" : "illusion",
"frameNumber" : 2,
"pointLight" : false,
"speed" : 10,
"power" : 0.0,
"bounces" : -1,
"timeToLive" : 10,
"orientationLocked" : true,
"physicsCollisions" : {
"platform" : {
"collision" : [
[-2, -0.5],
[2, -0.5],
[2, 0.5],
[-2, 0.5]
],
"collisionKind" : "platform"
}
},
"scripts" : [ "platform.lua" ],
"scriptDelta" : 0,
"damageTeam" : { "type" : "ghostly" },
"clientEntityMode" : "ClientSlaveOnly"
}

View file

@ -0,0 +1,10 @@
{
"frameGrid" : {
"size" : [17, 17],
"dimensions" : [3, 1],
"names" : [
[ "0", "1", "2" ]
]
}
}

View file

@ -0,0 +1,17 @@
require "/scripts/rails.lua"
function init()
local railConfig = config.getParameter("railConfig", {})
railConfig.speed = config.getParameter("speed")
self.railRider = Rails.createRider(railConfig)
self.railRider:init()
end
function update(dt)
self.railRider:update(dt)
end
function uninit()
self.railRider:uninit()
end

Binary file not shown.

After

Width:  |  Height:  |  Size: 675 B

View file

@ -0,0 +1,23 @@
{
"projectileName" : "railblade",
"image" : "railblade.png",
"physics" : "grenade",
"animationCycle" : 0.2,
"frameNumber" : 3,
"pointLight" : false,
"speed" : 30,
"power" : 10.0,
"damagePoly" : [[-8, 4], [-4, 8], [4, 8], [8, 4], [8, -4], [4, -8], [-4, -8], [-8, -4]],
"bounces" : 0,
"piercing" : true,
"timeToLive" : 10,
"orientationLocked" : true,
"scripts" : [ "railblade.lua" ],
"scriptDelta" : 2,
"clientEntityMode" : "ClientSlaveOnly"
}

View file

@ -0,0 +1,6 @@
{
"frameGrid" : {
"size" : [32, 8],
"dimensions" : [2, 1]
}
}

View file

@ -0,0 +1,23 @@
require "/scripts/rails.lua"
function init()
mcontroller.setRotation(0)
local railConfig = config.getParameter("railConfig", {})
railConfig.speed = config.getParameter("speed")
self.railRider = Rails.createRider(railConfig)
self.railRider:init()
end
function update(dt)
self.railRider:update(dt)
if self.railRider:onRail() then
projectile.setTimeToLive(5)
end
end
function uninit()
self.railRider:uninit()
end

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

View file

@ -0,0 +1,42 @@
{
"projectileName" : "railplatform",
"image" : "railplatform.png",
"animationCycle" : 0.25,
"physics" : "grenade",
"frameNumber" : 2,
"pointLight" : false,
"speed" : 20,
"power" : 0.0,
"bounces" : 0,
"timeToLive" : 10,
"actionOnReap" : [
{
"action" : "config",
"file" : "/projectiles/explosions/smallregularexplosion/smallregularexplosion.config"
}
],
"orientationLocked" : true,
"physicsCollisions" : {
"platform" : {
"collision" : [
[-2, -0.5],
[2, -0.5],
[2, 0.5],
[-2, 0.5]
],
"collisionKind" : "platform"
}
},
"scripts" : [ "railplatform.lua" ],
"scriptDelta" : 2,
"damageTeam" : { "type" : "ghostly" },
"clientEntityMode" : "ClientSlaveOnly"
}