summaryrefslogtreecommitdiff
path: root/data/graphics/items/item_icon_table.inc
blob: 033292e63354836ad5857118c636962c6e838bc2 (plain)
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
	.align 2
gItemIconTable:: @ 8614410
@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Master Ball
	.4byte gItemIcon_MasterBall
	.4byte gItemIconPalette_MasterBall

@ Ultra Ball
	.4byte gItemIcon_UltraBall
	.4byte gItemIconPalette_UltraBall

@ Great Ball
	.4byte gItemIcon_GreatBall
	.4byte gItemIconPalette_GreatBall

@ Poké Ball
	.4byte gItemIcon_PokeBall
	.4byte gItemIconPalette_PokeBall

@ Safari Ball
	.4byte gItemIcon_SafariBall
	.4byte gItemIconPalette_SafariBall

@ Net Ball
	.4byte gItemIcon_NetBall
	.4byte gItemIconPalette_NetBall

@ Dive Ball
	.4byte gItemIcon_DiveBall
	.4byte gItemIconPalette_DiveBall

@ Nest Ball
	.4byte gItemIcon_NestBall
	.4byte gItemIconPalette_NestBall

@ Repeat Ball
	.4byte gItemIcon_RepeatBall
	.4byte gItemIconPalette_RepeatBall

@ Timer Ball
	.4byte gItemIcon_TimerBall
	.4byte gItemIconPalette_RepeatBall

@ Luxury Ball
	.4byte gItemIcon_LuxuryBall
	.4byte gItemIconPalette_LuxuryBall

@ Premier Ball
	.4byte gItemIcon_PremierBall
	.4byte gItemIconPalette_LuxuryBall

@ Potion
	.4byte gItemIcon_Potion
	.4byte gItemIconPalette_Potion

@ Antidote
	.4byte gItemIcon_Antidote
	.4byte gItemIconPalette_Antidote

@ Burn Heal
	.4byte gItemIcon_StatusHeal
	.4byte gItemIconPalette_BurnHeal

@ Ice Heal
	.4byte gItemIcon_StatusHeal
	.4byte gItemIconPalette_IceHeal

@ Awakening
	.4byte gItemIcon_StatusHeal
	.4byte gItemIconPalette_Awakening

@ Paralyze Heal
	.4byte gItemIcon_StatusHeal
	.4byte gItemIconPalette_ParalyzeHeal

@ Full Restore
	.4byte gItemIcon_LargePotion
	.4byte gItemIconPalette_FullRestore

@ Max Potion
	.4byte gItemIcon_LargePotion
	.4byte gItemIconPalette_MaxPotion

@ Hyper Potion
	.4byte gItemIcon_Potion
	.4byte gItemIconPalette_HyperPotion

@ Super Potion
	.4byte gItemIcon_Potion
	.4byte gItemIconPalette_SuperPotion

@ Full Heal
	.4byte gItemIcon_FullHeal
	.4byte gItemIconPalette_FullHeal

@ Revive
	.4byte gItemIcon_Revive
	.4byte gItemIconPalette_Revive

@ Max Revive
	.4byte gItemIcon_MaxRevive
	.4byte gItemIconPalette_Revive

@ Fresh Water
	.4byte gItemIcon_FreshWater
	.4byte gItemIconPalette_FreshWater

@ Soda Pop
	.4byte gItemIcon_SodaPop
	.4byte gItemIconPalette_SodaPop

@ Lemonade
	.4byte gItemIcon_Lemonade
	.4byte gItemIconPalette_Lemonade

@ Moomoo Milk
	.4byte gItemIcon_MoomooMilk
	.4byte gItemIconPalette_MoomooMilk

@ Energy Powder
	.4byte gItemIcon_Powder
	.4byte gItemIconPalette_EnergyPowder

@ Energy Root
	.4byte gItemIcon_EnergyRoot
	.4byte gItemIconPalette_EnergyRoot

@ Heal Powder
	.4byte gItemIcon_Powder
	.4byte gItemIconPalette_HealPowder

@ Revival Herb
	.4byte gItemIcon_RevivalHerb
	.4byte gItemIconPalette_RevivalHerb

