1{
2id: "explosion2",
3on_create: "sound('missile_hit.ogg')",
4on_end_normal_anim: "animation('anim2')",
5on_end_anim2_anim: "animation('anim3')",
6on_end_anim3_anim: "die()",
7zorder: 10,
8animation: [
9	{
10		id: "normal",
11		image: "effects/explosion.png",
12		rect: [3,132,33,162],
13		frames: 3,
14		pad: 3,
15		duration: 3,
16	},
17	{
18		id: "anim2",
19		image: "effects/explosion.png",
20		rect: [3,166,33,196],
21		hit_x: 1,
22		hit_y: 2,
23		hit_w: 29,
24		hit_h: 27,
25		hit_frames: "1",
26		frames: 3,
27		pad: 3,
28		duration: 3,
29	},
30	{
31		id: "anim3",
32		image: "effects/explosion.png",
33		rect: [3,200,33,230],
34		frames: 3,
35		pad: 3,
36		duration: 3,
37	},
38],
39}