1// Arrow
2sprite SD_ARROW
3{
4    source_file     images/items.png
5    source_rect     3 37 14 14
6    frame_size      14 14
7    hot_spot        0 0
8
9    // idle
10    animation 0
11    {
12        repeat      TRUE
13        fps         8
14        data        0
15    }
16}
17
18// Question Mark
19sprite SD_QUESTIONMARK
20{
21    source_file     images/questionmark.png
22    source_rect     0 0 20 40
23    frame_size      20 40
24    hot_spot        10 32
25
26    // default
27    animation 0
28    {
29        repeat      TRUE
30        fps         8
31        data        0
32    }
33}
34
35// Invincibility stars
36sprite SD_INVSTAR
37{
38    source_file     images/items.png
39    source_rect     0 58 42 12
40    frame_size      14 12
41    hot_spot        9 9
42
43    // default
44    animation 0
45    {
46        repeat      TRUE
47        fps         8
48        data        0 1 2
49    }
50}
51