@ Ether
	.4byte gItemIcon_Ether
	.4byte gItemIconPalette_Ether

@ Max Ether
	.4byte gItemIcon_Ether
	.4byte gItemIconPalette_MaxEther

@ Elixir
	.4byte gItemIcon_Ether
	.4byte gItemIconPalette_Elixir

@ Max Elixir
	.4byte gItemIcon_Ether
	.4byte gItemIconPalette_MaxElixir

@ Lava Cookie
	.4byte gItemIcon_LavaCookie
	.4byte gItemIconPalette_LavaCookieAndLetter

@ Blue Flute
	.4byte gItemIcon_Flute
	.4byte gItemIconPalette_BlueFlute

@ Yellow Flute
	.4byte gItemIcon_Flute
	.4byte gItemIconPalette_YellowFlute

@ Red Flute
	.4byte gItemIcon_Flute
	.4byte gItemIconPalette_RedFlute

@ Black Flute
	.4byte gItemIcon_Flute
	.4byte gItemIconPalette_BlackFlute

@ White Flute
	.4byte gItemIcon_Flute
	.4byte gItemIconPalette_WhiteFlute

@ Berry Juice
	.4byte gItemIcon_BerryJuice
	.4byte gItemIconPalette_BerryJuice

@ Sacred Ash
	.4byte gItemIcon_SacredAsh
	.4byte gItemIconPalette_SacredAsh

@ Shoal Salt
	.4byte gItemIcon_Powder
	.4byte gItemIconPalette_ShoalSalt

@ Shoal Shell
	.4byte gItemIcon_ShoalShell
	.4byte gItemIconPalette_Shell

@ Red Shard
	.4byte gItemIcon_Shard
	.4byte gItemIconPalette_RedShard

@ Blue Shard
	.4byte gItemIcon_Shard
	.4byte gItemIconPalette_BlueShard

@ Yellow Shard
	.4byte gItemIcon_Shard
	.4byte gItemIconPalette_YellowShard

@ Green Shard
	.4byte gItemIcon_Shard
	.4byte gItemIconPalette_GreenShard

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ HP Up
	.4byte gItemIcon_HPUp
	.4byte gItemIconPalette_HPUp

@ Protein
	.4byte gItemIcon_Vitamin
	.4byte gItemIconPalette_Protein

@ Iron
	.4byte gItemIcon_Vitamin
	.4byte gItemIconPalette_Iron

@ Carbos
	.4byte gItemIcon_Vitamin
	.4byte gItemIconPalette_Carbos

@ Calcium
	.4byte gItemIcon_Vitamin
	.4byte gItemIconPalette_Calcium

@ Rare Candy
	.4byte gItemIcon_RareCandy
	.4byte gItemIconPalette_RareCandy

@ PP Up
	.4byte gItemIcon_PPUp
	.4byte gItemIconPalette_PPUp

@ Zinc
	.4byte gItemIcon_Vitamin
	.4byte gItemIconPalette_Zinc

@ Pp Max
	.4byte gItemIcon_PPMax
	.4byte gItemIconPalette_PPMax

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Guard Spec.
	.4byte gItemIcon_BattleStatItem
	.4byte gItemIconPalette_GuardSpec

@ Dire Hit
	.4byte gItemIcon_BattleStatItem
	.4byte gItemIconPalette_DireHit

@ X Attack
	.4byte gItemIcon_BattleStatItem
	.4byte gItemIconPalette_XAttack

@ X Defend
	.4byte gItemIcon_BattleStatItem
	.4byte gItemIconPalette_XDefend

@ X Speed
	.4byte gItemIcon_BattleStatItem
	.4byte gItemIconPalette_XSpeed

@ X Accuracy
	.4byte gItemIcon_BattleStatItem
	.4byte gItemIconPalette_XAccuracy

@ X Special
	.4byte gItemIcon_BattleStatItem
	.4byte gItemIconPalette_XSpecial

@ Poké Doll
	.4byte gItemIcon_PokeDoll
	.4byte gItemIconPalette_PokeDoll

@ Fluffy Tail
	.4byte gItemIcon_FluffyTail
	.4byte gItemIconPalette_FluffyTail

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Super Repel
	.4byte gItemIcon_Repel
	.4byte gItemIconPalette_SuperRepel

