]> Dogcows Code - chaz/yoink/blob - data/animations/Effects.lua
converted json sequences to lua
[chaz/yoink] / data / animations / Effects.lua
1
2 -- Special effect animation sequences
3
4 DefineSequence("Fireball",
5 {
6 delay = 0.1,
7 frames = {
8 { index = 0 },
9 { index = 1 },
10 { index = 2 },
11 { index = 1 },
12 { index = 0 }
13 }
14 })
15
16 DefineSequence("Smoke",
17 {
18 delay = 0.05,
19 loop = true,
20 frames = {
21 { index = 4 },
22 { index = 5 },
23 { index = 6 }
24 }
25 })
26
27 DefineSequence("GreenDiamond",
28 {
29 delay = 0.05,
30 frames = {
31 { index = 7 },
32 { index = 8 },
33 { index = 9 },
34 { index = 10 },
35 { index = 11 }
36 }
37 })
38
39 DefineSequence("ChargeParticle",
40 {
41 delay = 0.03,
42 loop = true,
43 frames = {
44 { index = 12 },
45 { index = 13 },
46 { index = 1 },
47 { index = 3 },
48 { index = 14 },
49 { index = 13 },
50 { index = 12 }
51 }
52 })
53
54 DefineSequence("Poof",
55 {
56 delay = 0.05,
57 loop = true,
58 frames = {
59 { index = 23 },
60 { index = 24 },
61 { index = 25 },
62 { index = 26 },
63 { index = 27 }
64 }
65 })
66
This page took 0.049155 seconds and 5 git commands to generate.