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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
|
:config:
segments:
- [0x0D, 0x132B50]
header:
code:
- "#include <macros.h>"
- "#include <defines.h>"
- "#include <assets/common_data.h>"
header:
- "#include <libultra/gbi.h>"
- "#include <libultraship.h>"
- "#include <common_structs.h>"
- "#include <align_asset_macro.h>"
tables:
common_texture_hud_place:
range: [0xD258, 0x14258]
mode: APPEND
D_0D015258:
range: [0x15258, 0x16A58]
mode: APPEND
common_texture_player_emblem:
range: [0x17458, 0x18C58]
mode: APPEND
common_texture_hud_type_C_rank_font:
range: [0x19658, 0x19D58]
mode: APPEND
common_texture_hud_type_C_rank_tiny_font:
range: [0x1A058, 0x1A298]
mode: APPEND
common_tlut_lakitu_countdown:
range: [0x24ED8, 0x252D8]
mode: APPEND
common_texture_bomb:
range: [0x29858, 0x2A458]
mode: APPEND
common_texture_particle_spark:
range: [0x2AC58, 0x2B858]
mode: APPEND
common_texture_particle_smoke:
range: [0x2BC58, 0x2C858]
mode: APPEND
common_texture_minimap_kart_character:
range: [0x2CCD8, 0x2D058]
mode: APPEND
common_tlut_finish_line_banner:
symbol: common_tlut_finish_line_banner
type: texture
ctype: u16
offset: 0x0
width: 16
height: 16
format: RGBA16
common_texture_particle_fire:
symbol: common_texture_particle_fire
type: texture
ctype: u16
offset: 0x200
size: 0x1000
width: 32
height: 64
format: RGBA16
common_texture_item_box_question_mark:
symbol: common_texture_item_box_question_mark
type: texture
ctype: u16
offset: 0x1EE8
size: 4096
width: 32
height: 64
format: RGBA16
common_texture_banana:
symbol: common_texture_banana
type: texture
ctype: u16
size: 2048
width: 32
height: 32
offset: 0x3348
format: RGBA16
common_texture_flat_banana:
symbol: common_texture_flat_banana
type: texture
ctype: u16
size: 4096
width: 64
height: 32
offset: 0x3B48
format: RGBA16
common_tlut_trees_import:
symbol: common_tlut_trees_import
type: texture
ctype: u16
size: 0x1D0
width: 8
height: 29
offset: 0x4C68
format: RGBA16
common_tlut_green_shell:
symbol: common_tlut_green_shell
type: texture
ctype: u16
size: 0x200
width: 16
height: 16
offset: 0x4E38
format: RGBA16
common_tlut_blue_shell:
symbol: common_tlut_blue_shell
type: texture
ctype: u16
size: 0x200
width: 16
height: 16
offset: 0x5038
format: RGBA16
common_shadow_i4:
symbol: common_shadow_i4
offset: 0x6A58
size: 0x80
type: texture
width: 32
height: 32
format: i4
D_0D006AD8:
symbol: D_0D006AD8
offset: 0x6AD8
size: 0x400
type: texture
width: 32
height: 32
format: i4
common_tlut_debug_font:
symbol: common_tlut_debug_font
offset: 0x6ED8
size: 0x20
type: texture
ctype: u16
colors: 4
height: 4
format: tlut
common_texture_debug_font:
symbol: common_texture_debug_font
type: texture
offset: 0x6EF8
size: 0x800
ctype: u16
width: 128
height: 32
format: ci4
tlut_symbol: common_tlut_debug_font
common_texture_speedometer:
symbol: common_texture_speedometer
type: texture
ctype: u8
offset: 0x9958
size: 0xC00
width: 64
height: 96
format: I4
common_texture_speedometer_needle:
symbol: common_texture_speedometer_needle
type: texture
offset: 0xA558
ctype: u8
size: 0x400
width: 64
height: 32
format: I4
common_texture_hud_lap:
symbol: common_texture_hud_lap
type: texture
offset: 0xA958
ctype: u16
size: 0x200
width: 32
height: 8
format: RGBA16
common_texture_hud_123:
symbol: common_texture_hud_123
type: texture
offset: 0xAB58
size: 0x200
ctype: u16
width: 32
height: 8
format: RGBA16
common_texture_hud_lap_time:
symbol: common_texture_hud_lap_time
type: texture
offset: 0xAD58
size: 0x400
ctype: u16
width: 32
height: 16
format: RGBA16
common_texture_hud_lap_1_on_3:
symbol: common_texture_hud_lap_1_on_3
type: texture
offset: 0xB158
size: 0x400
ctype: u16
width: 32
height: 16
format: RGBA16
common_texture_hud_lap_2_on_3:
symbol: common_texture_hud_lap_2_on_3
type: texture
offset: 0xB558
ctype: u16
size: 0x400
width: 32
height: 16
format: RGBA16
common_texture_hud_lap_3_on_3:
symbol: common_texture_hud_lap_3_on_3
type: texture
offset: 0xB958
size: 0x400
ctype: u16
width: 32
height: 16
format: RGBA16
common_texture_hud_total_time:
symbol: common_texture_hud_total_time
type: texture
offset: 0xBD58
size: 0x400
ctype: u16
width: 32
height: 16
format: RGBA16
common_texture_hud_time:
symbol: common_texture_hud_time
type: texture
offset: 0xC158
size: 0x400
ctype: u16
width: 32
height: 16
format: RGBA16
common_texture_hud_normal_digit:
symbol: common_texture_hud_normal_digit
type: texture
offset: 0xC558
size: 0xD00
ctype: u16
width: 104
height: 16
format: RGBA16
common_texture_hud_1st:
symbol: common_texture_hud_1st
type: texture
offset: 0xD258
size: 0x1000
ctype: u8
width: 128
height: 64
format: I4
common_texture_hud_2nd:
symbol: common_texture_hud_2nd
type: texture
offset: 0xE258
size: 0x1000
ctype: u8
width: 128
height: 64
format: I4
common_texture_hud_3rd:
symbol: common_texture_hud_3rd
type: texture
offset: 0xF258
size: 0x1000
ctype: u8
width: 128
height: 64
format: I4
common_texture_hud_4th:
symbol: common_texture_hud_4th
type: texture
offset: 0x10258
size: 0x1000
ctype: u8
width: 128
height: 64
format: I4
common_texture_hud_5th:
symbol: common_texture_hud_5th
type: texture
offset: 0x11258
size: 0x1000
ctype: u8
width: 128
height: 64
format: I4
common_texture_hud_6th:
symbol: common_texture_hud_6th
type: texture
offset: 0x12258
size: 0x1000
ctype: u8
width: 128
height: 64
format: I4
common_texture_hud_7th:
symbol: common_texture_hud_7th
type: texture
offset: 0x13258
size: 0x1000
ctype: u8
width: 128
height: 64
format: I4
common_texture_hud_8th:
symbol: common_texture_hud_8th
type: texture
offset: 0x14258
size: 0x1000
ctype: u8
width: 128
height: 64
format: I4
common_texture_first_place:
symbol: common_texture_first_place # 132B50_15258
type: texture
offset: 0x15258
size: 0x800
ctype: u8
width: 64
height: 64
format: I4
common_texture_second_place:
symbol: common_texture_second_place # 132B50_15A58
type: texture
offset: 0x15A58
size: 0x800
ctype: u8
width: 64
height: 64
format: I4
common_texture_third_place:
symbol: common_texture_third_place # 132B50_16258
type: texture
offset: 0x16258
size: 0x800
ctype: u8
width: 64
height: 64
format: I4
common_texture_fourth_place:
symbol: common_texture_fourth_place # 132B50_16A58
type: texture
offset: 0x16A58
size: 0x800
ctype: u8
width: 64
height: 64
format: I4
common_tlut_player_emblem: # // tlut for 1p, 2p, 3p, 4p
symbol: common_tlut_player_emblem
type: texture
offset: 0x17258
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_texture_player_emblem_1p:
symbol: common_texture_player_emblem_1p
type: texture
offset: 0x17458
size: 0x800
ctype: u8
width: 64
height: 32
format: CI8
tlut_symbol: common_tlut_player_emblem
common_texture_player_emblem_2p:
symbol: common_texture_player_emblem_2p
type: texture
offset: 0x17C58
size: 0x800
ctype: u8
width: 64
height: 32
format: CI8
tlut_symbol: common_tlut_player_emblem
common_texture_player_emblem_3p:
symbol: common_texture_player_emblem_3p
type: texture
offset: 0x18458
size: 0x800
ctype: u8
width: 64
height: 32
format: CI8
tlut_symbol: common_tlut_player_emblem
common_texture_player_emblem_4p:
symbol: common_texture_player_emblem_4p
type: texture
offset: 0x18C58
size: 0x800
ctype: u8
width: 64
height: 32
format: CI8
tlut_symbol: common_tlut_player_emblem
common_tlut_hud_type_C_rank_font: # Font tlut for 12345678
symbol: common_tlut_hud_type_C_rank_font
type: texture
offset: 0x19458
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_texture_hud_type_C_rank_font_1:
symbol: common_texture_hud_type_C_rank_font_1
type: texture
offset: 0x19658
size: 0x100
ctype: u8
width: 16
height: 16
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_font
common_texture_hud_type_C_rank_font_2:
symbol: common_texture_hud_type_C_rank_font_2
type: texture
offset: 0x19758
size: 0x100
ctype: u8
width: 16
height: 16
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_font
common_texture_hud_type_C_rank_font_3:
symbol: common_texture_hud_type_C_rank_font_3
type: texture
offset: 0x19858
size: 0x100
ctype: u8
width: 16
height: 16
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_font
common_texture_hud_type_C_rank_font_4:
symbol: common_texture_hud_type_C_rank_font_4
type: texture
offset: 0x19958
size: 0x100
ctype: u8
width: 16
height: 16
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_font
common_texture_hud_type_C_rank_font_5:
symbol: common_texture_hud_type_C_rank_font_5
type: texture
offset: 0x19A58
size: 0x100
ctype: u8
width: 16
height: 16
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_font
common_texture_hud_type_C_rank_font_6:
symbol: common_texture_hud_type_C_rank_font_6
type: texture
offset: 0x19B58
size: 0x100
ctype: u8
width: 16
height: 16
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_font
common_texture_hud_type_C_rank_font_7:
symbol: common_texture_hud_type_C_rank_font_7
type: texture
offset: 0x19C58
size: 0x100
ctype: u8
width: 16
height: 16
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_font
common_texture_hud_type_C_rank_font_8:
symbol: common_texture_hud_type_C_rank_font_8
type: texture
offset: 0x19D58
size: 0x100
ctype: u8
width: 16
height: 16
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_font
common_tlut_hud_type_C_rank_tiny_font: # Font tlut for 0123456789
symbol: common_tlut_hud_type_C_rank_tiny_font
type: texture
offset: 0x19E58
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_texture_hud_type_C_rank_tiny_font_0:
symbol: common_texture_hud_type_C_rank_tiny_font_0
type: texture
offset: 0x1A058
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_1:
symbol: common_texture_hud_type_C_rank_tiny_font_1
type: texture
offset: 0x1A098
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_2:
symbol: common_texture_hud_type_C_rank_tiny_font_2
type: texture
offset: 0x1A0D8
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_3:
symbol: common_texture_hud_type_C_rank_tiny_font_3
type: texture
offset: 0x1A118
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_4:
symbol: common_texture_hud_type_C_rank_tiny_font_4
type: texture
offset: 0x1A158
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_5:
symbol: common_texture_hud_type_C_rank_tiny_font_5
type: texture
offset: 0x1A198
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_6:
symbol: common_texture_hud_type_C_rank_tiny_font_6
type: texture
offset: 0x1A1D8
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_7:
symbol: common_texture_hud_type_C_rank_tiny_font_7
type: texture
offset: 0x1A218
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_8:
symbol: common_texture_hud_type_C_rank_tiny_font_8
type: texture
offset: 0x1A258
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_hud_type_C_rank_tiny_font_9:
symbol: common_texture_hud_type_C_rank_tiny_font_9
type: texture
offset: 0x1A298
size: 0x40
ctype: u8
width: 8
height: 8
format: CI8
tlut_symbol: common_tlut_hud_type_C_rank_tiny_font
common_texture_character_portrait_border:
symbol: common_texture_character_portrait_border
type: texture
offset: 0x1A2D8
size: 0x200
ctype: u8
width: 32
height: 32
format: IA4
common_tlut_portrait_mario:
symbol: common_tlut_portrait_mario
type: texture
offset: 0x1A4D8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_tlut_portrait_luigi:
symbol: common_tlut_portrait_luigi
type: texture
offset: 0x1A6D8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_tlut_portrait_peach:
symbol: common_tlut_portrait_peach
type: texture
offset: 0x1A8D8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_tlut_portrait_toad:
symbol: common_tlut_portrait_toad
type: texture
offset: 0x1AAD8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_tlut_portrait_yoshi:
symbol: common_tlut_portrait_yoshi
type: texture
offset: 0x1ACD8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_tlut_portrait_donkey_kong:
symbol: common_tlut_portrait_donkey_kong
type: texture
offset: 0x1AED8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_tlut_portrait_wario:
symbol: common_tlut_portrait_wario
type: texture
offset: 0x1B0D8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_tlut_portrait_bowser:
symbol: common_tlut_portrait_bowser
type: texture
offset: 0x1B2D8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_tlut_portrait_bomb_kart_and_question_mark:
symbol: common_tlut_portrait_bomb_kart_and_question_mark
type: texture
offset: 0x1B4D8
size: 0x200
ctype: u16
colors: 16
height: 16
format: tlut
common_texture_portrait_mario:
symbol: common_texture_portrait_mario # 132B50_16A58
type: texture
offset: 0x1B6D8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_mario
common_texture_portrait_luigi:
symbol: common_texture_portrait_luigi # 132B50_16A58
type: texture
offset: 0x1BAD8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_luigi
common_texture_portrait_peach:
symbol: common_texture_portrait_peach # 132B50_16A58
type: texture
offset: 0x1BED8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_peach
common_texture_portrait_toad:
symbol: common_texture_portrait_toad # 132B50_16A58
type: texture
offset: 0x1C2D8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_toad
common_texture_portrait_yoshi:
symbol: common_texture_portrait_yoshi # 132B50_16A58
type: texture
offset: 0x1C6D8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_yoshi
common_texture_portrait_donkey_kong:
symbol: common_texture_portrait_donkey_kong # 132B50_16A58
type: texture
offset: 0x1CAD8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_donkey_kong
common_texture_portrait_wario:
symbol: common_texture_portrait_wario # 132B50_16A58
type: texture
offset: 0x1CED8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_wario
common_texture_portrait_bowser:
symbol: common_texture_portrait_bowser # 132B50_16A58
type: texture
offset: 0x1D2D8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_bowser
common_texture_portrait_bomb_kart:
symbol: common_texture_portrait_bomb_kart # 132B50_16A58
type: texture
offset: 0x1D6D8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_bomb_kart_and_question_mark
common_texture_portrait_question_mark:
symbol: common_texture_portrait_question_mark # 132B50_16A58
type: texture
offset: 0x1DAD8
size: 0x400
ctype: u8
width: 32
height: 32
format: CI8
tlut_symbol: common_tlut_portrait_bomb_kart_and_question_mark
common_tlut_item_window_none:
symbol: common_tlut_item_window_none
type: texture
offset: 0x1DED8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_banana:
symbol: common_tlut_item_window_banana
type: texture
offset: 0x1E0D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_banana_bunch:
symbol: common_tlut_item_window_banana_bunch
type: texture
offset: 0x1E2D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_mushroom:
symbol: common_tlut_item_window_mushroom
type: texture
offset: 0x1E4D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_double_mushroom:
symbol: common_tlut_item_window_double_mushroom
type: texture
offset: 0x1E6D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_triple_mushroom:
symbol: common_tlut_item_window_triple_mushroom
type: texture
offset: 0x1E8D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_super_mushroom:
symbol: common_tlut_item_window_super_mushroom
type: texture
offset: 0x1EAD8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_blue_shell:
symbol: common_tlut_item_window_blue_shell
type: texture
offset: 0x1ECD8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_boo:
symbol: common_tlut_item_window_boo
type: texture
offset: 0x1EED8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_green_shell:
symbol: common_tlut_item_window_green_shell
type: texture
offset: 0x1F0D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_triple_green_shell:
symbol: common_tlut_item_window_triple_green_shell
type: texture
offset: 0x1F2D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_red_shell:
symbol: common_tlut_item_window_red_shell
type: texture
offset: 0x1F4D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_triple_red_shell:
symbol: common_tlut_item_window_triple_red_shell
type: texture
offset: 0x1F6D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_star:
symbol: common_tlut_item_window_star
type: texture
offset: 0x1F8D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_thunder_bolt:
symbol: common_tlut_item_window_thunder_bolt
type: texture
offset: 0x1FAD8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_item_window_fake_item_box:
symbol: common_tlut_item_window_fake_item_box
type: texture
offset: 0x1FCD8
ctype: u16
colors: 256
height: 16
format: tlut
common_texture_item_window_none:
symbol: common_texture_item_window_none
type: texture
offset: 0x1FED8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_none
common_texture_item_window_banana:
symbol: common_texture_item_window_banana
type: texture
offset: 0x203D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_banana
common_texture_item_window_banana_bunch:
symbol: common_texture_item_window_banana_bunch
type: texture
offset: 0x208D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_banana_bunch
common_texture_item_window_mushroom:
symbol: common_texture_item_window_mushroom
type: texture
offset: 0x20DD8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_mushroom
common_texture_item_window_double_mushroom:
symbol: common_texture_item_window_double_mushroom
type: texture
offset: 0x212D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_double_mushroom
common_texture_item_window_triple_mushroom:
symbol: common_texture_item_window_triple_mushroom
type: texture
offset: 0x217D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_triple_mushroom
common_texture_item_window_super_mushroom:
symbol: common_texture_item_window_super_mushroom
type: texture
offset: 0x21CD8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_super_mushroom
common_texture_item_window_blue_shell:
symbol: common_texture_item_window_blue_shell
type: texture
offset: 0x221D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_blue_shell
common_texture_item_window_boo:
symbol: common_texture_item_window_boo
type: texture
offset: 0x226D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_boo
common_texture_item_window_green_shell:
symbol: common_texture_item_window_green_shell
type: texture
offset: 0x22BD8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_green_shell
common_texture_item_window_triple_green_shell:
symbol: common_texture_item_window_triple_green_shell
type: texture
offset: 0x230D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_triple_green_shell
common_texture_item_window_red_shell:
symbol: common_texture_item_window_red_shell
type: texture
offset: 0x235D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_red_shell
common_texture_item_window_triple_red_shell:
symbol: common_texture_item_window_triple_red_shell
type: texture
offset: 0x23AD8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_triple_red_shell
common_texture_item_window_star:
symbol: common_texture_item_window_star
type: texture
offset: 0x23FD8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_star
common_texture_item_window_thunder_bolt:
symbol: common_texture_item_window_thunder_bolt
type: texture
offset: 0x244D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_thunder_bolt
common_texture_item_window_fake_item_box:
symbol: common_texture_item_window_fake_item_box
type: texture
offset: 0x249D8
width: 40
height: 32
format: ci8
tlut_symbol: common_tlut_item_window_fake_item_box
common_tlut_lakitu_no_lights:
symbol: common_tlut_lakitu_no_lights
type: texture
offset: 0x24ED8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_lakitu_red_lights:
symbol: common_tlut_lakitu_red_lights
type: texture
offset: 0x250D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_lakitu_blue_lights:
symbol: common_tlut_lakitu_blue_lights
type: texture
offset: 0x252D8
ctype: u16
colors: 256
height: 16
format: tlut
common_tlut_lakitu_checkered_flag:
symbol: common_tlut_lakitu_checkered_flag
type: texture
offset: 0x254D8
ctype: u16
width: 16
height: 16
format: rgba16
common_tlut_lakitu_second_lap:
symbol: common_tlut_lakitu_second_lap
type: texture
offset: 0x256D8
ctype: u16
width: 16
height: 16
format: rgba16
common_tlut_lakitu_final_lap:
symbol: common_tlut_lakitu_final_lap
type: texture
offset: 0x258D8
ctype: u16
width: 16
height: 16
format: rgba16
common_tlut_lakitu_reverse:
symbol: common_tlut_lakitu_reverse
type: texture
offset: 0x25AD8
ctype: u16
width: 16
height: 16
format: rgba16
common_tlut_lakitu_fishing:
symbol: common_tlut_lakitu_fishing
type: texture
offset: 0x25CD8
ctype: u16
width: 16
height: 16
format: rgba16
common_tlut_traffic_light:
symbol: common_tlut_traffic_light
type: texture
offset: 0x25ED8
ctype: u16
colors: 256
format: tlut
common_texture_traffic_light_01:
symbol: common_texture_traffic_light_01
type: texture
offset: 0x260D8
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_02:
symbol: common_texture_traffic_light_02
type: texture
offset: 0x26558
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_03:
symbol: common_texture_traffic_light_03
type: texture
offset: 0x269D8
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_04:
symbol: common_texture_traffic_light_04
type: texture
offset: 0x26E58
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_05:
symbol: common_texture_traffic_light_05
type: texture
offset: 0x272D8
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_06:
symbol: common_texture_traffic_light_06
type: texture
offset: 0x27758
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_07:
symbol: common_texture_traffic_light_07
type: texture
offset: 0x27BD8
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_08:
symbol: common_texture_traffic_light_08
type: texture
offset: 0x28058
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_09:
symbol: common_texture_traffic_light_09
type: texture
offset: 0x284D8
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_traffic_light_10:
symbol: common_texture_traffic_light_10
type: texture
offset: 0x28958
width: 24
height: 48
format: ci8
tlut_symbol: common_tlut_traffic_light
common_texture_particle_leaf:
symbol: common_texture_particle_leaf
type: texture
offset: 0x28DD8
width: 32
height: 16
ctype: u16
format: rgba16
common_texture_unused_particle_leaf:
symbol: common_texture_unused_particle_leaf
type: texture
offset: 0x291D8
width: 16
height: 16
ctype: u16
format: rgba16
D_0D0293D8: # Cloud, smoke, or fog?
symbol: D_0D0293D8
type: texture
offset: 0x293D8
width: 16
height: 16
format: i4
D_0D029458: # Smoke?
symbol: D_0D029458
type: texture
offset: 0x29458
width: 32
height: 32
format: i8
common_tlut_bomb: # This is placed below in rom. Hack to make torch extract the tlut first.
symbol: common_tlut_bomb
type: texture
offset: 0x2A858
ctype: u16
colors: 256
height: 16
format: tlut
common_texture_bomb_1: # Smoke?
symbol: common_texture_bomb_1
type: texture
offset: 0x29858
width: 32
height: 32
format: ci8
tlut_symbol: common_tlut_bomb
common_texture_bomb_2: # Smoke?
symbol: common_texture_bomb_2
type: texture
offset: 0x29C58
width: 32
height: 32
format: ci8
tlut_symbol: common_tlut_bomb
common_texture_bomb_3: # Smoke?
symbol: common_texture_bomb_3
type: texture
offset: 0x2A058
width: 32
height: 32
format: ci8
tlut_symbol: common_tlut_bomb
common_texture_bomb_4: # Smoke?
symbol: common_texture_bomb_4
type: texture
offset: 0x2A458
width: 32
height: 32
format: ci8
tlut_symbol: common_tlut_bomb
D_0D02AA58:
symbol: D_0D02AA58
type: texture
offset: 0x2AA58
ctype: u16
width: 16
height: 16
format: rgba16
common_texture_particle_spark_1:
symbol: common_texture_particle_spark_1
offset: 0x2AC58
width: 32
height: 32
ctype: u8
type: texture
format: i8
common_texture_particle_spark_2:
symbol: common_texture_particle_spark_2
offset: 0x2B058
width: 32
height: 32
ctype: u8
type: texture
format: i8
common_texture_particle_spark_3:
symbol: common_texture_particle_spark_3
offset: 0x2B458
width: 32
height: 32
ctype: u8
type: texture
format: i8
common_texture_particle_spark_4:
symbol: common_texture_particle_spark_4
offset: 0x2B858
width: 32
height: 32
ctype: u8
type: texture
format: i8
common_texture_particle_smoke_1:
symbol: common_texture_particle_smoke_1
offset: 0x2BC58
width: 32
height: 32
type: texture
format: i8
common_texture_particle_smoke_2:
symbol: common_texture_particle_smoke_2
offset: 0x2C058
width: 32
height: 32
type: texture
format: i8
common_texture_particle_smoke_3:
symbol: common_texture_particle_smoke_3
offset: 0x2C458
width: 32
height: 32
type: texture
format: i8
common_texture_particle_smoke_4:
symbol: common_texture_particle_smoke_4
offset: 0x2C858
width: 32
height: 32
type: texture
format: i8
common_texture_minimap_finish_line:
symbol: common_texture_minimap_finish_line
offset: 0x2CC58
width: 8
height: 8
ctype: u16
type: texture
format: rgba16
common_texture_minimap_kart_mario:
symbol: common_texture_minimap_kart_mario
offset: 0x2CCD8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_kart_luigi:
symbol: common_texture_minimap_kart_luigi
offset: 0x2CD58
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_kart_yoshi:
symbol: common_texture_minimap_kart_yoshi
offset: 0x2CDD8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_kart_toad:
symbol: common_texture_minimap_kart_toad
offset: 0x2CE58
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_kart_donkey_kong:
symbol: common_texture_minimap_kart_donkey_kong
offset: 0x2CED8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_kart_wario:
symbol: common_texture_minimap_kart_wario
offset: 0x2CF58
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_kart_peach:
symbol: common_texture_minimap_kart_peach
offset: 0x2CFD8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_kart_bowser:
symbol: common_texture_minimap_kart_bowser
offset: 0x2D058
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_progress_dot:
symbol: common_texture_minimap_progress_dot
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_mario:
symbol: common_texture_minimap_mario
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_luigi:
symbol: common_texture_minimap_luigi
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_yoshi:
symbol: common_texture_minimap_yoshi
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_toad:
symbol: common_texture_minimap_toad
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_dk:
symbol: common_texture_minimap_dk
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_wario:
symbol: common_texture_minimap_wario
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_peach:
symbol: common_texture_minimap_peach
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
common_texture_minimap_bowser:
symbol: common_texture_minimap_bowser
offset: 0x2D0D8
ctype: u16
width: 8
height: 8
type: texture
format: rgba16
|