@ Max Repel
	.4byte gItemIcon_Repel
	.4byte gItemIconPalette_MaxRepel

@ Escape Rope
	.4byte gItemIcon_EscapeRope
	.4byte gItemIconPalette_EscapeRope

@ Repel
	.4byte gItemIcon_Repel
	.4byte gItemIconPalette_Repel

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Sun Stone
	.4byte gItemIcon_SunStone
	.4byte gItemIconPalette_SunStone

@ Moon Stone
	.4byte gItemIcon_MoonStone
	.4byte gItemIconPalette_MoonStone

@ Fire Stone
	.4byte gItemIcon_FireStone
	.4byte gItemIconPalette_FireStone

@ Thunder Stone
	.4byte gItemIcon_ThunderStone
	.4byte gItemIconPalette_ThunderStone

@ Water Stone
	.4byte gItemIcon_WaterStone
	.4byte gItemIconPalette_WaterStone

@ Leaf Stone
	.4byte gItemIcon_LeafStone
	.4byte gItemIconPalette_LeafStone

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Tiny Mushroom
	.4byte gItemIcon_TinyMushroom
	.4byte gItemIconPalette_Mushroom

@ Big Mushroom
	.4byte gItemIcon_BigMushroom
	.4byte gItemIconPalette_Mushroom

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Pearl
	.4byte gItemIcon_Pearl
	.4byte gItemIconPalette_Pearl

@ Big Pearl
	.4byte gItemIcon_BigPearl
	.4byte gItemIconPalette_Pearl

@ Stardust
	.4byte gItemIcon_Stardust
	.4byte gItemIconPalette_Star

@ Star Piece
	.4byte gItemIcon_StarPiece
	.4byte gItemIconPalette_Star

@ Nugget
	.4byte gItemIcon_Nugget
	.4byte gItemIconPalette_Nugget

@ Heart Scale
	.4byte gItemIcon_HeartScale
	.4byte gItemIconPalette_HeartScale

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Orange Mail
	.4byte gItemIcon_OrangeMail
	.4byte gItemIconPalette_OrangeMail

@ Harbor Mail
	.4byte gItemIcon_HarborMail
	.4byte gItemIconPalette_HarborMail

@ Glitter Mail
	.4byte gItemIcon_GlitterMail
	.4byte gItemIconPalette_GlitterMail

@ Mech Mail
	.4byte gItemIcon_MechMail
	.4byte gItemIconPalette_MechMail

@ Wood Mail
	.4byte gItemIcon_WoodMail
	.4byte gItemIconPalette_WoodMail

@ Wave Mail
	.4byte gItemIcon_WaveMail
	.4byte gItemIconPalette_WaveMail

@ Bead Mail
	.4byte gItemIcon_BeadMail
	.4byte gItemIconPalette_BeadMail

@ Shadow Mail
	.4byte gItemIcon_ShadowMail
	.4byte gItemIconPalette_ShadowMail

@ Tropic Mail
	.4byte gItemIcon_TropicMail
	.4byte gItemIconPalette_TropicMail

@ Dream Mail
	.4byte gItemIcon_DreamMail
	.4byte gItemIconPalette_DreamMail

@ Fab Mail
	.4byte gItemIcon_FabMail
	.4byte gItemIconPalette_FabMail

@ Retro Mail
	.4byte gItemIcon_RetroMail
	.4byte gItemIconPalette_RetroMail

@ Cheri Berry
	.4byte gItemIcon_CheriBerry
	.4byte gItemIconPalette_CheriBerry

@ Chesto Berry
	.4byte gItemIcon_ChestoBerry
	.4byte gItemIconPalette_ChestoBerry

@ Pecha Berry
	.4byte gItemIcon_PechaBerry
	.4byte gItemIconPalette_PechaBerry

@ Rawst Berry
	.4byte gItemIcon_RawstBerry
	.4byte gItemIconPalette_RawstBerry

@ Aspear Berry
	.4byte gItemIcon_AspearBerry
	.4byte gItemIconPalette_AspearBerry

@ Leppa Berry
	.4byte gItemIcon_LeppaBerry
	.4byte gItemIconPalette_LeppaBerry

