forked from OTAcademy/RME
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtilesets.xml
More file actions
2206 lines (2148 loc) · 62 KB
/
tilesets.xml
File metadata and controls
2206 lines (2148 loc) · 62 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<materials>
<!-- TILESETS -->
<tileset name="Grounds">
<raw>
<item id="100"/>
<item id="101"/>
<item id="103"/>
<item id="104"/>
<item id="106"/>
<item id="108"/>
<item id="109"/>
<item id="919"/>
<item id="1071"/>
<item id="231"/>
<item id="280"/>
<item id="351"/>
<item id="352"/>
<item id="353"/>
<item id="354"/>
<item id="355"/>
<item id="368"/>
<item id="405"/>
<item id="406"/>
<item id="407"/>
<item id="412"/>
<item id="413"/>
<item id="414"/>
<item id="415"/>
<item id="419"/>
<item id="420"/>
<item id="424"/>
<item id="431"/>
<item id="448"/>
<item id="449"/>
<item id="450"/>
<item id="457"/>
<item id="458"/>
<item id="460"/>
<item id="459"/>
<item id="493"/>
<item id="598"/>
<item id="670"/>
<item id="671"/>
<item id="708"/>
<item id="724"/>
<item id="777"/>
<item id="790"/>
<item id="791"/>
<item id="804"/>
<item id="806"/>
<item id="4832"/>
<item id="4833"/>
<item id="836"/>
<item id="918"/>
<item id="920"/>
<item id="926"/>
<item id="927"/>
<item id="929"/>
<item id="936"/>
<item id="937"/>
<item id="939"/>
<item id="946"/>
<item id="947"/>
<item id="948"/>
<item id="956"/>
<item id="957"/>
<item id="958"/>
<item id="965"/>
<item id="966"/>
<item id="1284"/>
<item id="1509"/>
<item id="194"/>
<item id="464"/>
<item id="466"/>
<item id="6210"/>
<item id="6213"/>
<item id="4595"/>
<item id="4608"/>
<item fromid="4609" toid="4625"/>
<item fromid="4664" toid="4666"/>
<item fromid="4691" toid="4712"/>
<item fromid="4749" toid="4755"/>
<item fromid="4820" toid="4825"/>
<item fromid="3263" toid="3265"/>
<item fromid="5755" toid="5761"/>
<item id="6389"/>
<item id="5815"/>
<item fromid="5768" toid="5770"/>
<item fromid="293" toid="294"/>
<item fromid="416" toid="417"/>
<item fromid="421" toid="422"/>
<item fromid="425" toid="426"/>
<item fromid="446" toid="447"/>
<item fromid="451" toid="456"/>
<item fromid="465"/>
<item fromid="467"/>
<item fromid="471" toid="474"/>
<item fromid="709" toid="711"/>
<item fromid="778" toid="789"/>
<item fromid="967" toid="1024"/>
<item fromid="5711" toid="5726"/>
<item fromid="6580" toid="6609"/>
<item fromid="3152" toid="3217"/>
<item fromid="6612" toid="6626"/>
<item fromid="6804" toid="6809"/>
<item fromid="7062" toid="7066"/>
<item fromid="3139"/>
<item fromid="7272"/>
<item fromid="7348"/>
<item fromid="7350" toid="7358"/>
<item fromid="8133"/>
<item fromid="8048" toid="8052"/>
<item fromid="7975" toid="7976"/>
<item fromid="6838"/>
<item fromid="6967"/>
<item fromid="3348"/>
<item fromid="4405" toid="4421"/>
<item fromid="599" toid="601"/>
<item fromid="4526" toid="4541"/>
<item fromid="4566"/>
<item fromid="4570" toid="4579"/>
<item fromid="9021" toid="9059"/>
<item fromid="9067" toid="9072"/>
<item fromid="8326" toid="8334"/>
<item fromid="8347" toid="8348"/>
<item fromid="8423"/>
<item fromid="8425" toid="8431"/>
<item fromid="8424"/>
<item id="8578"/>
<item id="8579"/>
<item fromid="8591" toid="8592"/>
<item fromid="8432" toid="8434"/>
<item id="8594"/>
<item fromid="8597" toid="8598"/>
<item fromid="8913" toid="8917"/>
<item fromid="8315" toid="8322"/>
<item fromid="9192" toid="9206"/>
<item fromid="9224" toid="9232"/>
<item fromid="9144" toid="9146"/>
<item fromid="9535" toid="9536"/>
<item fromid="9611" toid="9612"/>
<item fromid="9671" toid="9673"/>
<item fromid="9682" toid="9685"/>
<item id="9800"/>
<item id="9883"/>
<item fromid="9833" toid="9834"/>
</raw>
</tileset>
<tileset name="Nature">
<terrain>
<brush name="sea"/>
<brush name="walkable sea"/>
<brush name="mountain"/>
<brush name="ramp"/>
<brush name="dirt ramp"/>
<brush name="bamboo ramp"/>
<brush name="grass"/>
<brush name="grass (alternate border)"/>
<brush name="grass open stone pile"/>
<brush name="grass closed stone pile"/>
<brush name="grass pitfall"/>
<brush name="dried grass"/>
<brush name="dirt"/>
<brush name="dry earth"/>
<brush name="sand"/>
<brush name="sand open stone pile"/>
<brush name="sand closed stone pile"/>
<brush name="sand scarab hole"/>
<brush name="sand (thick border)"/>
<brush name="sand gravel"/>
<brush name="sand dune"/>
<brush name="sand pile"/>
<brush name="sand dark dune"/>
<brush name="snow"/>
<brush name="ice"/>
<brush name="ice open stone pile"/>
<brush name="ice closed stone pile"/>
<brush name="hole in the ice"/>
<brush name="ice floe"/>
<brush name="jungle grass"/>
<brush name="jungle dirt"/>
<brush name="swamp"/>
<brush name="dark swamp"/>
<brush name="walkable swamp"/>
<brush name="light dirt"/>
<brush name="tar pit"/>
<brush name="white gravel"/>
<brush name="loose gravel"/>
<brush name="gravel"/>
<brush name="mountain ground"/>
<brush name="mountain top ground"/>
<brush name="dirt mountain ground"/>
<brush name="dirt mountain ground (thick border)"/>
<brush name="rocky ground"/>
<brush name="frozen mud"/>
<brush name="frozen mud (thick border)"/>
<item id="3311"/>
</terrain>
<doodad>
<brush name="mossy wall"/>
<brush name="green fungi"/>
<brush name="plant wall"/>
<brush name="grass things"/>
<brush name="grass tufts"/>
<brush name="mossy stone"/>
<brush name="green trees"/>
<brush name="dead trees"/>
<brush name="trees"/>
<brush name="palm trees"/>
<brush name="broken palm trees"/>
<brush name="mangrove tree"/>
<brush name="dead mangrove tree"/>
<brush name="mangrove tree (on water)"/>
<brush name="dead mangrove tree (on water)"/>
<brush name="bushes"/>
<brush name="blueberry bushes"/>
<brush name="banana tree"/>
<brush name="mango tree"/>
<item id="6094"/>
<brush name="dead bushes"/>
<brush name="twines"/>
<brush name="swamp plants"/>
<brush name="flowers"/>
<brush name="herbs"/>
<item id="2801"/>
<item id="2759"/>
<item fromid="2737" toid="2739"/>
<brush name="yellow flowers"/>
<brush name="royal flowers"/>
<brush name="sunflowers"/>
<brush name="lilypads"/>
<brush name="roses"/>
<brush name="tall jungle grass"/>
<brush name="tall swamp grass"/>
<brush name="grass drift"/>
<item id="3323"/>
<item id="2785"/>
<brush name="log"/>
<brush name="log vines"/>
<brush name="log covered in moss"/>
<brush name="tree crown"/>
<brush name="branches"/>
<brush name="roots"/>
<brush name="bamboo plant"/>
<brush name="giant mushrooms"/>
<brush name="moldy giant mushrooms"/>
<brush name="moldy mushrooms"/>
<brush name="small mushrooms"/>
<brush name="jungle maw"/>
<brush name="straw mat"/>
<brush name="sugar cane stack"/>
<brush name="ant trails"/>
<brush name="swamp source"/>
<brush name="water source"/>
<brush name="waterfall"/>
<item fromid="8632"/> <!-- whirlpool -->
<item fromid="4875"/>
<item fromid="5677"/>
<brush name="mud cave rocks"/>
<brush name="stone cave rocks"/>
<brush name="mud cave rocks with stone"/>
<brush name="stone cave rocks with mud"/>
<brush name="cave wall twigs"/>
<brush name="spider web"/>
<brush name="webbed cocoon"/>
<brush name="webbed cocoon, closed"/>
<brush name="webbed cocoon, standing"/>
<brush name="webbed cocoon, lying"/>
<brush name="kamienie"/>
<brush name="blue cave crystal"/>
<brush name="light blue cave crystal"/>
<brush name="red cave crystal"/>
<brush name="green cave crystal"/>
<brush name="prism cave crystal"/>
<brush name="gray rocks"/>
<brush name="brown rocks"/>
<brush name="small rocks"/>
<brush name="staglamites"/>
<brush name="weird shaped stones"/>
<brush name="debris"/>
<brush name="lava hole"/>
<brush name="lava stream"/>
<brush name="gray rubble"/>
<brush name="brown rubble"/>
<brush name="rough gray rubble"/>
<brush name="rough brown rubble"/>
<brush name="mossy rocks"/>
<brush name="rubles"/>
<brush name="plant wall2"/>
<brush name="small stream blue"/>
<brush name="small stream green"/>
<brush name="demon oak"/>
<item fromid="8289" toid="8290"/>
</doodad>
<raw>
<item fromid="386" toid="391"/>
<item fromid="5750" toid="5754"/>
<item fromid="5866" toid="5868"/>
<item fromid="8633" toid="8640"/>
<item fromid="1499"/>
<item fromid="1285" toid="1359"/>
<item fromid="6423" toid="6432"/>
<item fromid="8139" toid="8159"/>
<item fromid="8166" toid="8167"/>
<item id="7024"/>
<item fromid="5092" toid="5096"/>
<item fromid="8785" toid="8791"/>
<item fromid="8792" toid="8796"/>
<item fromid="5156" toid="5157"/>
<item fromid="2697" toid="2786"/>
<item fromid="3311" toid="3347"/>
<item fromid="2569" toid="2574"/>
<item fromid="2798" toid="2805"/>
<item fromid="3603" toid="3677"/>
<item fromid="3984" toid="4250"/>
<item fromid="3569" toid="3574"/>
<item fromid="4468" toid="4513"/>
<item fromid="4826" toid="4827"/>
<item fromid="873" toid="878"/>
<item fromid="903" toid="917"/>
<item fromid="8632"/> <!-- whirlpool -->
<item id="6094"/>
<item fromid="4875"/>
<item fromid="5677"/>
<item id="4995"/>
<item fromid="7020" toid="7023"/>
<item fromid="4876" toid="4882"/>
<item fromid="6999" toid="7019"/>
<item fromid="6610" toid="6611"/>
<item fromid="6707" toid="6727"/>
<item fromid="7536" toid="7550"/>
<item id="7551"/>
<item id="7552"/>
<item id="7553"/>
<item fromid="7554" toid="7557"/>
<item fromid="7566"/>
<item fromid="7585" toid="7586"/>
<item fromid="6216" toid="6233"/>
<item fromid="6271" toid="6276"/>
<item fromid="6180" toid="6191"/>
<item fromid="5390" toid="5399"/>
<item fromid="8797" toid="8818"/>
<item fromid="8288" toid="8291"/>
<item fromid="8770" toid="8776"/>
<item fromid="8324" toid="8325"/>
<item fromid="8416" toid="8417"/>
<item fromid="8214" toid="8240"/>
</raw>
</tileset>
<tileset name="Cave">
<terrain>
<brush name="earth"/>
<brush name="earth (stone border)"/>
<brush name="cave"/>
<brush name="cave (alternate border)"/>
<brush name="cave hole"/>
<brush name="cave ropespot"/>
<brush name="cave small hole"/>
<brush name="cave pickhole"/>
<brush name="dirt"/>
<brush name="clear water"/>
<brush name="lava"/>
<brush name="melting ground"/>
<brush name="void"/>
</terrain>
</tileset>
<tileset name="Snow">
<terrain>
<brush name="sea"/>
<brush name="walkable sea"/>
<brush name="mountain"/>
<brush name="snowy mountain"/>
<brush name="icy mountain"/>
<brush name="icy earth"/>
<brush name="snowy ramp"/>
<brush name="ramp"/>
<brush name="snow"/>
<brush name="ice"/>
<brush name="ice floe"/>
<brush name="white gravel"/>
<brush name="ice stone floor"/>
<brush name="mountain ground"/>
<brush name="mountain top ground"/>
<brush name="rocky ground"/>
<brush name="frozen mud"/>
<brush name="frozen mud (thick border)"/>
<brush name="fur carpet"/>
</terrain>
<doodad>
<brush name="snowy dead trees"/>
<brush name="snowy alive trees"/>
<brush name="dead trees"/>
<brush name="snowy trees"/>
<brush name="snowy rocks"/>
<brush name="small snowy rocks"/>
<brush name="ice floe"/>
<brush name="snow drift"/>
<brush name="iceberg"/>
<brush name="floating ice"/>
</doodad>
</tileset>
<tileset name="Town">
<terrain>
<brush name="stone floor"/>
<brush name="cobblestone"/>
<brush name="dark cobblestone"/>
<brush name="ugly cobblestone"/>
<brush name="grassy cobblestone"/>
<brush name="lawn"/>
<brush name="wooden floor"/>
<brush name="wooden floor (with border)"/>
<brush name="pavement"/>
<brush name="drawbridge"/>
<brush name="dark wooden floor"/>
<brush name="drab tiled stone floor"/>
<brush name="dark tiled sandstone"/>
<brush name="tiled sandstone floor"/>
<brush name="tiled sandstone floor pressed"/>
<brush name="tiled sandstone floor depressed"/>
<brush name="light tiled stone floor"/>
<brush name="dark tiled stone floor"/>
<brush name="orange tiled floor"/>
<brush name="dark sandstone"/>
<brush name="sandstone"/>
<brush name="white marble floor"/>
<brush name="black marble floor"/>
<brush name="gray stone tiles"/>
<brush name="gray stone tiles pressed"/>
<brush name="gray stone tiles depressed"/>
<!-- <brush name="wooden raft"/> -->
</terrain>
</tileset>
<tileset name="Roofs">
<terrain>
<brush name="flat roof"/>
<brush name="scale roof"/>
<brush name="brown bamboo roof"/>
<brush name="green bamboo roof"/>
<brush name="stiff bamboo roof, horizontal"/>
<brush name="stiff bamboo roof, vertical"/>
<brush name="brick roof, left"/>
<brush name="brick roof, vertical"/>
<brush name="brick roof, right"/>
<brush name="brick roof, up"/>
<brush name="brick roof, horizontal"/>
<brush name="brick roof, down"/>
<brush name="wooden roof, up"/>
<brush name="wooden roof, horizontal"/>
<brush name="wooden roof, down"/>
<brush name="wooden roof, left"/>
<brush name="wooden roof, vertical"/>
<brush name="wooden roof, right"/>
<brush name="striped marquee red white, vertical"/>
<brush name="striped marquee red white, horizontal"/>
<brush name="striped marquee blue yellow, vertical"/>
<brush name="striped marquee blue yellow, horizontal"/>
<brush name="marquee green, vertical"/>
<brush name="marquee green, horizontal"/>
<brush name="marquee blue, vertical"/>
<brush name="marquee blue, horizontal"/>
</terrain>
<raw>
<item fromid="9092" toid="9099"/>
<item fromid="9100" toid="9106"/>
<item fromid="9400" toid="9404"/>
<item fromid="9537" toid="9560"/>
<item fromid="9759" toid="9766"/>
</raw>
</tileset>
<tileset name="Stairs">
<terrain>
<brush name="snowy ramp"/>
<brush name="ramp"/>
<brush name="bamboo ramp"/>
<item fromid="459"/>
<item fromid="1386"/>
<item fromid="3678"/>
<item fromid="5543"/>
<item fromid="1385"/>
<item fromid="1396"/>
<item fromid="5258" toid="5260"/>
<item fromid="3687" toid="3688"/>
<item fromid="7924" toid="7925"/>
<brush name="wooden ladder hole"/>
<brush name="wooden trapdoor"/>
<brush name="stairs down"/>
<brush name="trapdoor down"/>
<brush name="trapdoor ladder down"/>
<brush name="trapdoor ladder down"/>
<brush name="stone stairway"/>
<brush name="black stone stairs"/>
<brush name="black stone trapdoor"/>
<brush name="gray stone stairs"/>
<brush name="gray stone trapdoor"/>
<brush name="pyramid ramp"/>
</terrain>
</tileset>
<tileset name="Boats">
<raw>
<item fromid="4883" toid="4947"/>
<item fromid="4403"/>
<item fromid="3601" toid="3602"/>
<item fromid="4948" toid="4991"/>
<item fromid="4998" toid="5008"/>
<item fromid="5082" toid="5085"/>
<item fromid="1277" toid="1284"/>
<item fromid="3587" toid="3600"/>
</raw>
</tileset>
<tileset name="Sea">
<raw>
<item fromid="2226"/>
<item fromid="2240"/>
<item fromid="5405" toid="5410"/>
<item fromid="5427" toid="5438"/>
<item fromid="5743" toid="5744"/>
<item fromid="5763" toid="5764"/>
<item fromid="5554"/>
<item fromid="5411" toid="5426"/>
<item fromid="5439" toid="5460"/>
<item fromid="5678" toid="5682"/>
<item fromid="5811"/>
<item fromid="3607" toid="3616"/>
<item fromid="5631" toid="5654"/>
</raw>
</tileset>
<tileset name="Hangables">
<doodad>
<brush name="wall chain"/>
<brush name="hanging skull"/>
<brush name="hanging triple skull"/>
<brush name="cobra wall statue"/>
<brush name="head stone cobra"/>
<brush name="head stone cobra with fumes"/>
<brush name="wall lamp"/>
<brush name="wall lamp - lit"/>
<brush name="wall torch"/>
<brush name="wall torch - lit"/>
<brush name="wall candle"/>
<brush name="wall candle - lit"/>
<brush name="bambu wall torch"/>
<brush name="bambu wall torch - lit"/>
<brush name="cage wall lamp"/>
<brush name="cage wall lamp - lit"/>
<brush name="tapestry king"/>
<item id="1877"/>
<item id="1881"/>
<item id="1845"/>
<item id="1848"/>
<item id="1851"/>
<item id="1852"/>
<item id="1853"/>
<item id="1854"/>
<item id="1857"/>
<item id="1860"/>
<item id="1863"/>
<item id="1866"/>
<item id="1869"/>
<item id="1872"/>
<item id="1880"/>
<item id="1848"/>
<brush name="pirate emblem"/>
<brush name="hanging swords"/>
<brush name="archer's shop sign"/>
<brush name="armor shop sign"/>
<brush name="weapon shop sign"/>
<brush name="tool shop sign"/>
<brush name="food shop sign"/>
<brush name="furniture shop sign"/>
<brush name="grape shop sign"/>
<brush name="banana shop sign"/>
<brush name="depot sign"/>
<brush name="post sign"/>
<brush name="gem shop sign"/>
</doodad>
<raw>
<item fromid="1809" toid="1902"/>
<item fromid="2037" toid="2040"/>
<item fromid="2058" toid="2061"/>
<item fromid="2066" toid="2069"/>
<item fromid="9415" toid="9416"/>
<item fromid="9424" toid="9433"/>
<item fromid="9449" toid="9459"/>
<item fromid="9495" toid="9520"/>
<item fromid="9583" toid="9585"/>
<item fromid="9605"/>
<item fromid="9637" toid="9638"/>
<item fromid="9656" toid="9657"/>
<item fromid="9669" toid="9670"/>
<item fromid="9835" toid="9836"/>
<item fromid="9838" toid="9845"/>
</raw>
</tileset>
<tileset name="Interior">
<doodad>
<brush name="depot"/>
<brush name="small drawer"/>
<brush name="flashy drawer"/>
<brush name="pendulum clock"/>
<brush name="normal wardrobe"/>
<brush name="tall locker"/>
<brush name="mirror stand"/>
<brush name="wooden counter"/>
<brush name="store counter"/>
<brush name="big brown table, horizontal"/>
<brush name="big brown table, vertical"/>
<brush name="bambu drawer"/>
<brush name="bambu bookcase"/>
<brush name="bambu bookcase with books"/>
<brush name="bambu wardrobe"/>
<brush name="bookcase"/>
<item id="1738"/>
<item id="1739"/>
<brush name="wooden chest"/>
<item id="1741"/>
<item id="1746"/>
<brush name="large trunk"/>
<brush name="wooden coffin"/>
<brush name="large cask"/>
<item id="1770"/>
<item id="1771"/>
<item id="1772"/>
<item id="1773"/>
<item id="1774"/>
<item id="1775"/>
<item fromid="2100" toid="2107"/>
<item id="1777"/>
<item id="2034"/>
<brush name="oven - on"/>
<brush name="oven - off"/>
<brush name="map board"/>
<item id="2334"/>
<item id="2555"/>
<item fromid="6502"/>
<!-- music -->
<item id="2192"/>
<item id="2180"/>
<brush name="piano"/>
<brush name="harp"/>
<!-- tables -->
<item id="1614"/>
<item id="1615"/>
<item id="1616"/>
<item id="1619"/>
<!-- chairs -->
<brush name="wooden chair"/>
<brush name="rocking chair"/>
<brush name="red cushioned chair"/>
<brush name="green cushioned chair"/>
<brush name="sofa chair"/>
<brush name="green sofa"/>
<brush name="redwhite sofa"/>
<brush name="bench"/>
<brush name="gilded throne"/>
<brush name="dull throne"/>
<brush name="large throne"/>
<brush name="stone throne"/>
<!-- carpets -->
<brush name="brown bear skin rug"/>
<brush name="white bear skin rug"/>
<brush name="bear skin rug"/>
<brush name="red carpet"/>
<brush name="blue carpet"/>
<brush name="green carpet"/>
<brush name="brown carpet"/>
<brush name="old carpet"/>
<brush name="oriental carpet"/>
</doodad>
<raw>
<item fromid="1602" toid="1808"/>
<item fromid="2034"/>
<item fromid="2064" toid="2065"/>
<item fromid="2070" toid="2079"/>
<item fromid="2108" toid="2119"/>
<item fromid="2080" toid="2085"/>
<item fromid="2093" toid="2099"/>
<item fromid="1947" toid="1986"/>
<item fromid="2100" toid="2107"/>
<item fromid="2180"/>
<item fromid="2192"/>
<item fromid="2556" toid="2577"/>
<item fromid="2581" toid="2588"/>
<item fromid="2589" toid="2592"/>
<item fromid="2594"/>
<item fromid="2606" toid="2609"/>
<item fromid="2614" toid="2615"/>
<item fromid="3805" toid="3843"/>
<item fromid="4394" toid="4402"/>
<item fromid="7778" toid="7822"/>
<item fromid="7841" toid="7843"/>
<item fromid="5496" toid="5503"/>
<item fromid="5854" toid="5863"/>
<item fromid="5915" toid="5916"/>
<item fromid="5869" toid="5874"/>
<item fromid="6356" toid="6363"/>
<item fromid="6368" toid="6371"/>
<item fromid="5569" toid="5595"/>
<item fromid="4394" toid="4402"/>
<item fromid="7160" toid="7170"/>
<item fromid="9435" toid="9440"/>
<item fromid="9443" toid="9447"/>
<item fromid="9611" toid="9623"/>
<item fromid="9626" toid="9630"/>
<item fromid="9837"/>
<item fromid="9941" toid="9942"/>
<item fromid="9956" toid="9959"/>
<item fromid="9972" toid="9973"/>
<item fromid="9975" toid="9979"/>
<!-- potted plants -->
<item fromid="6502"/>
<item fromid="7655"/>
<item fromid="7665"/>
<item fromid="7670"/>
<item fromid="7674" toid="7695"/>
<item fromid="9982" toid="9991"/>
</raw>
</tileset>
<tileset name="Beds">
<doodad>
<!-- beds -->
<brush name="normal bed"/>
<brush name="normal bed with sleeper"/>
<brush name="cot"/>
<brush name="cot with sleeper"/>
<brush name="hammock"/>
<brush name="hammock with sleeper"/>
<brush name="hay bed"/>
<brush name="hay bed with sleeper"/>
</doodad>
</tileset>
<tileset name="Statues">
<doodad>
<item fromid="1444" toid="1445"/>
<item fromid="1448" toid="1449"/>
<brush name="knight statue"/>
<brush name="mage statue"/>
<brush name="king statue"/>
<brush name="dwarven king statue"/>
<brush name="amazon statue"/>
<brush name="bitter dwarf statue"/>
<brush name="angry dwarf statue"/>
<brush name="minotaur statue"/>
<brush name="goblin statue"/>
<brush name="gargoyle statue"/>
<brush name="gargoyle statue pedestal"/>
<brush name="cobra statue"/>
<brush name="cobra statue pedestal"/>
<brush name="female statue"/>
<brush name="female statue with flame"/>
<brush name="hunter statue"/>
<brush name="hydra fight statue"/>
<brush name="snake charmer statue"/>
<brush name="lizard statue"/>
<brush name="broken lizard statue"/>
<brush name="giant snake head statue"/>
<brush name="giant snake head statue (open)"/>
<brush name="giant hand statue"/>
<item fromid="1450" toid="1451"/>
<item fromid="7823" toid="7826"/>
<brush name="statue1"/>
<brush name="stone monkey"/>
</doodad>
</tileset>
<tileset name="Exterior">
<doodad>
<item id="1387"/>
<item id="1945"/>
<item id="2334"/>
<item id="2555"/>
<item id="6972"/>
<item id="6973"/>
<item id="2320"/>
<item id="3981"/>
<brush name="skeletons"/>
<brush name="big footprint"/>
<brush name="draw well"/>
<brush name="vertical mill"/>
<brush name="horizontal mill"/>
<brush name="cobweb"/>
<brush name="gray cloth wall"/>
<brush name="brown cloth wall"/>
<brush name="tanned tiger fur"/>
<brush name="brown mammoth fur"/>
<brush name="stone altar"/>
<brush name="decorative altar"/>
<brush name="railways"/>
<brush name="railway cart"/>
<brush name="dwarven machine"/>
<item id="7919"/>
<brush name="fishing net"/>
<brush name="cracks"/>
<brush name="lumberjack stuff"/>
<brush name="leaning planks"/>
<brush name="planks"/>
<brush name="ballista"/>
<brush name="catapult"/>
<brush name="torture machine"/>
<brush name="torture locker"/>
<brush name="turtle"/>
<brush name="archery target"/>
<brush name="archery target totem"/>
<brush name="stuck arrow"/>
<brush name="stuck axe"/>
<brush name="pillory"/>
<!-- graves -->
<item fromid="1406" toid="1409"/>
<!-- coffins -->
<brush name="stone coffin (no rose)"/>
<brush name="stone coffin (yellow rose)"/>
<brush name="stone coffin (blue rose)"/>
<brush name="stone coffin (red rose)"/>
<brush name="buried stone coffin"/>
<brush name="sarcophagus"/>
<!-- campfires -->
<item fromid="1421" toid="1428"/>
<item fromid="1481" toid="1486"/>
<item fromid="2601" toid="2605"/>
<brush name="large cauldron"/>
<brush name="large cauldron with fire"/>
<!-- fountains -->
<brush name="ancient fountain - off"/>
<brush name="ancient fountain - on"/>
<brush name="water well"/>
<brush name="lava fountain"/>
<brush name="marble fountain - on"/>
<brush name="marble fountain - off"/>
<item id="1378"/>
<brush name="normal fountain - on"/>
<brush name="normal fountain - off"/>
<brush name="wall fountain"/>
<!-- tents -->
<brush name="gray striped tent"/>
<brush name="red striped tent"/>
<brush name="garish striped tent"/>
<!-- misc -->
<brush name="white caravan wagon"/>
<brush name="caravan wagon chassis"/>
<brush name="orc wagon"/>
<!-- uber skeleton -->
<item fromid="8388" toid="8415"/>
</doodad>
<raw>
<item fromid="486"/>
<item fromid="1280" toid="1283"/>
<item fromid="1360" toid="1385"/>
<item fromid="1406" toid="1420"/>
<item fromid="1421" toid="1428"/>
<item fromid="1429" toid="1486"/>
<item fromid="8834" toid="8837"/>
<item fromid="8877" toid="8880"/>
<item fromid="8777" toid="8780"/>
<item fromid="8625" toid="8626"/>
<item fromid="8615" toid="8616"/>
<item fromid="8834" toid="8837"/>
<item fromid="8418" toid="8422"/>
<item fromid="2219" toid="2259"/>
<item fromid="2334"/>
<item fromid="2555"/>
<item fromid="2593"/>
<item fromid="2601" toid="2605"/>
<item fromid="2610" toid="2613"/>
<item fromid="2616" toid="2623"/>
<item fromid="3697" toid="3710"/>
<item fromid="3715" toid="3726"/>
<item fromid="3718" toid="3742"/>
<item fromid="3802" toid="3804"/>
<item fromid="5046"/>
<item fromid="4875"/>
<item fromid="5677"/>
<item fromid="7911" toid="7919"/>
<item fromid="5055" toid="5056"/>
<item fromid="5074" toid="5079"/>
<item fromid="5485" toid="5495"/>
<item fromid="5598" toid="5613"/>
<item fromid="5671" toid="5674"/>
<item fromid="5693" toid="5703"/>
<item fromid="3689" toid="3696"/>
<item fromid="3882" toid="3895"/>
<item fromid="5402" toid="5404"/>
<item fromid="5296" toid="5302"/>
<item fromid="6474" toid="6475"/>
<item fromid="5025" toid="5044"/>
<item fromid="5660" toid="5665"/>
<item fromid="5787" toid="5790"/>
<item fromid="5777" toid="5784"/>
<item fromid="6476" toid="6488"/>
<item fromid="6374" toid="6386"/>
<item fromid="8033" toid="8045"/>
<item fromid="7145" toid="7157"/>
<item fromid="2022"/>
<item fromid="2024"/>
<item fromid="2250" toid="2259"/>
<item fromid="4860"/>
<item fromid="4862"/>
<item fromid="5332" toid="5389"/>
<item fromid="4580" toid="4594"/>
<item fromid="7605" toid="7616"/>
<item fromid="1510" toid="1513"/>
<item fromid="1946"/>
<item fromid="1906" toid="1908"/>
<item fromid="3844" toid="3860"/>
<item fromid="8724" toid="8739"/>
<item fromid="7121" toid="7136"/>
<item fromid="9588" toid="9604"/>
<item fromid="9235" toid="9238"/>
<item fromid="9239" toid="9244"/>
<item fromid="9441" toid="9442"/>
<item fromid="9460" toid="9469"/>
<item fromid="9487" toid="9494"/>
<item fromid="9531"/>
<item fromid="9534"/>
<item fromid="9571" toid="9572"/>
<item fromid="9575" toid="9582"/>
<item fromid="9751" toid="9752"/>
<item fromid="9768" toid="9771"/>
<item fromid="9825" toid="9828"/>
<item fromid="9884" toid="9912"/>
<item fromid="9948" toid="9949"/>
<item fromid="9953" toid="9954"/>
<item fromid="9304" toid="9306"/>
</raw>
</tileset>
<tileset name="Signs">
<doodad>
<!-- signs -->
<brush name="tavern sign"/>
<brush name="large shop sign"/>
<brush name="large archer's shop sign"/>
<brush name="large armor shop sign"/>
<brush name="large weapon shop sign"/>
<brush name="large tool shop sign"/>
<brush name="large food shop sign"/>
<brush name="large furniture shop sign"/>
<brush name="large grape shop sign"/>
<brush name="large banana shop sign"/>
<brush name="large depot sign"/>
<brush name="large post sign"/>
<brush name="large gem shop sign"/>
<brush name="large tavern sign"/>
<item fromid="1429" toid="1441"/>
</doodad>
</tileset>
<tileset name="Splash">
<doodad>
<brush name="blood"/>
<brush name="bloodwall"/>
<item id="2016"/>
<item id="2017"/>
<item id="2018"/>
<item id="2019"/>
<item id="2020"/>
<item id="2021"/>
<item id="1903"/>
<item id="1904"/>
<item id="1905"/>
</doodad>
<raw>
<item id="2016"/>
<item id="2017"/>
<item id="2018"/>
<item id="2019"/>
<item id="2020"/>
<item id="2021"/>
<item id="1903"/>
<item id="1904"/>
<item id="1905"/>
<item fromid="2025" toid="2030"/>
</raw>
</tileset>
<tileset name="Equipment">
<items_and_raw>
<!-- helmets -->