-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathtext11.asm
1432 lines (1161 loc) · 27.4 KB
/
text11.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
HorseaDescription:
text "Known to shoot down flying bugs with"
line "precision blasts of ink from the"
line "surface of the water."
done
SeadraName:
text "Seadra"
done
SeadrasWaterGunDescription:
text "Does 20 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Seadra but not used to pay for this"
line "attack's Energy cost. You can't add"
line "more than 20 damage in this way."
done
SeadrasAgilityDescription:
text "Flip a coin. If heads, during your"
line "opponent's next turn, prevent all "
line "effects of attacks, including"
line "damage, done to Seadra."
done
SeadraDescription:
text "Capable of swimming backward by"
line "rapidly flapping its wing-like"
line "pectoral fins and stout tail."
done
GoldeenName:
text "Goldeen"
done
HornAttackName:
text "Horn Attack"
done
GoldfishName:
text "Goldfish"
done
GoldeenDescription:
text "Its tail fin billows like an elegant"
line "ballroom dress, giving it the"
line "nickname ”Water Queen.”"
done
SeakingName:
text "Seaking"
done
WaterfallName:
text "Waterfall"
done
SeakingDescription:
text "In the autumn spawning season, they"
line "can be seen swimming powerfully up"
line "rivers and creeks."
done
StaryuName:
text "Staryu"
done
SlapName:
text "Slap"
done
StarshapeName:
text "Starshape"
done
StaryuDescription:
text "An enigmatic Pokémon that can"
line "effortlessly regenerate any"
line "appendage it loses in battle."
done
StarmieName:
text "Starmie"
done
RecoverName:
text "Recover"
done
StarmiesRecoverDescription:
text "Discard 1 <WATER> Energy card attached to"
line "Starmie in order to use this attack."
line "Remove all damage counters from"
line "Starmie."
done
StarFreezeName:
text "Star Freeze"
done
MysteriousName:
text "Mysterious"
done
StarmieDescription:
text "Its central core glows with the"
line "seven colors of the rainbow. Some"
line "people value this core as a gem."
done
MagikarpName:
text "Magikarp"
done
TackleName:
text "Tackle"
done
MagikarpsFlailDescription:
text "Does 10 damage times the number of"
line "damage counters on Magikarp."
done
FishName:
text "Fish"
done
MagikarpDescription:
text "In the distant past, it was stronger"
line "than its horribly weak descendants"
line "that exist today."
done
GyaradosName:
text "Gyarados"
done
DragonRageName:
text "Dragon Rage"
done
BubblebeamName:
text "Bubblebeam"
done
AtrociousName:
text "Atrocious"
done
GyaradosDescription:
text "Rarely seen in the wild. Huge and"
line "vicious, it is capable of destroying"
line "entire cities in a rage."
done
LaprasName:
text "Lapras"
done
LaprasWaterGunDescription:
text "Does 10 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Lapras but not used to pay for this"
line "attack's Energy cost. You can't add"
line "more than 20 damage in this way."
done
TransportName:
text "Transport"
done
LaprasDescription:
text "A Pokémon that has been overhunted"
line "almost to extinction. It can ferry"
line "people across water."
done
VaporeonName:
text "Vaporeon"
done
FocusEnergyName:
text "Focus Energy"
done
FocusEnergyDescription:
text "During your next turn, Vaporeon's"
line "Bite attack's base damage is"
line "doubled."
done
BubbleJetName:
text "Bubble Jet"
done
VaporeonLv29Description:
text "Its cell structure is similar to"
line "water molecules. It will melt away"
line "and become invisible in water."
done
VaporeonsWaterGunDescription:
text "Does 30 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Vaporeon but not used to pay for"
line "this attack's Energy cost. You can't"
line "add more than 20 damage in this way."
done
VaporeonLv42Description:
text "Lives close to water. Its long tail"
line "is ridged with a fin that is often"
line "mistaken for a mermaid's."
done
OmanyteName:
text "Omanyte"
done
MysteriousFossilName:
text "Mysterious Fossil"
done
ClairvoyanceName:
text "Clairvoyance"
done
ClairvoyanceDescription:
text "Your opponent plays with his or her"
line "hand face up. This power stops"
line "working while Omanyte is Asleep,"
line "Confused, or Paralyzed."
done
OmanytesWaterGunDescription:
text "Does 10 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Omanyte but not used to pay for this"
line "attack's Energy cost. You can't add"
line "more than 20 damage in this way."
done
SpiralName:
text "Spiral"
done
OmanyteDescription:
text "Although long extinct, in rare"
line "cases, it can be genetically"
line "resurrected from fossils."
done
OmastarName:
text "Omastar"
done
OmastarsWaterGunDescription:
text "Does 20 damage plus 10 more damage"
line "for each <WATER> Energy attached to"
line "Omastar but not used to pay for this"
line "attack's Energy cost. You can't add"
line "more than 20 damage in this way."
done
OmastarDescription:
text "A prehistoric Pokémon that died out"
line "when its heavy shell made it"
line "impossible for it to catch prey."
done
ArticunoName:
text "Articuno"
done
FreezeDryName:
text "Freeze Dry"
done
BlizzardName:
text "Blizzard"
done
BlizzardDescription:
text "Flip a coin. If heads, this attack"
line "does 10 damage to each of your"
line "opponent's Benched Pokémon."
line "If tails, this attack does 10 damage"
line "to each of your own Benched Pokémon."
line "(Don't apply Weakness and Resistance"
line "for Benched Pokémon.)"
done
FreezeName:
text "Freeze"
done
ArticunoLv35Description:
text "A legendary bird Pokémon that is"
line "said to appear to doomed people who"
line "are lost in icy mountains."
done
QuickfreezeName:
text "Quickfreeze"
done
QuickfreezeDescription:
text "When you put Articuno into play"
line "during your turn (not during"
line "set-up), flip a coin. If heads, the"
line "Defending Pokémon is now Paralyzed."
done
IceBreathName:
text "Ice Breath"
done
IceBreathDescription:
text "Does 40 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
ArticunoLv37Description:
text "A legendary bird Pokémon. It freezes"
line "water that is contained in winter"
line "air and makes it snow."
done
PikachuName:
text "Pikachu"
done
GnawName:
text "Gnaw"
done
ThunderJoltName:
text "Thunder Jolt"
done
ThunderJoltDescription:
text "Flip a coin. If tails, Pikachu does"
line "10 damage to itself."
done
MouseName:
text "Mouse"
done
PikachuLv12Description:
text "When several of these Pokémon"
line "gather, their electricity can cause"
line "lightning storms."
done
SparkName:
text "Spark"
done
SparkDescription:
text "If your opponent has any Benched"
line "Pokémon, choose 1 of them and this"
line "attack does 10 damage to it. (Don't"
line "apply Weakness and Resistance for"
line "Benched Pokémon.)"
done
PikachuLv14Description:
text "When several of these Pokémon"
line "gather, their electricity can build"
line "and cause lightning storms."
done
GrowlName:
text "Growl"
done
GrowlDescription:
text "If the Defending Pokémon attacks"
line "Pikachu during your opponent's next"
line "turn, any damage done by the attack"
line "is reduced by 10 (after applying"
line "Weakness and Resistance). "
line "(Benching or evolving either Pokémon"
line "ends this effect.)"
done
ThundershockName:
text "Thundershock"
done
PikachuLv16Description:
text "When several of these Pokémon"
line "gather, their electricity could"
line "build and cause lightning storms."
done
FlyingPikachuName:
text "Flying Pikachu"
done
FlyName:
text "Fly"
done
FlyDescription:
text "Flip a coin. If heads, during your"
line "opponent's next turn, prevent all"
line "effects of attacks, including"
line "damage, done to Flying Pikachu. "
line "If tails, this attack does nothing "
line "(not even damage)."
done
FlyingPikachuDescription:
text "By learning how to fly, Pikachu"
line "overcame its weakness to Fighting"
line "Pokémon."
done
SurfingPikachuName:
text "Surfing Pikachu"
done
SurfName:
text "Surf"
done
SurfingPikachuDescription:
text "One summer, a group of Pikachu"
line "was found riding the waves at the"
line "local beach."
done
RaichuName:
text "Raichu"
done
RaichusAgilityDescription:
text "Flip a coin. If heads, during your"
line "opponent's next turn, prevent all"
line "effects of attacks, including"
line "damage, done to Raichu."
done
ThunderName:
text "Thunder"
done
RaichusThunderDescription:
text "Flip a coin. If tails, Raichu does"
line "30 damage to itself."
done
RaichuLv40Description:
text "Its long tail serves as a ground to"
line "protect itself from its own"
line "high-voltage power."
done
GigashockName:
text "Gigashock"
done
GigashockDescription:
text "Choose 3 of your opponent's Benched"
line "Pokémon and this attack does 10"
line "damage to each of them. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.) If your opponent has fewer"
line "than 3 Benched Pokémon, do the"
line "damage to each of them."
done
RaichuLv45Description:
text "Its long tail serves as a ground to"
line "protect itself from its own high"
line "voltage power."
done
MagnemiteName:
text "Magnemite"
done
ThunderWaveName:
text "Thunder Wave"
done
MagnemitesSelfdestructDescription:
text "Does 10 damage to each Pokémon on"
line "each player's Bench. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.) Magnemite does 40 damage"
line "to itself."
done
MagnetName:
text "Magnet"
done
MagnemiteLv13Description:
text "Uses anti-gravity to stay suspended."
line "Appears without warning and uses"
line "attacks like Thunder Wave."
done
MagneticStormName:
text "Magnetic Storm"
done
MagneticStormDescription:
text "Remove all Energy cards attached to"
line "all of your Pokémon, then randomly"
line "reattach each of them."
done
MagnemiteLv15Description:
text "It is born with the ability to defy"
line "gravity. Floats in air on powerful"
line "electromagnetic waves."
done
MagnetonName:
text "Magneton"
done
MagnetonLv28sSelfdestructDescription:
text "Does 20 damage to each Pokémon on"
line "each player's Bench. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.)"
line "Magneton does 80 damage to itself."
done
MagnetonLv28Description:
text "Formed by several Magnemites linked"
line "together. It frequently appears when"
line "sunspots flare up."
done
SonicboomName:
text "Sonicboom"
done
SonicboomDescription:
text "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
MagnetonLv35sSelfdestructDescription:
text "Does 20 damage to each Pokémon on"
line "each player's Bench. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.) Magneton does 100 damage"
line "to itself."
done
MagnetonLv35Description:
text "Formed by several Magnemites linked"
line "together. They frequently appear"
line "when sunspots flare up."
done
VoltorbName:
text "Voltorb"
done
BallName:
text "Ball"
done
VoltorbDescription:
text "Usually found in power plants."
line "Easily mistaken for a Poke Ball, it"
line "has zapped many people."
done
ElectrodeName:
text "Electrode"
done
EnergySpikeName:
text "Energy Spike"
done
EnergySpikeDescription:
text "Search your deck for a basic Energy"
line "card and attach it to 1 of your"
line "Pokémon. Shuffle your deck"
line "afterward."
done
ElectrodeLv35Description:
text "Stores electrical energy inside its"
line "body. Even the slightest shock could"
line "trigger a huge explosion."
done
ChainLightningName:
text "Chain Lightning"
done
ChainLightningDescription:
text "If the Defending Pokémon isn't"
line "Colorless, this attack does 10"
line "damage to each Benched Pokémon of"
line "the same type as the Defending"
line "Pokémon (including your own)."
done
ElectrodeLv42Description:
text "It stores electrical energy under"
line "very high pressure. It often"
line "explodes with little or no"
line "provocation."
done
ElectabuzzName:
text "Electabuzz"
done
LightScreenName:
text "Light Screen"
done
LightScreenDescription:
text "Whenever an attack does damage to"
line "Electabuzz (after applying Weakness"
line "and Resistance) during your"
line "opponent's next turn, that attack"
line "only does half the damage to"
line "Electabuzz (rounded down to the"
line "nearest 10)."
done
LightScreenDescriptionCont:
text "(Any other effects of attacks still"
line "happen.)"
done
ElectabuzzsQuickAttackDescription:
text "Flip a coin. If heads, this attack"
line "does 10 damage plus 20 more damage; "
line "if tails, this attack does"
line "10 damage."
done
ElectricName:
text "Electric"
done
ElectabuzzLv20Description:
text "A wild Pokémon with a short temper."
line "It is able to distinguish colors"
line "and likes the color red."
done
ThunderpunchName:
text "Thunderpunch"
done
ThunderpunchDescription:
text "Flip a coin. If heads, this attack"
line "does 30 damage plus 10 more damage;"
line "if tails, this attack does 30 damage"
line "and Electabuzz does 10 damage to"
line "itself."
done
ElectabuzzLv35Description:
text "Normally found near power plants,"
line "it can wander away and cause major"
line "blackouts in cities."
done
JolteonName:
text "Jolteon"
done
DoubleAttackX20Description:
text "Flip 2 coins. This attack does 20"
line "damage times the number of heads."
done
StunNeedleName:
text "Stun Needle"
done
LightningName:
text "Lightning"
done
JolteonLv24Description:
text "A sensitive Pokémon that easily"
line "becomes sad or angry. Every time"
line "its mood changes, it charges power."
done
PinMissileName:
text "Pin Missile"
done
QuadrupleAttackX20Description:
text "Flip 4 coins. This attack does 20"
line "damage times the number of heads."
done
JolteonLv29Description:
text "It accumulates negative ions from"
line "the atmosphere to blast out 10,000-"
line "volt lightning bolts."
done
ZapdosName:
text "Zapdos"
done
ThunderstormName:
text "Thunderstorm"
done
ThunderstormDescription:
text "For each of your opponent's Benched"
line "Pokémon, flip a coin. If heads,"
line "this attack does 20 damage to that"
line "Pokémon. (Don't apply Weakness and"
line "Resistance for Benched Pokémon.)"
line "Then, Zapdos does 10 damage times"
line "the number of tails to itself."
done
ZapdosLv40Description:
text "A legendary thunderbird Pokémon"
line "whose anger is said to cause storms."
line "Some say it has lived above the"
line "clouds for thousands of years."
done
ZapdosThunderDescription:
text "Flip a coin. If tails, Zapdos does"
line "30 damage to itself."
done
ThunderboltName:
text "Thunderbolt"
done
ThunderboltDescription:
text "Discard all Energy cards attached to"
line "Zapdos in order to use this attack."
done
ZapdosLv64Description:
text "A legendary bird Pokémon said to"
line "appear from clouds while wielding"
line "enormous lightning bolts."
done
PealOfThunderName:
text "Peal of Thunder"
done
PealOfThunderDescription:
text "When you put Zapdos into play during"
line "your turn (not during set-up), do"
line "30 damage to a Pokémon other than"
line "Zapdos chosen at random. (Don't"
line "apply Weakness and Resistance.)"
done
BigThunderName:
text "Big Thunder"
done
BigThunderDescription:
text "Choose a Pokémon other than Zapdos"
line "at random. This attack does 70"
line "damage to that Pokémon. Don't apply"
line "Weakness and Resistance for this"
line "attack. (Any other effects that"
line "would happen after applying Weakness"
line "and Resistance still happen.)"
done
ZapdosLv68Description:
text "This legendary bird Pokémon is said"
line "to appear when the sky turns dark"
line "and lightning showers down."
done
SandshrewName:
text "Sandshrew"
done
SandAttackName:
text "Sand-attack"
done
SandshrewDescription:
text "Burrows deep underground in arid"
line "locations far from water. It only"
line "emerges to hunt for food."
done
SandslashName:
text "Sandslash"
done
TripleAttackX20Description:
text "Flip 3 coins. This attack does 20"
line "damage times the number of heads."
done
SandslashDescription:
text "Curls up into a spiny ball when"
line "threatened. It can roll while curled"
line "up to attack or escape."
done
DiglettName:
text "Diglett"
done
DigName:
text "Dig"
done
MudSlapName:
text "Mud Slap"
done
MoleName:
text "Mole"
done
DiglettDescription:
text "Lives about three feet underground,"
line "where it feeds on plant roots. It"
line "sometimes appears above ground."
done
DugtrioName:
text "Dugtrio"
done
EarthquakeName:
text "Earthquake"
done
EarthquakeDescription:
text "Does 10 damage to each of your own"
line "Benched Pokémon. (Don't apply"
line "Weakness and Resistance for Benched"
line "Pokémon.)"
done
DugtrioDescription:
text "A team of Diglett triplets."
line "It triggers huge earthquakes by"
line "burrowing 60 miles underground."
done
MankeyName:
text "Mankey"
done
PeekName:
text "Peek"
done
PeekDescription:
text "Once during your turn (before your"
line "attack), you may look at one of the"
line "following: the top card of either"
line "player's deck, a random card from"
line "your opponent's hand, or one of"
line "either player's Prizes."
done
PeekDescriptionCont:
text "This power can't be used if Mankey"
line "is Asleep, Confused, or Paralyzed."
done
PigMonkeyName:
text "Pig Monkey"
done
MankeyDescription:
text "Extremely quick to anger. It could"
line "be docile one moment, then thrashing"
line "away the next."
done
PrimeapeName:
text "Primeape"
done
TantrumName:
text "Tantrum"
done
TantrumDescription:
text "Flip a coin. If tails, Primeape is"
line "now Confused (after doing damage)."
done
PrimeapeDescription:
text "Always furious and tenacious to"
line "boot. It will not abandon chasing"
line "its quarry until its quarry is"
line "caught."
done
MachopName:
text "Machop"
done
LowKickName:
text "Low Kick"
done
SuperpowerName:
text "Superpower"
done
MachopDescription:
text "Loves to build its muscles. It"
line "trains in all styles of martial arts"
line "to become even stronger."
done
MachokeName:
text "Machoke"
done
KarateChopName:
text "Karate Chop"
done
KarateChopDescription:
text "Does 50 damage minus 10 damage for"
line "each damage counter on Machoke."
done
SubmissionName:
text "Submission"
done
SubmissionDescription:
text "Machoke does 20 damage to itself."
done
MachokeDescription:
text "Its muscular body is so powerful"
line "that it must wear a power-save belt"
line "to help regulate its motions."
done
MachampName:
text "Machamp"
done
StrikesBackName:
text "Strikes Back"
done
StrikesBackDescription:
text "Whenever your opponent's attack"
line "damages Machamp (even if Machamp is"
line "Knocked Out), this power does 10"
line "damage to the attacking Pokémon."
line "(Don't apply Weakness and"
line "Resistance.) "
done
StrikesBackDescriptionCont:
text "This power can't be used if Machamp"
line "is already Asleep, Confused, or"
line "Paralyzed when your opponent"
line "attacks."
done
SeismicTossName:
text "Seismic Toss"
done
MachampDescription:
text "Using its amazing muscles, it throws"
line "powerful punches that can knock its"
line "victim clear over the horizon."
done