@ Oran Berry
	.4byte gItemIcon_OranBerry
	.4byte gItemIconPalette_OranBerry

@ Persim Berry
	.4byte gItemIcon_PersimBerry
	.4byte gItemIconPalette_PersimBerry

@ Lum Berry
	.4byte gItemIcon_LumBerry
	.4byte gItemIconPalette_LumBerry

@ Sitrus Berry
	.4byte gItemIcon_SitrusBerry
	.4byte gItemIconPalette_SitrusBerry

@ Figy Berry
	.4byte gItemIcon_FigyBerry
	.4byte gItemIconPalette_FigyBerry

@ Wiki Berry
	.4byte gItemIcon_WikiBerry
	.4byte gItemIconPalette_WikiBerry

@ Mago Berry
	.4byte gItemIcon_MagoBerry
	.4byte gItemIconPalette_MagoBerry

@ Aguav Berry
	.4byte gItemIcon_AguavBerry
	.4byte gItemIconPalette_AguavBerry

@ Iapapa Berry
	.4byte gItemIcon_IapapaBerry
	.4byte gItemIconPalette_IapapaBerry

@ Razz Berry
	.4byte gItemIcon_RazzBerry
	.4byte gItemIconPalette_RazzBerry

@ Bluk Berry
	.4byte gItemIcon_BlukBerry
	.4byte gItemIconPalette_BlukBerry

@ Nanab Berry
	.4byte gItemIcon_NanabBerry
	.4byte gItemIconPalette_NanabBerry

@ Wepear Berry
	.4byte gItemIcon_WepearBerry
	.4byte gItemIconPalette_WepearBerry

@ Pinap Berry
	.4byte gItemIcon_PinapBerry
	.4byte gItemIconPalette_PinapBerry

@ Pomeg Berry
	.4byte gItemIcon_PomegBerry
	.4byte gItemIconPalette_PomegBerry

@ Kelpsy Berry
	.4byte gItemIcon_KelpsyBerry
	.4byte gItemIconPalette_KelpsyBerry

@ Qualot Berry
	.4byte gItemIcon_QualotBerry
	.4byte gItemIconPalette_QualotBerry

@ Hondew Berry
	.4byte gItemIcon_HondewBerry
	.4byte gItemIconPalette_HondewBerry

@ Grepa Berry
	.4byte gItemIcon_GrepaBerry
	.4byte gItemIconPalette_GrepaBerry

@ Tamato Berry
	.4byte gItemIcon_TamatoBerry
	.4byte gItemIconPalette_TamatoBerry

@ Cornn Berry
	.4byte gItemIcon_CornnBerry
	.4byte gItemIconPalette_CornnBerry

@ Magost Berry
	.4byte gItemIcon_MagostBerry
	.4byte gItemIconPalette_MagostBerry

@ Rabuta Berry
	.4byte gItemIcon_RabutaBerry
	.4byte gItemIconPalette_RabutaBerry

@ Nomel Berry
	.4byte gItemIcon_NomelBerry
	.4byte gItemIconPalette_NomelBerry

@ Spelon Berry
	.4byte gItemIcon_SpelonBerry
	.4byte gItemIconPalette_SpelonBerry

@ Pamtre Berry
	.4byte gItemIcon_PamtreBerry
	.4byte gItemIconPalette_PamtreBerry

@ Watmel Berry
	.4byte gItemIcon_WatmelBerry
	.4byte gItemIconPalette_WatmelBerry

@ Durin Berry
	.4byte gItemIcon_DurinBerry
	.4byte gItemIconPalette_DurinBerry

@ Belue Berry
	.4byte gItemIcon_BelueBerry
	.4byte gItemIconPalette_BelueBerry

@ Liechi Berry
	.4byte gItemIcon_LiechiBerry
	.4byte gItemIconPalette_LiechiBerry

@ Ganlon Berry
	.4byte gItemIcon_GanlonBerry
	.4byte gItemIconPalette_GanlonBerry

@ Salac Berry
	.4byte gItemIcon_SalacBerry
	.4byte gItemIconPalette_SalacBerry

@ Petaya Berry
	.4byte gItemIcon_PetayaBerry
	.4byte gItemIconPalette_PetayaBerry

