blob: 7f287522f2f4ac6fa5baa016cc403851424cd2e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Author: Reid
Copyright (C) 2017 The Mana World -->
<sprite>
<imageset name="npc"
src="graphics/tilesets/tree-x4x5.png"
width="128"
height="160"/>
<action name="stand" imageset="npc">
<!-- Winter -->
<animation direction="default">
<!-- TODO: change when we will have remaining frames -->
<frame index="1" offsetX="16"/>
</animation>
<!-- Spring -->
<animation direction="downleft">
<!-- TODO: change when we will have remaining frames -->
<frame index="0" offsetX="16"/>
</animation>
<!-- Summer -->
<animation direction="left">
<frame index="0" offsetX="16"/>
</animation>
<!-- Autumn -->
<animation direction="upleft">
<frame index="1" offsetX="16"/>
</animation>
</action>
</sprite>
|