]> Dogcows Code - chaz/yoink/blobdiff - data/animations/Bullets.lua
converted json sequences to lua
[chaz/yoink] / data / animations / Bullets.lua
diff --git a/data/animations/Bullets.lua b/data/animations/Bullets.lua
new file mode 100644 (file)
index 0000000..5c16b11
--- /dev/null
@@ -0,0 +1,56 @@
+
+-- Bullet animation sequences
+
+DefineSequence("Punch",
+{
+       delay = 1,
+       frames = {
+               { index = 31 }
+       }
+})
+
+DefineSequence("SmallBullet",
+{
+       delay = 0.05,
+       frames = {
+               { index = 16 },
+               { index = 17 }
+       }
+})
+
+DefineSequence("MediumBullet",
+{
+       delay = 0.05,
+       frames = {
+               { index = 17 },
+               { index = 18 }
+       }
+})
+
+DefineSequence("SmallFireball",
+{
+       delay = 0.05,
+       frames = {
+               { index = 0 },
+               { index = 1 }
+       }
+})
+
+DefineSequence("MediumFireball",
+{
+       delay = 0.05,
+       frames = {
+               { index = 2 },
+               { index = 1 }
+       }
+})
+
+DefineSequence("LargeFireball",
+{
+       delay = 0.05,
+       frames = {
+               { index = 21 },
+               { index = 2 }
+       }
+})
+
This page took 0.017376 seconds and 4 git commands to generate.