@ Apicot Berry
	.4byte gItemIcon_ApicotBerry
	.4byte gItemIconPalette_ApicotBerry

@ Lansat Berry
	.4byte gItemIcon_LansatBerry
	.4byte gItemIconPalette_LansatBerry

@ Starf Berry
	.4byte gItemIcon_StarfBerry
	.4byte gItemIconPalette_StarfBerry

@ Enigma Berry
	.4byte gItemIcon_EnigmaBerry
	.4byte gItemIconPalette_EnigmaBerry

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Bright Powder
	.4byte gItemIcon_BrightPowder
	.4byte gItemIconPalette_BrightPowder

@ White Herb
	.4byte gItemIcon_InBattleHerb
	.4byte gItemIconPalette_WhiteHerb

@ Macho Brace
	.4byte gItemIcon_MachoBrace
	.4byte gItemIconPalette_MachoBrace

@ Exp. Share
	.4byte gItemIcon_ExpShare
	.4byte gItemIconPalette_ExpShare

@ Quick Claw
	.4byte gItemIcon_QuickClaw
	.4byte gItemIconPalette_QuickClaw

@ Soothe Bell
	.4byte gItemIcon_SootheBell
	.4byte gItemIconPalette_SootheBell

@ Mental Herb
	.4byte gItemIcon_InBattleHerb
	.4byte gItemIconPalette_MentalHerb

@ Choice Band
	.4byte gItemIcon_ChoiceBand
	.4byte gItemIconPalette_ChoiceBand

@ King's Rock
	.4byte gItemIcon_KingsRock
	.4byte gItemIconPalette_KingsRock

@ Silver Powder
	.4byte gItemIcon_SilverPowder
	.4byte gItemIconPalette_SilverPowder

@ Amulet Coin
	.4byte gItemIcon_AmuletCoin
	.4byte gItemIconPalette_AmuletCoin

@ Cleanse Tag
	.4byte gItemIcon_CleanseTag
	.4byte gItemIconPalette_CleanseTag

@ Soul Dew
	.4byte gItemIcon_SoulDew
	.4byte gItemIconPalette_SoulDew

@ Deep Sea Tooth
	.4byte gItemIcon_DeepSeaTooth
	.4byte gItemIconPalette_DeepSeaTooth

@ Deep Sea Scale
	.4byte gItemIcon_DeepSeaScale
	.4byte gItemIconPalette_DeepSeaScale

@ Smoke Ball
	.4byte gItemIcon_SmokeBall
	.4byte gItemIconPalette_SmokeBall

@ Everstone
	.4byte gItemIcon_Everstone
	.4byte gItemIconPalette_Everstone

@ Focus Band
	.4byte gItemIcon_FocusBand
	.4byte gItemIconPalette_FocusBand

@ Lucky Egg
	.4byte gItemIcon_LuckyEgg
	.4byte gItemIconPalette_LuckyEgg

@ Scope Lens
	.4byte gItemIcon_ScopeLens
	.4byte gItemIconPalette_ScopeLens

@ Metal Coat
	.4byte gItemIcon_MetalCoat
	.4byte gItemIconPalette_MetalCoat

@ Leftovers
	.4byte gItemIcon_Leftovers
	.4byte gItemIconPalette_Leftovers

@ Dragon Scale
	.4byte gItemIcon_DragonScale
	.4byte gItemIconPalette_DragonScale

@ Light Ball
	.4byte gItemIcon_LightBall
	.4byte gItemIconPalette_LightBall

@ Soft Sand
	.4byte gItemIcon_SoftSand
	.4byte gItemIconPalette_SoftSand

@ Hard Stone
	.4byte gItemIcon_HardStone
	.4byte gItemIconPalette_HardStone

@ Miracle Seed
	.4byte gItemIcon_MiracleSeed
	.4byte gItemIconPalette_MiracleSeed

@ Black Glasses
	.4byte gItemIcon_BlackGlasses
	.4byte gItemIconPalette_BlackTypeEnhancingItem

@ Black Belt
	.4byte gItemIcon_BlackBelt
	.4byte gItemIconPalette_BlackTypeEnhancingItem

