-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabilities.json
More file actions
1670 lines (1670 loc) · 111 KB
/
abilities.json
File metadata and controls
1670 lines (1670 loc) · 111 KB
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
{
"noability": {
"name": "No Ability",
"shortDesc": "Does nothing."
},
"adaptability": {
"name": "Adaptability",
"desc": "This Pokemon's moves that match one of its types have a same-type attack bonus (STAB) of 2 instead of 1.5.",
"shortDesc": "This Pokemon's same-type attack bonus (STAB) is 2 instead of 1.5."
},
"aerilate": {
"name": "Aerilate",
"desc": "This Pokemon's Normal-type moves become Flying-type moves and have their power multiplied by 1.2. This effect comes after other effects that change a move's type, but before Ion Deluge and Electrify's effects.",
"shortDesc": "This Pokemon's Normal-type moves become Flying type and have 1.2x power.",
"gen6": {
"desc": "This Pokemon's Normal-type moves become Flying-type moves and have their power multiplied by 1.3. This effect comes after other effects that change a move's type, but before Ion Deluge and Electrify's effects.",
"shortDesc": "This Pokemon's Normal-type moves become Flying type and have 1.3x power."
}
},
"aftermath": {
"name": "Aftermath",
"desc": "If this Pokemon is knocked out with a contact move, that move's user loses 1/4 of its maximum HP, rounded down. If any active Pokemon has the Damp Ability, this effect is prevented.",
"shortDesc": "If this Pokemon is KOed with a contact move, that move's user loses 1/4 its max HP.",
"damage": " [POKEMON] was hurt!"
},
"airlock": {
"name": "Air Lock",
"shortDesc": "While this Pokemon is active, the effects of weather conditions are disabled.",
"start": " The effects of the weather disappeared."
},
"analytic": {
"name": "Analytic",
"desc": "The power of this Pokemon's move is multiplied by 1.3 if it is the last to move in a turn. Does not affect Doom Desire and Future Sight.",
"shortDesc": "This Pokemon's attacks have 1.3x power if it is the last to move in a turn."
},
"angerpoint": {
"name": "Anger Point",
"desc": "If this Pokemon, but not its substitute, is struck by a critical hit, its Attack is raised by 12 stages.",
"shortDesc": "If this Pokemon (not its substitute) takes a critical hit, its Attack is raised 12 stages.",
"gen4": {
"desc": "If this Pokemon, or its substitute, is struck by a critical hit, its Attack is raised by 12 stages.",
"shortDesc": "If this Pokemon or its substitute takes a critical hit, its Attack is raised 12 stages."
},
"boost": " [POKEMON] maxed its Attack!"
},
"anticipation": {
"name": "Anticipation",
"desc": "On switch-in, this Pokemon is alerted if any opposing Pokemon has an attack that is super effective on this Pokemon, or an OHKO move. Counter, Metal Burst, and Mirror Coat count as attacking moves of their respective types, Hidden Power counts as its determined type, and Judgment, Multi-Attack, Natural Gift, Revelation Dance, Techno Blast, and Weather Ball are considered Normal-type moves.",
"shortDesc": "On switch-in, this Pokemon shudders if any foe has a supereffective or OHKO move.",
"gen6": {
"desc": "On switch-in, this Pokemon is alerted if any opposing Pokemon has an attack that is super effective against this Pokemon, or an OHKO move. Counter, Metal Burst, and Mirror Coat count as attacking moves of their respective types, Hidden Power counts as its determined type, and Judgment, Natural Gift, Techno Blast, and Weather Ball are considered Normal-type moves."
},
"gen5": {
"desc": "On switch-in, this Pokemon is alerted if any opposing Pokemon has an attack that is super effective on this Pokemon, or an OHKO move. Counter, Metal Burst, and Mirror Coat count as attacking moves of their respective types, while Hidden Power, Judgment, Natural Gift, Techno Blast, and Weather Ball are considered Normal-type moves."
},
"activate": " [POKEMON] shuddered!"
},
"arenatrap": {
"name": "Arena Trap",
"desc": "Prevents adjacent opposing Pokemon from choosing to switch out unless they are immune to trapping or are airborne.",
"shortDesc": "Prevents adjacent foes from choosing to switch unless they are airborne."
},
"aromaveil": {
"name": "Aroma Veil",
"desc": "This Pokemon and its allies cannot be affected by Attract, Disable, Encore, Heal Block, Taunt, or Torment.",
"shortDesc": "Protects user/allies from Attract, Disable, Encore, Heal Block, Taunt, and Torment.",
"block": " [POKEMON] is protected by an aromatic veil!"
},
"asone": {
"name": "As One",
"shortDesc": "(Separate abilities on Glastrier and Spectrier.)",
"start": " [POKEMON] has two Abilities!"
},
"asoneglastrier": {
"name": "As One (Glastrier)",
"shortDesc": "The combination of Unnerve and Chilling Neigh."
},
"asonespectrier": {
"name": "As One (Spectrier)",
"shortDesc": "The combination of Unnerve and Grim Neigh."
},
"aurabreak": {
"name": "Aura Break",
"desc": "While this Pokemon is active, the effects of the Dark Aura and Fairy Aura Abilities are reversed, multiplying the power of Dark- and Fairy-type moves, respectively, by 3/4 instead of 1.33.",
"shortDesc": "While this Pokemon is active, the Dark Aura and Fairy Aura power modifier is 0.75x.",
"start": " [POKEMON] reversed all other Pokémon's auras!"
},
"baddreams": {
"name": "Bad Dreams",
"desc": "Causes adjacent opposing Pokemon to lose 1/8 of their maximum HP, rounded down, at the end of each turn if they are asleep.",
"shortDesc": "Causes sleeping adjacent foes to lose 1/8 of their max HP at the end of each turn.",
"damage": " [POKEMON] is tormented!"
},
"ballfetch": {
"name": "Ball Fetch",
"shortDesc": "No competitive use."
},
"battery": {
"name": "Battery",
"shortDesc": "This Pokemon's allies have the power of their special attacks multiplied by 1.3."
},
"battlearmor": {
"name": "Battle Armor",
"shortDesc": "This Pokemon cannot be struck by a critical hit."
},
"battlebond": {
"name": "Battle Bond",
"desc": "If this Pokemon is a Greninja, it transforms into Ash-Greninja after knocking out a Pokemon. As Ash-Greninja, its Water Shuriken has 20 base power and always hits 3 times.",
"shortDesc": "After KOing a Pokemon: becomes Ash-Greninja, Water Shuriken: 20 power, hits 3x.",
"activate": " [POKEMON] became fully charged due to its bond with its Trainer!",
"transform": "[POKEMON] became Ash-Greninja!"
},
"beastboost": {
"name": "Beast Boost",
"desc": "This Pokemon's highest stat is raised by 1 stage if it attacks and knocks out another Pokemon.",
"shortDesc": "This Pokemon's highest stat is raised by 1 if it attacks and KOes another Pokemon."
},
"berserk": {
"name": "Berserk",
"desc": "When this Pokemon has more than 1/2 its maximum HP and takes damage from an attack bringing it to 1/2 or less of its maximum HP, its Special Attack is raised by 1 stage. This effect applies after all hits from a multi-hit move; Sheer Force prevents it from activating if the move has a secondary effect.",
"shortDesc": "This Pokemon's Sp. Atk is raised by 1 when it reaches 1/2 or less of its max HP."
},
"bigpecks": {
"name": "Big Pecks",
"shortDesc": "Prevents other Pokemon from lowering this Pokemon's Defense stat stage."
},
"blaze": {
"name": "Blaze",
"desc": "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its attacking stat is multiplied by 1.5 while using a Fire-type attack.",
"shortDesc": "At 1/3 or less of its max HP, this Pokemon's attacking stat is 1.5x with Fire attacks.",
"gen4": {
"desc": "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its Fire-type attacks have their power multiplied by 1.5.",
"shortDesc": "At 1/3 or less of its max HP, this Pokemon's Fire-type attacks have 1.5x power."
}
},
"bulletproof": {
"name": "Bulletproof",
"desc": "This Pokemon is immune to ballistic moves. Ballistic moves include Bullet Seed, Octazooka, Barrage, Rock Wrecker, Zap Cannon, Acid Spray, Aura Sphere, Focus Blast, and all moves with Ball or Bomb in their name.",
"shortDesc": "Makes user immune to ballistic moves (Shadow Ball, Sludge Bomb, Focus Blast, etc)."
},
"cheekpouch": {
"name": "Cheek Pouch",
"desc": "If this Pokemon eats a Berry, it restores 1/3 of its maximum HP, rounded down, in addition to the Berry's effect.",
"shortDesc": "If this Pokemon eats a Berry, it restores 1/3 of its max HP after the Berry's effect."
},
"chillingneigh": {
"name": "Chilling Neigh",
"desc": "This Pokemon's Attack is raised by 1 stage if it attacks and knocks out another Pokemon.",
"shortDesc": "This Pokemon's Attack is raised by 1 stage if it attacks and KOes another Pokemon."
},
"chlorophyll": {
"name": "Chlorophyll",
"desc": "If Sunny Day is active and this Pokemon is not holding Utility Umbrella, this Pokemon's Speed is doubled.",
"shortDesc": "If Sunny Day is active, this Pokemon's Speed is doubled.",
"gen7": {
"desc": "If Sunny Day is active, this Pokemon's Speed is doubled."
}
},
"clearbody": {
"name": "Clear Body",
"shortDesc": "Prevents other Pokemon from lowering this Pokemon's stat stages."
},
"cloudnine": {
"name": "Cloud Nine",
"shortDesc": "While this Pokemon is active, the effects of weather conditions are disabled.",
"start": "#airlock"
},
"colorchange": {
"name": "Color Change",
"desc": "This Pokemon's type changes to match the type of the last move that hit it, unless that type is already one of its types. This effect applies after all hits from a multi-hit move; Sheer Force prevents it from activating if the move has a secondary effect.",
"shortDesc": "This Pokemon's type changes to the type of a move it's hit by, unless it has the type.",
"gen4": {
"desc": "This Pokemon's type changes to match the type of the last move that hit it, unless that type is already one of its types. This effect applies after each hit from a multi-hit move. This effect does not happen if this Pokemon did not lose HP from the attack."
}
},
"comatose": {
"name": "Comatose",
"desc": "This Pokemon cannot be statused, and is considered to be asleep. Moongeist Beam, Sunsteel Strike, and the Mold Breaker, Teravolt, and Turboblaze Abilities cannot ignore this Ability.",
"shortDesc": "This Pokemon cannot be statused, and is considered to be asleep.",
"start": " [POKEMON] is drowsing!"
},
"competitive": {
"name": "Competitive",
"desc": "This Pokemon's Special Attack is raised by 2 stages for each of its stat stages that is lowered by an opposing Pokemon.",
"shortDesc": "This Pokemon's Sp. Atk is raised by 2 for each of its stats that is lowered by a foe."
},
"compoundeyes": {
"name": "Compound Eyes",
"shortDesc": "This Pokemon's moves have their accuracy multiplied by 1.3."
},
"contrary": {
"name": "Contrary",
"desc": "If this Pokemon has a stat stage raised it is lowered instead, and vice versa. This Ability does not affect stat stage increases received from Z-Power effects that happen before a Z-Move is used.",
"shortDesc": "If this Pokemon has a stat stage raised it is lowered instead, and vice versa.",
"gen6": {
"desc": "If this Pokemon has a stat stage raised it is lowered instead, and vice versa."
}
},
"corrosion": {
"name": "Corrosion",
"shortDesc": "This Pokemon can poison or badly poison other Pokemon regardless of their typing."
},
"cottondown": {
"name": "Cotton Down",
"desc": "When this Pokemon is hit by an attack, the Speed of all other Pokemon on the field is lowered by 1 stage.",
"shortDesc": "If this Pokemon is hit, it lowers the Speed of all other Pokemon on the field 1 stage."
},
"curiousmedicine": {
"name": "Curious Medicine",
"shortDesc": "On switch-in, this Pokemon's allies have their stat stages reset to 0."
},
"cursedbody": {
"name": "Cursed Body",
"desc": "If this Pokemon is hit by an attack, there is a 30% chance that move gets disabled unless one of the attacker's moves is already disabled.",
"shortDesc": "If this Pokemon is hit by an attack, there is a 30% chance that move gets disabled."
},
"cutecharm": {
"name": "Cute Charm",
"desc": "There is a 30% chance a Pokemon making contact with this Pokemon will become infatuated if it is of the opposite gender.",
"shortDesc": "30% chance of infatuating Pokemon of the opposite gender if they make contact.",
"gen4": {
"desc": "There is a 30% chance a Pokemon making contact with this Pokemon will become infatuated if it is of the opposite gender. This effect does not happen if this Pokemon did not lose HP from the attack."
},
"gen3": {
"desc": "There is a 1/3 chance a Pokemon making contact with this Pokemon will become infatuated if it is of the opposite gender. This effect does not happen if this Pokemon did not lose HP from the attack.",
"shortDesc": "1/3 chance of infatuating Pokemon of the opposite gender if they make contact."
}
},
"damp": {
"name": "Damp",
"desc": "While this Pokemon is active, Explosion, Mind Blown, Misty Explosion, Self-Destruct, and the Aftermath Ability are prevented from having an effect.",
"shortDesc": "Prevents Explosion/Mind Blown/Misty Explosion/Self-Destruct/Aftermath while active.",
"gen7": {
"desc": "While this Pokemon is active, Explosion, Mind Blown, Self-Destruct, and the Aftermath Ability are prevented from having an effect.",
"shortDesc": "Prevents Explosion/Mind Blown/Self-Destruct/Aftermath while this Pokemon is active."
},
"gen6": {
"desc": "While this Pokemon is active, Explosion, Self-Destruct, and the Aftermath Ability are prevented from having an effect.",
"shortDesc": "Prevents Explosion/Self-Destruct/Aftermath while this Pokemon is active."
},
"block": " [SOURCE] cannot use [MOVE]!"
},
"dancer": {
"name": "Dancer",
"desc": "After another Pokemon uses a dance move, this Pokemon uses the same move. Moves used by this Ability cannot be copied again.",
"shortDesc": "After another Pokemon uses a dance move, this Pokemon uses the same move."
},
"darkaura": {
"name": "Dark Aura",
"desc": "While this Pokemon is active, the power of Dark-type moves used by active Pokemon is multiplied by 1.33.",
"shortDesc": "While this Pokemon is active, a Dark move used by any Pokemon has 1.33x power.",
"start": " [POKEMON] is radiating a dark aura!"
},
"dauntlessshield": {
"name": "Dauntless Shield",
"shortDesc": "On switch-in, this Pokemon's Defense is raised by 1 stage."
},
"dazzling": {
"name": "Dazzling",
"desc": "While this Pokemon is active, priority moves from opposing Pokemon targeted at allies are prevented from having an effect.",
"shortDesc": "While this Pokemon is active, allies are protected from opposing priority moves.",
"block": "#damp"
},
"defeatist": {
"name": "Defeatist",
"desc": "While this Pokemon has 1/2 or less of its maximum HP, its Attack and Special Attack are halved.",
"shortDesc": "While this Pokemon has 1/2 or less of its max HP, its Attack and Sp. Atk are halved."
},
"defiant": {
"name": "Defiant",
"desc": "This Pokemon's Attack is raised by 2 stages for each of its stat stages that is lowered by an opposing Pokemon.",
"shortDesc": "This Pokemon's Attack is raised by 2 for each of its stats that is lowered by a foe."
},
"deltastream": {
"name": "Delta Stream",
"desc": "On switch-in, the weather becomes strong winds that remove the weaknesses of the Flying type from Flying-type Pokemon. This weather remains in effect until this Ability is no longer active for any Pokemon, or the weather is changed by Desolate Land or Primordial Sea.",
"shortDesc": "On switch-in, strong winds begin until this Ability is not active in battle."
},
"desolateland": {
"name": "Desolate Land",
"desc": "On switch-in, the weather becomes extremely harsh sunlight that prevents damaging Water-type moves from executing, in addition to all the effects of Sunny Day. This weather remains in effect until this Ability is no longer active for any Pokemon, or the weather is changed by Delta Stream or Primordial Sea.",
"shortDesc": "On switch-in, extremely harsh sunlight begins until this Ability is not active in battle."
},
"disguise": {
"name": "Disguise",
"desc": "If this Pokemon is a Mimikyu, the first hit it takes in battle deals 0 neutral damage. Its disguise is then broken, it changes to Busted Form, and it loses 1/8 of its max HP. Confusion damage also breaks the disguise.",
"shortDesc": "(Mimikyu only) The first hit it takes is blocked, and it takes 1/8 HP damage instead.",
"gen7": {
"desc": "If this Pokemon is a Mimikyu, the first hit it takes in battle deals 0 neutral damage. Its disguise is then broken and it changes to Busted Form. Confusion damage also breaks the disguise.",
"shortDesc": "(Mimikyu only) First hit deals 0 damage, breaks disguise."
},
"block": " Its disguise served it as a decoy!",
"transform": "[POKEMON]'s disguise was busted!"
},
"download": {
"name": "Download",
"desc": "On switch-in, this Pokemon's Attack or Special Attack is raised by 1 stage based on the weaker combined defensive stat of all opposing Pokemon. Attack is raised if their Defense is lower, and Special Attack is raised if their Special Defense is the same or lower.",
"shortDesc": "On switch-in, Attack or Sp. Atk is raised 1 stage based on the foes' weaker Defense."
},
"dragonsmaw": {
"name": "Dragon's Maw",
"shortDesc": "This Pokemon's attacking stat is multiplied by 1.5 while using a Dragon-type attack."
},
"drizzle": {
"name": "Drizzle",
"shortDesc": "On switch-in, this Pokemon summons Rain Dance."
},
"drought": {
"name": "Drought",
"shortDesc": "On switch-in, this Pokemon summons Sunny Day."
},
"dryskin": {
"name": "Dry Skin",
"desc": "This Pokemon is immune to Water-type moves and restores 1/4 of its maximum HP, rounded down, when hit by a Water-type move. The power of Fire-type moves is multiplied by 1.25 when used on this Pokemon. At the end of each turn, this Pokemon restores 1/8 of its maximum HP, rounded down, if the weather is Rain Dance, and loses 1/8 of its maximum HP, rounded down, if the weather is Sunny Day. If this Pokemon is holding Utility Umbrella, the effects of weather are nullified.",
"shortDesc": "This Pokemon is healed 1/4 by Water, 1/8 by Rain; is hurt 1.25x by Fire, 1/8 by Sun.",
"gen7": {
"desc": "This Pokemon is immune to Water-type moves and restores 1/4 of its maximum HP, rounded down, when hit by a Water-type move. The power of Fire-type moves is multiplied by 1.25 when used on this Pokemon. At the end of each turn, this Pokemon restores 1/8 of its maximum HP, rounded down, if the weather is Rain Dance, and loses 1/8 of its maximum HP, rounded down, if the weather is Sunny Day."
},
"damage": " ([POKEMON] was hurt by its Dry Skin.)"
},
"earlybird": {
"name": "Early Bird",
"shortDesc": "This Pokemon's sleep counter drops by 2 instead of 1."
},
"effectspore": {
"name": "Effect Spore",
"desc": "30% chance a Pokemon making contact with this Pokemon will be poisoned, paralyzed, or fall asleep.",
"shortDesc": "30% chance of poison/paralysis/sleep on others making contact with this Pokemon.",
"gen4": {
"desc": "30% chance a Pokemon making contact with this Pokemon will be poisoned, paralyzed, or fall asleep. This effect does not happen if this Pokemon did not lose HP from the attack."
},
"gen3": {
"desc": "10% chance a Pokemon making contact with this Pokemon will be poisoned, paralyzed, or fall asleep. This effect does not happen if this Pokemon did not lose HP from the attack.",
"shortDesc": "10% chance of poison/paralysis/sleep on others making contact with this Pokemon."
}
},
"electricsurge": {
"name": "Electric Surge",
"shortDesc": "On switch-in, this Pokemon summons Electric Terrain."
},
"emergencyexit": {
"name": "Emergency Exit",
"desc": "When this Pokemon has more than 1/2 its maximum HP and takes damage bringing it to 1/2 or less of its maximum HP, it immediately switches out to a chosen ally. This effect applies after all hits from a multi-hit move; Sheer Force prevents it from activating if the move has a secondary effect. This effect applies to both direct and indirect damage, except Curse and Substitute on use, Belly Drum, Pain Split, and confusion damage.",
"shortDesc": "This Pokemon switches out when it reaches 1/2 or less of its maximum HP."
},
"fairyaura": {
"name": "Fairy Aura",
"desc": "While this Pokemon is active, the power of Fairy-type moves used by active Pokemon is multiplied by 1.33.",
"shortDesc": "While this Pokemon is active, a Fairy move used by any Pokemon has 1.33x power.",
"start": " [POKEMON] is radiating a fairy aura!"
},
"filter": {
"name": "Filter",
"shortDesc": "This Pokemon receives 3/4 damage from supereffective attacks."
},
"flamebody": {
"name": "Flame Body",
"shortDesc": "30% chance a Pokemon making contact with this Pokemon will be burned.",
"gen4": {
"desc": "30% chance a Pokemon making contact with this Pokemon will be burned. This effect does not happen if this Pokemon did not lose HP from the attack."
},
"gen3": {
"desc": "1/3 chance a Pokemon making contact with this Pokemon will be burned. This effect does not happen if this Pokemon did not lose HP from the attack.",
"shortDesc": "1/3 chance a Pokemon making contact with this Pokemon will be burned."
}
},
"flareboost": {
"name": "Flare Boost",
"desc": "While this Pokemon is burned, the power of its special attacks is multiplied by 1.5.",
"shortDesc": "While this Pokemon is burned, its special attacks have 1.5x power."
},
"flashfire": {
"name": "Flash Fire",
"desc": "This Pokemon is immune to Fire-type moves. The first time it is hit by a Fire-type move, its attacking stat is multiplied by 1.5 while using a Fire-type attack as long as it remains active and has this Ability. If this Pokemon is frozen, it cannot be defrosted by Fire-type attacks.",
"shortDesc": "This Pokemon's Fire attacks do 1.5x damage if hit by one Fire move; Fire immunity.",
"gen3": {
"desc": "This Pokemon is immune to Fire-type moves, as long as it is not frozen. The first time it is hit by a Fire-type move, damage from its Fire-type attacks will be multiplied by 1.5 as long as it remains active and has this Ability. If this Pokemon has a non-volatile status condition, is a Fire type, or has a substitute, Will-O-Wisp will not activate this Ability."
},
"start": " The power of [POKEMON]'s Fire-type moves rose!"
},
"flowergift": {
"name": "Flower Gift",
"desc": "If this Pokemon is a Cherrim and Sunny Day is active, it changes to Sunshine Form and the Attack and Special Defense of it and its allies are multiplied by 1.5. If this Pokemon is a Cherrim and it is holding Utility Umbrella, it remains in its regular form and the Attack and Special Defense stats of it and its allies are not boosted. If this Pokemon is a Cherrim in its Sunshine form and is given Utility Umbrella, it will immediately switch back to its regular form. If this Pokemon is a Cherrim holding Utility Umbrella and its item is removed while Sunny Day is active, it will transform into its Sunshine Form. If an ally is holding Utility Umbrella while Cherrim is in its Sunshine Form, they will not receive the Attack and Special Defense boosts.",
"shortDesc": "If user is Cherrim and Sunny Day is active, it and allies' Attack and Sp. Def are 1.5x.",
"gen7": {
"desc": "If this Pokemon is a Cherrim and Sunny Day is active, it changes to Sunshine Form and the Attack and Special Defense of it and its allies are multiplied by 1.5."
},
"gen4": {
"desc": "If Sunny Day is active, the Attack and Special Defense of this Pokemon and its allies are multiplied by 1.5.",
"shortDesc": "If Sunny Day is active, Attack and Sp. Def of this Pokemon and its allies are 1.5x."
}
},
"flowerveil": {
"name": "Flower Veil",
"desc": "Grass-type Pokemon on this Pokemon's side cannot have their stat stages lowered by other Pokemon or have a non-volatile status condition inflicted on them by other Pokemon.",
"shortDesc": "This side's Grass types can't have stats lowered or status inflicted by other Pokemon.",
"block": " [POKEMON] surrounded itself with a veil of petals!"
},
"fluffy": {
"name": "Fluffy",
"desc": "This Pokemon receives 1/2 damage from contact moves, but double damage from Fire moves.",
"shortDesc": "This Pokemon takes 1/2 damage from contact moves, 2x damage from Fire moves."
},
"forecast": {
"name": "Forecast",
"desc": "If this Pokemon is a Castform, its type changes to the current weather condition's type, except Sandstorm. If this Pokemon is holding Utility Umbrella and the weather condition is Sunny Day, Desolate Land, Rain Dance, or Primordial Sea, it will not change types.",
"shortDesc": "Castform's type changes to the current weather condition's type, except Sandstorm.",
"gen7": {
"desc": "If this Pokemon is a Castform, its type changes to the current weather condition's type, except Sandstorm."
}
},
"forewarn": {
"name": "Forewarn",
"desc": "On switch-in, this Pokemon is alerted to the move with the highest power, at random, known by an opposing Pokemon.",
"shortDesc": "On switch-in, this Pokemon is alerted to the foes' move with the highest power.",
"activate": " [TARGET]'s [MOVE] was revealed!",
"activateNoTarget": " [POKEMON]'s Forewarn alerted it to [MOVE]!"
},
"friendguard": {
"name": "Friend Guard",
"shortDesc": "This Pokemon's allies receive 3/4 damage from other Pokemon's attacks."
},
"frisk": {
"name": "Frisk",
"shortDesc": "On switch-in, this Pokemon identifies the held items of all opposing Pokemon.",
"gen5": {
"shortDesc": "On switch-in, this Pokemon identifies a random foe's held item."
},
"activate": " [POKEMON] frisked [TARGET] and found its [ITEM]!",
"activateNoTarget": " [POKEMON] frisked its target and found one [ITEM]!"
},
"fullmetalbody": {
"name": "Full Metal Body",
"desc": "Prevents other Pokemon from lowering this Pokemon's stat stages. Moongeist Beam, Sunsteel Strike, and the Mold Breaker, Teravolt, and Turboblaze Abilities cannot ignore this Ability.",
"shortDesc": "Prevents other Pokemon from lowering this Pokemon's stat stages."
},
"furcoat": {
"name": "Fur Coat",
"shortDesc": "This Pokemon's Defense is doubled."
},
"galewings": {
"name": "Gale Wings",
"shortDesc": "If this Pokemon is at full HP, its Flying-type moves have their priority increased by 1.",
"gen6": {
"shortDesc": "This Pokemon's Flying-type moves have their priority increased by 1."
}
},
"galvanize": {
"name": "Galvanize",
"desc": "This Pokemon's Normal-type moves become Electric-type moves and have their power multiplied by 1.2. This effect comes after other effects that change a move's type, but before Ion Deluge and Electrify's effects.",
"shortDesc": "This Pokemon's Normal-type moves become Electric type and have 1.2x power."
},
"gluttony": {
"name": "Gluttony",
"shortDesc": "When this Pokemon has 1/2 or less of its maximum HP, it uses certain Berries early."
},
"gooey": {
"name": "Gooey",
"shortDesc": "Pokemon making contact with this Pokemon have their Speed lowered by 1 stage."
},
"gorillatactics": {
"name": "Gorilla Tactics",
"shortDesc": "This Pokemon's Attack is 1.5x, but it can only select the first move it executes."
},
"grasspelt": {
"name": "Grass Pelt",
"shortDesc": "If Grassy Terrain is active, this Pokemon's Defense is multiplied by 1.5."
},
"grassysurge": {
"name": "Grassy Surge",
"shortDesc": "On switch-in, this Pokemon summons Grassy Terrain."
},
"grimneigh": {
"name": "Grim Neigh",
"desc": "This Pokemon's Special Attack is raised by 1 stage if it attacks and knocks out another Pokemon.",
"shortDesc": "This Pokemon's Sp. Atk is raised by 1 stage if it attacks and KOes another Pokemon."
},
"gulpmissile": {
"name": "Gulp Missile",
"desc": "If this Pokemon is a Cramorant, it changes forme when it hits a target with Surf or uses the first turn of Dive successfully. It becomes Gulping Form with an Arrokuda in its mouth if it has more than 1/2 of its maximum HP remaining, or Gorging Form with a Pikachu in its mouth if it has 1/2 or less of its maximum HP remaining. If Cramorant gets hit in Gulping or Gorging Form, it spits the Arrokuda or Pikachu at its attacker, even if it has no HP remaining. The projectile deals damage equal to 1/4 of the target's maximum HP, rounded down; this damage is blocked by the Magic Guard Ability but not by a substitute. An Arrokuda also lowers the target's Defense by 1 stage, and a Pikachu paralyzes the target. Cramorant will return to normal if it spits out a projectile, switches out, or Dynamaxes.",
"shortDesc": "When hit after Surf/Dive, attacker takes 1/4 max HP and -1 Defense or paralysis."
},
"guts": {
"name": "Guts",
"desc": "If this Pokemon has a non-volatile status condition, its Attack is multiplied by 1.5; burn's physical damage halving is ignored.",
"shortDesc": "If this Pokemon is statused, its Attack is 1.5x; ignores burn halving physical damage."
},
"harvest": {
"name": "Harvest",
"desc": "If the last item this Pokemon used is a Berry, there is a 50% chance it gets restored at the end of each turn. If Sunny Day is active, this chance is 100%.",
"shortDesc": "If last item used is a Berry, 50% chance to restore it each end of turn. 100% in Sun.",
"addItem": " [POKEMON] harvested one [ITEM]!"
},
"healer": {
"name": "Healer",
"desc": "There is a 30% chance of curing an adjacent ally's non-volatile status condition at the end of each turn.",
"shortDesc": "30% chance of curing an adjacent ally's status at the end of each turn."
},
"heatproof": {
"name": "Heatproof",
"desc": "The power of Fire-type attacks against this Pokemon is halved, and burn damage taken is halved.",
"shortDesc": "The power of Fire-type attacks against this Pokemon is halved; burn damage halved."
},
"heavymetal": {
"name": "Heavy Metal",
"shortDesc": "This Pokemon's weight is doubled."
},
"honeygather": {
"name": "Honey Gather",
"shortDesc": "No competitive use."
},
"hugepower": {
"name": "Huge Power",
"shortDesc": "This Pokemon's Attack is doubled."
},
"hungerswitch": {
"name": "Hunger Switch",
"shortDesc": "If Morpeko, it changes between Full Belly and Hangry Mode at the end of each turn."
},
"hustle": {
"name": "Hustle",
"desc": "This Pokemon's Attack is multiplied by 1.5 and the accuracy of its physical attacks is multiplied by 0.8.",
"shortDesc": "This Pokemon's Attack is 1.5x and accuracy of its physical attacks is 0.8x."
},
"hydration": {
"name": "Hydration",
"desc": "This Pokemon has its non-volatile status condition cured at the end of each turn if Rain Dance is active. If this Pokemon is holding Utility Umbrella, its non-volatile status condition will not be cured.",
"shortDesc": "This Pokemon has its status cured at the end of each turn if Rain Dance is active.",
"gen7": {
"desc": "This Pokemon has its non-volatile status condition cured at the end of each turn if Rain Dance is active."
}
},
"hypercutter": {
"name": "Hyper Cutter",
"shortDesc": "Prevents other Pokemon from lowering this Pokemon's Attack stat stage."
},
"icebody": {
"name": "Ice Body",
"desc": "If Hail is active, this Pokemon restores 1/16 of its maximum HP, rounded down, at the end of each turn. This Pokemon takes no damage from Hail.",
"shortDesc": "If Hail is active, this Pokemon heals 1/16 of its max HP each turn; immunity to Hail."
},
"iceface": {
"name": "Ice Face",
"desc": "If this Pokemon is an Eiscue, the first physical hit it takes in battle deals 0 neutral damage. Its ice face is then broken and it changes forme to Noice Face. Eiscue regains its Ice Face forme when Hail begins or when Eiscue switches in while Hail is active. Confusion damage also breaks the ice face.",
"shortDesc": "If Eiscue, the first physical hit it takes deals 0 damage. This effect is restored in Hail."
},
"icescales": {
"name": "Ice Scales",
"shortDesc": "This Pokemon receives 1/2 damage from special attacks."
},
"illuminate": {
"name": "Illuminate",
"shortDesc": "No competitive use."
},
"illusion": {
"name": "Illusion",
"desc": "When this Pokemon switches in, it appears as the last unfainted Pokemon in its party until it takes direct damage from another Pokemon's attack. This Pokemon's actual level and HP are displayed instead of those of the mimicked Pokemon.",
"shortDesc": "This Pokemon appears as the last Pokemon in the party until it takes direct damage.",
"end": " [POKEMON]'s illusion wore off!"
},
"immunity": {
"name": "Immunity",
"shortDesc": "This Pokemon cannot be poisoned. Gaining this Ability while poisoned cures it."
},
"imposter": {
"name": "Imposter",
"desc": "On switch-in, this Pokemon Transforms into the opposing Pokemon that is facing it. If there is no Pokemon at that position, this Pokemon does not Transform.",
"shortDesc": "On switch-in, this Pokemon Transforms into the opposing Pokemon that is facing it."
},
"infiltrator": {
"name": "Infiltrator",
"desc": "This Pokemon's moves ignore substitutes and the opposing side's Reflect, Light Screen, Safeguard, Mist and Aurora Veil.",
"shortDesc": "Moves ignore substitutes and foe's Reflect/Light Screen/Safeguard/Mist/Aurora Veil.",
"gen6": {
"desc": "This Pokemon's moves ignore substitutes and the opposing side's Reflect, Light Screen, Safeguard, and Mist.",
"shortDesc": "Moves ignore substitutes and the foe's Reflect, Light Screen, Safeguard, and Mist."
},
"gen5": {
"desc": "This Pokemon's moves ignore the opposing side's Reflect, Light Screen, Safeguard, and Mist.",
"shortDesc": "This Pokemon's moves ignore the foe's Reflect, Light Screen, Safeguard, and Mist."
}
},
"innardsout": {
"name": "Innards Out",
"desc": "If this Pokemon is knocked out with a move, that move's user loses HP equal to the amount of damage inflicted on this Pokemon.",
"shortDesc": "If this Pokemon is KOed with a move, that move's user loses an equal amount of HP.",
"damage": "#aftermath"
},
"innerfocus": {
"name": "Inner Focus",
"shortDesc": "This Pokemon cannot be made to flinch. Immune to Intimidate.",
"gen7": {
"shortDesc": "This Pokemon cannot be made to flinch."
}
},
"insomnia": {
"name": "Insomnia",
"shortDesc": "This Pokemon cannot fall asleep. Gaining this Ability while asleep cures it."
},
"intimidate": {
"name": "Intimidate",
"desc": "On switch-in, this Pokemon lowers the Attack of adjacent opposing Pokemon by 1 stage. Inner Focus, Oblivious, Own Tempo, Scrappy, and Pokemon behind a substitute are immune.",
"shortDesc": "On switch-in, this Pokemon lowers the Attack of adjacent opponents by 1 stage.",
"gen7": {
"desc": "On switch-in, this Pokemon lowers the Attack of adjacent opposing Pokemon by 1 stage. Pokemon behind a substitute are immune."
}
},
"intrepidsword": {
"name": "Intrepid Sword",
"shortDesc": "On switch-in, this Pokemon's Attack is raised by 1 stage."
},
"ironbarbs": {
"name": "Iron Barbs",
"desc": "Pokemon making contact with this Pokemon lose 1/8 of their maximum HP, rounded down.",
"shortDesc": "Pokemon making contact with this Pokemon lose 1/8 of their max HP.",
"damage": "#roughskin"
},
"ironfist": {
"name": "Iron Fist",
"desc": "This Pokemon's punch-based attacks have their power multiplied by 1.2.",
"shortDesc": "This Pokemon's punch-based attacks have 1.2x power. Sucker Punch is not boosted."
},
"justified": {
"name": "Justified",
"shortDesc": "This Pokemon's Attack is raised by 1 stage after it is damaged by a Dark-type move."
},
"keeneye": {
"name": "Keen Eye",
"desc": "Prevents other Pokemon from lowering this Pokemon's accuracy stat stage. This Pokemon ignores a target's evasiveness stat stage.",
"shortDesc": "This Pokemon's accuracy can't be lowered by others; ignores their evasiveness stat.",
"gen5": {
"desc": "Prevents other Pokemon from lowering this Pokemon's accuracy stat stage.",
"shortDesc": "Prevents other Pokemon from lowering this Pokemon's accuracy stat stage."
}
},
"klutz": {
"name": "Klutz",
"desc": "This Pokemon's held item has no effect. This Pokemon cannot use Fling successfully. Macho Brace, Power Anklet, Power Band, Power Belt, Power Bracer, Power Lens, and Power Weight still have their effects.",
"shortDesc": "This Pokemon's held item has no effect, except Macho Brace. Fling cannot be used."
},
"leafguard": {
"name": "Leaf Guard",
"desc": "If Sunny Day is active and this Pokemon is not holding Utility Umbrella, this Pokemon cannot gain a non-volatile status condition and Rest will fail for it.",
"shortDesc": "If Sunny Day is active, this Pokemon cannot be statused and Rest will fail for it.",
"gen7": {
"desc": "If Sunny Day is active, this Pokemon cannot gain a non-volatile status condition and Rest will fail for it."
},
"gen4": {
"desc": "If Sunny Day is active, this Pokemon cannot gain a non-volatile status condition, but can use Rest normally.",
"shortDesc": "If Sunny Day is active, this Pokemon cannot be statused, but Rest works normally."
}
},
"levitate": {
"name": "Levitate",
"desc": "This Pokemon is immune to Ground-type attacks and the effects of Spikes, Toxic Spikes, Sticky Web, and the Arena Trap Ability. The effects of Gravity, Ingrain, Smack Down, Thousand Arrows, and Iron Ball nullify the immunity.",
"shortDesc": "This Pokemon is immune to Ground; Gravity/Ingrain/Smack Down/Iron Ball nullify it.",
"gen5": {
"desc": "This Pokemon is immune to Ground-type attacks and the effects of Spikes, Toxic Spikes, and the Arena Trap Ability. The effects of Gravity, Ingrain, Smack Down, and Iron Ball nullify the immunity."
},
"gen4": {
"desc": "This Pokemon is immune to Ground-type attacks and the effects of Spikes, Toxic Spikes, and the Arena Trap Ability. The effects of Gravity, Ingrain, and Iron Ball nullify the immunity.",
"shortDesc": "This Pokemon is immune to Ground; Gravity/Ingrain/Iron Ball nullify it."
},
"gen3": {
"desc": "This Pokemon is immune to Ground-type attacks and the effects of Spikes and the Arena Trap Ability.",
"shortDesc": "This Pokemon is immune to Ground."
}
},
"libero": {
"name": "Libero",
"desc": "This Pokemon's type changes to match the type of the move it is about to use. This effect comes after all effects that change a move's type.",
"shortDesc": "This Pokemon's type changes to match the type of the move it is about to use."
},
"lightmetal": {
"name": "Light Metal",
"shortDesc": "This Pokemon's weight is halved."
},
"lightningrod": {
"name": "Lightning Rod",
"desc": "This Pokemon is immune to Electric-type moves and raises its Special Attack by 1 stage when hit by an Electric-type move. If this Pokemon is not the target of a single-target Electric-type move used by another Pokemon, this Pokemon redirects that move to itself if it is within the range of that move.",
"shortDesc": "This Pokemon draws Electric moves to itself to raise Sp. Atk by 1; Electric immunity.",
"gen4": {
"desc": "If this Pokemon is not the target of a single-target Electric-type move used by another Pokemon, this Pokemon redirects that move to itself.",
"shortDesc": "This Pokemon draws single-target Electric moves to itself."
},
"gen3": {
"desc": "If this Pokemon is not the target of a single-target Electric-type move used by an opposing Pokemon, this Pokemon redirects that move to itself. This effect considers Hidden Power a Normal-type move.",
"shortDesc": "This Pokemon draws single-target Electric moves used by opponents to itself."
},
"activate": " [POKEMON] took the attack!"
},
"limber": {
"name": "Limber",
"shortDesc": "This Pokemon cannot be paralyzed. Gaining this Ability while paralyzed cures it."
},
"liquidooze": {
"name": "Liquid Ooze",
"shortDesc": "This Pokemon damages those draining HP from it for as much as they would heal.",
"damage": " [POKEMON] sucked up the liquid ooze!"
},
"liquidvoice": {
"name": "Liquid Voice",
"desc": "This Pokemon's sound-based moves become Water-type moves. This effect comes after other effects that change a move's type, but before Ion Deluge and Electrify's effects.",
"shortDesc": "This Pokemon's sound-based moves become Water type."
},
"longreach": {
"name": "Long Reach",
"shortDesc": "This Pokemon's attacks do not make contact with the target."
},
"magicbounce": {
"name": "Magic Bounce",
"desc": "This Pokemon blocks certain status moves and instead uses the move against the original user.",
"shortDesc": "This Pokemon blocks certain status moves and bounces them back to the user.",
"move": "#magiccoat"
},
"magicguard": {
"name": "Magic Guard",
"desc": "This Pokemon can only be damaged by direct attacks. Curse and Substitute on use, Belly Drum, Pain Split, Struggle recoil, and confusion damage are considered direct damage.",
"shortDesc": "This Pokemon can only be damaged by direct attacks.",
"gen4": {
"desc": "This Pokemon can only be damaged by direct attacks. Curse and Substitute on use, Belly Drum, Pain Split, Struggle recoil, and confusion damage are considered direct damage. This Pokemon cannot lose its turn because of paralysis, and is unaffected by Toxic Spikes on switch-in.",
"shortDesc": "This Pokemon can only be damaged by direct attacks, and can't be fully paralyzed."
}
},
"magician": {
"name": "Magician",
"desc": "If this Pokemon has no item, it steals the item off a Pokemon it hits with an attack. Does not affect Doom Desire and Future Sight.",
"shortDesc": "If this Pokemon has no item, it steals the item off a Pokemon it hits with an attack."
},
"magmaarmor": {
"name": "Magma Armor",
"shortDesc": "This Pokemon cannot be frozen. Gaining this Ability while frozen cures it."
},
"magnetpull": {
"name": "Magnet Pull",
"desc": "Prevents adjacent opposing Steel-type Pokemon from choosing to switch out unless they are immune to trapping.",
"shortDesc": "Prevents adjacent Steel-type foes from choosing to switch."
},
"marvelscale": {
"name": "Marvel Scale",
"desc": "If this Pokemon has a non-volatile status condition, its Defense is multiplied by 1.5.",
"shortDesc": "If this Pokemon is statused, its Defense is 1.5x."
},
"megalauncher": {
"name": "Mega Launcher",
"desc": "This Pokemon's pulse moves have their power multiplied by 1.5. Heal Pulse restores 3/4 of a target's maximum HP, rounded half down.",
"shortDesc": "This Pokemon's pulse moves have 1.5x power. Heal Pulse heals 3/4 target's max HP."
},
"merciless": {
"name": "Merciless",
"shortDesc": "This Pokemon's attacks are critical hits if the target is poisoned."
},
"mimicry": {
"name": "Mimicry",
"shortDesc": "This Pokemon's type changes to match the Terrain. Type reverts when Terrain ends.",
"activate": " [POKEMON] returned to its original type!"
},
"minus": {
"name": "Minus",
"desc": "If an active ally has this Ability or the Plus Ability, this Pokemon's Special Attack is multiplied by 1.5.",
"shortDesc": "If an active ally has this Ability or the Plus Ability, this Pokemon's Sp. Atk is 1.5x.",
"gen4": {
"desc": "If an active ally has the Plus Ability, this Pokemon's Special Attack is multiplied by 1.5.",
"shortDesc": "If an active ally has the Plus Ability, this Pokemon's Sp. Atk is 1.5x."
},
"gen3": {
"desc": "If an active Pokemon has the Plus Ability, this Pokemon's Special Attack is multiplied by 1.5.",
"shortDesc": "If an active Pokemon has the Plus Ability, this Pokemon's Sp. Atk is 1.5x."
}
},
"mirrorarmor": {
"name": "Mirror Armor",
"desc": "When one of this Pokemon's stat stages would be lowered by another Pokemon, that Pokemon's stat stage is lowered instead. This effect does not happen if this Pokemon's stat stage was already -6.",
"shortDesc": "If this Pokemon's stat stages would be lowered, the attacker's are lowered instead."
},
"mistysurge": {
"name": "Misty Surge",
"shortDesc": "On switch-in, this Pokemon summons Misty Terrain."
},
"moldbreaker": {
"name": "Mold Breaker",
"desc": "This Pokemon's moves and their effects ignore certain Abilities of other Pokemon. The Abilities that can be negated are Aroma Veil, Aura Break, Battle Armor, Big Pecks, Bulletproof, Clear Body, Contrary, Damp, Dark Aura, Dazzling, Disguise, Dry Skin, Fairy Aura, Filter, Flash Fire, Flower Gift, Flower Veil, Fluffy, Friend Guard, Fur Coat, Grass Pelt, Heatproof, Heavy Metal, Hyper Cutter, Ice Face, Ice Scales, Immunity, Inner Focus, Insomnia, Keen Eye, Leaf Guard, Levitate, Light Metal, Lightning Rod, Limber, Magic Bounce, Magma Armor, Marvel Scale, Mirror Armor, Motor Drive, Multiscale, Oblivious, Overcoat, Own Tempo, Pastel Veil, Punk Rock, Queenly Majesty, Sand Veil, Sap Sipper, Shell Armor, Shield Dust, Simple, Snow Cloak, Solid Rock, Soundproof, Sticky Hold, Storm Drain, Sturdy, Suction Cups, Sweet Veil, Tangled Feet, Telepathy, Thick Fat, Unaware, Vital Spirit, Volt Absorb, Water Absorb, Water Bubble, Water Veil, White Smoke, Wonder Guard, and Wonder Skin. This affects every other Pokemon on the field, whether or not it is a target of this Pokemon's move, and whether or not their Ability is beneficial to this Pokemon.",
"shortDesc": "This Pokemon's moves and their effects ignore the Abilities of other Pokemon.",
"gen7": {
"desc": "This Pokemon's moves and their effects ignore certain Abilities of other Pokemon. The Abilities that can be negated are Aroma Veil, Aura Break, Battle Armor, Big Pecks, Bulletproof, Clear Body, Contrary, Damp, Dark Aura, Dazzling, Disguise, Dry Skin, Fairy Aura, Filter, Flash Fire, Flower Gift, Flower Veil, Fluffy, Friend Guard, Fur Coat, Grass Pelt, Heatproof, Heavy Metal, Hyper Cutter, Immunity, Inner Focus, Insomnia, Keen Eye, Leaf Guard, Levitate, Light Metal, Lightning Rod, Limber, Magic Bounce, Magma Armor, Marvel Scale, Motor Drive, Multiscale, Oblivious, Overcoat, Own Tempo, Queenly Majesty, Sand Veil, Sap Sipper, Shell Armor, Shield Dust, Simple, Snow Cloak, Solid Rock, Soundproof, Sticky Hold, Storm Drain, Sturdy, Suction Cups, Sweet Veil, Tangled Feet, Telepathy, Thick Fat, Unaware, Vital Spirit, Volt Absorb, Water Absorb, Water Bubble, Water Veil, White Smoke, Wonder Guard, and Wonder Skin. This affects every other Pokemon on the field, whether or not it is a target of this Pokemon's move, and whether or not their Ability is beneficial to this Pokemon."
},
"gen6": {
"desc": "This Pokemon's moves and their effects ignore certain Abilities of other Pokemon. The Abilities that can be negated are Aroma Veil, Aura Break, Battle Armor, Big Pecks, Bulletproof, Clear Body, Contrary, Damp, Dark Aura, Dry Skin, Fairy Aura, Filter, Flash Fire, Flower Gift, Flower Veil, Friend Guard, Fur Coat, Grass Pelt, Heatproof, Heavy Metal, Hyper Cutter, Immunity, Inner Focus, Insomnia, Keen Eye, Leaf Guard, Levitate, Light Metal, Lightning Rod, Limber, Magic Bounce, Magma Armor, Marvel Scale, Motor Drive, Multiscale, Oblivious, Overcoat, Own Tempo, Sand Veil, Sap Sipper, Shell Armor, Shield Dust, Simple, Snow Cloak, Solid Rock, Soundproof, Sticky Hold, Storm Drain, Sturdy, Suction Cups, Sweet Veil, Tangled Feet, Telepathy, Thick Fat, Unaware, Vital Spirit, Volt Absorb, Water Absorb, Water Veil, White Smoke, Wonder Guard, and Wonder Skin. This affects every other Pokemon on the field, whether or not it is a target of this Pokemon's move, and whether or not their Ability is beneficial to this Pokemon."
},
"gen5": {
"desc": "This Pokemon's moves and their effects ignore certain Abilities of other Pokemon. The Abilities that can be negated are Battle Armor, Big Pecks, Clear Body, Contrary, Damp, Dry Skin, Filter, Flash Fire, Flower Gift, Friend Guard, Heatproof, Heavy Metal, Hyper Cutter, Immunity, Inner Focus, Insomnia, Keen Eye, Leaf Guard, Levitate, Light Metal, Lightning Rod, Limber, Magic Bounce, Magma Armor, Marvel Scale, Motor Drive, Multiscale, Oblivious, Own Tempo, Sand Veil, Sap Sipper, Shell Armor, Shield Dust, Simple, Snow Cloak, Solid Rock, Soundproof, Sticky Hold, Storm Drain, Sturdy, Suction Cups, Tangled Feet, Telepathy, Thick Fat, Unaware, Vital Spirit, Volt Absorb, Water Absorb, Water Veil, White Smoke, Wonder Guard, and Wonder Skin. This affects every other Pokemon on the field, whether or not it is a target of this Pokemon's move, and whether or not their Ability is beneficial to this Pokemon."
},
"gen4": {
"desc": "This Pokemon's moves and their effects ignore certain Abilities of other Pokemon. The Abilities that can be negated are Battle Armor, Clear Body, Damp, Dry Skin, Filter, Flash Fire, Flower Gift, Heatproof, Hyper Cutter, Immunity, Inner Focus, Insomnia, Keen Eye, Leaf Guard, Levitate, Lightning Rod, Limber, Magma Armor, Marvel Scale, Motor Drive, Oblivious, Own Tempo, Sand Veil, Shell Armor, Shield Dust, Simple, Snow Cloak, Solid Rock, Soundproof, Sticky Hold, Storm Drain, Sturdy, Suction Cups, Tangled Feet, Thick Fat, Unaware, Vital Spirit, Volt Absorb, Water Absorb, Water Veil, White Smoke, and Wonder Guard. This affects every other Pokemon on the field, whether or not it is a target of this Pokemon's move, and whether or not their Ability is beneficial to this Pokemon."
},
"start": " [POKEMON] breaks the mold!"
},
"moody": {
"name": "Moody",
"desc": "This Pokemon has a random stat other than accuracy or evasion raised by 2 stages and another stat lowered by 1 stage at the end of each turn.",
"shortDesc": "Boosts a random stat (except accuracy/evasion) +2 and another stat -1 every turn.",
"gen7": {
"desc": "This Pokemon has a random stat raised by 2 stages and another stat lowered by 1 stage at the end of each turn.",
"shortDesc": "Raises a random stat by 2 and lowers another stat by 1 at the end of each turn."
}
},
"motordrive": {
"name": "Motor Drive",
"desc": "This Pokemon is immune to Electric-type moves and raises its Speed by 1 stage when hit by an Electric-type move.",
"shortDesc": "This Pokemon's Speed is raised 1 stage if hit by an Electric move; Electric immunity."
},
"moxie": {
"name": "Moxie",
"desc": "This Pokemon's Attack is raised by 1 stage if it attacks and knocks out another Pokemon.",
"shortDesc": "This Pokemon's Attack is raised by 1 stage if it attacks and KOes another Pokemon."
},
"multiscale": {
"name": "Multiscale",
"shortDesc": "If this Pokemon is at full HP, damage taken from attacks is halved."
},
"multitype": {
"name": "Multitype",
"shortDesc": "If this Pokemon is an Arceus, its type changes to match its held Plate or Z-Crystal.",
"gen6": {
"shortDesc": "If this Pokemon is an Arceus, its type changes to match its held Plate."
}
},
"mummy": {
"name": "Mummy",
"desc": "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect a Pokemon which already has Mummy or the Abilities As One, Battle Bond, Comatose, Disguise, Gulp Missile, Ice Face, Multitype, Power Construct, RKS System, Schooling, Shields Down, Stance Change, and Zen Mode.",
"shortDesc": "Pokemon making contact with this Pokemon have their Ability changed to Mummy.",
"gen7": {
"desc": "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect a Pokemon which already has Mummy or the Abilities Battle Bond, Comatose, Disguise, Multitype, Power Construct, RKS System, Schooling, Shields Down, Stance Change, and Zen Mode."
},
"gen6": {
"desc": "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect the Multitype or Stance Change Abilities."
},
"changeAbility": " [TARGET]'s Ability became Mummy!"
},
"naturalcure": {
"name": "Natural Cure",
"shortDesc": "This Pokemon has its non-volatile status condition cured when it switches out.",
"activate": " ([POKEMON] is cured by its Natural Cure!)"
},
"neuroforce": {
"name": "Neuroforce",
"shortDesc": "This Pokemon's attacks that are super effective against the target do 1.25x damage."
},
"neutralizinggas": {
"name": "Neutralizing Gas",
"desc": "While this Pokemon is active, Abilities have no effect. Does not affect the Abilities As One, Battle Bond, Comatose, Disguise, Gulp Missile, Ice Face, Multitype, Power Construct, RKS System, Schooling, Shields Down, Stance Change, or Zen Mode.",
"shortDesc": "While this Pokemon is active, Abilities have no effect.",
"start": " Neutralizing gas filled the area!",
"end": " The effects of the neutralizing gas wore off!"
},
"noguard": {
"name": "No Guard",
"shortDesc": "Every move used by or against this Pokemon will always hit."
},
"normalize": {
"name": "Normalize",
"desc": "This Pokemon's moves are changed to be Normal type and have their power multiplied by 1.2. This effect comes before other effects that change a move's type.",
"shortDesc": "This Pokemon's moves are changed to be Normal type and have 1.2x power.",
"gen6": {
"desc": "This Pokemon's moves are changed to be Normal type. This effect comes before other effects that change a move's type.",
"shortDesc": "This Pokemon's moves are changed to be Normal type."
}
},
"oblivious": {
"name": "Oblivious",
"desc": "This Pokemon cannot be infatuated or taunted. Gaining this Ability while affected cures it. Immune to Intimidate.",
"shortDesc": "This Pokemon cannot be infatuated or taunted. Immune to Intimidate.",
"gen7": {
"desc": "This Pokemon cannot be infatuated or taunted. Gaining this Ability while affected cures it.",
"shortDesc": "This Pokemon cannot be infatuated or taunted."
},
"gen5": {
"desc": "This Pokemon cannot be infatuated. Gaining this Ability while infatuated cures it.",
"shortDesc": "This Pokemon cannot be infatuated. Gaining this Ability while infatuated cures it."
}
},
"overcoat": {
"name": "Overcoat",
"shortDesc": "This Pokemon is immune to powder moves and damage from Sandstorm or Hail.",
"gen5": {
"shortDesc": "This Pokemon is immune to damage from Sandstorm or Hail."
}
},
"overgrow": {
"name": "Overgrow",
"desc": "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its attacking stat is multiplied by 1.5 while using a Grass-type attack.",
"shortDesc": "At 1/3 or less of its max HP, this Pokemon's attacking stat is 1.5x with Grass attacks.",
"gen4": {
"desc": "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its Grass-type attacks have their power multiplied by 1.5.",
"shortDesc": "At 1/3 or less of its max HP, this Pokemon's Grass-type attacks have 1.5x power."
}
},
"owntempo": {
"name": "Own Tempo",
"desc": "This Pokemon cannot be confused. Gaining this Ability while confused cures it. Immune to Intimidate.",
"shortDesc": "This Pokemon cannot be confused. Immune to Intimidate.",
"gen7": {
"desc": "This Pokemon cannot be confused. Gaining this Ability while confused cures it.",
"shortDesc": "This Pokemon cannot be confused."
}
},
"parentalbond": {
"name": "Parental Bond",
"desc": "This Pokemon's damaging moves become multi-hit moves that hit twice. The second hit has its damage quartered. Does not affect multi-hit moves or moves that have multiple targets.",
"shortDesc": "This Pokemon's damaging moves hit twice. The second hit has its damage quartered.",
"gen6": {
"desc": "This Pokemon's damaging moves become multi-hit moves that hit twice. The second hit has its damage halved. Does not affect multi-hit moves or moves that have multiple targets.",
"shortDesc": "This Pokemon's damaging moves hit twice. The second hit has its damage halved."
}
},
"pastelveil": {
"name": "Pastel Veil",
"shortDesc": "This Pokemon and its allies cannot be poisoned. On switch-in, cures poisoned allies."
},
"perishbody": {
"name": "Perish Body",
"desc": "Making contact with this Pokemon starts the Perish Song effect for it and the attacker. This effect does not happen if this Pokemon already has a perish count.",
"shortDesc": "Making contact with this Pokemon starts the Perish Song effect for it and the attacker.",
"start": " Both Pokémon will faint in three turns!"
},
"pickpocket": {
"name": "Pickpocket",
"desc": "If this Pokemon has no item and is hit by a contact move, it steals the attacker's item. This effect applies after all hits from a multi-hit move; Sheer Force prevents it from activating if the move has a secondary effect.",
"shortDesc": "If this Pokemon has no item and is hit by a contact move, it steals the attacker's item."
},
"pickup": {
"name": "Pickup",
"shortDesc": "If this Pokemon has no item, it finds one used by an adjacent Pokemon this turn.",
"gen4": {
"desc": "No competitive use.",
"shortDesc": "No competitive use."
},
"addItem": "#recycle"
},
"pixilate": {
"name": "Pixilate",
"desc": "This Pokemon's Normal-type moves become Fairy-type moves and have their power multiplied by 1.2. This effect comes after other effects that change a move's type, but before Ion Deluge and Electrify's effects.",
"shortDesc": "This Pokemon's Normal-type moves become Fairy type and have 1.2x power.",
"gen6": {
"desc": "This Pokemon's Normal-type moves become Fairy-type moves and have their power multiplied by 1.3. This effect comes after other effects that change a move's type, but before Ion Deluge and Electrify's effects.",
"shortDesc": "This Pokemon's Normal-type moves become Fairy type and have 1.3x power."
}
},
"plus": {
"name": "Plus",
"desc": "If an active ally has this Ability or the Minus Ability, this Pokemon's Special Attack is multiplied by 1.5.",
"shortDesc": "If an active ally has this Ability or the Minus Ability, this Pokemon's Sp. Atk is 1.5x.",
"gen4": {
"desc": "If an active ally has the Minus Ability, this Pokemon's Special Attack is multiplied by 1.5.",
"shortDesc": "If an active ally has the Minus Ability, this Pokemon's Sp. Atk is 1.5x."
},
"gen3": {
"desc": "If an active Pokemon has the Minus Ability, this Pokemon's Special Attack is multiplied by 1.5.",
"shortDesc": "If an active Pokemon has the Minus Ability, this Pokemon's Sp. Atk is 1.5x."
}
},
"poisonheal": {
"name": "Poison Heal",
"desc": "If this Pokemon is poisoned, it restores 1/8 of its maximum HP, rounded down, at the end of each turn instead of losing HP.",
"shortDesc": "This Pokemon is healed by 1/8 of its max HP each turn when poisoned; no HP loss."
},
"poisonpoint": {
"name": "Poison Point",
"shortDesc": "30% chance a Pokemon making contact with this Pokemon will be poisoned.",
"gen4": {
"desc": "30% chance a Pokemon making contact with this Pokemon will be poisoned. This effect does not happen if this Pokemon did not lose HP from the attack."
},
"gen3": {
"desc": "1/3 chance a Pokemon making contact with this Pokemon will be poisoned. This effect does not happen if this Pokemon did not lose HP from the attack.",
"shortDesc": "1/3 chance a Pokemon making contact with this Pokemon will be poisoned."
}
},
"poisontouch": {
"name": "Poison Touch",
"shortDesc": "This Pokemon's contact moves have a 30% chance of poisoning."
},
"powerconstruct": {
"name": "Power Construct",
"desc": "If this Pokemon is a Zygarde in its 10% or 50% Forme, it changes to Complete Forme when it has 1/2 or less of its maximum HP at the end of the turn.",
"shortDesc": "If Zygarde 10%/50%, changes to Complete if at 1/2 max HP or less at end of turn.",
"activate": " You sense the presence of many!",
"transform": "[POKEMON] transformed into its Complete Forme!"
},
"powerofalchemy": {
"name": "Power of Alchemy",
"desc": "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are \"No Ability\", As One, Battle Bond, Comatose, Disguise, Flower Gift, Forecast, Gulp Missile, Hunger Switch, Ice Face, Illusion, Imposter, Multitype, Neutralizing Gas, Power Construct, Power of Alchemy, Receiver, RKS System, Schooling, Shields Down, Stance Change, Trace, Wonder Guard, and Zen Mode.",
"shortDesc": "This Pokemon copies the Ability of an ally that faints.",
"gen7": {
"desc": "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are \"No Ability\", Battle Bond, Comatose, Disguise, Flower Gift, Forecast, Illusion, Imposter, Multitype, Power Construct, Power of Alchemy, Receiver, RKS System, Schooling, Shields Down, Stance Change, Trace, Wonder Guard, and Zen Mode."
},
"changeAbility": "#receiver"
},
"powerspot": {
"name": "Power Spot",
"shortDesc": "This Pokemon's allies have the power of their moves multiplied by 1.3."