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
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
|
: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: 16
height: 16
format: RGBA16
D_0D001200:
symbol: D_0D001200
type: vtx
offset: 0x1200
count: 1
D_0D001210:
symbol: D_0D001210
type: vtx
offset: 0x1210
count: 3
D_0D001240:
symbol: D_0D001240
type: vtx
offset: 0x1240
count: 3
D_0D001270:
symbol: D_0D001270
type: vtx
offset: 0x1270
count: 3
D_0D0012A0:
symbol: D_0D0012A0
type: vtx
offset: 0x12A0
count: 3
D_0D0012D0:
symbol: D_0D0012D0
type: vtx
offset: 0x12D0
count: 3
D_0D001300:
symbol: D_0D001300
type: vtx
offset: 0x1300
count: 3
D_0D001330:
symbol: D_0D001330
type: vtx
offset: 0x1330
count: 3
D_0D001360:
symbol: D_0D001360
type: vtx
offset: 0x1360
count: 3
common_vtx_finish_line_banner:
symbol: common_vtx_finish_line_banner
type: vtx
offset: 0x1390
count: 32
common_vtx_finish_post:
symbol: common_vtx_finish_post
type: vtx
offset: 0x1590
count: 24
D_0D001710:
symbol: D_0D001710
type: vtx
offset: 0x1710
count: 4
D_0D001750:
symbol: D_0D001750
type: gfx
offset: 0x1750
D_0D001780:
symbol: D_0D001780
type: gfx
offset: 0x1780
D_0D001798:
symbol: D_0D001798
type: gfx
offset: 0x1798
D_0D0017B0:
symbol: D_0D0017B0
type: gfx
offset: 0x17B0
D_0D0017C8:
symbol: D_0D0017C8
type: gfx
offset: 0x17C8
D_0D0017E0:
symbol: D_0D0017E0
type: gfx
offset: 0x17E0
D_0D0017F8:
symbol: D_0D0017F8
type: gfx
offset: 0x17F8
D_0D001810:
symbol: D_0D001810
type: gfx
offset: 0x1810
D_0D001828:
symbol: D_0D001828
type: gfx
offset: 0x1828
D_0D001840:
symbol: D_0D001840
type: gfx
offset: 0x1840
common_model_finish_post:
symbol: common_model_finish_post
type: gfx
offset: 0x1AB8
D_0D001B68:
symbol: D_0D001B68
type: gfx
offset: 0x1B68
D_0D001B90:
symbol: D_0D001B90
type: gfx
offset: 0x1B90
D_0D001BD8:
symbol: D_0D001BD8
type: gfx
offset: 0x1BD8
D_0D001C20:
symbol: D_0D001C20
type: gfx
offset: 0x1C20
D_0D001C88:
symbol: D_0D001C88
type: gfx
offset: 0x1C88
common_vtx_itembox:
symbol: common_vtx_itembox
type: VTX
offset: 0x0D001CE8
count: 32
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
D_0D002EE8:
symbol: D_0D002EE8
type: gfx
offset: 0x2EE8
common_fake_item_box_question_mark_vertices:
symbol: common_fake_item_box_question_mark_vertices
type: vtx
offset: 0x2F40
count: 4
common_model_fake_itembox:
symbol: common_model_fake_itembox
type: gfx
offset: 0x2F80
itemBoxQuestionMarkModel:
symbol: itemBoxQuestionMarkModel
type: gfx
offset: 0x3008
D_0D003090:
symbol: D_0D003090
type: gfx
offset: 0x0D003090
D_0D0030F8:
symbol: D_0D0030F8
type: gfx
offset: 0x30F8
D_0D003128:
symbol: D_0D003128
type: gfx
offset: 0x3128
D_0D003158:
symbol: D_0D003158
type: gfx
offset: 0x3158
D_0D003188:
symbol: D_0D003188
type: gfx
offset: 0x3188
D_0D0031B8:
symbol: D_0D0031B8
type: gfx
offset: 0x31B8
D_0D0031E8:
symbol: D_0D0031E8
type: gfx
offset: 0x31E8
D_0D003218:
symbol: D_0D003218
type: gfx
offset: 0x3218
D_0D003248:
symbol: D_0D003248
type: gfx
offset: 0x3248
D_0D003278:
symbol: D_0D003278
type: gfx
offset: 0x3278
D_0D003288:
symbol: D_0D003288
type: gfx
offset: 0x3288
common_vtx_banana:
symbol: common_vtx_banana
type: vtx
count: 5
offset: 0x3298
common_vtx_flat_banana:
symbol: common_vtx_flat_banana
type: vtx
count: 6
offset: 0x32E8
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_model_banana:
symbol: common_model_banana
type: gfx
offset: 0x4B48
common_model_flat_banana:
symbol: common_model_flat_banana
type: gfx
offset: 0x4BD8
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
D_0D0052B8:
symbol: D_0D0052B8
type: gfx
offset: 0x52B8
D_0D005308:
symbol: D_0D005308
type: gfx
offset: 0x5308
D_0D005338:
symbol: D_0D005338
type: gfx
offset: 0x5338
D_0D005368:
symbol: D_0D005368
type: gfx
offset: 0x5368
D_toads_turnpike_0D005398:
symbol: D_toads_turnpike_0D005398
type: gfx
offset: 0x5398
D_toads_turnpike_0D0053B0:
symbol: D_toads_turnpike_0D0053B0
type: gfx
offset: 0x53B0
D_toads_turnpike_0D0053C8:
symbol: D_toads_turnpike_0D0053C8
type: gfx
offset: 0x53C8
D_toads_turnpike_0D0053F0:
symbol: D_toads_turnpike_0D0053F0
type: gfx
offset: 0x53F0
D_toads_turnpike_0D005418:
symbol: D_toads_turnpike_0D005418
type: gfx
offset: 0x5418
D_0D005430:
symbol: D_0D005430
type: vtx
offset: 0x5430
count: 4
common_vtx_player_minimap_icon:
symbol: common_vtx_player_minimap_icon
type: vtx
offset: 0x5470
count: 4
D_0D0054B0:
symbol: D_0D0054B0
type: vtx
offset: 0x54B0
count: 44
common_vtx_rectangle:
symbol: common_vtx_rectangle
type: vtx
offset: 0x5770
count: 4
D_0D0057B0:
symbol: D_0D0057B0
type: vtx
offset: 0x57B0
count: 4
D_0D0057F0:
symbol: D_0D0057F0
type: vtx
offset: 0x57F0
count: 15
D_0D005920:
symbol: D_0D005920
type: vtx
offset: 0x5920
count: 24
D_0D005AA0:
symbol: D_0D005AA0
type: vtx
offset: 0x5AA0
count: 4
D_0D005AE0:
symbol: D_0D005AE0
type: vtx
offset: 0x5AE0
count: 4
D_0D005B20:
symbol: D_0D005B20
type: vtx
offset: 0x5B20
count: 4
D_0D005B60:
symbol: D_0D005B60
type: vtx
offset: 0x5B60
count: 4
D_0D005BA0:
symbol: D_0D005BA0
type: vtx
offset: 0x5BA0
count: 3
D_0D005BD0:
symbol: D_0D005BD0
type: vtx
offset: 0x5BD0
count: 3
D_0D005C00:
symbol: D_0D005C00
type: vtx
offset: 0x5C00
count: 3
D_0D005C30:
symbol: D_0D005C30
type: vtx
offset: 0x5C30
count: 37
D_0D005E80:
symbol: D_0D005E80
type: vtx
offset: 0x5E80
count: 3
common_vtx_lakitu:
symbol: common_vtx_lakitu
type: vtx
offset: 0x5EB0
count: 8
D_0D005F30:
symbol: D_0D005F30
type: vtx
offset: 0x5F30
count: 8
D_0D005FB0:
symbol: D_0D005FB0
type: vtx
offset: 0x5FB0
count: 4
D_0D005FF0:
symbol: D_0D005FF0
type: vtx
offset: 0x5FF0
count: 4
D_0D006030:
symbol: D_0D006030
type: vtx
offset: 0x6030
count: 8
common_vtx_hedgehog:
symbol: common_vtx_hedgehog
type: vtx
offset: 0x60B0
count: 8
D_0D006130:
symbol: D_0D006130
type: vtx
offset: 0x6130
count: 8
D_0D0061B0:
symbol: D_0D0061B0
type: vtx
offset: 0x61B0
count: 16
D_0D0062B0:
symbol: D_0D0062B0
type: vtx
offset: 0x62B0
count: 32
D_0D0064B0:
symbol: D_0D0064B0
type: vtx
offset: 0x64B0
count: 40
common_vtx_also_lakitu:
symbol: common_vtx_also_lakitu
type: vtx
offset: 0x6730
count: 28
D_0D0068F0:
symbol: D_0D0068F0
type: vtx
offset: 0x68F0
count: 4
D_0D006930:
symbol: D_0D006930
type: gfx
offset: 0x6930
common_rectangle_display:
symbol: common_rectangle_display
type: gfx
offset: 0x6940
D_0D006950:
symbol: D_0D006950
type: gfx
offset: 0x6950
D_0D006968:
symbol: D_0D006968
type: gfx
offset: 0x6968
D_0D006980:
symbol: D_0D006980
type: gfx
offset: 0x6980
D_0D006998:
symbol: D_0D006998
type: gfx
offset: 0x6998
D_0D0069B0:
symbol: D_0D0069B0
type: gfx
offset: 0x69B0
D_0D0069C8:
symbol: D_0D0069C8
type: gfx
offset: 0x69C8
D_0D0069E0:
symbol: D_0D0069E0
type: gfx
offset: 0x69E0
D_0D0069F8:
symbol: D_0D0069F8
type: gfx
offset: 0x69F8
D_0D006A10:
symbol: D_0D006A10
type: gfx
offset: 0x6A10
D_0D006A28:
symbol: D_0D006A28
type: gfx
offset: 0x6A28
D_0D006A40:
symbol: D_0D006A40
type: gfx
offset: 0x6A40
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: 32
height: 32
format: tlut
common_texture_debug_font:
symbol: common_texture_debug_font
type: texture
offset: 0x6EF8
size: 0x800
colors: 32
ctype: u16
height: 32
format: tlut
D_0D0076F8:
symbol: D_0D0076F8
type: gfx
offset: 0x76F8
D_0D007780:
symbol: D_0D007780
type: gfx
offset: 0x7780
D_0D0077A0:
symbol: D_0D0077A0
type: gfx
offset: 0x77A0
D_0D0077D0:
symbol: D_0D0077D0
type: gfx
offset: 0x77D0
D_0D0077F8:
symbol: D_0D0077F8
type: gfx
offset: 0x77F8
D_0D007828:
symbol: D_0D007828
type: gfx
offset: 0x7828
D_0D007850:
symbol: D_0D007850
type: gfx
offset: 0x7850
D_0D007878:
symbol: D_0D007878
type: gfx
offset: 0x7878
D_0D0078A0:
symbol: D_0D0078A0
type: gfx
offset: 0x78A0
D_0D0078D0:
symbol: D_0D0078D0
type: gfx
offset: 0x78D0
D_0D0078F8:
symbol: D_0D0078F8
type: gfx
offset: 0x78F8
D_0D007928:
symbol: D_0D007928
type: gfx
offset: 0x7928
D_0D007948:
symbol: D_0D007948
type: gfx
offset: 0x7948
D_0D007968:
symbol: D_0D007968
type: gfx
offset: 0x7968
D_0D007988:
symbol: D_0D007988
type: gfx
offset: 0x7988
D_0D0079A8:
symbol: D_0D0079A8
type: gfx
offset: 0x79A8
D_0D0079C8:
symbol: D_0D0079C8
type: gfx
offset: 0x79C8
D_0D0079E8:
symbol: D_0D0079E8
type: gfx
offset: 0x79E8
D_0D007A08:
symbol: D_0D007A08
type: gfx
offset: 0x7A08
D_0D007A40:
symbol: D_0D007A40
type: gfx
offset: 0x7A40
D_0D007A60:
symbol: D_0D007A60
type: gfx
offset: 0x7A60
D_0D007A80:
symbol: D_0D007A80
type: gfx
offset: 0x7A80
D_0D007AA0:
symbol: D_0D007AA0
type: gfx
offset: 0x7AA0
D_0D007AC0:
symbol: D_0D007AC0
type: gfx
offset: 0x7AC0
D_0D007AE0:
symbol: D_0D007AE0
type: gfx
offset: 0x7AE0
D_0D007B00:
symbol: D_0D007B00
type: gfx
offset: 0x7B00
D_0D007B20:
symbol: D_0D007B20
type: gfx
offset: 0x7B20
D_0D007B98:
symbol: D_0D007B98
type: gfx
offset: 0x7B98
D_0D007C10:
symbol: D_0D007C10
type: gfx
offset: 0x7C10
D_0D007C88:
symbol: D_0D007C88
type: gfx
offset: 0x7C88
D_0D007CB8:
symbol: D_0D007CB8
type: gfx
offset: 0x7CB8
D_0D007CD8:
symbol: D_0D007CD8
type: gfx
offset: 0x7CD8
D_0D007CF8:
symbol: D_0D007CF8
type: gfx
offset: 0x7CF8
D_0D007D18:
symbol: D_0D007D18
type: gfx
offset: 0x7D18
D_0D007D38:
symbol: D_0D007D38
type: gfx
offset: 0x7D38
D_0D007D58:
symbol: D_0D007D58
type: gfx
offset: 0x7D58
D_0D007D78:
symbol: D_0D007D78
type: gfx
offset: 0x7D78
D_0D007D98:
symbol: D_0D007D98
type: gfx
offset: 0x7D98
D_0D007DB8:
symbol: D_0D007DB8
type: gfx
offset: 0x7DB8
D_0D007DD8:
symbol: D_0D007DD8
type: gfx
offset: 0x7DD8
D_0D007DF8:
symbol: D_0D007DF8
type: gfx
offset: 0x7DF8
D_0D007E18:
symbol: D_0D007E18
type: gfx
offset: 0x7E18
D_0D007E38:
symbol: D_0D007E38
type: gfx
offset: 0x7E38
D_0D007E58:
symbol: D_0D007E58
type: gfx
offset: 0x7E58
D_0D007E78:
symbol: D_0D007E78
type: gfx
offset: 0x7E78
D_0D007E98:
symbol: D_0D007E98
type: gfx
offset: 0x7E98
D_0D007EB8:
symbol: D_0D007EB8
type: gfx
offset: 0x7EB8
D_0D007ED8:
symbol: D_0D007ED8
type: gfx
offset: 0x7ED8
D_0D007EF8:
symbol: D_0D007EF8
type: gfx
offset: 0x7EF8
D_0D007F18:
symbol: D_0D007F18
type: gfx
offset: 0x7F18
D_0D007F38:
symbol: D_0D007F38
type: gfx
offset: 0x7F38
D_0D007F58:
symbol: D_0D007F58
type: gfx
offset: 0x7F58
D_0D007F78:
symbol: D_0D007F78
type: gfx
offset: 0x7F78
D_0D007F98:
symbol: D_0D007F98
type: gfx
offset: 0x7F98
D_0D007FB8:
symbol: D_0D007FB8
type: gfx
offset: 0x7FB8
D_0D007FE0:
symbol: D_0D007FE0
type: gfx
offset: 0x7FE0
D_0D008000:
symbol: D_0D008000
type: gfx
offset: 0x8000
D_0D008020:
symbol: D_0D008020
type: gfx
offset: 0x8020
D_0D008040:
symbol: D_0D008040
type: gfx
offset: 0x8040
D_0D008060:
symbol: D_0D008060
type: gfx
offset: 0x8060
D_0D008080:
symbol: D_0D008080
type: gfx
offset: 0x8080
D_0D008108:
symbol: D_0D008108
type: gfx
offset: 0x8108
D_0D008120:
symbol: D_0D008120
type: gfx
offset: 0x8120
D_0D008138:
symbol: D_0D008138
type: gfx
offset: 0x8138
D_0D008B78:
symbol: D_0D008B78
type: vtx
offset: 0x8B78
count: 4
D_0D008BB8:
symbol: D_0D008BB8
type: vtx
offset: 0x8BB8
count: 4
D_0D008BF8:
symbol: D_0D008BF8
type: vtx
offset: 0x8BF8
count: 4
D_0D008C38:
symbol: D_0D008C38
type: vtx
offset: 0x8C38
count: 4
common_square_plain_render:
symbol: common_square_plain_render
type: gfx
offset: 0x8C78
D_0D008C90:
symbol: D_0D008C90
type: gfx
offset: 0x8C90
common_setting_render_character:
symbol: common_setting_render_character
type: gfx
offset: 0x8CD8
D_0D008D10:
symbol: D_0D008D10
type: gfx
offset: 0x8D10
D_0D008D58:
symbol: D_0D008D58
type: gfx
offset: 0x8D58
D_0D008DA0:
symbol: D_0D008DA0
type: gfx
offset: 0x8DA0
D_0D008DB8:
symbol: D_0D008DB8
type: gfx
offset: 0x8DB8
D_0D008DF8:
symbol: D_0D008DF8
type: gfx
offset: 0x8DF8
D_0D008E20:
symbol: D_0D008E20
type: gfx
offset: 0x8E20
D_0D008E48:
symbol: D_0D008E48
type: gfx
offset: 0x8E48
D_0D008E70:
symbol: D_0D008E70
type: gfx
offset: 0x8E70
D_0D008E98:
symbol: D_0D008E98
type: mtx
offset: 0x8E98
count: 1
D_0D008ED8: # These 4 vtx may be an mtx like the one before here. It's difficult to say though as there are no references in the code-base.
symbol: D_0D008ED8
type: mtx
offset: 0x8ED8
count: 1
D_0D008F18:
symbol: D_0D008F18
type: mk64:driving_behaviour
offset: 0x8F18
D_0D008F28:
symbol: D_0D008F28
type: mk64:driving_behaviour
offset: 0x8F28
D_0D008F80:
symbol: D_0D008F80
type: mk64:driving_behaviour
offset: 0x8F80
D_0D008FB8:
symbol: D_0D008FB8
type: mk64:driving_behaviour
offset: 0x8FB8
D_0D009058:
symbol: D_0D009058
type: mk64:driving_behaviour
offset: 0x9058
D_0D0090B8:
symbol: D_0D0090B8
type: mk64:driving_behaviour
offset: 0x90B8
D_0D0090F8:
symbol: D_0D0090F8
type: mk64:driving_behaviour
offset: 0x90F8
D_0D009158:
symbol: D_0D009158
type: mk64:driving_behaviour
offset: 0x9158
D_0D009188:
symbol: D_0D009188
type: mk64:driving_behaviour
offset: 0x9188
D_0D0091E8:
symbol: D_0D0091E8
type: mk64:driving_behaviour
offset: 0x91E8
D_0D009210:
symbol: D_0D009210
type: mk64:driving_behaviour
offset: 0x9210
D_0D009238:
symbol: D_0D009238
type: mk64:driving_behaviour
offset: 0x9238
D_0D009260:
symbol: D_0D009260
type: mk64:driving_behaviour
offset: 0x9260
D_0D009280:
symbol: D_0D009280
type: mk64:driving_behaviour
offset: 0x9280
D_0D0092C8:
symbol: D_0D0092C8
type: mk64:driving_behaviour
offset: 0x92C8
D_0D009310:
symbol: D_0D009310
type: mk64:driving_behaviour
offset: 0x9310
D_0D0093C0:
symbol: D_0D0093C0
type: mk64:driving_behaviour
offset: 0x93C0
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
|