@ Magnet
	.4byte gItemIcon_Magnet
	.4byte gItemIconPalette_Magnet

@ Mystic Water
	.4byte gItemIcon_MysticWater
	.4byte gItemIconPalette_MysticWater

@ Sharp Beak
	.4byte gItemIcon_SharpBeak
	.4byte gItemIconPalette_SharpBeak

@ Poison Barb
	.4byte gItemIcon_PoisonBarb
	.4byte gItemIconPalette_PoisonBarb

@ Never-Melt Ice
	.4byte gItemIcon_NeverMeltIce
	.4byte gItemIconPalette_NeverMeltIce

@ Spell Tag
	.4byte gItemIcon_SpellTag
	.4byte gItemIconPalette_SpellTag

@ Twisted Spoon
	.4byte gItemIcon_TwistedSpoon
	.4byte gItemIconPalette_TwistedSpoon

@ Charcoal
	.4byte gItemIcon_Charcoal
	.4byte gItemIconPalette_Charcoal

@ Dragon Fang
	.4byte gItemIcon_DragonFang
	.4byte gItemIconPalette_DragonFang

@ Silk Scarf
	.4byte gItemIcon_SilkScarf
	.4byte gItemIconPalette_SilkScarf

@ Up-Grade
	.4byte gItemIcon_UpGrade
	.4byte gItemIconPalette_UpGrade

@ Shell Bell
	.4byte gItemIcon_ShellBell
	.4byte gItemIconPalette_Shell

@ Sea Incense
	.4byte gItemIcon_SeaIncense
	.4byte gItemIconPalette_SeaIncense

@ Lax Incense
	.4byte gItemIcon_LaxIncense
	.4byte gItemIconPalette_LaxIncense

@ Lucky Punch
	.4byte gItemIcon_LuckyPunch
	.4byte gItemIconPalette_LuckyPunch

@ Metal Powder
	.4byte gItemIcon_MetalPowder
	.4byte gItemIconPalette_MetalPowder

@ Thick Club
	.4byte gItemIcon_ThickClub
	.4byte gItemIconPalette_ThickClub

@ Stick
	.4byte gItemIcon_Stick
	.4byte gItemIconPalette_Stick

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Red Scarf
	.4byte gItemIcon_Scarf
	.4byte gItemIconPalette_RedScarf

@ Blue Scarf
	.4byte gItemIcon_Scarf
	.4byte gItemIconPalette_BlueScarf

@ Pink Scarf
	.4byte gItemIcon_Scarf
	.4byte gItemIconPalette_PinkScarf

@ Green Scarf
	.4byte gItemIcon_Scarf
	.4byte gItemIconPalette_GreenScarf

@ Yellow Scarf
	.4byte gItemIcon_Scarf
	.4byte gItemIconPalette_YellowScarf

@ Mach Bike
	.4byte gItemIcon_MachBike
	.4byte gItemIconPalette_MachBike

@ Coin Case
	.4byte gItemIcon_CoinCase
	.4byte gItemIconPalette_CoinCase

@ Itemfinder
	.4byte gItemIcon_Itemfinder
	.4byte gItemIconPalette_Itemfinder

@ Old Rod
	.4byte gItemIcon_OldRod
	.4byte gItemIconPalette_OldRod

@ Good Rod
	.4byte gItemIcon_GoodRod
	.4byte gItemIconPalette_GoodRod

@ Super Rod
	.4byte gItemIcon_SuperRod
	.4byte gItemIconPalette_SuperRod

@ S.S. Ticket
	.4byte gItemIcon_SSTicket
	.4byte gItemIconPalette_SSTicket

@ Contest Pass
	.4byte gItemIcon_ContestPass
	.4byte gItemIconPalette_ContestPass

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Wailmer Pail
	.4byte gItemIcon_WailmerPail
	.4byte gItemIconPalette_WailmerPail

@ Devon Goods
	.4byte gItemIcon_DevonGoods
	.4byte gItemIconPalette_DevonGoods

@ Soot Sack
	.4byte gItemIcon_SootSack
	.4byte gItemIconPalette_SootSack

@ Basement Key
	.4byte gItemIcon_BasementKey
	.4byte gItemIconPalette_OldKey

