blob: 781b3694191aa410c16f1d80665cf0f8605098ce (
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
|
<?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">
<frame index="1" offsetX="16"/>
</animation>
<!-- Spring -->
<animation direction="downleft">
<frame index="3" offsetX="16"/>
</animation>
<!-- Summer -->
<animation direction="left">
<frame index="0" offsetX="16"/>
</animation>
<!-- Autumn -->
<animation direction="upleft">
<frame index="2" offsetX="16"/>
</animation>
</action>
</sprite>
|