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
|
Pack:
ld hl, wOptions
set NO_TEXT_SCROLL, [hl]
call Function10aba
.asm_10438
call JoyTextDelay
ld a, [wce63]
bit 7, a
jr nz, .asm_1044a
call Function10456
call DelayFrame
jr .asm_10438
.asm_1044a
ld a, [wce65]
ld [wcfc8], a
ld hl, wOptions
res NO_TEXT_SCROLL, [hl]
ret
Function10456: ; 10456 (4:4456)
ld a, [wce63]
ld hl, .Jumptable ; $4460
call Function10c9b
jp hl
.Jumptable
dw Pack_InitGFX
dw Pack_InitItemsPocket
dw Pack_ItemsPocketMenu
dw Pack_InitBallsPocket
dw Pack_BallsPocketMenu
dw Pack_InitKeyItemsPocket
dw Pack_KeyItemsPocketMenu
dw Pack_InitTMHMPocket
dw Pack_TMHMPocketMenu
dw Pack_ExitNoScript
dw Pack_ExitRunScript
Pack_InitGFX:
xor a
ldh [hBGMapMode], a
call Function10d70
ld a, [wce64]
ld [wce63], a
call Function10e5b
ret
Pack_InitItemsPocket:
xor a
ld [wce65], a
call Function10e51
call Function10dd6
call Function10cca
call Function10c96
ret
Pack_ItemsPocketMenu:
ld hl, ItemsPocketMenuDataHeader
call CopyMenuHeader
ld a, [wcfca]
ld [wMenuCursorBuffer], a
ld a, [wcfcf]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfcf], a
ld a, [wMenuCursorY]
ld [wcfca], a
.asm_104b7
ld b, $7
ld c, $3
call Function10cef
ret c
call Function105f5
ret
Pack_InitKeyItemsPocket:
ld a, $2
ld [wce65], a
call Function10e51
call Function10dd6
call Function10cca
call Function10c96
ret
Pack_KeyItemsPocketMenu:
ld hl, KeyItemsPocketMenuDataHeader ; $4e9a
call CopyMenuHeader
ld a, [wcfcb]
ld [wMenuCursorBuffer], a
ld a, [wcfd0]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfd0], a
ld a, [wMenuCursorY]
ld [wcfcb], a
ld b, $3
ld c, $7
call Function10cef
ret c
call Function105f5
ret
Pack_InitTMHMPocket:
ld a, $3
ld [wce65], a
call Function10e51
call Function10dd6
xor a
ldh [hBGMapMode], a
call Function10cca
call Function10c96
ret
Pack_TMHMPocketMenu:
farcall Pack_TMHMPocketMenu_
ld b, $5
ld c, $1
call Function10cef
ret c
farcall _CheckTossableItem
ld a, [wItemAttributeParamBuffer]
and a
jr nz, .asm_1053a
ld hl, TMHMPocketSubmenuDataHeader_Give ; $456b
ld de, TMHMPocketSubmenuJumptable_Give ; $4583
jr .asm_10540
.asm_1053a
ld hl, TMHMPocketSubmenuDataHeader_NoGive ; $4554
ld de, TMHMPocketSubmenuJumptable_NoGive ; $4567
.asm_10540
push de
call LoadMenuHeader
call VerticalMenu
call ExitMenu
pop hl
ret c
ld a, [wMenuCursorY]
dec a
call Function10c9b
jp hl
TMHMPocketSubmenuDataHeader_NoGive:
db $40
db 07, 00
db 11, 06
dw .MenuData2
db 1
.MenuData2:
db $c0
db 2
db "USE@"
db "QUIT@"
TMHMPocketSubmenuJumptable_NoGive:
dw UseTMorHM
dw QuitItemSubmenu
TMHMPocketSubmenuDataHeader_Give:
db $40
db 05, 00
db 11, 06
dw .MenuData2
db 1
.MenuData2:
db $c0
db 3
db "USE@"
db "GIVE@"
db "QUIT@"
TMHMPocketSubmenuJumptable_Give:
dw UseTMorHM
dw GiveItem
dw QuitItemSubmenu
UseTMorHM:
farcall AskTeachTMHM
ret c
farcall ChooseMonToLearnTMHM
jr c, .asm_105a9
ld hl, wOptions
ld a, [hl]
push af
res 4, [hl]
farcall TeachTMHM
pop af
ld [wOptions], a
.asm_105a9
xor a
ldh [hBGMapMode], a
call Function10d70
call Function10cca
call Function10e5b
ret
Pack_InitBallsPocket:
ld a, $1
ld [wce65], a
call Function10e51
call Function10dd6
call Function10cca
call Function10c96
ret
Pack_BallsPocketMenu:
ld hl, BallsPocketMenuDataHeader ; $4eca
call CopyMenuHeader
ld a, [wcfcc]
ld [wMenuCursorBuffer], a
ld a, [wcfd1]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfd1], a
ld a, [wMenuCursorY]
ld [wcfcc], a
ld b, $1
ld c, $5
call Function10cef
ret c
call Function105f5
ret
Function105f5: ; 105f5 (4:45f5)
farcall _CheckTossableItem
ld a, [wItemAttributeParamBuffer]
and a
jr nz, .asm_10629
farcall CheckSelectableItem
ld a, [wItemAttributeParamBuffer]
and a
jr nz, .asm_1061b
farcall CheckItemMenu
ld a, [wItemAttributeParamBuffer]
and a
jr nz, .asm_10637
jr .asm_10657
.asm_1061b
farcall CheckItemMenu
ld a, [wItemAttributeParamBuffer]
and a
jr nz, .asm_1063f
jr .asm_1065f
.asm_10629
farcall CheckSelectableItem
ld a, [wItemAttributeParamBuffer]
and a
jr nz, .asm_10647
jr .asm_1064f
.asm_10637
ld hl, ItemSubmenuDataHeader_UseGiveTossSelQuit ; $4679
ld de, ItemSubmenuJumptable_UseGiveTossSelQuit ; $469a
jr .asm_10665
.asm_1063f
ld hl, ItemSubmenuDataHeader_UseGiveTossQuit ; $46a4
ld de, ItemSubmenuJumptable_UseGiveTossQuit ; $46c1
jr .asm_10665
.asm_10647
ld hl, ItemSubmenuDataHeader_UseQuit ; $46c9
ld de, ItemSubmenuJumptable_UseQuit ; $46dc
jr .asm_10665
.asm_1064f
ld hl, ItemSubmenuDataHeader_UseSelQuit ; $46e0
ld de, ItemSubmenuJumptable_UseSelQuit ; $46f7
jr .asm_10665
.asm_10657
ld hl, ItemSubmenuDataHeader_GiveTossSelQuit ; $46fd
ld de, ItemSubmenuJumptable_GiveTossSelQuit ; $471a
jr .asm_10665
.asm_1065f
ld hl, ItemSubmenuDataHeader_GiveTossQuit ; $4722
ld de, ItemSubmenuJumptable_GiveTossQuit ; $473b
.asm_10665
push de
call LoadMenuHeader
call VerticalMenu
call ExitMenu
pop hl
ret c
ld a, [wMenuCursorY]
dec a
call Function10c9b
jp hl
ItemSubmenuDataHeader_UseGiveTossSelQuit:
db $40 ; flags
db 02, 00 ; start coords
db 12, 06 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $c0 ; flags
db 5 ; items
db "USE@"
db "GIVE@"
db "TOSS@"
db "SEL@"
db "QUIT@"
ItemSubmenuJumptable_UseGiveTossSelQuit:
dw UseItem
dw GiveItem
dw TossMenu
dw RegisterItem
dw QuitItemSubmenu
ItemSubmenuDataHeader_UseGiveTossQuit:
db $40 ; flags
db 03, 00 ; start coords
db 11, 06 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $c0 ; flags
db 4 ; items
db "USE@"
db "GIVE@"
db "TOSS@"
db "QUIT@"
ItemSubmenuJumptable_UseGiveTossQuit:
dw UseItem
dw GiveItem
dw TossMenu
dw QuitItemSubmenu
ItemSubmenuDataHeader_UseQuit:
db %01000000 ; flags
db 07, 00 ; start coords
db 11, 06 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $c0 ; flags
db 2 ; items
db "USE@"
db "QUIT@"
ItemSubmenuJumptable_UseQuit:
dw UseItem
dw QuitItemSubmenu
ItemSubmenuDataHeader_UseSelQuit:
db %01000000 ; flags
db 05, 00 ; start coords
db 11, 06 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $c0 ; flags
db 3 ; items
db "USE@"
db "SEL@"
db "QUIT@"
ItemSubmenuJumptable_UseSelQuit:
dw UseItem
dw RegisterItem
dw QuitItemSubmenu
ItemSubmenuDataHeader_GiveTossSelQuit:
db $40 ; flags
db 03, 00 ; start coords
db 11, 06 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $c0 ; flags
db 4 ; items
db "GIVE@"
db "TOSS@"
db "SEL@"
db "QUIT@"
ItemSubmenuJumptable_GiveTossSelQuit:
dw GiveItem
dw TossMenu
dw RegisterItem
dw QuitItemSubmenu
ItemSubmenuDataHeader_GiveTossQuit:
db $40 ; flags
db 05, 00 ; start coords
db 11, 06 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $c0 ; flags
db 3 ; items
db "GIVE@"
db "TOSS@"
db "QUIT@"
ItemSubmenuJumptable_GiveTossQuit:
dw GiveItem
dw TossMenu
dw QuitItemSubmenu
UseItem:
farcall CheckItemMenu
ld a, [wItemAttributeParamBuffer]
ld hl, .Jumptable
rst JumpTable
ret
.Jumptable
dw .NotTheTime
dw .NotTheTime
dw .NotTheTime
dw .NotTheTime
dw .Current
dw .Party
dw .Field
.NotTheTime
ld hl, Text_ThisIsntTheTime
call Function10cb9
ret
.Current
call DoItemEffect
ret
.Party
ld a, [wPartyCount]
and a
jr z, .no_pokemon
call DoItemEffect
xor a
ldh [hBGMapMode], a
call Function10d70
call Function10cca
call Function10e5b
ret
.no_pokemon
ld hl, Text_YouDontHaveAPokemon
call Function10cb9
ret
.Field
call DoItemEffect
ld a, [wFieldMoveSucceeded]
and a
jr z, .NotTheTime
ld a, $a
ld [wce63], a
ret
TossMenu:
ld hl, Text_ThrowAwayHowMany
call Function10cb9
farcall SelectQuantityToToss ; 9:4f20
push af
call ExitMenu
pop af
jr c, .asm_107cc
call Function10e38
ld hl, Text_ConfirmThrowAway
call MenuTextbox
call YesNoBox
push af
call ExitMenu
pop af
jr c, .asm_107cc
ld hl, wTMsHMsEnd
ld a, [wCurItemQuantity]
call TossItem
call Function10e38
ld hl, Text_ThrewAway
call Function10cb9
.asm_107cc
ret
Function107cd:
ld a, [wce65]
and a
jr z, .asm_107e2
dec a
jr z, .asm_107da
dec a
jr z, .asm_107ea
ret
.asm_107da
xor a
ld [wcfcc], a
ld [wcfd1], a
ret
.asm_107e2
xor a
ld [wcfca], a
ld [wcfcf], a
ret
.asm_107ea
xor a
ld [wcfcb], a
ld [wcfd0], a
ret
RegisterItem:
farcall CheckSelectableItem
ld a, [wItemAttributeParamBuffer]
and a
jr nz, .asm_10826
ld a, [wce65]
rrca
rrca
and $c0
ld b, a
ld a, [wCurItemQuantity]
inc a
and $3f
or b
ld [wWhichRegisteredItem], a
ld a, [wCurItem]
ld [wRegisteredItem], a
call Function10e38
ld de, SFX_FULL_HEAL
call WaitPlaySFX
ld hl, Text_RegisteredTheItem
call Function10cb9
ret
.asm_10826
ld hl, Text_CantRegisterThatItem
call Function10cb9
ret
GiveItem:
ld a, [wPartyCount]
and a
jp z, Function108b6
ld a, [wOptions]
push af
res 4, a
ld [wOptions], a
ld a, $8
ld [wPartyMenuActionText], a
call ClearBGPalettes
farcall LoadPartyMenuGFX
farcall InitPartyMenuWithCancel
farcall InitPartyMenuGFX
.asm_10857
farcall WritePartyMenuTilemap
farcall PrintPartyMenuText
call WaitBGMap
call SetPalettes
call DelayFrame
farcall PartyMenuSelect
jr c, .asm_108a5
ld a, [wCurPartySpecies]
cp EGG
jr nz, .asm_10883
ld hl, Text_AnEggCantHoldAnItem
call PrintText
jr .asm_10857
.asm_10883
ld a, [wce63]
push af
ld a, [wce64]
push af
call GetCurNick
ld hl, wStringBuffer1
ld de, wMonOrItemNameBuffer
ld bc, $b
call CopyBytes
call TryGiveItemToPartymon
pop af
ld [wce64], a
pop af
ld [wce63], a
.asm_108a5
pop af
ld [wOptions], a
xor a
ldh [hBGMapMode], a
call Function10d70
call Function10cca
call Function10e5b
ret
Function108b6: ; 108b6 (4:48b6)
ld hl, Text_YouDontHaveAPokemon ; $4f13
call Function10cb9
ret
Text_AnEggCantHoldAnItem:
text_far Text_AnEGGCantHoldAnItem
db "@"
QuitItemSubmenu:
ret
BattlePack:
ld hl, wOptions
set 4, [hl]
call Function10aba
.asm_108cb
call JoyTextDelay
ld a, [wce63]
bit 7, a
jr nz, .asm_108dd
call Function108e9
call DelayFrame
jr .asm_108cb
.asm_108dd
ld a, [wce65]
ld [wcfc8], a
ld hl, wOptions
res 4, [hl]
ret
Function108e9: ; 108e9 (4:48e9)
ld a, [wce63]
ld hl, .Jumptable
call Function10c9b
jp hl
.Jumptable
dw BattlePack_InitGFX
dw BattlePack_InitItemsPocket
dw BattlePack_ItemsPocketMenu
dw BattlePack_InitBallsPocket
dw BattlePack_BallsPocketMenu
dw BattlePack_InitKeyItemsPocket
dw BattlePack_KeyItemsPocketMenu
dw BattlePack_InitTMHMPocket
dw BattlePack_TMHMPocketMenu
dw Pack_ExitNoScript
dw Pack_ExitRunScript
BattlePack_InitGFX:
xor a
ldh [hBGMapMode], a
call Function10d70
ld a, [wce64]
ld [wce63], a
call Function10e5b
ret
BattlePack_InitItemsPocket:
xor a
ld [wce65], a
call Function10e51
call Function10dd6
call Function10cca
call Function10c96
ret
BattlePack_ItemsPocketMenu:
ld hl, $4e6a
call CopyMenuHeader
ld a, [wcfca]
ld [wMenuCursorBuffer], a
ld a, [wcfcf]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfcf], a
ld a, [wMenuCursorY]
ld [wcfca], a
ld b, $7
ld c, $3
call Function10cef
ret c
call Function10a03
ret
BattlePack_InitKeyItemsPocket:
ld a, $2
ld [wce65], a
call Function10e51
call Function10dd6
call Function10cca
call Function10c96
ret
BattlePack_KeyItemsPocketMenu:
ld hl, $4e9a
call CopyMenuHeader
ld a, [wcfcb]
ld [wMenuCursorBuffer], a
ld a, [wcfd0]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfd0], a
ld a, [wMenuCursorY]
ld [wcfcb], a
ld b, $3
ld c, $7
call Function10cef
ret c
call Function10a03
ret
BattlePack_InitTMHMPocket:
ld a, $3
ld [wce65], a
call Function10e51
call Function10dd6
xor a
ldh [hBGMapMode], a
call Function10cca
ld hl, Text_PackEmptyString
call Function10cb9
call Function10c96
ret
BattlePack_TMHMPocketMenu:
farcall Pack_TMHMPocketMenu_ ; b:457a
ld b, $5
ld c, $1
call Function10cef
ret c
xor a
call Function10a0c
ret
BattlePack_InitBallsPocket:
ld a, $1
ld [wce65], a
call Function10e51
call Function10dd6
call Function10cca
call Function10c96
ret
BattlePack_BallsPocketMenu:
ld hl, $4eca
call CopyMenuHeader
ld a, [wcfcc]
ld [wMenuCursorBuffer], a
ld a, [wcfd1]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfd1], a
ld a, [wMenuCursorY]
ld [wcfcc], a
ld b, $1
ld c, $5
call Function10cef
ret c
call Function10a03
ret
Function10a03: ; 10a03 (4:4a03)
farcall CheckItemContext
ld a, [wItemAttributeParamBuffer]
Function10a0c: ; 10a0c (4:4a0c)
and a
jr z, .asm_10a17
ld hl, BattlePackUseQuitMenuDataHeader
ld de, BattlePackUseQuitJumptable
jr .asm_10a1d
.asm_10a17
ld hl, BattlePackQuitMenuDataHeader
ld de, BattlePackQuitJumptable
.asm_10a1d
push de
call LoadMenuHeader
call VerticalMenu
call ExitMenu
pop hl
ret c
ld a, [wMenuCursorY]
dec a
call Function10c9b
jp hl
BattlePackUseQuitMenuDataHeader:
db $40 ; flags
db 07, 00 ; start coords
db 11, 06 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $c0 ; flags
db 2 ; items
db "USE@"
db "QUIT@"
BattlePackUseQuitJumptable:
dw BattlePack_UseItem
dw BattlePack_QuitSubmenu
BattlePackQuitMenuDataHeader:
db $40 ; flags
db 09, 00 ; start coords
db 11, 06 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $c0 ; flags
db 1 ; items
db "QUIT@"
BattlePackQuitJumptable:
dw BattlePack_QuitSubmenu
BattlePack_UseItem:
farcall CheckItemContext
ld a, [wItemAttributeParamBuffer]
ld hl, $4a67
rst JumpTable
ret
dw Function10a75
dw Function10a75
dw Function10a75
dw Function10a75
dw Function10a7c
dw Function10a86
dw Function10aa1
Function10a75:
ld hl, Text_ThisIsntTheTime
call Function10cb9
ret
Function10a7c:
call DoItemEffect
ld a, [wFieldMoveSucceeded]
and a
jr nz, asm_10a9c
ret
Function10a86:
call DoItemEffect
ld a, [wFieldMoveSucceeded]
and a
jr nz, asm_10aae
xor a
ldh [hBGMapMode], a
call Function10d70
call Function10cca
call Function10e5b
ret
asm_10a9c
call ClearBGPalettes
jr asm_10aae
Function10aa1
call DoItemEffect
ld a, [wFieldMoveSucceeded]
and a
jr z, Function10a75
cp $2
jr z, asm_10ab4
asm_10aae
ld a, $a
ld [wce63], a
ret
asm_10ab4
xor a
ld [wFieldMoveSucceeded], a
ret
BattlePack_QuitSubmenu:
ret
Function10aba: ; 10aba (4:4aba)
xor a
ld [wce63], a
ld a, [wcfc8]
and $3
ld [wCurPocket], a
inc a
add a
dec a
ld [wce64], a
xor a
ld [wPackUsedItem], a
xor a
ld [wSwitchItem], a
ret
DepositSellInitPackBuffers: ; 10ad5 (4:4ad5)
xor a
ldh [hBGMapMode], a
ld [wce63], a
ld [wce64], a
ld [wCurPocket], a
ld [wPackUsedItem], a
ld [wSwitchItem], a
call Function10d70
call Function10e5b
ret
DepositSellPack
.loop
call Function10af7
call Function10b9f
jr c, .loop
ret
Function10af7: ; 10af7 (4:4af7)
ld a, [wce63]
ld hl, .Jumptable
call Function10c9b
jp hl
.Jumptable
dw DepositOrSell_ItemPocket
dw DepositOrSell_BallsPocket
dw DepositOrSell_KeyItemsPocket
dw DepositOrSell_TMHMPocket
DepositOrSell_ItemPocket:
xor a
call Function10b92
ld hl, PC_Mart_ItemsPocketMenuDataHeader ; $4e82
call CopyMenuHeader
ld a, [wcfca]
ld [wMenuCursorBuffer], a
ld a, [wcfcf]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfcf], a
ld a, [wMenuCursorY]
ld [wcfca], a
ret
DepositOrSell_KeyItemsPocket:
ld a, $2
call Function10b92
ld hl, PC_Mart_KeyItemsPocketMenuDataHeader ; $4eb2
call CopyMenuHeader
ld a, [wcfcb]
ld [wMenuCursorBuffer], a
ld a, [wcfd0]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfd0], a
ld a, [wMenuCursorY]
ld [wcfcb], a
ret
DepositOrSell_TMHMPocket:
ld a, $3
call Function10b92
call Function10cca
farcall Pack_TMHMPocketMenu_ ; b:457a
ld a, [wCurItem]
ld [wCurItem], a
ret
DepositOrSell_BallsPocket:
ld a, $1
call Function10b92
ld hl, PC_Mart_BallsPocketMenuDataHeader ; $4ee2
call CopyMenuHeader
ld a, [wcfcc]
ld [wMenuCursorBuffer], a
ld a, [wcfd1]
ld [wMenuScrollPosition], a
call ScrollingMenu
ld a, [wMenuScrollPosition]
ld [wcfd1], a
ld a, [wMenuCursorY]
ld [wcfcc], a
ret
Function10b92: ; 10b92 (4:4b92)
ld [wce65], a
call Function10e51
call Function10dd6
call Function10cca
ret
Function10b9f: ; 10b9f (4:4b9f)
ld hl, wMenuJoypad
ld a, [hl]
and $1
jr nz, .asm_10bb8
ld a, [hl]
and $2
jr nz, .asm_10bbf
ld a, [hl]
and $20
jr nz, .asm_10bc5
ld a, [hl]
and $10
jr nz, .asm_10bd8
scf
ret
.asm_10bb8
ld a, $1
ld [wce66], a
and a
ret
.asm_10bbf
xor a
ld [wce66], a
and a
ret
.asm_10bc5
ld a, [wce63]
dec a
and $3
ld [wce63], a
push de
ld de, $62
call PlaySFX
pop de
scf
ret
.asm_10bd8
ld a, [wce63]
inc a
and $3
ld [wce63], a
push de
ld de, $62
call PlaySFX
pop de
scf
ret
TutorialPack:
call DepositSellInitPackBuffers
ld a, [wInputType]
or a
jr z, .asm_10bfa
farcall DudeAutoInput_RightA ; 70:4dee
.asm_10bfa
call Function10c07
call Function10b9f
jr c, .asm_10bfa
xor a
ld [wce66], a
ret
Function10c07: ; 10c07 (4:4c07)
ld a, [wce63]
ld hl, $4c11
call Function10c9b
jp hl
.Jumptable
dw TutorialItems
dw TutorialBalls
dw TutorialKeyItems
dw TutorialTMHM
TutorialItems:
xor a
ld hl, TutorialItemsMenuDataHeader
jr asm_10c8a
TutorialItemsMenuDataHeader:
db $40 ; flags
db 01, 07 ; start coords
db 11, 19 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $ae ; flags
db 5, 8 ; rows, columns
db 2 ; horizontal spacing
dbw 0, wDudeNumItems
dba PlaceMenuItemName
dba PlaceMenuItemQuantity
dba UpdateItemDescription
TutorialKeyItems:
ld a, $2
ld hl, TutorialKeyItemsMenuDataHeader
jr asm_10c8a
TutorialKeyItemsMenuDataHeader:
db $40 ; flags
db 01, 07 ; start coords
db 11, 19 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $ae ; flags
db 5, 8 ; rows, columns
db 1 ; horizontal spacing
dbw 0, wDudeNumKeyItems
dba PlaceMenuItemName
dba PlaceMenuItemQuantity
dba UpdateItemDescription
TutorialTMHM:
ld a, $3
call Function10b92
call Function10cca
farcall Pack_TMHMPocketMenu_
ld a, [wCurItem]
ld [wCurItem], a
ret
TutorialBalls:
ld a, $1
ld hl, TutorialBallsMenuDataHeader
jr asm_10c8a
TutorialBallsMenuDataHeader:
db $40 ; flags
db 01, 07 ; start coords
db 11, 19 ; end coords
dw .MenuData2
db 1 ; default option
.MenuData2:
db $ae ; flags
db 5, 8 ; rows, columns
db 2 ; horizontal spacing
dbw 0, wDudeNumBalls
dba PlaceMenuItemName
dba PlaceMenuItemQuantity
dba UpdateItemDescription
asm_10c8a
push hl
call Function10b92
pop hl
call CopyMenuHeader
call ScrollingMenu
ret
Function10c96: ; 10c96 (4:4c96)
ld hl, wce63
inc [hl]
ret
Function10c9b: ; 10c9b (4:4c9b)
ld e, a
ld d, $0
add hl, de
add hl, de
ld a, [hli]
ld h, [hl]
ld l, a
ret
Pack_ExitNoScript:
ld hl, wce63
set 7, [hl]
xor a
ld [wce66], a
ret
Pack_ExitRunScript:
ld hl, wce63
set 7, [hl]
ld a, $1
ld [wce66], a
ret
Function10cb9: ; 10cb9 (4:4cb9)
ld a, [wOptions]
push af
set 4, a
ld [wOptions], a
call PrintText
pop af
ld [wOptions], a
ret
Function10cca: ; 10cca (4:4cca)
call WaitBGMap
Function10ccd: ; 10ccd (4:4ccd)
ld a, [wce65]
and $3
ld e, a
ld d, $0
ld hl, PackGFXPointers
add hl, de
add hl, de
ld a, [hli]
ld e, a
ld d, [hl]
ld hl, $9500
lb bc, BANK(PackGFX), 15
call Request2bpp
ret
PackGFXPointers:
dw PackGFX + $f0 * 1
dw PackGFX + $f0 * 3
dw PackGFX + $f0 * 0
dw PackGFX + $f0 * 2
Function10cef: ; 10cef (4:4cef)
ld hl, wMenuJoypad
ld a, [wSwitchItem]
and a
jr nz, .asm_10d4c
ld a, [hl]
and $1
jr nz, .asm_10d13
ld a, [hl]
and $2
jr nz, .asm_10d15
ld a, [hl]
and $20
jr nz, .asm_10d1c
ld a, [hl]
and $10
jr nz, .asm_10d2d
ld a, [hl]
and $4
jr nz, .asm_10d3e
scf
ret
.asm_10d13
and a
ret
.asm_10d15
ld a, $9
ld [wce63], a
scf
ret
.asm_10d1c
ld a, b
ld [wce63], a
ld [wce64], a
push de
ld de, SFX_SWITCH_POCKETS
call PlaySFX
pop de
scf
ret
.asm_10d2d
ld a, c
ld [wce63], a
ld [wce64], a
push de
ld de, SFX_SWITCH_POCKETS
call PlaySFX
pop de
scf
ret
.asm_10d3e
farcall SwitchItemsInBag ; 9:4834
ld hl, Text_MoveItemWhere
call Function10cb9
scf
ret
.asm_10d4c
ld a, [hl]
and $5
jr nz, .asm_10d58
ld a, [hl]
and $2
jr nz, .asm_10d6a
scf
ret
.asm_10d58
farcall SwitchItemsInBag ; 9:4834
ld de, SFX_SWITCH_POKEMON
call WaitPlaySFX
ld de, SFX_SWITCH_POKEMON
call WaitPlaySFX
.asm_10d6a
xor a
ld [wSwitchItem], a
scf
ret
Function10d70: ; 10d70 (4:4d70)
call ClearBGPalettes
call ClearTilemap
call ClearSprites
call DisableLCD
ld hl, PackMenuGFX
ld de, $9000
ld bc, $600
ld a, BANK(PackMenuGFX)
call FarCopyBytes ; same bank
hlcoord 0, 1
ld bc, 11 * SCREEN_WIDTH
ld a, $24
call ByteFill
hlcoord 5, 1
lb bc, 11, 15
call ClearBox
hlcoord 0, 0
ld a, $28
ld c, $14
.asm_10da5
ld [hli], a
inc a
dec c
jr nz, .asm_10da5
call Function10dd6
call Function10dc0
hlcoord 0, 12
ld bc, IncGradGBPalTable_13
call Textbox
call EnableLCD
call Function10ccd
ret
Function10dc0: ; 10dc0 (4:4dc0)
hlcoord 0, 3
ld a, $50
ld de, $f
ld b, $3
.asm_10dca
ld c, $5
.asm_10dcc
ld [hli], a
inc a
dec c
jr nz, .asm_10dcc
add hl, de
dec b
jr nz, .asm_10dca
ret
Function10dd6: ; 10dd6 (4:4dd6)
ld a, [wce65]
ld d, a
swap a
sub d
ld d, $0
ld e, a
ld hl, .tilemap
add hl, de
ld d, h
ld e, l
hlcoord 0, 7
ld c, $3
.asm_10deb
ld b, $5
.asm_10ded
ld a, [de]
inc de
ld [hli], a
dec b
jr nz, .asm_10ded
ld a, c
ld c, $f
add hl, bc
ld c, a
dec c
jr nz, .asm_10deb
ret
.tilemap
db $00, $04, $04, $04, $01 ; top border
db $06, $07, $08, $09, $0a ; Items
db $02, $05, $05, $05, $03 ; bottom border
db $00, $04, $04, $04, $01 ; top border
db $15, $16, $17, $18, $19 ; Balls
db $02, $05, $05, $05, $03 ; bottom border
db $00, $04, $04, $04, $01 ; top border
db $0b, $0c, $0d, $0e, $0f ; Key Items
db $02, $05, $05, $05, $03 ; bottom border
db $00, $04, $04, $04, $01 ; top border
db $10, $11, $12, $13, $14 ; TM/HM
db $02, $05, $05, $05, $03 ; bottom border
Function10e38: ; 10e38 (4:4e38)
ld a, [wCurItem]
ld [wd151], a
call GetItemName
call CopyName1
ret
Pack_ClearTilemap:
hlcoord 0, 0
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
ld a, " "
call ByteFill
ret
Function10e51: ; 10e51 (4:4e51)
hlcoord 5, 2
lb bc, 10, 15
call ClearBox
ret
Function10e5b: ; 10e5b (4:4e5b)
call WaitBGMap
ld b, $14
call GetSGBLayout
call SetPalettes
call DelayFrame
ret
ItemsPocketMenuDataHeader:
db $40
db 01, 07
db 11, 19
dw .MenuData2
db 1
.MenuData2:
db $ae
db 5, 8
db 2
dbw 0, wNumItems
dba PlaceMenuItemName ; 9:49dc
dba PlaceMenuItemQuantity ; 9:49eb
dba UpdateItemDescription ; 9:43eb
PC_Mart_ItemsPocketMenuDataHeader:
db $40
db 01, 07
db 11, 19
dw .MenuData2
db 1
.MenuData2:
db $2e
db 5, 8
db 2
dbw 0, wNumItems
dba PlaceMenuItemName ; 9:49dc
dba PlaceMenuItemQuantity ; 9:49eb
dba UpdateItemDescription ; 9:43eb
KeyItemsPocketMenuDataHeader:
db $40
db 01, 07
db 11, 19
dw .MenuData2
db 1
.MenuData2:
db $ae
db 5, 8
db 1
dbw 0, wNumKeyItems
dba PlaceMenuItemName ; 9:49dc
dba PlaceMenuItemQuantity ; 9:49eb
dba UpdateItemDescription ; 9:43eb
PC_Mart_KeyItemsPocketMenuDataHeader:
db $40
db 01, 07
db 11, 19
dw .MenuData2
db 1
.MenuData2:
db $2e
db 5, 8
db 1
dbw 0, wNumKeyItems
dba PlaceMenuItemName ; 9:49dc
dba PlaceMenuItemQuantity ; 9:49eb
dba UpdateItemDescription ; 9:43eb
BallsPocketMenuDataHeader:
db $40
db 01, 07
db 11, 19
dw .MenuData2
db 1
.MenuData2:
db $ae
db 5, 8
db 2
dbw 0, wNumBalls
dba PlaceMenuItemName ; 9:49dc
dba PlaceMenuItemQuantity ; 9:49eb
dba UpdateItemDescription ; 9:43eb
PC_Mart_BallsPocketMenuDataHeader:
db $40
db 01, 07
db 11, 19
dw .MenuData2
db 1
.MenuData2:
db $2e
db 5, 8
db 2
dbw 0, wNumBalls
dba PlaceMenuItemName ; 9:49dc
dba PlaceMenuItemQuantity ; 9:49eb
dba UpdateItemDescription ; 9:43eb
Text_PackNoItems:
text_far Text_PackNoItems_
db "@"
Text_ThrowAwayHowMany:
text_far Text_ThrowAwayHowMany_
db "@"
Text_ConfirmThrowAway:
text_far Text_ConfirmThrowAway_
db "@"
Text_ThrewAway:
text_far Text_ThrewAway_
db "@"
Text_ThisIsntTheTime:
text_far Text_ThisIsntTheTime_
db "@"
Text_YouDontHaveAPokemon:
text_far Text_YouDontHaveAMon
db "@"
Text_RegisteredTheItem:
text_far Text_RegisteredTheItem_
db "@"
Text_CantRegisterThatItem:
text_far Text_CantRegisterThatItem_
db "@"
Text_MoveItemWhere:
text_far Text_MoveItemWhere_
db "@"
Text_PackEmptyString:
text_far Text_PackEmptyString_
db "@"
Text_CantUseItInABattle:
text_far Text_YouCantUseItInABattle
db "@"
PackMenuGFX: INCBIN "gfx/misc/pack_menu.2bpp"
PackGFX: INCBIN "gfx/misc/pack.2bpp"
|