blob: aec2c21ba999619e73eddfbeaca119f28ce83bd3 (
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
|
.global ItemDescriptionNone
ItemDescriptionNone:
.string "No information available.\n\0"
.global ItemDescriptionSpike
ItemDescriptionSpike:
.string "A throwing item that inflicts damage if#nit hits.\n\0"
.global ItemDescriptionRock
ItemDescriptionRock:
.string "A throwing item that flies in an arc to#nclear obstacles and strike the target.#nIt is not affected by #c5Pierce#r or #c5Long Toss#r#nstatuses.\n\0"
.global ItemDescriptionMobileScarf
ItemDescriptionMobileScarf:
.string "A hold item that enables the Pokémon to#nmove and attack through walls and on#nmagma~2c etc.#nThe Pokémon~27s #c6Belly#r will go down faster#nwhile traveling through walls~2c however.\n\0"
.global ItemDescriptionHealRibbon
ItemDescriptionHealRibbon:
.string "A hold item that speeds up the Pokémon~27s#nnatural #c6HP#r regeneration.#nThe Pokémon~27s #c6Belly#r will go down faster~2c#nhowever.\n\0"
.global ItemDescriptionTwistBand
ItemDescriptionTwistBand:
.string "A hold item that prevents the Pokémon~27s#n#c6Attack#r and #c6Special Attack#r from going#ndown.\n\0"
.global ItemDescriptionScopeLens
ItemDescriptionScopeLens:
.string "A hold item that boosts the Pokémon~27s#ncritical-hit rate for moves and attacks.\n\0"
.global ItemDescriptionPatsyBand
ItemDescriptionPatsyBand:
.string "A hold item that boosts the Pokémon~27s#nchances of taking critical hits from#nenemy moves and attacks.\n\0"
.global ItemDescriptionNoStickCap
ItemDescriptionNoStickCap:
.string "A hold item that prevents the Pokémon~27s#nitems from becoming sticky and gummed#nup.\n\0"
.global ItemDescriptionPierceBand
ItemDescriptionPierceBand:
.string "A hold item that makes the Pokémon~27s#nthrown items pierce other Pokémon~2c walls~2c#nand obstacles without ever stopping.\n\0"
.global ItemDescriptionJoyRibbon
ItemDescriptionJoyRibbon:
.string "A hold item that earns the Pokémon Exp.#nPoints when taking damage.\n\0"
.global ItemDescriptionXRaySpecs
ItemDescriptionXRaySpecs:
.string "A hold item that enables the Pokémon to#nsee the locations of items and foes.\n\0"
.global ItemDescriptionPersimBand
ItemDescriptionPersimBand:
.string "A hold item that prevents the Pokémon#nfrom becoming #c5Confused#r.\n\0"
.global ItemDescriptionPowerBand
ItemDescriptionPowerBand:
.string "A hold item that boosts the Pokémon~27s#n#c6Attack#r.\n\0"
.global ItemDescriptionPechaScarf
ItemDescriptionPechaScarf:
.string "A hold item that prevents the Pokémon#nfrom being #c5poisoned#r or #c5badly poisoned#r.\n\0"
.global ItemDescriptionInsomniscope
ItemDescriptionInsomniscope:
.string "A hold item that prevents the Pokémon#nfrom going to #c5sleep#r~2c #c5napping#r~2c having#na #c5nightmare#r~2c or #c5yawning#r.\n\0"
.global ItemDescriptionWarpScarf
ItemDescriptionWarpScarf:
.string "A hold item that occasionally warps the#nPokémon to another place on the same#nfloor.\n\0"
.global ItemDescriptionTightBelt
ItemDescriptionTightBelt:
.string "A hold item that prevents the Pokémon~27s#n#c6Belly#r from going down each turn.\n\0"
.global ItemDescriptionSneakScarf
ItemDescriptionSneakScarf:
.string "A hold item that prevents the Pokémon#nfrom awakening sleeping foes.#nIt only works against foes that are asleep#nto begin with.\n\0"
.global ItemDescriptionGoldRibbon
ItemDescriptionGoldRibbon:
.string "An item that has no effect even if it is#nheld by a Pokémon.#nIt can be sold for a good price.\n\0"
.global ItemDescriptionGoggleSpecs
ItemDescriptionGoggleSpecs:
.string "A hold item that improves the Pokémon~27s#nvision.#nIt reveals hidden traps and #c5invisible#r#nPokémon.\n\0"
.global ItemDescriptionDietRibbon
ItemDescriptionDietRibbon:
.string "A hold item that changes the Pokémon~27s#nstatus to #c5Hungry Pal#r and prevents#nits #c6Belly#r from filling.#nIf the team leader is holding it~2c its #c6Belly#r#nwill go down faster.\n\0"
.global ItemDescriptionTrapScarf
ItemDescriptionTrapScarf:
.string "A hold item that prevents traps from#ngoing off if they are stepped on by the#nPokémon.\n\0"
.global ItemDescriptionRacketBand
ItemDescriptionRacketBand:
.string "A hold item that helps awaken hostile#nsleeping Pokémon.#nIt only works against Pokémon that were#nasleep from the start.\n\0"
.global ItemDescriptionDefScarf
ItemDescriptionDefScarf:
.string "A hold item that boosts the Pokémon~27s#n#c6Defense#r.\n\0"
.global ItemDescriptionStaminaBand
ItemDescriptionStaminaBand:
.string "A hold item that slows how quickly the#nPokémon~27s #c6Belly#r goes down.\n\0"
.global ItemDescriptionPlainRibbon
ItemDescriptionPlainRibbon:
.string "An item that has no effect~2c even if it is#nheld by a Pokémon.\n\0"
.global ItemDescriptionSpecialBand
ItemDescriptionSpecialBand:
.string "A hold item that boosts the Pokémon~27s#n#c6Special Attack#r.\n\0"
.global ItemDescriptionZincBand
ItemDescriptionZincBand:
.string "A hold item that boosts the Pokémon~27s#n#c6Special Defense#r.\n\0"
.global ItemDescriptionDetectBand
ItemDescriptionDetectBand:
.string "A hold item that boosts the Pokémon~27s#n#c6Evasion#r.\n\0"
.global ItemDescriptionAlertSpecs
ItemDescriptionAlertSpecs:
.string "A hold item that prevents the Pokémon#nfrom having its held item snatched away#nor swatted down.\n\0"
.global ItemDescriptionDodgeScarf
ItemDescriptionDodgeScarf:
.string "A hold item that prevents any thrown#nitem from hitting the Pokémon.\n\0"
.global ItemDescriptionBounceBand
ItemDescriptionBounceBand:
.string "A hold item that makes thrown items#nbounce off the Pokémon.\n\0"
.global ItemDescriptionCurveBand
ItemDescriptionCurveBand:
.string "A hold item that makes thrown items#nbounce off walls and fly sideways.#nIt has no effect if the Pokémon~27s status#nis #c5Pierce#r or if a rock is thrown.\n\0"
.global ItemDescriptionWhiffSpecs
ItemDescriptionWhiffSpecs:
.string "A hold item that prevents items thrown#nby the Pokémon from hitting another#nPokémon.\n\0"
.global ItemDescriptionNoAimScope
ItemDescriptionNoAimScope:
.string "A hold item that causes items thrown#nby the Pokémon to fly wildly in any#ndirection.\n\0"
.global ItemDescriptionLockonSpecs
ItemDescriptionLockonSpecs:
.string "A hold item that raises the accuracy of#nitems thrown at foes by the Pokémon.\n\0"
.global ItemDescriptionMunchBelt
ItemDescriptionMunchBelt:
.string "A hold item that slightly boosts the#nPokémon~27s #c6Attack#r and #c6Special Attack#r.#nHowever~2c it also makes the Pokémon~27s#n#c6Belly#r go down faster.\n\0"
.global ItemDescriptionPassScarf
ItemDescriptionPassScarf:
.string "A hold item that can enable the#nPokémon to pass off the effects of#nattacks and certain kinds of hostile moves#nto a Pokémon next to it. However~2c it also#nmakes the Pokémon~27s #c6Belly#r go down.\n\0"
.global ItemDescriptionWeatherBand
ItemDescriptionWeatherBand:
.string "A hold item that prevents the Pokémon#nfrom feeling the effects of the weather.\n\0"
.global ItemDescriptionFriendBow
ItemDescriptionFriendBow:
.string "When held by the team leader~2c this hold#nitem makes it easier to recruit defeated#nPokémon into the rescue team.\n\0"
.global ItemDescriptionBeautyScarf
ItemDescriptionBeautyScarf:
.string "A fashionable accessory for dressing up.#nIt enables a certain kind of Pokémon to#nevolve.#nGive it to the Pokémon when it~27s ready to#nevolve.\n\0"
.global ItemDescriptionSunRibbon
ItemDescriptionSunRibbon:
.string "A ribbon infused with sunshine.#nIt enables a certain kind of Pokémon to#nevolve.#nGive it to the Pokémon when it~27s ready to#nevolve.\n\0"
.global ItemDescriptionLunarRibbon
ItemDescriptionLunarRibbon:
.string "A ribbon filled with moonlight.#nIt enables a certain kind of Pokémon to#nevolve.#nGive it to the Pokémon when it~27s ready to#nevolve.\n\0"
.global ItemDescriptionRingD
ItemDescriptionRingD:
.string "Ring D\n\0"
.global ItemDescriptionRingE
ItemDescriptionRingE:
.string "Ring E\n\0"
.global ItemDescriptionRingF
ItemDescriptionRingF:
.string "Ring F\n\0"
.global ItemDescriptionHealSeed
ItemDescriptionHealSeed:
.string "A food item that heals all status problems.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionWishStone
ItemDescriptionWishStone:
.string "A mysterious stone shaped like a musical#nnote.#nIt is said to make a wish come true if it#nis held while exploring the depths of#n#CDWish Cave#R.\n\0"
.global ItemDescriptionOranBerry
ItemDescriptionOranBerry:
.string "A food item that restores #c6HP#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionSitrusBerry
ItemDescriptionSitrusBerry:
.string "A food item that restores #c6HP#r.#nIf the Pokémon has full #c6HP#r~2c eating this#nitem will slightly boost its #c6Maximum HP#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionEyedropSeed
ItemDescriptionEyedropSeed:
.string "A food item that changes the Pokémon~27s#nstatus to #c5Eyedrops#r.#nIt reveals hidden traps and #c5invisible#r#nPokémon.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionReviverSeed
ItemDescriptionReviverSeed:
.string "An item that could revive a fainted#nPokémon.#nIt becomes a Plain Seed after use.#nIf held~2c it revives only the holder.#nIt can only be used by an #c6Item Master#r.\n\0"
.global ItemDescriptionBlinkerSeed
ItemDescriptionBlinkerSeed:
.string "A food item that gives the Pokémon#n#c5Blinker#r status.#nIt makes other Pokémon~2c unclaimed#nitems~2c and the ground impossible to see.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionDoomSeed
ItemDescriptionDoomSeed:
.string "A food item that lowers the Pokémon~27s#n#c6level#r by one.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionAllureSeed
ItemDescriptionAllureSeed:
.string "A food item that gives the Pokémon#n#c5Cross-Eyed#r status.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionLifeSeed
ItemDescriptionLifeSeed:
.string "A food item that slightly boosts the#nPokémon~27s #c6Maximum HP#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionRawstBerry
ItemDescriptionRawstBerry:
.string "A food item that heals the Pokémon~27s #c5burn#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionHungerSeed
ItemDescriptionHungerSeed:
.string "A food item that slightly lowers the#nPokémon~27s maximum #c6Belly#r size.#nIf used by a Pokémon other than the#nleader~2c its status changes to #c5Hungry Pal#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionQuickSeed
ItemDescriptionQuickSeed:
.string "A food item that boosts the Pokémon~27s#n#c6Movement Speed#r by one level.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionPechaBerry
ItemDescriptionPechaBerry:
.string "A food item that heals the Pokémon when#n#c5poisoned#r or #c5badly poisoned#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionCheriBerry
ItemDescriptionCheriBerry:
.string "A food item that heals the Pokémon from#n#c5paralysis#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionTotterSeed
ItemDescriptionTotterSeed:
.string "A food item that makes the Pokémon#n#c5confused#r.#nThe Pokémon~27s movements turn erratic~2c#nand its attacks and moves may hit friends.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionSleepSeed
ItemDescriptionSleepSeed:
.string "A food item that makes the user#n#c5sleep#r.#nThe Pokémon will be unable to do anything.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionPlainSeed
ItemDescriptionPlainSeed:
.string "A food item that has no special effect.#nIt does slightly fill the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionWarpSeed
ItemDescriptionWarpSeed:
.string "A food item that warps the Pokémon to#na different place on the same floor.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionBlastSeed
ItemDescriptionBlastSeed:
.string "A food item that makes the Pokémon#nbreathe highly damaging fire.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionGinseng
ItemDescriptionGinseng:
.string "A drink that boosts the power of the#nPokémon~27s set move.#nIt may not have any effect on certain#nkinds of moves.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionJoySeed
ItemDescriptionJoySeed:
.string "A food item that raises the Pokémon~27s#n#c6level#r by one.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionChestoBerry
ItemDescriptionChestoBerry:
.string "A food item that causes the Pokémon to#nbecome #c5sleepless#r.#nThe Pokémon will not be able to go to#n#c5sleep#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionStunSeed
ItemDescriptionStunSeed:
.string "A food item that causes the Pokémon to#nbecome #c5petrified#r.#nThe Pokémon will be unable to do anything#nuntil it takes damage.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionMaxElixir
ItemDescriptionMaxElixir:
.string "A drink that completely restores the#n#c6PP#r of all the Pokémon~27s moves.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionProtein
ItemDescriptionProtein:
.string "A drink that boosts the Pokémon~27s#n#c6Attack#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionCalcium
ItemDescriptionCalcium:
.string "A drink that boosts the Pokémon~27s#n#c6Special Attack#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionIron
ItemDescriptionIron:
.string "A drink that boosts the Pokémon~27s#n#c6Defense#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionZinc
ItemDescriptionZinc:
.string "A drink that boosts the Pokémon~27s#n#c6Special Defense#r.#nIt also slightly fills the Pokémon~27s #c6Belly#r.\n\0"
.global ItemDescriptionApple
ItemDescriptionApple:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nEating this when its #c6Belly#r is full will#nslightly enlarge its #c6Belly#r size.\n\0"
.global ItemDescriptionBigApple
ItemDescriptionBigApple:
.string "A food item that amply fills the#nPokémon~27s #c6Belly#r.#nEating this when its #c6Belly#r is full will#nslightly enlarge its #c6Belly#r size.\n\0"
.global ItemDescriptionGrimyFood
ItemDescriptionGrimyFood:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nHowever~2c it will cause a variety of#nstatus problems.\n\0"
.global ItemDescriptionHugeApple
ItemDescriptionHugeApple:
.string "A food item that completely fills the#nPokémon~27s #c6Belly#r.#nIt also slightly enlarges the #c6Belly#r size.\n\0"
.global ItemDescriptionWhiteGummi
ItemDescriptionWhiteGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nNormal-type Pokémon like it the best.\n\0"
.global ItemDescriptionRedGummi
ItemDescriptionRedGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nFire-type Pokémon like it the best.\n\0"
.global ItemDescriptionBlueGummi
ItemDescriptionBlueGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nWater-type Pokémon like it the best.\n\0"
.global ItemDescriptionGrassGummi
ItemDescriptionGrassGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nGrass-type Pokémon like it the best.\n\0"
.global ItemDescriptionYellowGummi
ItemDescriptionYellowGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nElectric-type Pokémon like it the best.\n\0"
.global ItemDescriptionClearGummi
ItemDescriptionClearGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nIce-type Pokémon like it the best.\n\0"
.global ItemDescriptionOrangeGummi
ItemDescriptionOrangeGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nFighting-type Pokémon like it the best.\n\0"
.global ItemDescriptionPinkGummi
ItemDescriptionPinkGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nPoison-type Pokémon like it the best.\n\0"
.global ItemDescriptionBrownGummi
ItemDescriptionBrownGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nGround-type Pokémon like it the best.\n\0"
.global ItemDescriptionSkyGummi
ItemDescriptionSkyGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nFlying-type Pokémon like it the best.\n\0"
.global ItemDescriptionGoldGummi
ItemDescriptionGoldGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nPsychic-type Pokémon like it the best.\n\0"
.global ItemDescriptionGreenGummi
ItemDescriptionGreenGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nBug-type Pokémon like it the best.\n\0"
.global ItemDescriptionGrayGummi
ItemDescriptionGrayGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nRock-type Pokémon like it the best.\n\0"
.global ItemDescriptionPurpleGummi
ItemDescriptionPurpleGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nGhost-type Pokémon like it the best.\n\0"
.global ItemDescriptionRoyalGummi
ItemDescriptionRoyalGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nDragon-type Pokémon like it the best.\n\0"
.global ItemDescriptionBlackGummi
ItemDescriptionBlackGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nDark-type Pokémon like it the best.\n\0"
.global ItemDescriptionSilverGummi
ItemDescriptionSilverGummi:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nWhen given to a rescue team member~2c#nit raises the Pokémon~27s #c6IQ#r.#nSteel-type Pokémon like it the best.\n\0"
.global ItemDescriptionBanana
ItemDescriptionBanana:
.string "A rare food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nEating this when its #c6Belly#r is full will#nslightly enlarge its #c6Belly#r size.#nIt is occasionally found inside walls.\n\0"
.global ItemDescriptionChestnut
ItemDescriptionChestnut:
.string "A food item that somewhat fills the#nPokémon~27s #c6Belly#r.#nMankey love to eat this.\n\0"
.global ItemDescriptionPoke
ItemDescriptionPoke:
.string "Money used at shops~2c etc.\n\0"
.global ItemDescriptionEvolutionItemSingle
ItemDescriptionEvolutionItemSingle:
.string "It enables a certain kind of Pokémon to#nevolve.#nGive it to the Pokémon when it~27s ready to#nevolve.\n\0"
.global ItemDescriptionEvolutionItemMulti
ItemDescriptionEvolutionItemMulti:
.string "It enables certain kinds of Pokémon to#nevolve.#nGive it to the Pokémon when it~27s ready to#nevolve.\n\0"
.global ItemDescriptionIcePart
ItemDescriptionIcePart:
.string "An item that was guarded by #CNRegice#R.#nIt may be related to this saying about the#n#CDBuried Relic#R: ~93Three parts guarded by#nthree servants. When they are one again~2c#na mirage shall appear to the bearer.~94\n\0"
.global ItemDescriptionSteelPart
ItemDescriptionSteelPart:
.string "A mysterious item that was guarded by#n#CNRegisteel#R.#n#CNRegirock#R and #CNRegice#R also guarded parts#nin similar fashion.#nWhat is the secret behind these parts?\n\0"
.global ItemDescriptionRockPart
ItemDescriptionRockPart:
.string "A mysterious item that was jealously#nguarded by #CNRegirock#R.#nHow it is to be used remains unknown~2c#nhowever.\n\0"
.global ItemDescriptionMusicBox
ItemDescriptionMusicBox:
.string "An enchanting music box that plays a#nbeautiful melody.#nIt is said to draw something special to it#nwhen it is kept close by.\n\0"
.global ItemDescriptionKey
ItemDescriptionKey:
.string "A key that unlocks a door inside a#ndungeon.\n\0"
.global ItemDescriptionUsedTM
ItemDescriptionUsedTM:
.string "The remains of the item $i0#nafter use.#nIt can be restored using the move #c4Recycle#r.#nThis item cannot be placed in storage.\n\0"
.global ItemDescriptionFocusPunch
ItemDescriptionFocusPunch:
.string "Teaches the move #c4Focus Punch#r.#nThe user~27s status changes to #c5Focus Punch#r~2c#nand it attacks on the next turn.#nIt is not possible to #c5link#r this move.\n\0"
.global ItemDescriptionDragonClaw
ItemDescriptionDragonClaw:
.string "Teaches the move #c4Dragon Claw#r.#nIt inflicts damage on the target.\n\0"
.global ItemDescriptionWaterPulse
ItemDescriptionWaterPulse:
.string "Teaches the move #c4Water Pulse#r.#nIt inflicts damage on the target even at a#ndistance.#nIt may also leave the target #c5confused#r.\n\0"
.global ItemDescriptionCalmMind
ItemDescriptionCalmMind:
.string "Teaches the move #c4Calm Mind#r.#nIt raises the Pokémon~27s #c6Special Attack#r#nand #c6Special Defense#r by one level.\n\0"
.global ItemDescriptionRoar
ItemDescriptionRoar:
.string "Teaches the move #c4Roar#r.#nIt sends the target flying.#nIf the foe hits a wall or another#nPokémon~2c it sustains damage.\n\0"
.global ItemDescriptionToxic
ItemDescriptionToxic:
.string "Teaches the move #c4Toxic#r.#nIt #c5badly poisons#r the foe Pokémon.#nIf a Pokémon is #c5badly poisoned#r~2c it#nsustains damage over several turns.\n\0"
.global ItemDescriptionHail
ItemDescriptionHail:
.string "An item that changes the dungeon floor~27s#nweather to #c5Hail#r for several turns.#n#n#nRange: All Pokémon on floor\n\0"
.global ItemDescriptionBulkUp
ItemDescriptionBulkUp:
.string "Teaches the move #c4Bulk Up#r.#nIt boosts the user~27s #c6Attack#r and #c6Defense#r#nby one level.\n\0"
.global ItemDescriptionBulletSeed
ItemDescriptionBulletSeed:
.string "Teaches the move #c4Bullet Seed#r.#nIt inflicts damage on the target even at a#ndistance.#nIt hits two to five times per use.\n\0"
.global ItemDescriptionHiddenPower
ItemDescriptionHiddenPower:
.string "Teaches the move #c4Hidden Power#r.#nIt inflicts damage on the target.#nIts type and power change with the#ndungeon.\n\0"
.global ItemDescriptionSunnyDay
ItemDescriptionSunnyDay:
.string "An item that changes the dungeon floor~27s#nweather to #c5Sunny#r for several turns.#n#n#nRange: All Pokémon on floor\n\0"
.global ItemDescriptionTaunt
ItemDescriptionTaunt:
.string "Teaches the move #c4Taunt#r.#nThe targeted Pokémon~27s status changes#nto #c5Taunted#r.\n\0"
.global ItemDescriptionIceBeam
ItemDescriptionIceBeam:
.string "Teaches the move #c4Ice Beam#r.#nIt inflicts damage on the target even at a#ndistance. It may also leave the target#n#c5frozen#r and incapable of action.\n\0"
.global ItemDescriptionBlizzard
ItemDescriptionBlizzard:
.string "Teaches the move #c4Blizzard#r.#nIt inflicts damage on the target.#nIt may also leave the target #c5frozen#r and#nincapable of action.\n\0"
.global ItemDescriptionHyperBeam
ItemDescriptionHyperBeam:
.string "Teaches the move #c4Hyper Beam#r.#nIt inflicts damage on the target even at a#ndistance. However~2c it also makes the user#n#c5paused#r and incapable of action.\n\0"
.global ItemDescriptionLightScreen
ItemDescriptionLightScreen:
.string "Teaches the move #c4Light Screen#r.#nIt makes the user~27s status #c5Light Screen#r.#nIt halves the damage from#n#c5Special Attack moves#r.\n\0"
.global ItemDescriptionProtect
ItemDescriptionProtect:
.string "Teaches the move #c4Protect#r.#nIt changes the Pokémon~27s status to#n#c5Protect#r and prevents damage from#nenemy attacks and moves.\n\0"
.global ItemDescriptionRainDance
ItemDescriptionRainDance:
.string "An item that changes the dungeon floor~27s#nweather to #c5Rain#r for several turns.#n#n#nRange: All Pokémon on floor\n\0"
.global ItemDescriptionGigaDrain
ItemDescriptionGigaDrain:
.string "Teaches the move #c4Giga Drain#r.#nIt inflicts damage on the target.#nIt also restores the user~27s #c6HP#r based#non the damage it inflicted.\n\0"
.global ItemDescriptionSafeguard
ItemDescriptionSafeguard:
.string "Teaches the move #c4Safeguard#r.#nIt changes the status of the user and team#nmembers in the same room to #c5Safeguard#r#nand prevents status problems.\n\0"
.global ItemDescriptionFrustration
ItemDescriptionFrustration:
.string "Teaches the move #c4Frustration#r.#nIt inflicts damage on the target and#ninflicts greater damage if the user~27s#n#c6IQ#r is low.\n\0"
.global ItemDescriptionSolarBeam
ItemDescriptionSolarBeam:
.string "Teaches the move #c4Solarbeam#r.#nThe user~27s status becomes #c5Solarbeam#r~2c#nand it attacks on the next turn.#nIt is not possible to #c5link#r this move.\n\0"
.global ItemDescriptionIronTail
ItemDescriptionIronTail:
.string "Teaches the move #c4Iron Tail#r.#nIt inflicts damage on the target.#nIt may also lower the target~27s #c6Defense#r#nby one level.\n\0"
.global ItemDescriptionThunderbolt
ItemDescriptionThunderbolt:
.string "Teaches the move #c4Thunderbolt#r.#nIt damages all foes around the user.#nIt may also cause #c5paralysis#r~2c which#nprevents attacks and moves.\n\0"
.global ItemDescriptionThunder
ItemDescriptionThunder:
.string "Teaches the move #c4Thunder#r.#nIt inflicts damage on the target#nand may also cause #c5paralysis#r.#nIts accuracy is affected by the weather.\n\0"
.global ItemDescriptionEarthquake
ItemDescriptionEarthquake:
.string "Teaches the move #c4Earthquake#r.#nIt damages all Pokémon in the same room.#nIt inflicts double damage on any #c5digging#r#nPokémon.\n\0"
.global ItemDescriptionReturn
ItemDescriptionReturn:
.string "Teaches the move #c4Return#r.#nIt inflicts damage on the target.#nIts power rises with the user~27s #c6IQ#r.\n\0"
.global ItemDescriptionDig
ItemDescriptionDig:
.string "Teaches the move #c4Dig#r.#nThe user~27s status becomes #c5Digging#r~2c#nand it attacks on the next turn.#nIt is not possible to #c5link#r this move.\n\0"
.global ItemDescriptionPsychic
ItemDescriptionPsychic:
.string "Teaches the move #c4Psychic#r.#nIt inflicts damage on the target.#nIt may also lower the target~27s #c6Special#nDefense#r by one level.\n\0"
.global ItemDescriptionShadowBall
ItemDescriptionShadowBall:
.string "Teaches the move #c4Shadow Ball#r.#nIt inflicts damage on the target even at a#ndistance. It may also lower the target~27s#n#c6Special Defense#r by one level.\n\0"
.global ItemDescriptionBrickBreak
ItemDescriptionBrickBreak:
.string "Teaches the move #c4Brick Break#r.#nIt shatters the target~27s #c5Reflect#r#nor #c5Light Screen#r to inflict damage.\n\0"
.global ItemDescriptionDoubleTeam
ItemDescriptionDoubleTeam:
.string "An item that raises the user~27s #c6Evasion#r#nby one level.#n#n#nRange: User\n\0"
.global ItemDescriptionReflect
ItemDescriptionReflect:
.string "Teaches the move #c4Reflect#r.#nIt makes the user~27s status #c5Reflect#r#nand halves the damage from all#n#c5Physical Attack moves#r and#nregular attacks.\n\0"
.global ItemDescriptionShockWave
ItemDescriptionShockWave:
.string "Teaches the move #c4Shock Wave#r.#nIt inflicts damage on the target even at a#ndistance.#nIt never misses.\n\0"
.global ItemDescriptionFlamethrower
ItemDescriptionFlamethrower:
.string "Teaches the move #c4Flamethrower#r.#nIt inflicts damage on the target even at a#ndistance. It may also cause a #c5burn#r.#nIt thaws and frees frozen Pokémon.\n\0"
.global ItemDescriptionSludgeBomb
ItemDescriptionSludgeBomb:
.string "Teaches the move #c4Sludge Bomb#r.#nIt inflicts damage on the target even at a#ndistance. It may also leave the target#n#c5poisoned#r~2c damaging it over several turns.\n\0"
.global ItemDescriptionSandstorm
ItemDescriptionSandstorm:
.string "An item that changes the dungeon floor~27s#nweather to #c5Sandstorm#r for several turns.#n#n#nRange: All Pokémon on floor\n\0"
.global ItemDescriptionFireBlast
ItemDescriptionFireBlast:
.string "Teaches the move #c4Fire Blast#r.#nIt inflicts damage on the target.#nIt may also cause a #c5burn#r.#nIt thaws and frees frozen Pokémon.\n\0"
.global ItemDescriptionRockTomb
ItemDescriptionRockTomb:
.string "It inflicts damage on the target.#nIt also lowers the target~27s #c6Movement#nSpeed#r by one level.#n#nRange: Foe in front\n\0"
.global ItemDescriptionAerialAce
ItemDescriptionAerialAce:
.string "Teaches the move #c4Aerial Ace#r.#nIt inflicts damage on the target.#nIt never misses.\n\0"
.global ItemDescriptionTorment
ItemDescriptionTorment:
.string "Teaches the move #c4Torment#r.#nIt prevents the targeted Pokémon from#nrepeating its last move while it#nremains on the floor.\n\0"
.global ItemDescriptionFacade
ItemDescriptionFacade:
.string "Teaches the move #c4Facade#r.#nIt inflicts damage on the target.#nIf the user is #c5poisoned#r~2c #c5badly poisoned#r~2c#nor has a #c5burn#r~2c its power is doubled.\n\0"
.global ItemDescriptionSecretPower
ItemDescriptionSecretPower:
.string "Teaches the move #c4Secret Power#r.#nIt inflicts damage on the target.#nIt may also trigger other effects#ndepending on the terrain.\n\0"
.global ItemDescriptionRest
ItemDescriptionRest:
.string "Teaches the move #c4Rest#r.#nIt makes the user go to #c5sleep#r.#nUpon awakening~2c the Pokémon regains #c6HP#r#nand recovers from any status problems.\n\0"
.global ItemDescriptionAttract
ItemDescriptionAttract:
.string "Teaches the move #c4Attract#r.#nIt changes the target~27s status to#n#c5Infatuated#r.\n\0"
.global ItemDescriptionThief
ItemDescriptionThief:
.string "Teaches the move #c4Thief#r.#nIt inflicts damage on the target.#nIt also snatches the target~27s hold item#nand makes it the user~27s hold item.\n\0"
.global ItemDescriptionSteelWIng
ItemDescriptionSteelWIng:
.string "Teaches the move #c4Steel Wing#r.#nIt inflicts damage on the target.#nIt may also raise the user~27s #c6Defense#r by#none level.\n\0"
.global ItemDescriptionSkillSwap
ItemDescriptionSkillSwap:
.string "Teaches the move #c4Skill Swap#r.#nIt switches the user~27s #c6Special Ability#r with#nthat of the target.\n\0"
.global ItemDescriptionSnatch
ItemDescriptionSnatch:
.string "It switches the user~27s status to #c5Snatch#r.#nIt steals the moves of Pokémon on#nthe same floor.#n#nRange: User\n\0"
.global ItemDescriptionOverheat
ItemDescriptionOverheat:
.string "Teaches the move #c4Overheat#r.#nIt damages all foes around the user~2c but it#nalso lowers the user~27s #c6Special Attack#r#nby two levels and thaws frozen Pokémon.\n\0"
.global ItemDescriptionWideSlash
ItemDescriptionWideSlash:
.string "Teaches the move #c4Wide Slash#r.#nIt inflicts damage on foes on the 3#ntiles diagonally and directly in front.\n\0"
.global ItemDescriptionExcavate
ItemDescriptionExcavate:
.string "Teaches the move #c4Excavate#r.#nIt digs through the wall the user is facing.\n\0"
.global ItemDescriptionSpinSlash
ItemDescriptionSpinSlash:
.string "Teaches the move #c4Spin Slash#r.#nIt inflicts damage on all foes surrounding#nthe user.\n\0"
.global ItemDescriptionSeeTrapOrb
ItemDescriptionSeeTrapOrb:
.string "It reveals all hidden traps in the same#nroom.#n#n#nRange: User\n\0"
.global ItemDescriptionMugOrb
ItemDescriptionMugOrb:
.string "It inflicts damage on the target.#nIt also snatches the target~27s hold item#nto make it the user~27s.#n#nRange: Foe in front\n\0"
.global ItemDescriptionReboundOrb
ItemDescriptionReboundOrb:
.string "Changes the user~27s status to #c5Mini Counter#r.#nAny damage from #c5Physical Attack moves#r#nor a regular attack is partially returned.#n#nRange: User\n\0"
.global ItemDescriptionLobOrb
ItemDescriptionLobOrb:
.string "Inflicts damage on the target up to#n2 tiles away.#n#n#nRange: 2 tiles\n\0"
.global ItemDescriptionSwitcherOrb
ItemDescriptionSwitcherOrb:
.string "Switches the user~27s position with another#nPokémon~2c however distant.#n#n#nRange: Straight line\n\0"
.global ItemDescriptionBlowbackOrb
ItemDescriptionBlowbackOrb:
.string "Knocks a distant target flying.#nIf the target hits a wall or another#nPokémon~2c it sustains damage.#n#nRange: Straight line\n\0"
.global ItemDescriptionWarpOrb
ItemDescriptionWarpOrb:
.string "Warps foes in the same room to other#nplaces on the same floor.#n#n#nRange: Foes in room\n\0"
.global ItemDescriptionTransferOrb
ItemDescriptionTransferOrb:
.string "Transforms the target into a different#nPokémon.#n#n#nRange: Foe in front\n\0"
.global ItemDescriptionSlowOrb
ItemDescriptionSlowOrb:
.string "Lowers the #c6Movement Speed#r of foes in#nthe same room by one level.#n#n#nRange: Foes in room\n\0"
.global ItemDescriptionQuickOrb
ItemDescriptionQuickOrb:
.string "Boosts the #c6Movement Speed#r of the user#nand team members in the room by one#nlevel.#n#nRange: All team members in room\n\0"
.global ItemDescriptionLuminousOrb
ItemDescriptionLuminousOrb:
.string "Reveals the entire floor to the user.#n#n#n#nRange: User\n\0"
.global ItemDescriptionPetrifyOrb
ItemDescriptionPetrifyOrb:
.string "Changes the status of foes in the room to#n#c5Petrified#r~2c making them incapable of action.#n#n#nRange: Foes in room\n\0"
.global ItemDescriptionStayawayOrb
ItemDescriptionStayawayOrb:
.string "Changes the status of the target to#n#c5Petrified#r and warps it near the stairs.#n#n#nRange: Foe in front\n\0"
.global ItemDescriptionPounceOrb
ItemDescriptionPounceOrb:
.string "Makes the user pounce on the Pokémon#nin front~2c however distant. If no Pokémon#nis in the way~2c the user leaps to the wall.#n#nRange: Special\n\0"
.global ItemDescriptionTrawlOrb
ItemDescriptionTrawlOrb:
.string "Pulls all items on the floor to the user.#nBeware: if there is a shop~2c the user will#nbe considered a shoplifter.#n#nRange: User\n\0"
.global ItemDescriptionCleanseOrb
ItemDescriptionCleanseOrb:
.string "Sticky~2c gummed-up items are cleansed of#ngrime~2c making them usable again.#n#n#nRange: All team members on floor\n\0"
.global ItemDescriptionObserverOrb
ItemDescriptionObserverOrb:
.string "Changes the status of the target to#n#c5Paused#r~2c making it incapable of action.#n#n#nRange: Foe in front\n\0"
.global ItemDescriptionDecoyOrb
ItemDescriptionDecoyOrb:
.string "Changes the status of the target to#n#c5Decoy#r~2c making it the target of its fellow#nPokémon.#n#nRange: Foe in front\n\0"
.global ItemDescriptionSlumberOrb
ItemDescriptionSlumberOrb:
.string "Changes the status of foes in the same#nroom to #c5Sleep#r~2c making them incapable#nof action.#n#nRange: Foes in room\n\0"
.global ItemDescriptionTotterOrb
ItemDescriptionTotterOrb:
.string "Changes the status of foes in the same#nroom to #c5Confused#r~2c making their#nattacks and movements erratic.#n#nRange: Foes in room\n\0"
.global ItemDescriptionTwoEdgeOrb
ItemDescriptionTwoEdgeOrb:
.string "Drops the #c6HP#r of foes in the same#nroom to one. If it hits~2c it also halves#nthe user~27s #c6HP#r.#n#nRange: Foes in room\n\0"
.global ItemDescriptionSilenceOrb
ItemDescriptionSilenceOrb:
.string "Changes the status of the target to#n#c5Muzzled#r~2c making it incapable of attacks or#nmoves using its mouth.#n#nRange: Foe in front\n\0"
.global ItemDescriptionEscapeOrb
ItemDescriptionEscapeOrb:
.string "Allows the rescue team to escape#nfrom the dungeon.#n#n#nRange: All team members on floor\n\0"
.global ItemDescriptionScannerOrb
ItemDescriptionScannerOrb:
.string "Reveals the location of all unclaimed#nitems on the floor.#n#n#nRange: User\n\0"
.global ItemDescriptionRadarOrb
ItemDescriptionRadarOrb:
.string "Reveals the location of all foes on#nthe floor.#n#n#nRange: User\n\0"
.global ItemDescriptionDroughtOrb
ItemDescriptionDroughtOrb:
.string "Drains water and magma from the dungeon#nfloor.#n#n#nRange: Special\n\0"
.global ItemDescriptionTrapbustOrb
ItemDescriptionTrapbustOrb:
.string "Destroys traps in the same room.#n#n#n#nRange: Room\n\0"
.global ItemDescriptionRollcallOrb
ItemDescriptionRollcallOrb:
.string "Draws all team members to the user.#n#n#n#nRange: All team members on floor\n\0"
.global ItemDescriptionInvisifyOrb
ItemDescriptionInvisifyOrb:
.string "The user becomes #c5invisible#r to other#nPokémon.#n#n#nRange: User\n\0"
.global ItemDescriptionOneShotOrb
ItemDescriptionOneShotOrb:
.string "Defeats the target in one shot--if it hits.#n#n#n#nRange: Foe in front\n\0"
.global ItemDescriptionIdentifyOrb
ItemDescriptionIdentifyOrb:
.string "Reveals if Pokémon on the floor are#nholding items or not.#n#n#nRange: All Pokémon on floor\n\0"
.global ItemDescriptionVacuumCut
ItemDescriptionVacuumCut:
.string "Teaches the move #c4Vacuum Cut#r.#nIt inflicts damage on all foes in the room.\n\0"
.global ItemDescriptionReviverOrb
ItemDescriptionReviverOrb:
.string "A hold item that revives the Pokémon#nif it faints.#nIt does not work if the holder faints#nfrom an explosion.#nRange: Holder\n\0"
.global ItemDescriptionShockerOrb
ItemDescriptionShockerOrb:
.string "Changes the target~27s status to #c5Cowering#r~2c#nmaking its attacks go in the opposite#ndirection.#n#nRange: Foe in front\n\0"
.global ItemDescriptionSizebustOrb
ItemDescriptionSizebustOrb:
.string "Inflicts damage on the target.#nThe bigger the target~27s size~2c the greater#nthe damage.#n#nRange: Foe in front\n\0"
.global ItemDescriptionOneRoomOrb
ItemDescriptionOneRoomOrb:
.string "Destroys all walls on the floor~2c turning#nthe floor into one vast room.#n#n#nRange: Special\n\0"
.global ItemDescriptionFillInOrb
ItemDescriptionFillInOrb:
.string "Makes water or magma in front of the#nuser turn into a solid floor tile.#n#n#nRange: Special\n\0"
.global ItemDescriptionTrapperOrb
ItemDescriptionTrapperOrb:
.string "Sets a trap where the user is standing.#nIt does not work if used in a hallway.#n#n#nRange: User\n\0"
.global ItemDescriptionPossessOrb
ItemDescriptionPossessOrb:
.string "A leader~27s hold item that enables the#nleader to possess a friend and survive.#nIt only works for the team leader.\n\0"
.global ItemDescriptionItemizerOrb
ItemDescriptionItemizerOrb:
.string "Turns the target Pokémon into an item.#n#n#n#nRange: Foe in front\n\0"
.global ItemDescriptionHurlOrb
ItemDescriptionHurlOrb:
.string "Hurls the target at another foe to inflict#ndamage.#n#n#nRange: Foe in front\n\0"
.global ItemDescriptionMobileOrb
ItemDescriptionMobileOrb:
.string "Changes the user~27s status to #c5Mobile#r~2c#nenabling it to move and attack through#nwalls and on lava~2c water~2c and clouds.#n#nRange: User\n\0"
.global ItemDescriptionTossOrb
ItemDescriptionTossOrb:
.string "Enables the Pokémon to throw items.\n\0"
.global ItemDescriptionStairsOrb
ItemDescriptionStairsOrb:
.string "Reveals the location of the stairs on the#nfloor.#n#n#nRange: User\n\0"
.global ItemDescriptionLongtossOrb
ItemDescriptionLongtossOrb:
.string "Changes the user~27s status to #c5Long Toss#r.#nItems thrown by the user will fly until#nthey hit a wall or a Pokémon.#n#nRange: User\n\0"
.global ItemDescriptionPierceOrb
ItemDescriptionPierceOrb:
.string "Changes the user~27s status to #c5Pierce#r.#nItems thrown by the user will fly through#nwalls and Pokémon without stopping.#n#nRange: User\n\0"
.global ItemDescriptionCut
ItemDescriptionCut:
.string "Teaches the move #c4Cut#r. It does not break~2c#nbut cannot be used in a dungeon.#nThe move damages all foes around the#nuser.\n\0"
.global ItemDescriptionFly
ItemDescriptionFly:
.string "Teaches the move #c4Fly#r. It does not break~2c#nbut cannot be used in a dungeon.#nThe move makes the user~27s status #c5Flying#r~2c#nmaking it attack on the next turn.\n\0"
.global ItemDescriptionSurf
ItemDescriptionSurf:
.string "Teaches the move #c4Surf#r. It does not break~2c#nbut cannot be used in a dungeon.#nThe move damages the target.#nInflicts double damage on a #c5diving#r foe.\n\0"
.global ItemDescriptionStrength
ItemDescriptionStrength:
.string "Teaches the move #c4Strength#r. It does not#nbreak~2c but cannot be used in a dungeon.#nThe move hurls the target at another#nPokémon to inflict damage.\n\0"
.global ItemDescriptionFlash
ItemDescriptionFlash:
.string "Teaches the move #c4Flash#r. It does not break~2c#nbut cannot be used in a dungeon.#nThe move lowers the target~27s #c6Accuracy#r#nby one level.\n\0"
.global ItemDescriptionRockSmash
ItemDescriptionRockSmash:
.string "Teaches the move #c4Rock Smash#r. It does not#nbreak~2c but cannot be used in a dungeon.#nThe move digs through the wall the user#nis facing.\n\0"
.global ItemDescriptionWaterfall
ItemDescriptionWaterfall:
.string "Teaches the move #c4Waterfall#r. It does not#nbreak~2c but cannot be used in a dungeon.#nThe move damages the target.\n\0"
.global ItemDescriptionDive
ItemDescriptionDive:
.string "Teaches the move #c4Dive#r. It does not break~2c#nbut cannot be used in a dungeon.#nThe move makes the user~27s status #c5Diving#r~2c#nmaking it attack strongly on the next turn.\n\0"
.global ItemDescriptionLinkBox
ItemDescriptionLinkBox:
.string "A marvelous box that enables the user to#n#c5link#r and delink moves.#n#c5Linked#r moves become separated if#ntheir combined #c6PP#r drops to zero.\n\0"
.global ItemDescriptionSwitchBox
ItemDescriptionSwitchBox:
.string "A curious box that enables the user to#nswitch the rescue team~27s leader.#nOnly official team members may become#nthe team leader.\n\0"
.global ItemDescriptionWeavileFig
ItemDescriptionWeavileFig:
.string "Weavile event item.\n\0"
.global ItemDescriptionMimeJrFig
ItemDescriptionMimeJrFig:
.string "Mime Jr. event item.\n\0"
.global ItemDescriptionPlaceholder
ItemDescriptionPlaceholder:
.string "Synthesis item\n\0"
|