X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=data%2Fanimations%2FEffects.lua;fp=data%2Fanimations%2FEffects.lua;h=d67fd3c2ea25d6f97d05e059bfaaced3a2ae0ac8;hp=0000000000000000000000000000000000000000;hb=fa9438c66ae0154e6d9ad196e0fb39649d359da4;hpb=fcb40aa40c6a13ca0e0962b35973ac4574779574 diff --git a/data/animations/Effects.lua b/data/animations/Effects.lua new file mode 100644 index 0000000..d67fd3c --- /dev/null +++ b/data/animations/Effects.lua @@ -0,0 +1,66 @@ + +-- Special effect animation sequences + +DefineSequence("Fireball", +{ + delay = 0.1, + frames = { + { index = 0 }, + { index = 1 }, + { index = 2 }, + { index = 1 }, + { index = 0 } + } +}) + +DefineSequence("Smoke", +{ + delay = 0.05, + loop = true, + frames = { + { index = 4 }, + { index = 5 }, + { index = 6 } + } +}) + +DefineSequence("GreenDiamond", +{ + delay = 0.05, + frames = { + { index = 7 }, + { index = 8 }, + { index = 9 }, + { index = 10 }, + { index = 11 } + } +}) + +DefineSequence("ChargeParticle", +{ + delay = 0.03, + loop = true, + frames = { + { index = 12 }, + { index = 13 }, + { index = 1 }, + { index = 3 }, + { index = 14 }, + { index = 13 }, + { index = 12 } + } +}) + +DefineSequence("Poof", +{ + delay = 0.05, + loop = true, + frames = { + { index = 23 }, + { index = 24 }, + { index = 25 }, + { index = 26 }, + { index = 27 } + } +}) +