-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathtext12.asm
1415 lines (1149 loc) · 27.3 KB
/
text12.asm
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
DamageSwapDescription:
text "As often as you like during your"
line "turn (before your attack), you may"
line "move 1 damage counter from 1 of your"
line "Pokémon to another as long as you"
line "don't Knock Out that Pokémon."
line "This power can't be used if Alakazam"
line "is Asleep, Confused, or Paralyzed."
done
AlakazamDescription:
text "Its brain can outperform a"
line "supercomputer. Its intelligence"
line "quotient is said to be 5000."
done
SlowpokeName:
text "Slowpoke"
done
SlowpokesAmnesiaDescription:
text "Choose 1 of the Defending Pokémon's"
line "attacks. That Pokémon can't use"
line "that attack during your opponent's"
line "next turn."
done
DopeyName:
text "Dopey"
done
SlowpokeLv9Description:
text "Incredibly slow and dopey. It takes"
line "5 seconds for it to feel pain when"
line "under attack."
done
SpacingOutName:
text "Spacing Out"
done
SpacingOutDescription:
text "Flip a coin. If heads, remove a"
line "damage counter from Slowpoke. This"
line "attack can't be used if Slowpoke"
line "has no damage counters on it."
done
ScavengeName:
text "Scavenge"
done
ScavengeDescription:
text "Discard 1 <PSYCHIC> Energy card attached"
line "to Slowpoke in order to use this"
line "attack. Put a Trainer card from your"
line "discard pile into your hand."
done
SlowbroName:
text "Slowbro"
done
StrangeBehaviorName:
text "Strange Behavior"
done
StrangeBehaviorDescription:
text "As often as you like during your"
line "turn (before your attack), you may"
line "move 1 damage counter from 1 of your"
line "Pokémon to Slowbro as long as you"
line "don't Knock Out Slowbro. This power"
line "can't be used if Slowbro is Asleep,"
line "Confused, or Paralyzed."
done
HermitcrabName:
text "Hermitcrab"
done
SlowbroDescription:
text "The Shellder that is latched onto"
line "Slowpoke's tail is said to feed on"
line "the host's left-over scraps."
done
GastlyName:
text "Gastly"
done
SleepingGasName:
text "Sleeping Gas"
done
MayInflictSleepDescription:
text "Flip a coin. If heads, the Defending"
line "Pokémon is now Asleep."
done
DestinyBondName:
text "Destiny Bond"
done
DestinyBondDescription:
text "Discard 1 <PSYCHIC> Energy card attached to"
line "Gastly in order to use this attack."
line "If a Pokémon Knocks Out Gastly"
line "during your opponent's next turn,"
line "Knock Out that Pokémon."
done
GasName:
text "Gas"
done
GastlyLv8Description:
text "Almost invisible, this gaseous"
line "Pokémon cloaks the target and puts"
line "it to sleep without notice."
done
LickName:
text "Lick"
done
EnergyConversionName:
text "Energy Conversion"
done
EnergyConversionDescription:
text "Put up to 2 Energy cards from your"
line "discard pile into your hand. Gastly"
line "does 10 damage to itself."
done
GastlyLv17Description:
text "A mysterious Pokémon. Some say it is"
line "a lifeform from another dimension,"
line "while others believe it is formed"
line "from smog."
done
HaunterName:
text "Haunter"
done
TransparencyName:
text "Transparency"
done
TransparencyDescription:
text "Whenever an attack does anything to"
line "Haunter, flip a coin. If heads,"
line "prevent all effects of that attack,"
line "including damage, done to Haunter."
line "This power stops working while"
line "Haunter is Asleep, Confused, or"
line "Paralyzed."
done
NightmareName:
text "Nightmare"
done
HaunterDescription:
text "Because of its ability to slip"
line "through block walls, it is said to"
line "be from another dimension."
done
DreamEaterName:
text "Dream Eater"
done
DreamEaterDescription:
text "You can't use this attack unless"
line "the Defending Pokémon is Asleep."
done
GengarName:
text "Gengar"
done
CurseName:
text "Curse"
done
CurseDescription:
text "Once during your turn (before your"
line "attack), you may move 1 damage"
line "counter from 1 of your opponent's"
line "Pokémon to another (even if it would"
line "Knock Out the other Pokémon)."
line "This power can't be used if Gengar"
line "is Asleep, Confused, or Paralyzed."
done
DarkMindName:
text "Dark Mind"
done
DarkMindDescription:
text "If your opponent has any Benched"
line "Pokémon, choose 1 of them and this"
line "attack does 10 damage to it."
line "(Don't apply Weakness and Resistance"
line "for Benched Pokémon.)"
done
ShadowName:
text "Shadow"
done
GengarDescription:
text "Under a full moon, this Pokémon"
line "likes to mimic the shadows of people"
line "and laugh at their fright."
done
DrowzeeName:
text "Drowzee"
done
PoundName:
text "Pound"
done
DrowzeeDescription:
text "Puts enemies to sleep, then eats"
line "their dreams. Occasionally gets sick"
line "from eating bad dreams."
done
HypnoName:
text "Hypno"
done
ProphecyName:
text "Prophecy"
done
ProphecyDescription:
text "Look at up to 3 cards from the top"
line "of either player's deck and"
line "rearrange them as you like."
done
HypnoDescription:
text "When it locks eyes with an enemy,"
line "it will use a mix of psi moves such"
line "as Hypnosis and Confusion."
done
MrMimeName:
text "Mr. Mime"
done
InvisibleWallName:
text "Invisible Wall"
done
InvisibleWallDescription:
text "Whenever an attack (including your"
line "own) does 30 or more damage to Mr."
line "Mime (after applying Weakness and"
line "Resistance), prevent that damage."
line "(Any other effects of attacks still"
line "happen.)"
done
InvisibleWallDescriptionCont:
text "This power can't be used if Mr. Mime"
line "is Asleep, Confused, or Paralyzed."
done
MeditateName:
text "Meditate"
done
MrMimesMeditateDescription:
text "Does 10 damage plus 10 more damage"
line "for each damage counter on the"
line "Defending Pokémon."
done
BarrierName:
text "Barrier"
done
MrMimeDescription:
text "If interrupted while miming, it will"
line "slap around the enemy with its broad"
line "hands."
done
JynxName:
text "Jynx"
done
DoubleAttackX10Description:
text "Flip 2 coins. This attack does 10"
line "damage times the number of heads."
done
JynxsMeditateDescription:
text "Does 20 damage plus 10 more damage"
line "for each damage counter on the"
line "Defending Pokémon."
done
HumanShapeName:
text "Human Shape"
done
JynxDescription:
text "Merely by meditating, the Pokémon"
line "launches a powerful psychic energy"
line "attack."
done
MewtwoName:
text "Mewtwo"
done
PsychicName:
text "Psychic"
done
PsychicDescription:
text "Does 10 damage plus 10 more damage"
line "for each Energy card attached to the"
line "Defending Pokémon."
done
BarrierDescription:
text "Discard 1 <PSYCHIC> Energy card attached to"
line "Mewtwo in order to use this attack."
line "During your opponent's next turn,"
line "prevent all effects of attacks,"
line "including damage, done to Mewtwo."
done
GeneticName:
text "Genetic"
done
MewtwoLv53Description:
text "A scientist created this Pokémon"
line "after years of horrific"
line "gene-splicing and DNA engineering"
line "experiments."
done
EnergyAbsorptionName:
text "Energy Absorption"
done
EnergyAbsorptionDescription:
text "Choose up to 2 Energy cards from"
line "your discard pile and attach them"
line "to Mewtwo."
done
PsyburnName:
text "Psyburn"
done
MewtwoLv60Description:
text "Years of genetic experiments"
line "resulted in the creation of this"
line "never-before-seen violent Pokémon."
done
MewName:
text "Mew"
done
NeutralizingShieldName:
text "Neutralizing Shield"
done
NeutralizingShieldDescription:
text "Prevent all effects of attacks,"
line "including damage, done to Mew by"
line "evolved Pokémon (excluding your"
line "own). This power stops working while"
line "Mew is Asleep, Confused, or"
line "Paralyzed."
done
NewSpeciesName:
text "New Species"
done
MewLv8Description:
text "So rare that it is still said to be"
line "a mirage by many experts. Only a few"
line "people have seen it worldwide."
done
MysteryAttackName:
text "Mystery Attack"
done
MysteryAttackDescription:
text "Does a random amount of damage to"
line "the Defending Pokémon and may cause"
line "a random effect to the Defending"
line "Pokémon."
done
MewLv15Description:
text "When viewed through a microscope, "
line "this Pokémon's short, fine, delicate"
line "hair can be seen."
done
PsywaveName:
text "Psywave"
done
PsywaveDescription:
text "Does 10 damage times the number of"
line "Energy cards attached to the"
line "Defending Pokémon."
done
DevolutionBeamName:
text "Devolution Beam"
done
DevolutionBeamDescription:
text "Choose an evolved Pokémon (Your"
line "own or your opponent's). Return"
line "the highest stage evolution card"
line "on that Pokémon to Its player's"
line "hand."
done
PidgeyName:
text "Pidgey"
done
TinyBirdName:
text "Tiny Bird"
done
PidgeyDescription:
text "A common sight in forests and woods."
line "It flaps its wings at ground level"
line "to kick up blinding sand."
done
PidgeottoName:
text "Pidgeotto"
done
MirrorMoveName:
text "Mirror Move"
done
PidgeottosMirrorMoveDescription:
text "If Pidgeotto was attacked last turn,"
line "do the final result of that attack"
line "on Pidgeotto to the Defending"
line "Pokémon."
done
BirdName:
text "Bird"
done
PidgeottoDescription:
text "Very protective of its sprawling"
line "territory, this Pokémon will"
line "fiercely peck at any intruder."
done
PidgeotName:
text "Pidgeot"
done
SlicingWindName:
text "Slicing Wind"
done
SlicingWildDescription:
text "Does 30 damage to 1 of your"
line "opponent's Pokémon chosen at random."
line "Don't apply Weakness and Resistance"
line "for this attack. (Any other effects"
line "that would happen after applying"
line "Weakness and Resistance still"
line "happen.)"
done
GaleName:
text "Gale"
done
GaleDescription:
text "Switch Pidgeot with 1 of your"
line "Benched Pokémon chosen at random."
line "If your opponent has any Benched"
line "Pokémon, switch the Defending"
line "Pokémon with 1 of them chosen at"
line "random. (Do the damage before"
line "switching the Pokémon.)"
done
PidgeotLv38Description:
text "This Pokémon flies at Mach 2 speed,"
line "seeking prey. Its large talons are"
line "feared as wicked weapons."
done
HurricaneName:
text "Hurricane"
done
HurricaneDescription:
text "Unless this attack Knocks Out the"
line "Defending Pokémon, return the"
line "Defending Pokémon and all cards"
line "attached to it to your opponent's"
line "hand."
done
PidgeotLv40Description:
text "When hunting, it skims the surface"
line "of water at high speed to pick off"
line "unwary prey such as Magikarp."
done
RattataName:
text "Rattata"
done
RatName:
text "Rat"
done
RattataDescription:
text "Bites anything when it attacks."
line "Small and very quick, it is a common"
line "sight in many places."
done
RaticateName:
text "Raticate"
done
SuperFangName:
text "Super Fang"
done
SuperFangDescription:
text "Does damage to the Defending Pokémon"
line "equal to half the Defending"
line "Pokémon's remaining HP (rounded up"
line "to the nearest 10)."
done
RaticateDescription:
text "It uses its whiskers to maintain its"
line "balance. It seems to slow down if"
line "they are cut off."
done
SpearowName:
text "Spearow"
done
PeckName:
text "Peck"
done
SpearowsMirrorMoveDescription:
text "If Spearow was attacked last turn,"
line "do the final result of that attack"
line "on Spearow to the Defending Pokémon."
done
SpearowDescription:
text "Eats bugs in grassy areas. It has to"
line "flap its short wings at high speed"
line "to stay airborne."
done
FearowName:
text "Fearow"
done
FearowsAgilityDescription:
text "Flip a coin. If heads, during your"
line "opponent's next turn, prevent all"
line "effects of attacks, including"
line "damage, done to Fearow."
done
DrillPeckName:
text "Drill Peck"
done
BeakName:
text "Beak"
done
FearowDescription:
text "With its huge and magnificent wings,"
line "it can keep aloft without ever"
line "having to land for rest."
done
ClefairyName:
text "Clefairy"
done
SingName:
text "Sing"
done
MetronomeName:
text "Metronome"
done
ClefairysMetronomeDescription:
text "Choose 1 of the Defending Pokémon's"
line "attacks. Metronome copies that"
line "attack except for its Energy costs."
line "(No matter what type the Defending"
line "Pokemon is, Clefairy's type is"
line "still Colorless.)"
done
FairyName:
text "Fairy"
done
ClefairyDescription:
text "Its magical and cute appeal has many"
line "admirers. It is rare and found only"
line "in certain areas."
done
ClefableName:
text "Clefable"
done
ClefablesMetronomeDescription:
text "Choose 1 of the Defending Pokémon's"
line "attacks. Metronome copies that"
line "attack except for its Energy costs."
line "(No matter what type the Defending"
line "Pokémon is, Clefable's type is"
line "still Colorless.)"
done
ClefablesMinimizeDescription:
text "All damage done by attacks to"
line "Clefable during your opponent's next"
line "turn is reduced by 20 (after"
line "applying Weakness and Resistance)."
done
ClefableDescription:
text "A timid Fairy Pokémon that is rarely"
line "seen. It will run and hide the"
line "moment it senses people."
done
JigglypuffName:
text "Jigglypuff"
done
FirstAidName:
text "First Aid"
done
FirstAidDescription:
text "Remove 1 damage counter from"
line "Jigglypuff."
done
DoubleEdgeName:
text "Double-edge"
done
JigglypuffsDoubleEdgeDescription:
text "Jigglypuff does 20 damage to itself."
done
BalloonName:
text "Balloon"
done
JigglypuffLv12Description:
text "When its huge eyes light up, it"
line "sings a mysteriously soothing"
line "melody that lulls its enemies to"
line "sleep."
done
FriendshipSongName:
text "Friendship Song"
done
FriendshipSongDescription:
text "Flip a coin. If heads, put a Basic"
line "Pokémon card chosen at random from"
line "your deck onto your Bench. (You"
line "can't use this attack if your Bench"
line "is full.)"
done
ExpandName:
text "Expand"
done
ExpandDescription:
text "All damage done to Jigglypuff during"
line "your opponent's next turn is reduced"
line "by 10 (after applying Weakness and"
line "Resistance)."
done
JigglypuffLv13Description:
text "Uses its alluring eyes to enrapture"
line "its foe. It then sings a pleasing"
line "melody that lulls the foe to sleep."
done
LullabyName:
text "Lullaby"
done
JigglypuffLv14Description:
text "When its huge eyes light up, it"
line "sings a mysteriously soothing melody"
line "that lulls its enemies to sleep."
done
WigglytuffName:
text "Wigglytuff"
done
DoTheWaveName:
text "Do the Wave"
done
DoTheWaveDescription:
text "Does 10 damage plus 10 more damage"
line "for each of your Benched Pokémon."
done
WigglytuffDescription:
text "The body is soft and rubbery. When"
line "angered, it will suck in air and"
line "inflate itself to an enormous size."
done
MeowthName:
text "Meowth"
done
CatPunchName:
text "Cat Punch"
done
CatPunchDescription:
text "Does 20 damage to 1 of your"
line "opponent's Pokémon chosen at random."
line "Don't apply Weakness and Resistance"
line "for this attack. (Any other effects"
line "that would happen after applying"
line "Weakness and Resistance still"
line "happen.)"
done
ScratchCatName:
text "Scratch Cat"
done
MeowthLv14Description:
text "Appears to be more active at night."
line "It loves round and shiny things, so"
line "it can't stop from picking them up."
done
PayDayName:
text "Pay Day"
done
PayDayDescription:
text "Flip a coin. If heads, draw a card."
done
MeowthLv15Description:
text "Adores circular objects. Wanders"
line "the streets on a nightly basis to"
line "look for dropped loose change."
done
PersianName:
text "Persian"
done
PounceName:
text "Pounce"
done
PounceDescription:
text "If the Defending Pokémon attacks"
line "Persian during your opponent's next"
line "turn, any damage done by the attack"
line "is reduced by 10 (after applying"
line "Weakness and Resistance). (Benching"
line "or evolving either Pokémon ends this"
line "effect.)"
done
ClassyCatName:
text "Classy Cat"
done
PersianDescription:
text "Although its fur has many admirers,"
line "it is tough to raise as a pet"
line "because of its fickle meanness."
done
FarfetchdName:
text "Farfetch'd"
done
LeekSlapName:
text "Leek Slap"
done
LeekSlapDescription:
text "Flip a coin. If tails, this attack"
line "does nothing. Either way, you can't"
line "use this attack again as long as"
line "Farfetch'd stays in play (even"
line "putting Farfetch'd on the Bench"
line "won't let you use it again)."
done
PotSmashName:
text "Pot Smash"
done
WildDuckName:
text "Wild Duck"
done
FarfetchdDescription:
text "The sprig of green onions it holds"
line "is its weapon. This sprig is used"
line "much like a metal sword."
done
DoduoName:
text "Doduo"
done
FuryAttackName:
text "Fury Attack"
done
TwinBirdName:
text "Twin Bird"
done
DoduoDescription:
text "A bird that makes up for its poor"
line "flying with its fast foot speed."
line "Leaves giant footprints."
done
DodrioName:
text "Dodrio"
done
RetreatAidName:
text "Retreat Aid"
done
RetreatAidDescription:
text "As long as Dodrio is Benched, pay"
line "<COLORLESS> less to retreat your Active"
line "Pokémon."
done
DodriosRageDescription:
text "Does 10 damage plus 10 more damage"
line "for each damage counter on Dodrio."
done
TriplebirdName:
text "Triplebird"
done
DodrioDescription:
text "Uses its three brains to execute"
line "complex plans. While two heads"
line "sleep, one head stays awake."
done
LickitungName:
text "Lickitung"
done
TongueWrapName:
text "Tongue Wrap"
done
LickingName:
text "Licking"
done
LickitungDescription:
text "Its tongue can be extended like a"
line "chameleon's. It leaves a stinging"
line "sensation when it licks enemies."
done
ChanseyName:
text "Chansey"
done
ScrunchName:
text "Scrunch"
done
ScrunchDescription:
text "Flip a coin. If heads, prevent all"
line "damage done to Chansey during your"
line "opponent's next turn. (Any other"
line "effects of attacks still happen.)"
done
ChanseysDoubleEdgeDescription:
text "Chansey does 80 damage to itself."
done
ChanseyDescription:
text "A rare and elusive Pokémon that is"
line "said to bring happiness to those"
line "who manage to catch it."
done
KangaskhanName:
text "Kangaskhan"
done
FetchName:
text "Fetch"
done
FetchDescription:
text "Draw a card."
done
CometPunchName:
text "Comet Punch"
done
ParentName:
text "Parent"
done
KangaskhanDescription:
text "The infant rarely ventures out of"
line "its mother's protective pouch until"
line "it is three years old."
done
TaurosName:
text "Tauros"
done
RampageName:
text "Rampage"
done
RampageDescription:
text "Does 20 damage plus 10 more damage"
line "for each damage counter on Tauros."
line "Flip a coin. If tails, Tauros is"
line "now Confused (after doing damage)."
done
WildBullName:
text "Wild Bull"
done
TaurosDescription:
text "When it targets an enemy, it charges"