forked from Drakim/smb3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.xml
5150 lines (5113 loc) · 399 KB
/
game.xml
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
<!-- This file is used by the NoDice editor, not strictly required for the disassembly -->
<game>
<config>
<configitem name="title" value="Super Mario Bros. 3" />
<!-- Hack enable for World 9 (or otherwise specified) warp zone world
Disables map objects and properties window will set world destination
-->
<configitem name="warpzone" value="9" />
<!-- Filename for bank where object sets for levels exists -->
<configitem name="objectsetbank" value="prg006" />
</config>
<!-- This just configures the labeling for the "options" component of
the level header, i.e. the 5 bytes that come after the layout
and object list pointers. This is mainly to provide a mechanism
for a mod to specify its own labels and options but still make
generated assembler files human-readable and allow some editor
customization without redoing the editor ... of course, this is
limited, and any severe differences will require customizing the
editor most likely, but we'll see...
<options /> blocks define a group of options that have the same
bit mask ("mask") and bit shift ("shift", i.e. number of bits
the value must be shifted to the left); "display" is how the
option list appears labeled on the GUI.
Note that if there is only 1 <option /> element within an <options />
block, it is assumed the value is boolean and will be a checkbox
rather than a combobox, with the toggle value implicitly the mask.
-->
<levelheader>
<header1>
<options mask="00001111" shift="0" display="Number of 'Screens' Wide (Non-vertical) / Tall (Vertical):" >
<option label="LEVEL1_SIZE_01" display="1" value="0" />
<option label="LEVEL1_SIZE_02" display="2" value="1" />
<option label="LEVEL1_SIZE_03" display="3" value="2" />
<option label="LEVEL1_SIZE_04" display="4" value="3" />
<option label="LEVEL1_SIZE_05" display="5" value="4" />
<option label="LEVEL1_SIZE_06" display="6" value="5" />
<option label="LEVEL1_SIZE_07" display="7" value="6" />
<option label="LEVEL1_SIZE_08" display="8" value="7" />
<option label="LEVEL1_SIZE_09" display="9" value="8" />
<option label="LEVEL1_SIZE_10" display="10" value="9" />
<option label="LEVEL1_SIZE_11" display="11" value="10" />
<option label="LEVEL1_SIZE_12" display="12" value="11" />
<option label="LEVEL1_SIZE_13" display="13" value="12" />
<option label="LEVEL1_SIZE_14" display="14" value="13" />
<option label="LEVEL1_SIZE_15" display="15" value="14" />
<option label="LEVEL1_SIZE_16" display="16 (vertical only)" value="15" />
</options>
<options mask="00010000" shift="4" display="2P Vs Unknown Flag:">
<option label="LEVEL1_2PVS" />
</options>
<options mask="11100000" shift="5" display="Player Y position:" >
<option label="LEVEL1_YSTART_000" display="Y = $000 (0 rows in)" value="2"/>
<option label="LEVEL1_YSTART_040" display="Y = $040 (4 rows in)" value="1"/>
<option label="LEVEL1_YSTART_070" display="Y = $070 (7 rows in)" value="4"/>
<option label="LEVEL1_YSTART_0B0" display="Y = $0B0 (11 rows in)" value="5"/>
<option label="LEVEL1_YSTART_0F0" display="Y = $0F0 (15 rows in)" value="6"/>
<option label="LEVEL1_YSTART_140" display="Y = $140 (20 rows in)" value="3"/>
<option label="LEVEL1_YSTART_170" display="Y = $170 (23 rows in)" value="0" />
<option label="LEVEL1_YSTART_180" display="Y = $180 (24 rows in)" value="7"/>
</options>
</header1>
<header2>
<options mask="00000111" shift="0" display="BG Palette:">
<option label="LEVEL2_BGPAL_00" display="Palette 1" value="0" />
<option label="LEVEL2_BGPAL_01" display="Palette 2" value="1" />
<option label="LEVEL2_BGPAL_02" display="Palette 3" value="2" />
<option label="LEVEL2_BGPAL_03" display="Palette 4" value="3" />
<option label="LEVEL2_BGPAL_04" display="Palette 5" value="4" />
<option label="LEVEL2_BGPAL_05" display="Palette 6" value="5" />
<option label="LEVEL2_BGPAL_06" display="Palette 7" value="6" />
<option label="LEVEL2_BGPAL_07" display="Palette 8" value="7" />
</options>
<options mask="00011000" shift="3" display="Object Palette:">
<option label="LEVEL2_OBJPAL_08" display="Palette 1 (8)" value="0" />
<option label="LEVEL2_OBJPAL_09" display="Palette 2 (9)" value="1" />
<option label="LEVEL2_OBJPAL_10" display="Palette 3 (10)" value="2" />
<option label="LEVEL2_OBJPAL_11" display="Palette 4 (11)" value="3" />
</options>
<options mask="01100000" shift="5" display="Player X position:">
<option label="LEVEL2_XSTART_18" display="X = $18 (1.5 columns over)" value="0" />
<option label="LEVEL2_XSTART_70" display="X = $70 (7 columns over)" value="1" />
<option label="LEVEL2_XSTART_D8" display="X = $D8 (13.5 columns over)" value="2" />
<option label="LEVEL2_XSTART_80" display="X = $80 (8 columns over)" value="3" />
</options>
<options mask="10000000" shift="7" display="Unknown flag:">
<option label="LEVEL2_UNUSEDFLAG" />
</options>
</header2>
<header3>
<options mask="00001111" shift="0" display="Tileset of Alternate Level:">
<option label="LEVEL3_TILESET_00" display="Tileset 0 (World Map, not valid)" value="0" />
<option label="LEVEL3_TILESET_01" display="Tileset 1 (Plains)" value="1" />
<option label="LEVEL3_TILESET_02" display="Tileset 2 (Fortress)" value="2" />
<option label="LEVEL3_TILESET_03" display="Tileset 3 (Hills)" value="3" />
<option label="LEVEL3_TILESET_04" display="Tileset 4 (High-Up)" value="4" />
<option label="LEVEL3_TILESET_05" display="Tileset 5 (Plant Infestation)" value="5" />
<option label="LEVEL3_TILESET_06" display="Tileset 6 (Underwater)" value="6" />
<option label="LEVEL3_TILESET_07" display="Tileset 7 (Toad House)" value="7" />
<option label="LEVEL3_TILESET_08" display="Tileset 8 (Pipe Maze)" value="8" />
<option label="LEVEL3_TILESET_09" display="Tileset 9 (Desert)" value="9" />
<option label="LEVEL3_TILESET_10" display="Tileset 10 (Airship)" value="10" />
<option label="LEVEL3_TILESET_11" display="Tileset 11 (Giant World)" value="11" />
<option label="LEVEL3_TILESET_12" display="Tileset 12 (Ice)" value="12" />
<option label="LEVEL3_TILESET_13" display="Tileset 13 (Sky)" value="13" />
<option label="LEVEL3_TILESET_14" display="Tileset 14 (Underground)" value="14" />
</options>
<options mask="00010000" shift="4" display="Level is Vertical:">
<option label="LEVEL3_VERTICAL" />
</options>
<options mask="01100000" shift="5" display="Vertical scroll:">
<option label="LEVEL3_VSCROLL_LOCKLOW" display="Lock low (unless flying/climbing)" value="0" />
<option label="LEVEL3_VSCROLL_FREE" display="Unrestricted" value="1" />
<option label="LEVEL3_VSCROLL_LOCKED" display="Lock high/low by start" value="2" />
</options>
<options mask="10000000" shift="7" display="Entering pipe does NOT exit level (MUST set for doors):">
<option label="LEVEL3_PIPENOTEXIT" />
</options>
</header3>
<header4>
<options mask="00011111" shift="0" display="BG pattern bank index:">
<option label="0 & %00011111" display="Not Used" value="0" />
<option label="1 & %00011111" display="Plains" value="1" />
<option label="2 & %00011111" display="Fortress" value="2" />
<option label="3 & %00011111" display="Underground" value="3" />
<option label="4 & %00011111" display="High-Up" value="4" />
<option label="5 & %00011111" display="Plant Infestation" value="5" />
<option label="6 & %00011111" display="Underwater" value="6" />
<option label="7 & %00011111" display="Toad House" value="7" />
<option label="8 & %00011111" display="Pipe Maze" value="8" />
<option label="9 & %00011111" display="Desert" value="9" />
<option label="0 & %00011111" display="Airship" value="10" />
<option label="1 & %00011111" display="Giant world" value="11" />
<option label="2 & %00011111" display="Ice" value="12" />
<option label="3 & %00011111" display="Sky" value="13" />
<option label="4 & %00011111" display="Not Used" value="14" />
<option label="5 & %00011111" display="Bonus Room" value="15" />
<option label="6 & %00011111" display="Spade (Roulette)" value="16" />
<option label="7 & %00011111" display="N-Spade (Card)" value="17" />
<option label="8 & %00011111" display="2P Vs" value="18" />
<option label="9 & %00011111" display="Hills" value="19" />
<option label="0 & %00011111" display="3-7 only" value="20" />
<option label="1 & %00011111" display="World 8 War Vehicle" value="21" />
<option label="2 & %00011111" display="Throne Room" value="22" />
</options>
<options mask="11100000" shift="5" display="Initial action:" >
<option label="LEVEL4_INITACT_NOTHING" display="Nothing" value="0" />
<option label="LEVEL4_INITACT_SLIDE" display="Start sliding (if able)" value="1" />
<option label="LEVEL4_INITACT_PIPE_T" display="Exiting top of pipe" value="2" />
<option label="LEVEL4_INITACT_PIPE_B" display="Exiting bottom of pipe" value="3" />
<option label="LEVEL4_INITACT_PIPE_R" display="Exiting right of pipe" value="4" />
<option label="LEVEL4_INITACT_PIPE_L" display="Exiting left of pipe" value="5" />
<option label="LEVEL4_INITACT_AIRSHIP" display="Airship Run and Jump" value="6" />
<option label="LEVEL4_INITACT_AIRSHIPB" display="Airship landing" value="7" />
</options>
</header4>
<header5>
<options mask="00001111" shift="0" display="Level music:">
<option label="LEVEL5_BGM_OVERWORLD" display="Overworld" value="0" />
<option label="LEVEL5_BGM_UNDERGROUND" display="Underground" value="1" />
<option label="LEVEL5_BGM_UNDERWATER" display="Underwater" value="2" />
<option label="LEVEL5_BGM_FORTRESS" display="Fortress" value="3" />
<option label="LEVEL5_BGM_BOSS" display="Boss" value="4" />
<option label="LEVEL5_BGM_AIRSHIP" display="Airship" value="5" />
<option label="LEVEL5_BGM_BATTLE" display="Battle" value="6" />
<option label="LEVEL5_BGM_TOADHOUSE" display="Toad House" value="7" />
<option label="LEVEL5_BGM_ATHLETIC" display="Athletic" value="8" />
<option label="LEVEL5_BGM_THRONEROOM" display="Throne Room" value="9" />
<option label="LEVEL5_BGM_SKY" display="Sky" value="10" />
</options>
<options mask="11000000" shift="6" display="Time:">
<option label="LEVEL5_TIME_200" display="200" value="2" />
<option label="LEVEL5_TIME_300" display="300" value="0" />
<option label="LEVEL5_TIME_400" display="400" value="1" />
<option label="LEVEL5_TIME_UNLIMITED" display="Unlimited" value="3" />
</options>
</header5>
</levelheader>
<jctheader>
<options mask="00001111" shift="0" display="Entry style:" >
<option display="Via Pipe: Exiting top" value="1" />
<option display="Via Pipe: Exiting bottom" value="2" />
<option display="Via Pipe: Exiting right" value="3" />
<option display="Via Pipe: Exiting left" value="4" />
<option display="Via Door" value="8" />
<option display="INVALID" value="15" /> <!-- Needed to handle NoDice's silly default -->
</options>
<!-- Label field is used specially here as Yxxx to define the Jct Y position -->
<options mask="01110000" shift="4" display="Y position:" >
<option label="Y000" display="Y = $000 (0 rows in) / Vert top" value="0"/>
<option label="Y040" display="Y = $040 (4 rows in) / Vert near top" value="1"/>
<option label="Y070" display="Y = $070 (7 rows in) / Vert buggy" value="2"/>
<option label="Y0B0" display="Y = $0B0 (11 rows in) / Vert unusable" value="3"/>
<option label="Y0F0" display="Y = $0F0 (15 rows in) / Vert unusable" value="4"/>
<option label="Y140" display="Y = $140 (20 rows in) / Vert bottom near top" value="5"/>
<option label="Y170" display="Y = $170 (23 rows in) / Vert bottom middle" value="6" />
<option label="Y180" display="Y = $180 (24 rows in) / Vert bottom" value="7"/>
</options>
<options mask="10000000" shift="7" display="Dest Vertical:">
<option />
</options>
</jctheader>
<!-- Not including objects that are undefined or illogical to place, i.e. some incidental
objects such as the one created to bounce the Player when he bumps a block... -->
<objects>
<object id="0x07" label="OBJ_WARPHIDE" name="Z Special Hidden Whistle" desc="Hidden object that jumps you to the secret warp whistle in 1-3" />
<object id="0x08" label="OBJ_PSWITCHDOOR" name="Door when P-Switched" desc="Door that appears under influence of P-Switch" />
<object id="0x09" label="OBJ_AIRSHIPANCHOR" name="Airship Anchor" desc="Airship anchor" />
<object id="0x0B" label="OBJ_POWERUP_1UP" name="Power-Up 1-Up" desc="1-Up Mushroom">
<sprite x="0" y="0" bank="4" pattern="0x10" palette="2" />
<sprite x="8" y="0" bank="4" pattern="0x10" palette="2" hflip="1" />
</object>
<object id="0x0C" label="OBJ_POWERUP_STARMAN" name="Power-Up Starman" desc="Starman (primarily, but also the super suits -- Tanooki, Frog, Hammer)">
<sprite x="0" y="0" bank="4" pattern="0x14" palette="1" />
<sprite x="8" y="0" bank="4" pattern="0x14" palette="1" hflip="1" />
</object>
<object id="0x0D" label="OBJ_POWERUP_MUSHROOM" name="Power-Up Mushroom" desc="Super Mushroom">
<sprite x="0" y="0" bank="4" pattern="0x10" palette="1" />
<sprite x="8" y="0" bank="4" pattern="0x10" palette="1" hflip="1" />
</object>
<object id="0x0E" label="OBJ_BOSS_KOOPALING" name="Boss Koopaling" desc="Koopaling (as appropriate to current world)" />
<object id="0x17" label="OBJ_SPINYCHEEP" name="Spiny Cheep" desc="Spiny cheep">
<sprite x="0" y="0" bank="26" pattern="0x26" palette="3" />
<sprite x="8" y="0" bank="26" pattern="0x28" palette="3" />
</object>
<object id="0x18" label="OBJ_BOSS_BOWSER" name="Boss Bowser" desc="King Bowser">
<sprite x="0" y="0" bank="58" pattern="0x0" palette="3" />
<sprite x="8" y="0" bank="58" pattern="0x2" palette="3" />
<sprite x="16" y="0" bank="58" pattern="0x4" palette="3" />
<sprite x="0" y="16" bank="58" pattern="0x6" palette="3" />
<sprite x="8" y="16" bank="58" pattern="0x8" palette="3" />
<sprite x="16" y="16" bank="58" pattern="0xA" palette="3" />
<sprite x="24" y="16" bank="58" pattern="0xC" palette="3" />
<sprite x="0" y="32" bank="58" pattern="0xE" palette="3" />
<sprite x="8" y="32" bank="58" pattern="0x10" palette="3" />
<sprite x="16" y="32" bank="58" pattern="0x12" palette="3" />
<sprite x="24" y="32" bank="58" pattern="0x14" palette="3" />
</object>
<object id="0x19" label="OBJ_POWERUP_FIREFLOWER" name="Power-Up Fire Flower" desc="Fire flower">
<sprite x="0" y="0" bank="4" pattern="0x12" palette="2" />
<sprite x="8" y="0" bank="4" pattern="0x12" palette="2" hflip="1" />
</object>
<object id="0x1E" label="OBJ_POWERUP_SUPERLEAF" name="Power-Up Leaf" desc="Falling super leaf">
<sprite x="0" y="0" bank="4" pattern="0x1C" palette="1" />
<sprite x="8" y="0" bank="4" pattern="0x1E" palette="1" />
</object>
<object id="0x1F" label="OBJ_GROWINGVINE" name="Growing Vine" desc="Growing vine" />
<object id="0x21" label="OBJ_POWERUP_MUSHCARD" name="Power-Up Mushroom Card (Unused)" desc="Free mushroom card ????">
<sprite x="0" y="0" bank="4" pattern="0x10" palette="0" />
<sprite x="8" y="0" bank="4" pattern="0x10" palette="0" hflip="1" />
</object>
<object id="0x22" label="OBJ_POWERUP_FIRECARD" name="Power-Up Flower Card (Unused)" desc="Free flower card ????">
<sprite x="0" y="0" bank="4" pattern="0x12" palette="0" />
<sprite x="8" y="0" bank="4" pattern="0x12" palette="0" hflip="1" />
</object>
<object id="0x23" label="OBJ_POWERUP_STARCARD" name="Power-Up Star Card (Unused)" desc="Free star card ????">
<sprite x="0" y="0" bank="4" pattern="0x14" palette="1" />
<sprite x="8" y="0" bank="4" pattern="0x14" palette="1" hflip="1" />
</object>
<object id="0x24" label="OBJ_CLOUDPLATFORM_FAST" name="Cloud Platform Fast" desc="Fast cloud platform">
<sprite x="0" y="0" bank="14" pattern="0x0" palette="1" />
<sprite x="8" y="0" bank="14" pattern="0x2" palette="1" />
<sprite x="16" y="0" bank="14" pattern="0x2" palette="1" />
<sprite x="24" y="0" bank="14" pattern="0x2" palette="1" />
<sprite x="32" y="0" bank="14" pattern="0x4" palette="1" />
</object>
<object id="0x25" label="OBJ_PIPEWAYCONTROLLER" name="Pipeway Controller" desc="Pipe Way Controller (World Map pipe-to-pipe location setter)">
<special>
<options mask="00011111" shift="0" display="Map jct index:" />
</special>
</object>
<object id="0x26" label="OBJ_WOODENPLAT_RIDER" name="Wood Platform Rider" desc="Log that rides you to the right after stepping on it">
<sprite x="0" y="0" bank="14" pattern="0x0E" palette="3" />
<sprite x="8" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="24" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="32" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="40" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="48" y="0" bank="14" pattern="0x1E" palette="3" />
</object>
<object id="0x27" label="OBJ_OSCILLATING_H" name="Wood H Oscillate Platform" desc="Horizontal oscillating log platform">
<sprite x="0" y="0" bank="14" pattern="0x0E" palette="3" />
<sprite x="8" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="24" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="32" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="40" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="48" y="0" bank="14" pattern="0x1E" palette="3" />
</object>
<object id="0x28" label="OBJ_OSCILLATING_V" name="Wood V Oscillate Platform" desc="Vertical Oscillating log platform">
<sprite x="0" y="0" bank="14" pattern="0x0E" palette="3" />
<sprite x="8" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="24" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="32" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="40" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="48" y="0" bank="14" pattern="0x1E" palette="3" />
</object>
<object id="0x29" label="OBJ_SPIKE" name="Spike (Enemy)" desc="Spike (the spike ball barfer)">
<sprite x="0" y="0" bank="10" pattern="0x0" palette="2" />
<sprite x="8" y="0" bank="10" pattern="0x2" palette="2" />
</object>
<object id="0x2A" label="OBJ_PATOOIE" name="Patooie" desc="Patooie">
<sprite x="8" y="6" bank="79" pattern="0x20" palette="1" />
<sprite x="16" y="6" bank="79" pattern="0x20" palette="1" hflip="1" />
<sprite x="8" y="22" bank="10" pattern="0x3C" palette="2" />
<sprite x="16" y="22" bank="10" pattern="0x3E" palette="2" />
</object>
<object id="0x2B" label="OBJ_GOOMBAINSHOE" name="Goomba in Kuribo's Shoe" desc="Goomba in Kuribo's Shoe (yes, I know Kuribo = Goomba, quiet)">
<sprite x="0" y="-8" bank="79" pattern="0x18" palette="3" />
<sprite x="8" y="-8" bank="79" pattern="0x1A" palette="3" hflip="1" />
<sprite x="0" y="0" bank="11" pattern="0x28" palette="2" />
<sprite x="8" y="0" bank="11" pattern="0x2C" palette="2" />
</object>
<object id="0x2C" label="OBJ_CLOUDPLATFORM" name="Cloud Platform" desc="Cloud platform">
<sprite x="0" y="0" bank="14" pattern="0x0" palette="1" />
<sprite x="8" y="0" bank="14" pattern="0x2" palette="1" />
<sprite x="16" y="0" bank="14" pattern="0x2" palette="1" />
<sprite x="24" y="0" bank="14" pattern="0x2" palette="1" />
<sprite x="32" y="0" bank="14" pattern="0x4" palette="1" />
</object>
<object id="0x2D" label="OBJ_BIGBERTHA" name="Boss Bass" desc="Boss Bass that eats you">
<sprite x="0" y="0" bank="26" pattern="0x0" palette="1" />
<sprite x="8" y="0" bank="26" pattern="0x2" palette="1" />
<sprite x="16" y="0" bank="26" pattern="0x4" palette="1" />
<sprite x="0" y="16" bank="26" pattern="0x6" palette="1" />
<sprite x="8" y="16" bank="26" pattern="0x8" palette="1" />
<sprite x="16" y="16" bank="26" pattern="0x10" palette="1" />
</object>
<object id="0x2E" label="OBJ_INVISIBLELIFT" name="InvisiLift to Y = 64" desc="Invisible (until touched) lift that goes up to fixed position of Y/Hi = 64">
<sprite x="0" y="16" bank="18" pattern="0x10" palette="2" />
<sprite x="8" y="16" bank="18" pattern="0x12" palette="2" />
<sprite x="16" y="16" bank="18" pattern="0x10" palette="2" />
<sprite x="24" y="16" bank="18" pattern="0x12" palette="2" />
</object>
<object id="0x2F" label="OBJ_BOO" name="Boo" desc="Boo Diddly">
<sprite x="0" y="0" bank="18" pattern="0x14" palette="1" />
<sprite x="8" y="0" bank="18" pattern="0x16" palette="1" />
</object>
<object id="0x30" label="OBJ_HOTFOOT_SHY" name="Hotfoot (Shy)" desc="Hot Foot (returns to flame if looked at)">
<sprite x="0" y="0" bank="18" pattern="0x0" palette="1" />
</object>
<object id="0x31" label="OBJ_BOOSTRETCH" name="Boo Stretch" desc="Stretch Boo, upright">
<sprite x="0" y="4" bank="18" pattern="0x28" palette="1" />
<sprite x="8" y="4" bank="18" pattern="0x2A" palette="1" />
</object>
<object id="0x32" label="OBJ_BOOSTRETCH_FLIP" name="Boo Stretch Flipped" desc="Stretch Boo, upside-down">
<sprite x="0" y="-4" bank="18" pattern="0x28" palette="1" vflip="1" />
<sprite x="8" y="-4" bank="18" pattern="0x2A" palette="1" vflip="1" />
</object>
<object id="0x33" label="OBJ_NIPPER" name="Nipper" desc="Stationary nipper plant">
<sprite x="0" y="0" bank="10" pattern="0x20" palette="2" />
<sprite x="8" y="0" bank="10" pattern="0x22" palette="2" />
</object>
<object id="0x34" label="OBJ_TOAD" name="Toad and Message" desc="Toad and his house message">
<sprite x="0" y="0" bank="5" pattern="0x38" palette="2" />
<sprite x="8" y="0" bank="5" pattern="0x3A" palette="2" />
<sprite x="0" y="16" bank="5" pattern="0x3C" palette="2" />
<sprite x="8" y="16" bank="5" pattern="0x3E" palette="2" />
</object>
<object id="0x36" label="OBJ_WOODENPLATFORM" name="Wood Hover Platform" desc="Floating wooden platform">
<sprite x="0" y="0" bank="14" pattern="0x0E" palette="3" />
<sprite x="8" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="24" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="32" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="40" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="48" y="0" bank="14" pattern="0x1E" palette="3" />
</object>
<object id="0x37" label="OBJ_OSCILLATING_HS" name="Wood H Short Oscillate Platform" desc="left/right short-oscillation log">
<sprite x="0" y="0" bank="14" pattern="0x0E" palette="3" />
<sprite x="8" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="24" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="32" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="40" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="48" y="0" bank="14" pattern="0x1E" palette="3" />
</object>
<object id="0x38" label="OBJ_OSCILLATING_VS" name="Wood V Short Oscillate Platform" desc="Up/down short-oscillation log">
<sprite x="0" y="0" bank="14" pattern="0x0E" palette="3" />
<sprite x="8" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="24" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="32" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="40" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="48" y="0" bank="14" pattern="0x1E" palette="3" />
</object>
<object id="0x39" label="OBJ_NIPPERHOPPING" name="Nipper (Hopping)" desc="Hopping nipper plant">
<sprite x="0" y="0" bank="10" pattern="0x20" palette="2" />
<sprite x="8" y="0" bank="10" pattern="0x22" palette="2" />
</object>
<object id="0x3B" label="OBJ_CHARGINGCHEEPCHEEP" name="Cheep Cheep Charger" desc="Charging, hopping cheep cheep">
<sprite x="0" y="0" bank="79" pattern="0x26" palette="1" />
<sprite x="8" y="0" bank="79" pattern="0x28" palette="1" />
</object>
<object id="0x3C" label="OBJ_WOODENPLATFORMFALL" name="Wood Platform Path Follower" desc="Wooden platform following path">
<sprite x="0" y="8" bank="14" pattern="0x0E" palette="3" />
<sprite x="8" y="8" bank="14" pattern="0x1C" palette="3" />
<sprite x="16" y="8" bank="14" pattern="0x1C" palette="3" />
<sprite x="24" y="8" bank="14" pattern="0x1C" palette="3" />
<sprite x="32" y="8" bank="14" pattern="0x1C" palette="3" />
<sprite x="40" y="8" bank="14" pattern="0x1E" palette="3" />
</object>
<object id="0x3D" label="OBJ_NIPPERFIREBREATHER" name="Nipper (Fire Spitting)" desc="Fire belching nipper plant">
<sprite x="0" y="0" bank="10" pattern="0x20" palette="2" />
<sprite x="8" y="0" bank="10" pattern="0x22" palette="2" />
</object>
<object id="0x3E" label="OBJ_WOODENPLATFORMFLOAT" name="Wood Float Platform" desc="Floating (on water) log">
<sprite x="0" y="0" bank="14" pattern="0x0E" palette="3" />
<sprite x="8" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="24" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="32" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="40" y="0" bank="14" pattern="0x1C" palette="3" />
<sprite x="48" y="0" bank="14" pattern="0x1E" palette="3" />
</object>
<object id="0x3F" label="OBJ_DRYBONES" name="Dry Bones" desc="Dry Bones">
<sprite x="0" y="-16" bank="19" pattern="0x00" palette="2" />
<sprite x="8" y="-16" bank="19" pattern="0x02" palette="2" />
<sprite x="0" y="0" bank="19" pattern="0x04" palette="2" />
<sprite x="8" y="0" bank="19" pattern="0x06" palette="2" />
</object>
<object id="0x40" label="OBJ_BUSTERBEATLE" name="Buster Beatle" desc="Buster Beatle">
<sprite x="0" y="0" bank="10" pattern="0x30" palette="3" />
<sprite x="8" y="0" bank="10" pattern="0x32" palette="3" />
</object>
<object id="0x41" label="OBJ_ENDLEVELCARD" name="Goal Card" desc="End-of-level card">
<sprite x="0" y="0" bank="4" pattern="0x10" palette="1" />
<sprite x="8" y="0" bank="4" pattern="0x10" palette="1" hflip="1" />
</object>
<object id="0x42" label="OBJ_CHEEPCHEEPPOOL2POOL" name="Cheep Cheep Pool-to-Pool 1" desc="Pool-to-pool-to-pool hopping cheep cheep">
<sprite x="0" y="0" bank="79" pattern="0x26" palette="1" />
<sprite x="8" y="0" bank="79" pattern="0x28" palette="1" />
</object>
<object id="0x43" label="OBJ_CHEEPCHEEPPOOL2POOL2" name="Cheep Cheep Pool-to-Pool 2" desc="Pool-to-pool hopping cheep cheep">
<sprite x="0" y="0" bank="79" pattern="0x26" palette="1" />
<sprite x="8" y="0" bank="79" pattern="0x28" palette="1" />
</object>
<object id="0x44" label="OBJ_WOODENPLATUNSTABLE" name="Wood Platform Path Wait" desc="Wooden platform following path after hopping on">
<sprite x="0" y="8" bank="14" pattern="0x0E" palette="3"></sprite>
<sprite x="8" y="8" bank="14" pattern="0x1C" palette="3"></sprite>
<sprite x="16" y="8" bank="14" pattern="0x1C" palette="3"></sprite>
<sprite x="24" y="8" bank="14" pattern="0x1C" palette="3"></sprite>
<sprite x="32" y="8" bank="14" pattern="0x1C" palette="3"></sprite>
<sprite x="40" y="8" bank="14" pattern="0x1E" palette="3"></sprite>
</object>
<object id="0x45" label="OBJ_HOTFOOT" name="Hotfoot (Not Shy, Unused)" desc="Hot Foot (randomly walks and stops, doesn't care if you stare)">
<sprite x="0" y="0" bank="18" pattern="0x0" palette="1" />
</object>
<object id="0x46" label="OBJ_PIRANHASPIKEBALL" name="Piranha and Spikeball" desc="Tall plant carrying spike ball">
<sprite x="8" y="0" bank="79" pattern="0x20" palette="1" />
<sprite x="16" y="0" bank="79" pattern="0x20" palette="1" hflip="1" />
<sprite x="8" y="16" bank="79" pattern="0x22" palette="2" />
<sprite x="16" y="16" bank="79" pattern="0x22" palette="2" hflip="1" />
</object>
<object id="0x48" label="OBJ_TINYCHEEPCHEEP" name="Cheep Cheep Tiny" desc="Tiny cheep cheep">
<sprite x="0" y="0" bank="26" pattern="0x12" palette="1" />
<sprite x="8" y="0" bank="26" pattern="0x14" palette="1" />
</object>
<object id="0x49" label="OBJ_FLOATINGBGCLOUD" name="BG Floating Cloud" desc="Floating background cloud" />
<object id="0x4A" label="OBJ_BOOMBOOMQBALL" name="Boom Boom's Ball" desc="Boom Boom (?) end-level ball">
<sprite x="0" y="0" bank="51" pattern="0x3C" palette="3" />
<sprite x="8" y="0" bank="51" pattern="0x3E" palette="3" />
</object>
<object id="0x4B" label="OBJ_BOOMBOOMJUMP" name="Boss Boom Boom (Jumping)" desc="Jumping Boom-Boom (can actually hit ? blocks!)">
<sprite x="8" y="0" bank="51" pattern="0x18" palette="3" />
<sprite x="0" y="16" bank="51" pattern="0x1A" palette="3" />
<sprite x="8" y="16" bank="51" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="51" pattern="0x18" palette="3" hflip="1" />
<sprite x="24" y="16" bank="51" pattern="0x1A" palette="3" hflip="1" />
<sprite x="16" y="16" bank="51" pattern="0x1C" palette="3" hflip="1" />
</object>
<object id="0x4C" label="OBJ_BOOMBOOMFLY" name="Boss Boom Boom (Flying)" desc="Flying Boom-boom">
<sprite x="8" y="0" bank="51" pattern="0x18" palette="3" />
<sprite x="0" y="16" bank="51" pattern="0x1A" palette="3" />
<sprite x="8" y="16" bank="51" pattern="0x1C" palette="3" />
<sprite x="16" y="0" bank="51" pattern="0x18" palette="3" hflip="1" />
<sprite x="24" y="16" bank="51" pattern="0x1A" palette="3" hflip="1" />
<sprite x="16" y="16" bank="51" pattern="0x1C" palette="3" hflip="1" />
</object>
<object id="0x4F" label="OBJ_CHAINCHOMPFREE" name="Chain Chomp (Freed)" desc="Jumping chain chomp head after he breaks free">
<sprite x="0" y="0" bank="10" pattern="0x1C" palette="1" />
<sprite x="8" y="0" bank="10" pattern="0x1E" palette="1" />
</object>
<object id="0x50" label="OBJ_BOBOMBEXPLODE" name="Bob-omb Ready Explode" desc="Ready-to-explode Bob-Omb">
<sprite x="0" y="0" bank="11" pattern="0x30" palette="3" />
<sprite x="8" y="0" bank="11" pattern="0x32" palette="3" />
</object>
<object id="0x51" label="OBJ_ROTODISCDUAL" name="Roto Disc Dual Sync CW" desc="Dual Rotodisc, sync, clockwise">
<sprite x="0" y="0" bank="18" pattern="0x18" palette="1" />
<sprite x="8" y="0" bank="18" pattern="0x1A" palette="1" />
</object>
<object id="0x52" label="OBJ_TREASUREBOX" name="Treasure Box" desc="Treasure box">
<sprite x="0" y="0" bank="5" pattern="0x2A" palette="3" />
<sprite x="8" y="0" bank="5" pattern="0x2C" palette="3" />
</object>
<object id="0x53" label="OBJ_PODOBOOCEILING" name="Podoboo Ceiling" desc="Podoboo from ceiling">
<sprite x="0" y="0" bank="18" pattern="0x0C" palette="1" vflip="1" />
<sprite x="8" y="0" bank="18" pattern="0x0C" palette="1" hflip="1" vflip="1" />
</object>
<object id="0x55" label="OBJ_BOBOMB" name="Bob-omb" desc="Bob-Omb">
<sprite x="0" y="0" bank="11" pattern="0x34" palette="3" />
<sprite x="8" y="0" bank="11" pattern="0x36" palette="3" />
</object>
<object id="0x56" label="OBJ_PIRANHASIDEWAYSLEFT" name="Piranha Sideways Left" desc="Sideways left-facing red piranha">
<sprite x="-24" y="8" bank="90" pattern="0x6" palette="1" />
<sprite x="-16" y="8" bank="90" pattern="0x8" palette="1" />
<sprite x="-8" y="8" bank="90" pattern="0x4" palette="2" />
</object>
<object id="0x57" label="OBJ_PIRANHASIDEWAYSRIGHT" name="Piranha Sideways Right" desc="Sideways right-facing red piranha">
<sprite x="32" y="8" bank="90" pattern="0x6" palette="1" hflip="1" />
<sprite x="24" y="8" bank="90" pattern="0x8" palette="1" hflip="1" />
<sprite x="16" y="8" bank="90" pattern="0x4" palette="2" hflip="1" />
</object>
<object id="0x58" label="OBJ_FIRECHOMP" name="Fire Chomp" desc="Fire chomp">
<sprite x="0" y="0" bank="14" pattern="0x14" palette="1" />
<sprite x="8" y="0" bank="14" pattern="0x16" palette="1" />
</object>
<object id="0x59" label="OBJ_FIRESNAKE" name="Fire Snake" desc="Fire snake">
<sprite x="0" y="0" bank="14" pattern="0x20" palette="1" />
<sprite x="8" y="0" bank="14" pattern="0x22" palette="1" />
</object>
<object id="0x5A" label="OBJ_ROTODISCCLOCKWISE" name="Roto Disc CW" desc="Standard Rotodisc clockwise">
<sprite x="0" y="0" bank="18" pattern="0x18" palette="1" />
<sprite x="8" y="0" bank="18" pattern="0x1A" palette="1" />
</object>
<object id="0x5B" label="OBJ_ROTODISCCCLOCKWISE" name="Roto Disc CCW" desc="Standard Rotodisc counter-clockwise">
<sprite x="0" y="0" bank="18" pattern="0x18" palette="1" />
<sprite x="8" y="0" bank="18" pattern="0x1A" palette="1" />
</object>
<object id="0x5D" label="OBJ_TORNADO" name="Tornado" desc="Tornado" />
<object id="0x5E" label="OBJ_ROTODISCDUALOPPOSE" name="Roto Disc Dual Oppose H" desc="Dual Rotodisc, opposites, horizontal meeting">
<sprite x="0" y="0" bank="18" pattern="0x18" palette="1" />
<sprite x="8" y="0" bank="18" pattern="0x1A" palette="1" />
</object>
<object id="0x5F" label="OBJ_ROTODISCDUALOPPOSE2" name="Roto Disc Dual Oppose V" desc="Dual Rotodisc, opposites, vertical meeting">
<sprite x="0" y="0" bank="18" pattern="0x18" palette="1" />
<sprite x="8" y="0" bank="18" pattern="0x1A" palette="1" />
</object>
<object id="0x60" label="OBJ_ROTODISCDUALCCLOCK" name="Roto Disc Dual CCW" desc="Dual Rotodisc, sync, counter-clockwise">
<sprite x="0" y="0" bank="18" pattern="0x18" palette="1" />
<sprite x="8" y="0" bank="18" pattern="0x1A" palette="1" />
</object>
<object id="0x61" label="OBJ_BLOOPERWITHKIDS" name="Blooper With Kids" desc="Blooper w/ kids">
<sprite x="0" y="0" bank="26" pattern="0x32" palette="1" />
<sprite x="8" y="0" bank="26" pattern="0x32" palette="1" hflip="1" />
<sprite x="16" y="8" bank="26" pattern="0x34" palette="1" />
</object>
<object id="0x62" label="OBJ_BLOOPER" name="Blooper" desc="Blooper">
<sprite x="0" y="0" bank="26" pattern="0x32" palette="1" />
<sprite x="8" y="0" bank="26" pattern="0x32" palette="1" hflip="1" />
</object>
<object id="0x63" label="OBJ_BIGBERTHABIRTHER" name="Big Bertha Birther" desc="Big Bertha with spit-out child">
<sprite x="0" y="0" bank="26" pattern="0x0" palette="1" />
<sprite x="8" y="0" bank="26" pattern="0x2" palette="1" />
<sprite x="16" y="0" bank="26" pattern="0x4" palette="1" />
<sprite x="0" y="16" bank="26" pattern="0x6" palette="1" />
<sprite x="8" y="16" bank="26" pattern="0x8" palette="1" />
<sprite x="16" y="16" bank="26" pattern="0x10" palette="1" />
</object>
<object id="0x64" label="OBJ_CHEEPCHEEPHOPPER" name="Cheep Cheep Hopper" desc="Cheep Cheep water hopper">
<sprite x="0" y="0" bank="79" pattern="0x26" palette="1" />
<sprite x="8" y="0" bank="79" pattern="0x28" palette="1" />
</object>
<object id="0x65" label="OBJ_WATERCURRENTUPWARD" name="Water Current Upward" desc="upward current" />
<object id="0x66" label="OBJ_WATERCURRENTDOWNARD" name="Water Current Downward" desc="Downward current" />
<object id="0x67" label="OBJ_LAVALOTUS" name="Lava Lotus" desc="Underwater lava plant">
<sprite x="0" y="0" bank="27" pattern="0x0" palette="2" />
<sprite x="0" y="16" bank="27" pattern="0x2" palette="2" />
<sprite x="8" y="0" bank="27" pattern="0x4" palette="2" />
<sprite x="8" y="16" bank="27" pattern="0x6" palette="2" />
<sprite x="16" y="0" bank="27" pattern="0x0" palette="2" hflip="1" />
<sprite x="16" y="16" bank="27" pattern="0x2" palette="2" hflip="1" />
</object>
<object id="0x68" label="OBJ_TWIRLINGBUZZY" name="Twirling Buzzy" desc="Twirling, upside down buzzy beatle">
<sprite x="0" y="0" bank="11" pattern="0x1A" palette="3" vflip="1" />
<sprite x="8" y="0" bank="11" pattern="0x1A" palette="3" hflip="1" vflip="1" />
</object>
<object id="0x69" label="OBJ_TWIRLINGSPINY" name="Twirling Spiny" desc="Twirling, upside down spiny">
<sprite x="0" y="0" bank="11" pattern="0x8" palette="1" vflip="1" />
<sprite x="8" y="0" bank="11" pattern="0x8" palette="1" hflip="1" vflip="1" />
</object>
<object id="0x6A" label="OBJ_BLOOPERCHILDSHOOT" name="Blooper Kid Launcher" desc="Blooper (shoots off children)">
<sprite x="0" y="0" bank="26" pattern="0x32" palette="1" />
<sprite x="8" y="0" bank="26" pattern="0x32" palette="1" hflip="1" />
<sprite x="-8" y="-8" bank="26" pattern="0x34" palette="1" />
<sprite x="24" y="-8" bank="26" pattern="0x34" palette="1" />
<sprite x="-8" y="24" bank="26" pattern="0x34" palette="1" />
<sprite x="24" y="24" bank="26" pattern="0x34" palette="1" />
</object>
<object id="0x6B" label="OBJ_PILEDRIVER" name="Pile Driver Microgoomba" desc="Pile driver micro goomba">
<sprite x="4" y="8" bank="79" pattern="0x3F" palette="3" />
<sprite x="0" y="-4" bank="4" pattern="0x34" palette="3" />
<sprite x="8" y="-4" bank="4" pattern="0x34" palette="3" hflip="1" />
</object>
<object id="0x6C" label="OBJ_GREENTROOPA" name="Koopa Troopa Green" desc="green koopa troopa">
<sprite x="0" y="-20" bank="79" pattern="0x00" palette="3" /> <!-- head top -->
<sprite x="0" y="-4" bank="79" pattern="0x02" palette="3" /> <!-- head bottom -->
<sprite x="8" y="-4" bank="79" pattern="0x04" palette="2" /> <!-- shell back -->
<sprite x="0" y="12" bank="79" pattern="0x38" palette="3" /> <!-- feet -->
<sprite x="8" y="12" bank="79" pattern="0x3A" palette="3" /> <!-- feet -->
</object>
<object id="0x6D" label="OBJ_REDTROOPA" name="Koopa Troopa Red" desc="red koopa troopa">
<sprite x="0" y="-20" bank="79" pattern="0x00" palette="3" /> <!-- head top -->
<sprite x="0" y="-4" bank="79" pattern="0x02" palette="3" /> <!-- head bottom -->
<sprite x="8" y="-4" bank="79" pattern="0x04" palette="1" /> <!-- shell back -->
<sprite x="0" y="12" bank="79" pattern="0x38" palette="3" /> <!-- feet -->
<sprite x="8" y="12" bank="79" pattern="0x3A" palette="3" /> <!-- feet -->
</object>
<object id="0x6E" label="OBJ_PARATROOPAGREENHOP" name="Paratroopa Green Hopper" desc="Hopping green paratroopa">
<sprite x="0" y="-20" bank="79" pattern="0x00" palette="3" /> <!-- head top -->
<sprite x="0" y="-4" bank="79" pattern="0x02" palette="3" /> <!-- head bottom -->
<sprite x="8" y="-4" bank="79" pattern="0x04" palette="2" /> <!-- shell back -->
<sprite x="0" y="12" bank="79" pattern="0x38" palette="3" /> <!-- feet -->
<sprite x="8" y="12" bank="79" pattern="0x3A" palette="3" /> <!-- feet -->
<sprite x="8" y="-10" bank="79" pattern="0x0C" palette="1" /> <!-- wing -->
</object>
<object id="0x6F" label="OBJ_FLYINGREDPARATROOPA" name="Paratroopa Red Flyer" desc="Flying up/down red winged turtle">
<sprite x="0" y="-20" bank="79" pattern="0x00" palette="3" /> <!-- head top -->
<sprite x="0" y="-4" bank="79" pattern="0x02" palette="3" /> <!-- head bottom -->
<sprite x="8" y="-4" bank="79" pattern="0x04" palette="1" /> <!-- shell back -->
<sprite x="0" y="12" bank="79" pattern="0x38" palette="3" /> <!-- feet -->
<sprite x="8" y="12" bank="79" pattern="0x3A" palette="3" /> <!-- feet -->
<sprite x="8" y="-10" bank="79" pattern="0x0C" palette="1" /> <!-- wing -->
</object>
<object id="0x70" label="OBJ_BUZZYBEATLE" name="Buzzy Beatle" desc="Buzzy beatle">
<sprite x="0" y="0" bank="11" pattern="0x10" palette="3" />
<sprite x="8" y="0" bank="11" pattern="0x12" palette="3" />
</object>
<object id="0x71" label="OBJ_SPINY" name="Spiny" desc="Spiny">
<sprite x="0" y="0" bank="11" pattern="0x4" palette="1" />
<sprite x="8" y="0" bank="11" pattern="0x6" palette="1" />
</object>
<object id="0x72" label="OBJ_GOOMBA" name="Goomba" desc="Regular goomba">
<sprite x="0" y="0" bank="79" pattern="0x18" palette="3" />
<sprite x="8" y="0" bank="79" pattern="0x1A" palette="3" hflip="1" />
</object>
<object id="0x73" label="OBJ_PARAGOOMBA" name="Paragoomba" desc="Hopping red flying goomba">
<sprite x="0" y="0" bank="79" pattern="0x18" palette="1" />
<sprite x="8" y="0" bank="79" pattern="0x1A" palette="1" hflip="1" />
<sprite x="-2" y="-10" bank="79" pattern="0x0C" palette="1" hflip="1" />
<sprite x="10" y="-10" bank="79" pattern="0x0C" palette="1" />
</object>
<object id="0x74" label="OBJ_PARAGOOMBAWITHMICROS" name="Paragoomba with Microgoombas" desc="Micro goomba dropping flying goomba">
<sprite x="0" y="0" bank="79" pattern="0x18" palette="3" />
<sprite x="8" y="0" bank="79" pattern="0x1A" palette="3" hflip="1" />
<sprite x="-2" y="-10" bank="79" pattern="0x0C" palette="1" hflip="1" />
<sprite x="10" y="-10" bank="79" pattern="0x0C" palette="1" />
</object>
<object id="0x76" label="OBJ_JUMPINGCHEEPCHEEP" name="Cheep Cheep Jumper" desc="Jumping Cheep Cheep">
<sprite x="0" y="0" bank="79" pattern="0x26" palette="1" />
<sprite x="8" y="0" bank="79" pattern="0x28" palette="1" />
</object>
<object id="0x77" label="OBJ_GREENCHEEP" name="Cheep Cheep Green" desc="Cheep Cheep swims back and forth">
<sprite x="0" y="0" bank="79" pattern="0x26" palette="2" />
<sprite x="8" y="0" bank="79" pattern="0x28" palette="2" />
</object>
<object id="0x78" label="OBJ_BULLETBILL" name="Bullet Bill" desc="Regular Bullet bill">
<sprite x="0" y="0" bank="79" pattern="0x1C" palette="3" />
<sprite x="8" y="0" bank="79" pattern="0x1C" palette="3" />
</object>
<object id="0x79" label="OBJ_BULLETBILLHOMING" name="Missile Bill (Homing)" desc="Homing Bullet Bill">
<sprite x="0" y="0" bank="79" pattern="0x1C" palette="3" />
<sprite x="8" y="0" bank="79" pattern="0x1C" palette="3" />
</object>
<object id="0x7A" label="OBJ_BIGGREENTROOPA" name="Giant Troopa Green" desc="Big Green Turtle">
<sprite x="0" y="0" bank="61" pattern="0xC" palette="3" />
<sprite x="8" y="8" bank="61" pattern="0xE" palette="2" />
<sprite x="16" y="8" bank="61" pattern="0x10" palette="2" />
<sprite x="0" y="16" bank="61" pattern="0x12" palette="3" />
<sprite x="8" y="24" bank="61" pattern="0x14" palette="3" />
<sprite x="16" y="24" bank="61" pattern="0x16" palette="3" />
</object>
<object id="0x7B" label="OBJ_BIGREDTROOPA" name="Giant Troopa Red" desc="Big Red Turtle">
<sprite x="0" y="0" bank="61" pattern="0xC" palette="3" />
<sprite x="8" y="8" bank="61" pattern="0xE" palette="1" />
<sprite x="16" y="8" bank="61" pattern="0x10" palette="1" />
<sprite x="0" y="16" bank="61" pattern="0x12" palette="3" />
<sprite x="8" y="24" bank="61" pattern="0x14" palette="3" />
<sprite x="16" y="24" bank="61" pattern="0x16" palette="3" />
</object>
<object id="0x7C" label="OBJ_BIGGOOMBA" name="Giant Goomba" desc="Big Goomba">
<sprite x="0" y="8" bank="61" pattern="0x0" palette="3" />
<sprite x="8" y="8" bank="61" pattern="0x2" palette="3" />
<sprite x="16" y="8" bank="61" pattern="0x4" palette="3" />
<sprite x="0" y="24" bank="61" pattern="0x6" palette="3" />
<sprite x="8" y="24" bank="61" pattern="0x8" palette="3" />
<sprite x="16" y="24" bank="61" pattern="0xA" palette="3" />
</object>
<object id="0x7D" label="OBJ_BIGGREENPIRANHA" name="Giant Piranha Green" desc="Big Green Piranha">
<sprite x="8" y="-32" bank="61" pattern="0x28" palette="2" />
<sprite x="16" y="-32" bank="61" pattern="0x2A" palette="2" />
<sprite x="24" y="-32" bank="61" pattern="0x28" palette="2" hflip="1" />
<sprite x="8" y="-16" bank="61" pattern="0x2C" palette="2" />
<sprite x="16" y="-16" bank="61" pattern="0x2E" palette="2" />
<sprite x="24" y="-16" bank="61" pattern="0x2C" palette="2" hflip="1" />
</object>
<object id="0x7E" label="OBJ_BIGGREENHOPPER" name="Giant Paratroopa Green" desc="Big, bouncing turtle">
<sprite x="0" y="0" bank="61" pattern="0xC" palette="3" />
<sprite x="8" y="8" bank="61" pattern="0xE" palette="2" />
<sprite x="16" y="8" bank="61" pattern="0x38" palette="2" />
<sprite x="0" y="16" bank="61" pattern="0x12" palette="3" />
<sprite x="8" y="24" bank="61" pattern="0x14" palette="3" />
<sprite x="16" y="24" bank="61" pattern="0x16" palette="3" />
</object>
<object id="0x7F" label="OBJ_BIGREDPIRANHA" name="Giant Pirahana Red" desc="Big Red Pirahana">
<sprite x="8" y="-32" bank="61" pattern="0x28" palette="1" />
<sprite x="16" y="-32" bank="61" pattern="0x2A" palette="1" />
<sprite x="24" y="-32" bank="61" pattern="0x28" palette="1" hflip="1" />
<sprite x="8" y="-16" bank="61" pattern="0x2C" palette="1" />
<sprite x="16" y="-16" bank="61" pattern="0x2E" palette="1" />
<sprite x="24" y="-16" bank="61" pattern="0x2C" palette="1" hflip="1" />
</object>
<object id="0x80" label="OBJ_FLYINGGREENPARATROOPA" name="Paratroopa Green Flyer" desc="Flying left/right green winged turtle">
<sprite x="0" y="-20" bank="79" pattern="0x00" palette="3" /> <!-- head top -->
<sprite x="0" y="-4" bank="79" pattern="0x02" palette="3" /> <!-- head bottom -->
<sprite x="8" y="-4" bank="79" pattern="0x04" palette="2" /> <!-- shell back -->
<sprite x="0" y="12" bank="79" pattern="0x38" palette="3" /> <!-- feet -->
<sprite x="8" y="12" bank="79" pattern="0x3A" palette="3" /> <!-- feet -->
<sprite x="8" y="-10" bank="79" pattern="0x0C" palette="1" /> <!-- wing -->
</object>
<object id="0x81" label="OBJ_HAMMERBRO" name="Hammer Bro" desc="Classic Hammer Brother">
<sprite x="8" y="8" bank="78" pattern="0x0" palette="3" />
<sprite x="16" y="8" bank="78" pattern="0x2" palette="3" />
<sprite x="8" y="24" bank="78" pattern="0x24" palette="3" />
<sprite x="16" y="24" bank="78" pattern="0x26" palette="3" />
</object>
<object id="0x82" label="OBJ_BOOMERANGBRO" name="Boomerang Bro" desc="Boomerang Brother">
<sprite x="8" y="8" bank="78" pattern="0x30" palette="2" />
<sprite x="16" y="8" bank="78" pattern="0x32" palette="2" />
<sprite x="8" y="24" bank="78" pattern="0x34" palette="2" />
<sprite x="16" y="24" bank="78" pattern="0x36" palette="2" />
</object>
<object id="0x83" label="OBJ_LAKITU" name="Lakitu" desc="Lakitu throwing red or green spiny eggs">
<sprite x="0" y="0" bank="11" pattern="0x1C" palette="3" />
<sprite x="8" y="0" bank="11" pattern="0x1C" palette="3" hflip="1" />
<sprite x="0" y="16" bank="11" pattern="0x1E" palette="1" />
<sprite x="8" y="16" bank="11" pattern="0x1E" palette="1" hflip="1" />
</object>
<object id="0x84" label="OBJ_SPINYEGG" name="Spiny Egg Red" desc="Working red spiny egg">
<sprite x="0" y="0" bank="11" pattern="0x3A" palette="1" />
<sprite x="8" y="0" bank="11" pattern="0x3A" palette="1" hflip="1" />
</object>
<object id="0x85" label="OBJ_SPINYEGGDUD" name="Spiny Egg Green" desc="Rolling 'dud' spiny egg">
<sprite x="0" y="0" bank="11" pattern="0x3A" palette="2" />
<sprite x="8" y="0" bank="11" pattern="0x3A" palette="2" hflip="1" />
</object>
<object id="0x86" label="OBJ_HEAVYBRO" name="Heavy Bro" desc="Heavy brother">
<sprite x="0" y="0" bank="78" pattern="0x10" palette="2" />
<sprite x="8" y="0" bank="78" pattern="0x12" palette="2" />
<sprite x="16" y="0" bank="78" pattern="0x14" palette="2" />
<sprite x="0" y="16" bank="78" pattern="0x16" palette="2" />
<sprite x="8" y="16" bank="78" pattern="0x18" palette="2" />
<sprite x="16" y="16" bank="78" pattern="0x1A" palette="2" />
</object>
<object id="0x87" label="OBJ_FIREBRO" name="Fire Bro" desc="Fire Brother">
<sprite x="8" y="8" bank="78" pattern="0x0" palette="1" />
<sprite x="16" y="8" bank="78" pattern="0x2" palette="1" />
<sprite x="8" y="24" bank="78" pattern="0x24" palette="1" />
<sprite x="16" y="24" bank="78" pattern="0x26" palette="1" />
</object>
<object id="0x88" label="OBJ_ORANGECHEEP" name="Orange Cheep Cheep (Unused)" desc="'Lost' orange cheep cheep">
<sprite x="0" y="0" bank="79" pattern="0x26" palette="3" />
<sprite x="8" y="0" bank="79" pattern="0x28" palette="3" />
</object>
<object id="0x89" label="OBJ_CHAINCHOMP" name="Chain Chomp" desc="Chain chomp">
<sprite x="0" y="0" bank="10" pattern="0x1C" palette="1" />
<sprite x="8" y="0" bank="10" pattern="0x1E" palette="1" />
</object>
<object id="0x8A" label="OBJ_THWOMP" name="Thwomp" desc="Standard Thwomp">
<sprite x="4" y="0" bank="18" pattern="0x30" palette="2" />
<sprite x="12" y="0" bank="18" pattern="0x32" palette="2" />
<sprite x="20" y="0" bank="18" pattern="0x30" palette="2" hflip="1" />
<sprite x="4" y="16" bank="18" pattern="0x3A" palette="2" />
<sprite x="12" y="16" bank="18" pattern="0x3C" palette="2" />
<sprite x="20" y="16" bank="18" pattern="0x3A" palette="2" hflip="1" />
</object>
<object id="0x8B" label="OBJ_THWOMPLEFTSLIDE" name="Thwomp Left Slide" desc="Left sliding Thwomp">
<sprite x="4" y="0" bank="18" pattern="0x30" palette="2" />
<sprite x="12" y="0" bank="18" pattern="0x32" palette="2" />
<sprite x="20" y="0" bank="18" pattern="0x30" palette="2" hflip="1" />
<sprite x="4" y="16" bank="18" pattern="0x3A" palette="2" />
<sprite x="12" y="16" bank="18" pattern="0x3C" palette="2" />
<sprite x="20" y="16" bank="18" pattern="0x3A" palette="2" hflip="1" />
</object>
<object id="0x8C" label="OBJ_THWOMPRIGHTSLIDE" name="Thwomp Right Slide" desc="Right sliding Thwomp">
<sprite x="4" y="0" bank="18" pattern="0x30" palette="2" />
<sprite x="12" y="0" bank="18" pattern="0x32" palette="2" />
<sprite x="20" y="0" bank="18" pattern="0x30" palette="2" hflip="1" />
<sprite x="4" y="16" bank="18" pattern="0x3A" palette="2" />
<sprite x="12" y="16" bank="18" pattern="0x3C" palette="2" />
<sprite x="20" y="16" bank="18" pattern="0x3A" palette="2" hflip="1" />
</object>
<object id="0x8D" label="OBJ_THWOMPUPDOWN" name="Thwomp Up/Down Slide" desc="Up-down sliding Thwomp">
<sprite x="4" y="0" bank="18" pattern="0x30" palette="2" />
<sprite x="12" y="0" bank="18" pattern="0x32" palette="2" />
<sprite x="20" y="0" bank="18" pattern="0x30" palette="2" hflip="1" />
<sprite x="4" y="16" bank="18" pattern="0x3A" palette="2" />
<sprite x="12" y="16" bank="18" pattern="0x3C" palette="2" />
<sprite x="20" y="16" bank="18" pattern="0x3A" palette="2" hflip="1" />
</object>
<object id="0x8E" label="OBJ_THWOMPDIAGONALUL" name="Thwomp Diagonal UL Slide" desc="Diagonal up-left Thwomp">
<sprite x="4" y="0" bank="18" pattern="0x30" palette="2" />
<sprite x="12" y="0" bank="18" pattern="0x32" palette="2" />
<sprite x="20" y="0" bank="18" pattern="0x30" palette="2" hflip="1" />
<sprite x="4" y="16" bank="18" pattern="0x3A" palette="2" />
<sprite x="12" y="16" bank="18" pattern="0x3C" palette="2" />
<sprite x="20" y="16" bank="18" pattern="0x3A" palette="2" hflip="1" />
</object>
<object id="0x8F" label="OBJ_THWOMPDIAGONALDL" name="Thwomp Diagonal DL Slide" desc="Diagonal down-left Thwomp">
<sprite x="4" y="0" bank="18" pattern="0x30" palette="2" />
<sprite x="12" y="0" bank="18" pattern="0x32" palette="2" />
<sprite x="20" y="0" bank="18" pattern="0x30" palette="2" hflip="1" />
<sprite x="4" y="16" bank="18" pattern="0x3A" palette="2" />
<sprite x="12" y="16" bank="18" pattern="0x3C" palette="2" />
<sprite x="20" y="16" bank="18" pattern="0x3A" palette="2" hflip="1" />
</object>
<object id="0x90" label="OBJ_TILTINGPLATFORM" name="Rotary Lift Tilting" desc="Tilting platform">
<sprite x="-24" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="-16" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="-8" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="0" y="-8" bank="79" pattern="0x2C" palette="2" />
<sprite x="8" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="16" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="24" y="-8" bank="79" pattern="0x2C" palette="1" />
</object>
<object id="0x91" label="OBJ_TWIRLINGPLATCWNS" name="Rotary Lift Twirl CW No Stop" desc="Twirling platform, clockwise, non-stop">
<sprite x="-24" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="-16" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="-8" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="0" y="-8" bank="79" pattern="0x2C" palette="2" />
<sprite x="8" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="16" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="24" y="-8" bank="79" pattern="0x2C" palette="1" />
</object>
<object id="0x92" label="OBJ_TWIRLINGPLATCW" name="Rotary Lift Twirl CW" desc="Twirling platform, clockwise">
<sprite x="-24" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="-16" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="-8" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="0" y="-8" bank="79" pattern="0x2C" palette="2" />
<sprite x="8" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="16" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="24" y="-8" bank="79" pattern="0x2C" palette="1" />
</object>
<object id="0x93" label="OBJ_TWIRLINGPERIODIC" name="Rotary Lift Twirl periodic" desc="Twirling platform, periodic">
<sprite x="-24" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="-16" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="-8" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="0" y="-8" bank="79" pattern="0x2C" palette="2" />
<sprite x="8" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="16" y="-8" bank="79" pattern="0x2C" palette="1" />
<sprite x="24" y="-8" bank="79" pattern="0x2C" palette="1" />
</object>
<object id="0x94" label="OBJ_BIGQBLOCK_3UP" name="Giant [?] 3-Up" desc="Big ? block (3 1-ups)">
<sprite x="0" y="0" bank="76" pattern="0x0" palette="3" />
<sprite x="8" y="0" bank="76" pattern="0x2" palette="3" />
<sprite x="16" y="0" bank="76" pattern="0x4" palette="3" />
<sprite x="24" y="0" bank="76" pattern="0x6" palette="3" />
<sprite x="0" y="16" bank="76" pattern="0x8" palette="3" />
<sprite x="8" y="16" bank="76" pattern="0xA" palette="3" />
<sprite x="16" y="16" bank="76" pattern="0xC" palette="3" />
<sprite x="24" y="16" bank="76" pattern="0xE" palette="3" />
<sprite x="8" y="8" bank="4" pattern="0x10" palette="2" /> <!-- Mushroom deco -->
<sprite x="16" y="8" bank="4" pattern="0x10" palette="2" hflip="1" /> <!-- Mushroom deco -->
</object>
<object id="0x95" label="OBJ_BIGQBLOCK_MUSHROOM" name="Giant [?] Mushroom (Unused)" desc="Big ? block (biggie)">
<sprite x="0" y="0" bank="76" pattern="0x0" palette="3" />
<sprite x="8" y="0" bank="76" pattern="0x2" palette="3" />
<sprite x="16" y="0" bank="76" pattern="0x4" palette="3" />
<sprite x="24" y="0" bank="76" pattern="0x6" palette="3" />
<sprite x="0" y="16" bank="76" pattern="0x8" palette="3" />
<sprite x="8" y="16" bank="76" pattern="0xA" palette="3" />
<sprite x="16" y="16" bank="76" pattern="0xC" palette="3" />
<sprite x="24" y="16" bank="76" pattern="0xE" palette="3" />
<sprite x="8" y="8" bank="4" pattern="0x10" palette="1" /> <!-- Mushroom deco -->
<sprite x="16" y="8" bank="4" pattern="0x10" palette="1" hflip="1" /> <!-- Mushroom deco -->
</object>
<object id="0x96" label="OBJ_BIGQBLOCK_FIREFLOWER" name="Giant [?] Flower (Unused)" desc="Big ? block (-flashing??- fireflower)">
<sprite x="0" y="0" bank="76" pattern="0x0" palette="3" />
<sprite x="8" y="0" bank="76" pattern="0x2" palette="3" />
<sprite x="16" y="0" bank="76" pattern="0x4" palette="3" />
<sprite x="24" y="0" bank="76" pattern="0x6" palette="3" />
<sprite x="0" y="16" bank="76" pattern="0x8" palette="3" />
<sprite x="8" y="16" bank="76" pattern="0xA" palette="3" />
<sprite x="16" y="16" bank="76" pattern="0xC" palette="3" />
<sprite x="24" y="16" bank="76" pattern="0xE" palette="3" />
<sprite x="8" y="8" bank="4" pattern="0x12" palette="2" /> <!-- Flower deco -->
<sprite x="16" y="8" bank="4" pattern="0x12" palette="2" hflip="1" /> <!-- Flower deco -->
</object>
<object id="0x97" label="OBJ_BIGQBLOCK_SUPERLEAF" name="Giant [?] Leaf (Unused)" desc="Big ? block (-green??- leaf)">
<sprite x="0" y="0" bank="76" pattern="0x0" palette="3" />
<sprite x="8" y="0" bank="76" pattern="0x2" palette="3" />
<sprite x="16" y="0" bank="76" pattern="0x4" palette="3" />
<sprite x="24" y="0" bank="76" pattern="0x6" palette="3" />
<sprite x="0" y="16" bank="76" pattern="0x8" palette="3" />
<sprite x="8" y="16" bank="76" pattern="0xA" palette="3" />
<sprite x="16" y="16" bank="76" pattern="0xC" palette="3" />
<sprite x="24" y="16" bank="76" pattern="0xE" palette="3" />
<sprite x="8" y="8" bank="4" pattern="0x1C" palette="2" /> <!-- Leaf deco -->
<sprite x="16" y="8" bank="4" pattern="0x1E" palette="2" /> <!-- Leaf deco -->
</object>
<object id="0x98" label="OBJ_BIGQBLOCK_TANOOKI" name="Giant [?] Tanooki" desc="Big ? block (tanooki)">
<sprite x="0" y="0" bank="76" pattern="0x0" palette="3" />
<sprite x="8" y="0" bank="76" pattern="0x2" palette="3" />
<sprite x="16" y="0" bank="76" pattern="0x4" palette="3" />
<sprite x="24" y="0" bank="76" pattern="0x6" palette="3" />
<sprite x="0" y="16" bank="76" pattern="0x8" palette="3" />
<sprite x="8" y="16" bank="76" pattern="0xA" palette="3" />
<sprite x="16" y="16" bank="76" pattern="0xC" palette="3" />
<sprite x="24" y="16" bank="76" pattern="0xE" palette="3" />
<sprite x="8" y="8" bank="76" pattern="0x12" palette="1" /> <!-- Tanooki deco -->
<sprite x="16" y="8" bank="76" pattern="0x12" palette="1" hflip="1" /> <!-- Tanooki deco -->
</object>
<object id="0x99" label="OBJ_BIGQBLOCK_FROG" name="Giant [?] Frog" desc="Big ? block (frog suit)">
<sprite x="0" y="0" bank="76" pattern="0x0" palette="3" />
<sprite x="8" y="0" bank="76" pattern="0x2" palette="3" />
<sprite x="16" y="0" bank="76" pattern="0x4" palette="3" />
<sprite x="24" y="0" bank="76" pattern="0x6" palette="3" />
<sprite x="0" y="16" bank="76" pattern="0x8" palette="3" />
<sprite x="8" y="16" bank="76" pattern="0xA" palette="3" />
<sprite x="16" y="16" bank="76" pattern="0xC" palette="3" />
<sprite x="24" y="16" bank="76" pattern="0xE" palette="3" />
<sprite x="8" y="8" bank="76" pattern="0x10" palette="2" /> <!-- Frog deco -->
<sprite x="16" y="8" bank="76" pattern="0x10" palette="2" hflip="1" /> <!-- Frog deco -->
</object>
<object id="0x9A" label="OBJ_BIGQBLOCK_HAMMER" name="Giant [?] Hammer" desc="Big ? block (hammer suit)">
<sprite x="0" y="0" bank="76" pattern="0x0" palette="3" />
<sprite x="8" y="0" bank="76" pattern="0x2" palette="3" />
<sprite x="16" y="0" bank="76" pattern="0x4" palette="3" />
<sprite x="24" y="0" bank="76" pattern="0x6" palette="3" />
<sprite x="0" y="16" bank="76" pattern="0x8" palette="3" />
<sprite x="8" y="16" bank="76" pattern="0xA" palette="3" />
<sprite x="16" y="16" bank="76" pattern="0xC" palette="3" />
<sprite x="24" y="16" bank="76" pattern="0xE" palette="3" />
<sprite x="8" y="8" bank="76" pattern="0x14" palette="3" /> <!-- Hammer deco -->
<sprite x="16" y="8" bank="76" pattern="0x14" palette="3" hflip="1" /> <!-- Hammer deco -->
</object>
<object id="0x9D" label="OBJ_FIREJET_UPWARD" name="Fire Jet Upward" desc="upward fire jet">
<sprite x="0" y="0" bank="55" pattern="0x0A" palette="1" />
<sprite x="8" y="0" bank="55" pattern="0x10" palette="1" />
<sprite x="0" y="16" bank="55" pattern="0x0C" palette="1" />
<sprite x="8" y="16" bank="55" pattern="0x12" palette="1" />
<sprite x="0" y="32" bank="55" pattern="0x0E" palette="1" />
<sprite x="8" y="32" bank="55" pattern="0x14" palette="1" />
</object>
<object id="0x9E" label="OBJ_PODOBOO" name="Podoboo" desc="Podoboo">
<sprite x="0" y="0" bank="18" pattern="0x0C" palette="1" />
<sprite x="8" y="0" bank="18" pattern="0x0C" palette="1" hflip="1" />
</object>
<object id="0x9F" label="OBJ_PARABEETLE" name="Para Beatle" desc="Parabeetle">
<sprite x="0" y="0" bank="14" pattern="0x30" palette="1" />
<sprite x="8" y="0" bank="14" pattern="0x32" palette="1" />
</object>
<object id="0xA0" label="OBJ_GREENPIRANHA" name="Green Piranha" desc="short pipe muncher">
<sprite x="8" y="-24" bank="79" pattern="0x20" palette="2" />
<sprite x="16" y="-24" bank="79" pattern="0x20" palette="2" hflip="1" />
<sprite x="8" y="-8" bank="79" pattern="0x22" palette="2" />
<sprite x="16" y="-8" bank="79" pattern="0x22" palette="2" hflip="1" />
</object>
<object id="0xA1" label="OBJ_GREENPIRANHA_FLIPPED" name="Green Piranha Flipped" desc="upside down short pipe muncher">
<sprite x="8" y="24" bank="79" pattern="0x20" palette="2" vflip="1" />
<sprite x="16" y="24" bank="79" pattern="0x20" palette="2" hflip="1" vflip="1" />
<sprite x="8" y="8" bank="79" pattern="0x22" palette="2" vflip="1" />
<sprite x="16" y="8" bank="79" pattern="0x22" palette="2" hflip="1" vflip="1" />
</object>
<object id="0xA2" label="OBJ_REDPIRANHA" name="Red Piranha" desc="tall pipe muncher">
<sprite x="8" y="-32" bank="79" pattern="0x20" palette="1" />
<sprite x="16" y="-32" bank="79" pattern="0x20" palette="1" hflip="1" />
<sprite x="8" y="-16" bank="79" pattern="0x22" palette="2" />
<sprite x="16" y="-16" bank="79" pattern="0x22" palette="2" hflip="1" />
</object>
<object id="0xA3" label="OBJ_REDPIRANHA_FLIPPED" name="Red Piranha Flipped" desc="upside down tall pipe muncher">
<sprite x="8" y="32" bank="79" pattern="0x20" palette="1" vflip="1" />
<sprite x="16" y="32" bank="79" pattern="0x20" palette="1" hflip="1" vflip="1" />
<sprite x="8" y="16" bank="79" pattern="0x22" palette="2" vflip="1" />
<sprite x="16" y="16" bank="79" pattern="0x22" palette="2" hflip="1" vflip="1" />
</object>
<object id="0xA4" label="OBJ_GREENPIRANHA_FIRE" name="Green Piranha Spits Fire" desc="short green fire plant">
<sprite x="8" y="-24" bank="79" pattern="0x30" palette="2" />
<sprite x="16" y="-24" bank="79" pattern="0x32" palette="2" />
<sprite x="8" y="-8" bank="79" pattern="0x22" palette="2" />
<sprite x="16" y="-8" bank="79" pattern="0x22" palette="2" hflip="1" />
</object>
<object id="0xA5" label="OBJ_GREENPIRANHA_FIREC" name="Green Piranha Flipped Spits Fire" desc="short, upside down, green fire plant">
<sprite x="8" y="24" bank="79" pattern="0x30" palette="2" vflip="1"/>
<sprite x="16" y="24" bank="79" pattern="0x32" palette="2" vflip="1" />
<sprite x="8" y="8" bank="79" pattern="0x22" palette="2" vflip="1" />
<sprite x="16" y="8" bank="79" pattern="0x22" palette="2" vflip="1" hflip="1" />
</object>
<object id="0xA6" label="OBJ_VENUSFIRETRAP" name="Venus Fire Trap" desc="Tall red fire plant">
<sprite x="8" y="-32" bank="79" pattern="0x30" palette="1" />
<sprite x="16" y="-32" bank="79" pattern="0x32" palette="1" />
<sprite x="8" y="-16" bank="79" pattern="0x22" palette="2" />
<sprite x="16" y="-16" bank="79" pattern="0x22" palette="2" hflip="1" />