@ Acro Bike
	.4byte gItemIcon_AcroBike
	.4byte gItemIconPalette_AcroBike

@ Pokéblock Case
	.4byte gItemIcon_PokeblockCase
	.4byte gItemIconPalette_PokeblockCase

@ Letter
	.4byte gItemIcon_Letter
	.4byte gItemIconPalette_LavaCookieAndLetter

@ Eon Ticket
	.4byte gItemIcon_EonTicket
	.4byte gItemIconPalette_EonTicket

@ Red Orb
	.4byte gItemIcon_Orb
	.4byte gItemIconPalette_RedOrb

@ Blue Orb
	.4byte gItemIcon_Orb
	.4byte gItemIconPalette_BlueOrb

@ Scanner
	.4byte gItemIcon_Scanner
	.4byte gItemIconPalette_Scanner

@ Go-Goggles
	.4byte gItemIcon_GoGoggles
	.4byte gItemIconPalette_GoGoggles

@ Meteorite
	.4byte gItemIcon_Meteorite
	.4byte gItemIconPalette_Meteorite

@ Rm. 1 Key
	.4byte gItemIcon_Room1Key
	.4byte gItemIconPalette_Key

@ Rm. 2 Key
	.4byte gItemIcon_Room2Key
	.4byte gItemIconPalette_Key

@ Rm. 4 Key
	.4byte gItemIcon_Room4Key
	.4byte gItemIconPalette_Key

@ Rm. 6 Key
	.4byte gItemIcon_Room6Key
	.4byte gItemIconPalette_Key

@ Storage Key
	.4byte gItemIcon_StorageKey
	.4byte gItemIconPalette_OldKey

@ Root Fossil
	.4byte gItemIcon_RootFossil
	.4byte gItemIconPalette_HoennFossil

@ Claw Fossil
	.4byte gItemIcon_ClawFossil
	.4byte gItemIconPalette_HoennFossil

@ Devon Scope
	.4byte gItemIcon_DevonScope
	.4byte gItemIconPalette_DevonScope

@ TM01
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_FightingTMHM

@ TM02
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_DragonTMHM

@ TM03
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_WaterTMHM

@ TM04
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_PsychicTMHM

@ TM05
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM06
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_PoisonTMHM

@ TM07
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_IceTMHM

@ TM08
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_FightingTMHM

@ TM09
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_GrassTMHM

@ TM10
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM11
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_FireTMHM

@ TM12
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_DarkTMHM

@ TM13
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_IceTMHM

@ TM14
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_IceTMHM

@ TM15
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM16
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_PsychicTMHM

@ TM17
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM18
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_WaterTMHM

@ TM19
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_GrassTMHM

@ TM20
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM21
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM22
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_GrassTMHM

@ TM23
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_SteelTMHM

@ TM24
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_ElectricTMHM

@ TM25
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_ElectricTMHM

@ TM26
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_GroundTMHM

@ TM27
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM28
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_GroundTMHM

@ TM29
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_PsychicTMHM

@ TM30
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_GhostTMHM

@ TM31
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_FightingTMHM

@ TM32
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM33
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_PsychicTMHM

@ TM34
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_ElectricTMHM

@ TM35
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_FireTMHM

@ TM36
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_PoisonTMHM

@ TM37
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_RockTMHM

@ TM38
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_FireTMHM

@ TM39
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_RockTMHM

@ TM40
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_FlyingTMHM

@ TM41
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_DarkTMHM

@ TM42
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM43
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM44
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_PsychicTMHM

@ TM45
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_NormalTMHM

@ TM46
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_DarkTMHM

@ TM47
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_SteelTMHM

@ TM48
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_PsychicTMHM

@ TM49
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_DarkTMHM

@ TM50
	.4byte gItemIcon_TM
	.4byte gItemIconPalette_FireTMHM

@ HM01
	.4byte gItemIcon_HM
	.4byte gItemIconPalette_NormalTMHM

@ HM02
	.4byte gItemIcon_HM
	.4byte gItemIconPalette_FlyingTMHM

@ HM03
	.4byte gItemIcon_HM
	.4byte gItemIconPalette_WaterTMHM

