]> Dogcows Code - chaz/yoink/blob - data/animations/Bonuses.lua
fixed documentation about where to find licenses
[chaz/yoink] / data / animations / Bonuses.lua
1
2 -- Bonus animation sequences
3
4 DefineSequence("SmallHealth",
5 {
6 delay = 0.1,
7 frames = {
8 { index = 0 },
9 { index = 1 },
10 { index = 2 },
11 { index = 1 }
12 }
13 })
14
15 DefineSequence("LargeHealth",
16 {
17 delay = 0.1,
18 frames = {
19 { index = 3 },
20 { index = 4 },
21 { index = 5 },
22 { index = 4 }
23 }
24 })
25
26 DefineSequence("SmallRedPotion",
27 {
28 delay = 0.1,
29 frames = {
30 { index = 6 },
31 { index = 7 },
32 { index = 8 },
33 { index = 7 }
34 }
35 })
36
37 DefineSequence("SmallBluePotion",
38 {
39 delay = 0.1,
40 frames = {
41 { index = 9 },
42 { index = 10 },
43 { index = 11 },
44 { index = 10 }
45 }
46 })
47
48 DefineSequence("FirstAidKit",
49 {
50 delay = 1,
51 frames = {
52 { index = 12 }
53 }
54 })
55
56 DefineSequence("AlienFirstAidKit",
57 {
58 delay = 1,
59 frames = {
60 { index = 13 }
61 }
62 })
63
64 DefineSequence("Cake",
65 {
66 delay = 1,
67 frames = {
68 { index = 14 }
69 }
70 })
71
72 DefineSequence("FizzyDrink",
73 {
74 delay = 1,
75 frames = {
76 { index = 15 }
77 }
78 })
79
80 DefineSequence("Cheese",
81 {
82 delay = 1,
83 frames = {
84 { index = 16 }
85 }
86 })
87
88 DefineSequence("Chocolate",
89 {
90 delay = 1,
91 frames = {
92 { index = 17 }
93 }
94 })
95
96 DefineSequence("MilkBottle",
97 {
98 delay = 1,
99 frames = {
100 { index = 18 }
101 }
102 })
103
104 DefineSequence("OneSadCookie",
105 {
106 delay = 1,
107 frames = {
108 { index = 19 }
109 }
110 })
111
This page took 0.039251 seconds and 4 git commands to generate.