blob: 0496ebf0b9dc42ab2529ae7475e01567207ca926 (
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
|
INCLUDE "constants.asm"
SECTION "data/items/descriptions.asm", ROMX
ItemDescriptions::
dw ItemDescription_4212
dw ItemDescription_4225
dw ItemDescription_4238
dw ItemDescription_423C
dw ItemDescription_424F
dw ItemDescription_4262
dw ItemDescription_4271
dw ItemDescription_4294
dw ItemDescription_42A7
dw ItemDescription_42B9
dw ItemDescription_42CC
dw ItemDescription_42DF
dw ItemDescription_42F2
dw ItemDescription_4304
dw ItemDescription_4326
dw ItemDescription_4338
dw ItemDescription_434B
dw ItemDescription_435D
dw ItemDescription_436F
dw ItemDescription_437C
dw ItemDescription_439B
dw ItemDescription_43B8
dw ItemDescription_43CB
dw ItemDescription_43DE
dw ItemDescription_43F1
dw ItemDescription_43F5
dw ItemDescription_4407
dw ItemDescription_4419
dw ItemDescription_442B
dw ItemDescription_443D
dw ItemDescription_4441
dw ItemDescription_4453
dw ItemDescription_4464
dw ItemDescription_4481
dw ItemDescription_4494
dw ItemDescription_4498
dw ItemDescription_44AB
dw ItemDescription_44C6
dw ItemDescription_44E5
dw ItemDescription_4504
dw ItemDescription_4523
dw ItemDescription_4541
dw ItemDescription_4560
dw ItemDescription_457F
dw ItemDescription_459D
dw ItemDescription_45A1
dw ItemDescription_45B3
dw ItemDescription_45C5
dw ItemDescription_45D7
dw ItemDescription_45F1
dw ItemDescription_45F5
dw ItemDescription_460F
dw ItemDescription_4629
dw ItemDescription_4647
dw ItemDescription_4667
dw ItemDescription_4683
dw ItemDescription_4694
dw ItemDescription_46B3
dw ItemDescription_46BD
dw ItemDescription_46C7
dw ItemDescription_46CB
dw ItemDescription_46D5
dw ItemDescription_46E8
dw ItemDescription_4709
dw ItemDescription_4729
dw ItemDescription_474A
dw ItemDescription_4769
dw ItemDescription_4788
dw ItemDescription_47A8
dw ItemDescription_47C0
dw ItemDescription_47D4
dw ItemDescription_47ED
dw ItemDescription_4807
dw ItemDescription_4823
dw ItemDescription_483B
dw ItemDescription_483F
dw ItemDescription_485B
dw ItemDescription_4878
dw ItemDescription_4896
dw ItemDescription_48AD
dw ItemDescription_48CD
dw ItemDescription_48E9
dw ItemDescription_4901
dw ItemDescription_491A
dw ItemDescription_493B
dw ItemDescription_4956
dw ItemDescription_4967
dw ItemDescription_4984
dw ItemDescription_49A3
dw ItemDescription_49C4
dw ItemDescription_49C8
dw ItemDescription_49DE
dw ItemDescription_49FB
dw ItemDescription_4A15
dw ItemDescription_4A2B
dw ItemDescription_4A4A
dw ItemDescription_4A6B
dw ItemDescription_4A86
dw ItemDescription_4AA4
dw ItemDescription_4AC3
dw ItemDescription_4AC7
dw ItemDescription_4AE8
dw ItemDescription_4B08
dw ItemDescription_4B19
dw ItemDescription_4B2F
dw ItemDescription_4B4D
dw ItemDescription_4B71
dw ItemDescription_4B8E
dw ItemDescription_4BAE
dw ItemDescription_4BCD
dw ItemDescription_4BDF
dw ItemDescription_4C00
dw ItemDescription_4C21
dw ItemDescription_4C37
dw ItemDescription_4C58
dw ItemDescription_4C77
dw ItemDescription_4C8F
dw ItemDescription_4CA8
dw ItemDescription_4CC5
dw ItemDescription_4CDE
dw ItemDescription_4CE2
dw ItemDescription_4CFC
dw ItemDescription_4D14
dw ItemDescription_4D1E
dw ItemDescription_4D35
dw ItemDescription_4D49
dw ItemDescription_4D61
dw ItemDescription_4D79
dw ItemDescription_4D98
dw ItemDescription_4DB3
dw ItemDescription_4DCF
dw ItemDescription_4DF1
dw ItemDescription_4E02
dw ItemDescription_4E21
dw ItemDescription_4E37
dw ItemDescription_4E3B
dw ItemDescription_4E5B
dw ItemDescription_4E78
dw ItemDescription_4E95
dw ItemDescription_4EA9
dw ItemDescription_4EC7
dw ItemDescription_4ED9
dw ItemDescription_4EEB
dw ItemDescription_4F09
dw ItemDescription_4F20
dw ItemDescription_4F38
dw ItemDescription_4F59
dw ItemDescription_4F71
dw ItemDescription_4F85
dw ItemDescription_4F9D
dw ItemDescription_4FA1
dw ItemDescription_4FC2
dw ItemDescription_4FDC
dw ItemDescription_4FEF
dw ItemDescription_5007
dw ItemDescription_501E
dw ItemDescription_5043
dw ItemDescription_5052
dw ItemDescription_505C
dw ItemDescription_5066
dw ItemDescription_5078
dw ItemDescription_508A
dw ItemDescription_509D
dw ItemDescription_50A1
dw ItemDescription_50A5
dw ItemDescription_50A9
dw ItemDescription_50AD
dw ItemDescription_50B1
dw ItemDescription_50B5
dw ItemDescription_50B9
dw ItemDescription_50BD
dw ItemDescription_50C1
dw ItemDescription_50C5
dw ItemDescription_50C9
dw ItemDescription_50CD
dw ItemDescription_50D1
dw ItemDescription_50D5
dw ItemDescription_50D9
dw ItemDescription_50DD
dw ItemDescription_50E1
dw ItemDescription_50E5
dw ItemDescription_50E9
dw ItemDescription_50ED
dw ItemDescription_50F1
dw ItemDescription_50F5
dw ItemDescription_50F9
dw ItemDescription_50FD
dw ItemDescription_5101
dw ItemDescription_5105
dw ItemDescription_5109
dw ItemDescription_510D
dw ItemDescription_5111
dw ItemDescription_5115
dw ItemDescription_5119
dw ItemDescription_511D
dw ItemDescription_5121
dw ItemDescription_5129
dw ItemDescription_5131
dw ItemDescription_5139
dw ItemDescription_5141
dw ItemDescription_5145
dw ItemDescription_514D
dw ItemDescription_5155
dw ItemDescription_515D
dw ItemDescription_5165
dw ItemDescription_516D
dw ItemDescription_5175
dw ItemDescription_517D
dw ItemDescription_5185
dw ItemDescription_518D
dw ItemDescription_5195
dw ItemDescription_519D
dw ItemDescription_51A5
dw ItemDescription_51AD
dw ItemDescription_51B5
dw ItemDescription_51BD
dw ItemDescription_51C5
dw ItemDescription_51CD
dw ItemDescription_51D5
dw ItemDescription_51DD
dw ItemDescription_51E5
dw ItemDescription_51ED
dw ItemDescription_51F5
dw ItemDescription_51FD
dw ItemDescription_5205
dw ItemDescription_5209
dw ItemDescription_5211
dw ItemDescription_5219
dw ItemDescription_5221
dw ItemDescription_5229
dw ItemDescription_5231
dw ItemDescription_5239
dw ItemDescription_5241
dw ItemDescription_5249
dw ItemDescription_5251
dw ItemDescription_5259
dw ItemDescription_5261
dw ItemDescription_5269
dw ItemDescription_5271
dw ItemDescription_5279
dw ItemDescription_5281
dw ItemDescription_5289
dw ItemDescription_5291
dw ItemDescription_5299
dw ItemDescription_52A1
dw ItemDescription_52A9
dw ItemDescription_52B1
dw ItemDescription_52B9
dw ItemDescription_52C2
dw ItemDescription_52CB
dw ItemDescription_52D4
dw ItemDescription_52DD
dw ItemDescription_52E6
dw ItemDescription_52EF
dw ItemDescription_52F8
ItemDescription_4212:
db "ポケモンを つかまえることが できる@"
ItemDescription_4225:
db "ポケモンを つかまえることが できる@"
ItemDescription_4238:
db "?"
next "?@"
ItemDescription_423C:
db "ポケモンを つかまえることが できる@"
ItemDescription_424F:
db "ポケモンを つかまえることが できる@"
ItemDescription_4262:
db "マップを みることが できる@"
ItemDescription_4271:
db "2ばいの はやさで いどうできる"
next "しつないでは のることが できない@"
ItemDescription_4294:
db "とくていの ポケモンを しんかさせる@"
ItemDescription_42A7:
db "どく じょうたいから かいふくする@"
ItemDescription_42B9:
db "やけど じょうたいから かいふくする@"
ItemDescription_42CC:
db "こおり じょうたいから かいふくする@"
ItemDescription_42DF:
db "ねむり じょうたいから かいふくする@"
ItemDescription_42F2:
db "マヒ じょうたいから かいふくする@"
ItemDescription_4304:
db "すべての ステータスいじょうと"
next "たいりょくを ぜんかいふくする @"
ItemDescription_4326:
db "たいりょくを ぜんかいふくする @"
ItemDescription_4338:
db "たいりょくを200 かいふくする @"
ItemDescription_434B:
db "たいりょくを50 かいふくする @"
ItemDescription_435D:
db "たいりょくを20 かいふくする @"
ItemDescription_436F:
db "ダンジョンから ぬけだす@"
ItemDescription_437C:
db "100ぽのあいだ よわい ポケモンと"
next "エンカウントしなくなる@"
ItemDescription_439B:
db "ポケモン 1たいの"
next "ピーピー すべてを ぜんかいふくする@"
ItemDescription_43B8:
db "とくていの ポケモンを しんかさせる@"
ItemDescription_43CB:
db "とくていの ポケモンを しんかさせる@"
ItemDescription_43DE:
db "とくていの ポケモンを しんかさせる@"
ItemDescription_43F1:
db "?"
next "?@"
ItemDescription_43F5:
db "たいりょくの さいだいちを ふやす@"
ItemDescription_4407:
db "こうげきの きそポイントを あげる@"
ItemDescription_4419:
db "ぼうぎょの きそポイントを あげる@"
ItemDescription_442B:
db "すばやさの きそポイントを あげる@"
ItemDescription_443D:
db "?"
next "?@"
ItemDescription_4441:
db "とくしゅの きそポイントを あげる@"
ItemDescription_4453:
db "ポケモンの レべルを 1つあげる@"
ItemDescription_4464:
db "しようした せんとうちゅうだけ"
next "めいちゅうりつが あがる@"
ItemDescription_4481:
db "とくていの ポケモンを しんかさせる@"
ItemDescription_4494:
db "?"
next "?@"
ItemDescription_4498:
db "きんで できた タマ"
next "たかく うれる@"
ItemDescription_44AB:
db "エンカウントした ポケモンから"
next "かならず にげられる@"
ItemDescription_44C6:
db "すべての ステータスいじょうの"
next "じょうたいから かいふくする@"
ItemDescription_44E5:
db "たいりょくが はんぶんで"
next "ひんしじょうたいから かいふくする@"
ItemDescription_4504:
db "たいりょくが ぜんかいで"
next "ひんしじょうたいから かいふくする@"
ItemDescription_4523:
db "しようした せんとうちゅうだけ"
next "とくしゅぼうぎょが あがる@"
ItemDescription_4541:
db "200ぽのあいだ よわい ポケモンと"
next "エンカウントしなくなる@"
ItemDescription_4560:
db "250ぽのあいだ よわい ポケモンと"
next "エンカウントしなくなる@"
ItemDescription_457F:
db "しようした せんとうちゅうだけ"
next "クりティカルりつが あがる@"
ItemDescription_459D:
db "?"
next "?@"
ItemDescription_45A1:
db "たいりょくを50 かいふくする @"
ItemDescription_45B3:
db "たいりょくを60 かいふくする @"
ItemDescription_45C5:
db "たいりょくを80 かいふくする @"
ItemDescription_45D7:
db "しようした せんとうちゅうだけ"
next "こうげきが あがる@"
ItemDescription_45F1:
db "?"
next "?@"
ItemDescription_45F5:
db "しようした せんとうちゅうだけ"
next "ぼうぎょが あがる@"
ItemDescription_460F:
db "しようした せんとうちゅうだけ"
next "すばやさが あがる@"
ItemDescription_4629:
db "しようした せんとうちゅうだけ"
next "とくしゅこうげきが あがる@"
ItemDescription_4647:
db "もっていると コインを "
next "9999まいまで もつことが できる@"
ItemDescription_4667:
db "かくされた どうぐが "
next "がめんないにあると おとがなる@"
ItemDescription_4683:
db "ねむっている ポケモンを おこす@"
ItemDescription_4694:
db "たたかわなかった ポケモンにも"
next "けいけんちが ふりわけられる@"
ItemDescription_46B3:
db "ポケモンが つれる@"
ItemDescription_46BD:
db "ポケモンが つれる@"
ItemDescription_46C7:
db "?"
next "?@"
ItemDescription_46CB:
db "ポケモンが つれる@"
ItemDescription_46D5:
db "わざポイントの さいだいちが あがる@"
ItemDescription_46E8:
db "ポケモン1たいの 1つの "
next "わざポイントを 10かいふくする @"
ItemDescription_4709:
db "ポケモン1たいの 1つの"
next "わざポイントを ぜんかいふくする @"
ItemDescription_4729:
db "ポケモン1たいの すべての"
next "わざポイントを 10かいふくする @"
ItemDescription_474A:
db "そうびすると くさタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4769:
db "そうびすると ひこうタイプの"
next "わざのいりょくを よわめられる@"
ItemDescription_4788:
db "そうびすると せんとうの まえに"
next "てきに ダメージを あたえる@"
ItemDescription_47A8:
db "そうびすると "
next "とくしゅぼうぎょが 10あがる@"
ItemDescription_47C0:
db "そうびすると "
next "ぼうぎょが 10あがる@"
ItemDescription_47D4:
db "そうびすると "
next "すべての のうりょくが 5あがる@"
ItemDescription_47ED:
db "そうびすると"
next "てきの こうげきを よけることがある@"
ItemDescription_4807:
db "そうびすると くさタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4823:
db "そうびすると"
next "せんせいこうげき することがある@"
ItemDescription_483B:
db "?"
next "?@"
ItemDescription_483F:
db "そうびすると いわタイプの "
next "わざのいりょくが あがる@"
ItemDescription_485B:
db "そうびすると ひこうタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4878:
db "そうびすると ノーマルタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4896:
db "そうびすると "
next "どく じょうたいに ならない@"
ItemDescription_48AD:
db "そうびすると でんきタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_48CD:
db "そうびすると どくタイプの "
next "わざのいりょくが あがる@"
ItemDescription_48E9:
db "そうびすると"
next "たまに てきが ひるむことがある@"
ItemDescription_4901:
db "そうびすると "
next "すべての タイプこうかが むこう@"
ItemDescription_491A:
db "そうびすると せんとうごに"
next "ひんし じょうたいから かいふくする@"
ItemDescription_493B:
db "そうびすると どくタイプの"
next "わざのいりょくが あがる@"
ItemDescription_4956:
db "りっぱな キノコ"
next "たかく うれる@"
ItemDescription_4967:
db "そうびすると ドラゴンタイプの"
next "わざのいりょくが あがる@"
ItemDescription_4984:
db "そうびすると むしタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_49A3:
db "そうびすると せんとういがいで"
next "あなをほるが つかえるようになる@"
ItemDescription_49C4:
db "?"
next "?@"
ItemDescription_49C8:
db "そうびすると "
next "もらえる おかねが 2ばい@"
ItemDescription_49DE:
db "そうびすると エスパータイプの"
next "わざのいりょくが あがる@"
ItemDescription_49FB:
db "そうびすると 4ぶんの1で"
next "てきに はんげきする @"
ItemDescription_4A15:
db "そうびすると "
next "エンカウント しにくくなる@"
ItemDescription_4A2B:
db "そうびすると みずタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4A4A:
db "そうびすると エスパータイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4A6B:
db "そうびすると むしタイプの"
next "わざのいりょくが あがる@"
ItemDescription_4A86:
db "そうびすると かくとうタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4AA4:
db "そうびすると いわタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4AC3:
db "?"
next "?@"
ItemDescription_4AC7:
db "そうびすると ノーマルタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4AE8:
db "そうびすると ほのおタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4B08:
db "とても おいしい"
next "たかく うれる@"
ItemDescription_4B19:
db "そうびすると"
next "マヒ じょうたいに ならない@"
ItemDescription_4B2F:
db "そうびすると ノーマルタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4B4D:
db "そうびすると 1ターン かけないで"
next "ほかの ポケモンと こうたいできる@"
ItemDescription_4B71:
db "そうびすると こおりタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4B8E:
db "そうびすると じめんタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4BAE:
db "そうびすると どくタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4BCD:
db "きれいな しんじゅ"
next "たかく うれる@"
ItemDescription_4BDF:
db "そうびすると かくとうタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4C00:
db "そうびすると ゴーストタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4C21:
db "そうびすると "
next "エンカウント しやすくなる@"
ItemDescription_4C37:
db "そうびすると エスパータイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4C58:
db "そうびすると むしタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4C77:
db "そうびすると "
next "ねむり じょうたいに ならない@"
ItemDescription_4C8F:
db "そうびすると "
next "こんらん じょうたいに ならない@"
ItemDescription_4CA8:
db "そうびすると じめんタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4CC5:
db "そうびすると"
next "きぜつ しないで たえることがある@"
ItemDescription_4CDE:
db "?"
next "?@"
ItemDescription_4CE2:
db "そうびすると"
next "てきの こうげきを よけることがある@"
ItemDescription_4CFC:
db "そうびすると"
next "ポケモンの ほかくりつが あがる@"
ItemDescription_4D14:
db "ふくびきが できる@"
ItemDescription_4D1E:
db "そうびすると"
next "ポケモンが しんか しなくなる@"
ItemDescription_4D35:
db "そうびすると "
next "こうげきが 10あがる@"
ItemDescription_4D49:
db "そうびすると "
next "もらえる けいけんちが 2ばい@"
ItemDescription_4D61:
db "そうびすると"
next "ポケモンの ほかくりつが あがる@"
ItemDescription_4D79:
db "そうびすると あるくたびに "
next "たいりょくが1 かいふくする@"
ItemDescription_4D98:
db "そうびすると "
next "エンカウントしたてきから にげられる@"
ItemDescription_4DB3:
db "そうびすると みずタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4DCF:
db "2ばいの はやさで いどうできる"
next "しつないでも のることが できる@"
ItemDescription_4DF1:
db "あかい ほうせき"
next "たかく うれる@"
ItemDescription_4E02:
db "そうびすると とくしゅこうげきの"
next "ダメージが はんぶんになる@"
ItemDescription_4E21:
db "そうびすると"
next "クりティカルが でやすくなる@"
ItemDescription_4E37:
db "?"
next "?@"
ItemDescription_4E3B:
db "そうびすると こおりタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4E5B:
db "そうびすると でんきタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4E78:
db "そうびすると ほのおタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4E95:
db "そうびすると "
next "こうげきが 10あがる@"
ItemDescription_4EA9:
db "そうびすると ゴーストタイプの "
next "わざのいりょくが あがる@"
ItemDescription_4EC7:
db "たいりょくを20 かいふくする @"
ItemDescription_4ED9:
db "たいりょくを50 かいふくする @"
ItemDescription_4EEB:
db "そうびすると ふつうこうげきの"
next "ダメージが はんぶんになる@"
ItemDescription_4F09:
db "そうびすると "
next "どく じょうたいに ならない@"
ItemDescription_4F20:
db "そうびすると "
next "やけど じょうたいに ならない@"
ItemDescription_4F38:
db "そうびすると 1ターンごとに "
next "たいりょくが30 かいふくする@"
ItemDescription_4F59:
db "そうびすると "
next "とくしゅぼうぎょが 10あがる@"
ItemDescription_4F71:
db "そうびすると "
next "すばやさが 10あがる@"
ItemDescription_4F85:
db "そうびすると "
next "とくしゅこうげきが 10あがる@"
ItemDescription_4F9D:
db "?"
next "?@"
ItemDescription_4FA1:
db "そうびすると ドラゴンタイプの "
next "わざのいりょくを よわめられる@"
ItemDescription_4FC2:
db "そうびすると "
next "すべての のうりょくが 10あがる@"
ItemDescription_4FDC:
db "とくていの ポケモンを しんかさせる@"
ItemDescription_4FEF:
db "そうびすると "
next "こおり じょうたいに ならない@"
ItemDescription_5007:
db "そうびすると "
next "マヒ じょうたいに ならない@"
ItemDescription_501E:
db "すべてのポケモンを たいりょく1で"
next "ひんし じょうたいから かいふくする@"
ItemDescription_5043:
db "わざマシンを しまう ホルダ@"
ItemDescription_5052:
db "とくしゅ アイテム@"
ItemDescription_505C:
db "とくしゅ アイテム@"
ItemDescription_5066:
db "ふつうの どうぐを しまう ホルダ@"
ItemDescription_5078:
db "だいじな どうぐを しまう ホルダ@"
ItemDescription_508A:
db "とくていの ポケモンを しんかさせる@"
ItemDescription_509D:
db "?"
next "?@"
ItemDescription_50A1:
db "?"
next "?@"
ItemDescription_50A5:
db "?"
next "?@"
ItemDescription_50A9:
db "?"
next "?@"
ItemDescription_50AD:
db "?"
next "?@"
ItemDescription_50B1:
db "?"
next "?@"
ItemDescription_50B5:
db "?"
next "?@"
ItemDescription_50B9:
db "?"
next "?@"
ItemDescription_50BD:
db "?"
next "?@"
ItemDescription_50C1:
db "?"
next "?@"
ItemDescription_50C5:
db "?"
next "?@"
ItemDescription_50C9:
db "?"
next "?@"
ItemDescription_50CD:
db "?"
next "?@"
ItemDescription_50D1:
db "?"
next "?@"
ItemDescription_50D5:
db "?"
next "?@"
ItemDescription_50D9:
db "?"
next "?@"
ItemDescription_50DD:
db "?"
next "?@"
ItemDescription_50E1:
db "?"
next "?@"
ItemDescription_50E5:
db "?"
next "?@"
ItemDescription_50E9:
db "?"
next "?@"
ItemDescription_50ED:
db "?"
next "?@"
ItemDescription_50F1:
db "?"
next "?@"
ItemDescription_50F5:
db "?"
next "?@"
ItemDescription_50F9:
db "?"
next "?@"
ItemDescription_50FD:
db "?"
next "?@"
ItemDescription_5101:
db "?"
next "?@"
ItemDescription_5105:
db "?"
next "?@"
ItemDescription_5109:
db "?"
next "?@"
ItemDescription_510D:
db "?"
next "?@"
ItemDescription_5111:
db "?"
next "?@"
ItemDescription_5115:
db "?"
next "?@"
ItemDescription_5119:
db "?"
next "?@"
ItemDescription_511D:
db "?"
next "?@"
ItemDescription_5121:
db "わざマシン01@"
ItemDescription_5129:
db "わざマシン02@"
ItemDescription_5131:
db "わざマシン03@"
ItemDescription_5139:
db "わざマシン04@"
ItemDescription_5141:
db "?"
next "?@"
ItemDescription_5145:
db "わざマシン05@"
ItemDescription_514D:
db "わざマシン06@"
ItemDescription_5155:
db "わざマシン07@"
ItemDescription_515D:
db "わざマシン08@"
ItemDescription_5165:
db "わざマシン09@"
ItemDescription_516D:
db "わざマシン10@"
ItemDescription_5175:
db "わざマシン11@"
ItemDescription_517D:
db "わざマシン12@"
ItemDescription_5185:
db "わざマシン13@"
ItemDescription_518D:
db "わざマシン14@"
ItemDescription_5195:
db "わざマシン15@"
ItemDescription_519D:
db "わざマシン16@"
ItemDescription_51A5:
db "わざマシン17@"
ItemDescription_51AD:
db "わざマシン18@"
ItemDescription_51B5:
db "わざマシン19@"
ItemDescription_51BD:
db "わざマシン20@"
ItemDescription_51C5:
db "わざマシン21@"
ItemDescription_51CD:
db "わざマシン22@"
ItemDescription_51D5:
db "わざマシン23@"
ItemDescription_51DD:
db "わざマシン24@"
ItemDescription_51E5:
db "わざマシン25@"
ItemDescription_51ED:
db "わざマシン26@"
ItemDescription_51F5:
db "わざマシン27@"
ItemDescription_51FD:
db "わざマシン28@"
ItemDescription_5205:
db "?"
next "?@"
ItemDescription_5209:
db "わざマシン29@"
ItemDescription_5211:
db "わざマシン30@"
ItemDescription_5219:
db "わざマシン31@"
ItemDescription_5221:
db "わざマシン32@"
ItemDescription_5229:
db "わざマシン33@"
ItemDescription_5231:
db "わざマシン34@"
ItemDescription_5239:
db "わざマシン35@"
ItemDescription_5241:
db "わざマシン36@"
ItemDescription_5249:
db "わざマシン37@"
ItemDescription_5251:
db "わざマシン38@"
ItemDescription_5259:
db "わざマシン39@"
ItemDescription_5261:
db "わざマシン40@"
ItemDescription_5269:
db "わざマシン41@"
ItemDescription_5271:
db "わざマシン42@"
ItemDescription_5279:
db "わざマシン43@"
ItemDescription_5281:
db "わざマシン44@"
ItemDescription_5289:
db "わざマシン45@"
ItemDescription_5291:
db "わざマシン46@"
ItemDescription_5299:
db "わざマシン47@"
ItemDescription_52A1:
db "わざマシン48@"
ItemDescription_52A9:
db "わざマシン49@"
ItemDescription_52B1:
db "わざマシン50@"
ItemDescription_52B9:
db "ひでんマシン01@"
ItemDescription_52C2:
db "ひでんマシン02@"
ItemDescription_52CB:
db "ひでんマシン03@"
ItemDescription_52D4:
db "ひでんマシン04@"
ItemDescription_52DD:
db "ひでんマシン05@"
ItemDescription_52E6:
db "ひでんマシン06@"
ItemDescription_52EF:
db "ひでんマシン07@"
ItemDescription_52F8:
db "?"
next "?@"
|