@ HM04
	.4byte gItemIcon_HM
	.4byte gItemIconPalette_NormalTMHM

@ HM05
	.4byte gItemIcon_HM
	.4byte gItemIconPalette_NormalTMHM

@ HM06
	.4byte gItemIcon_HM
	.4byte gItemIconPalette_FightingTMHM

@ HM07
	.4byte gItemIcon_HM
	.4byte gItemIconPalette_WaterTMHM

@ HM08
	.4byte gItemIcon_HM
	.4byte gItemIconPalette_WaterTMHM

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ ????????
	.4byte gItemIcon_QuestionMark
	.4byte gItemIconPalette_QuestionMark

@ Oak's Parcel
	.4byte gItemIcon_OaksParcel
	.4byte gItemIconPalette_OaksParcel

@ Poké Flute
	.4byte gItemIcon_PokeFlute
	.4byte gItemIconPalette_PokeFlute

@ Secret Key
	.4byte gItemIcon_SecretKey
	.4byte gItemIconPalette_SecretKey

@ Bike Voucher
	.4byte gItemIcon_BikeVoucher
	.4byte gItemIconPalette_BikeVoucher

@ Gold Teeth
	.4byte gItemIcon_GoldTeeth
	.4byte gItemIconPalette_GoldTeeth

@ Old Amber
	.4byte gItemIcon_OldAmber
	.4byte gItemIconPalette_OldAmber

@ Card Key
	.4byte gItemIcon_CardKey
	.4byte gItemIconPalette_CardKey

@ Lift Key
	.4byte gItemIcon_LiftKey
	.4byte gItemIconPalette_Key

@ Helix Fossil
	.4byte gItemIcon_HelixFossil
	.4byte gItemIconPalette_KantoFossil

@ Dome Fossil
	.4byte gItemIcon_DomeFossil
	.4byte gItemIconPalette_KantoFossil

@ Silph Scope
	.4byte gItemIcon_SilphScope
	.4byte gItemIconPalette_SilphScope

@ Bicycle
	.4byte gItemIcon_Bicycle
	.4byte gItemIconPalette_Bicycle

@ Town Map
	.4byte gItemIcon_TownMap
	.4byte gItemIconPalette_TownMap

@ Vs. Seeker
	.4byte gItemIcon_VSSeeker
	.4byte gItemIconPalette_VSSeeker

@ Fame Checker
	.4byte gItemIcon_FameChecker
	.4byte gItemIconPalette_FameChecker

@ TM Case
	.4byte gItemIcon_TMCase
	.4byte gItemIconPalette_TMCase

@ Berry Pouch
	.4byte gItemIcon_BerryPouch
	.4byte gItemIconPalette_BerryPouch

@ Teachy TV
	.4byte gItemIcon_TeachyTV
	.4byte gItemIconPalette_TeachyTV

@ Tri-Pass
	.4byte gItemIcon_TriPass
	.4byte gItemIconPalette_TriPass

@ Rainbow Pass
	.4byte gItemIcon_RainbowPass
	.4byte gItemIconPalette_RainbowPass

@ Tea
	.4byte gItemIcon_Tea
	.4byte gItemIconPalette_Tea

@ Mystic Ticket
	.4byte gItemIcon_MysticTicket
	.4byte gItemIconPalette_MysticTicket

@ Aurora Ticket
	.4byte gItemIcon_AuroraTicket
	.4byte gItemIconPalette_AuroraTicket

@ Powder Jar
	.4byte gItemIcon_PowderJar
	.4byte gItemIconPalette_PowderJar

@ Ruby
	.4byte gItemIcon_Gem
	.4byte gItemIconPalette_Ruby

@ Sapphire
	.4byte gItemIcon_Gem
	.4byte gItemIconPalette_Sapphire

@ Magma Emblem
	.4byte gItemIcon_MagmaEmblem
	.4byte gItemIconPalette_MagmaEmblem

@ Old Sea Map
	.4byte gItemIcon_OldSeaMap
	.4byte gItemIconPalette_OldSeaMap

@ Return to field arrow
	.4byte gItemIcon_ReturnToFieldArrow
	.4byte gItemIconPalette_ReturnToFieldArrow