@pkmn/sim 0.5.26 → 0.5.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/config/formats.js +196 -160
- package/build/config/formats.js.map +1 -1
- package/build/data/aliases.js +2 -2
- package/build/data/aliases.js.map +1 -1
- package/build/data/conditions.js +1 -1
- package/build/data/conditions.js.map +1 -1
- package/build/data/formats-data.js +24 -25
- package/build/data/formats-data.js.map +1 -1
- package/build/data/learnsets.js +27 -20
- package/build/data/learnsets.js.map +1 -1
- package/build/data/mods/gen2/moves.js +10 -5
- package/build/data/mods/gen2/moves.js.map +1 -1
- package/build/data/mods/gen3/formats-data.js +2 -2
- package/build/data/mods/gen3/formats-data.js.map +1 -1
- package/build/data/mods/gen3/moves.js +9 -0
- package/build/data/mods/gen3/moves.js.map +1 -1
- package/build/data/pokedex.js +7 -7
- package/build/data/pokedex.js.map +1 -1
- package/build/data/text/abilities.js +321 -139
- package/build/data/text/abilities.js.map +1 -1
- package/build/data/text/moves.js +8 -2
- package/build/data/text/moves.js.map +1 -1
- package/build/sim/battle-actions.js.map +1 -1
- package/build/sim/pokemon.js +1 -1
- package/build/sim/pokemon.js.map +1 -1
- package/build/sim/team-validator.js +21 -16
- package/build/sim/team-validator.js.map +1 -1
- package/config/formats.ts +197 -158
- package/data/aliases.ts +2 -2
- package/data/conditions.ts +1 -1
- package/data/formats-data.ts +24 -25
- package/data/learnsets.ts +27 -20
- package/data/mods/gen2/moves.ts +10 -5
- package/data/mods/gen3/formats-data.ts +2 -2
- package/data/mods/gen3/moves.ts +9 -0
- package/data/pokedex.ts +7 -7
- package/data/text/abilities.ts +321 -139
- package/data/text/moves.ts +8 -2
- package/package.json +1 -1
- package/sim/battle-actions.ts +1 -0
- package/sim/pokemon.ts +1 -1
- package/sim/team-validator.ts +22 -18
|
@@ -48,39 +48,54 @@ exports.AbilitiesText = {
|
|
|
48
48
|
},
|
|
49
49
|
anticipation: {
|
|
50
50
|
name: "Anticipation",
|
|
51
|
-
desc: "On switch-in, this Pokemon is alerted if any opposing Pokemon has an attack that is super effective
|
|
51
|
+
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. This effect considers any move that deals direct damage as an attacking move of its respective type, 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.",
|
|
52
52
|
shortDesc: "On switch-in, this Pokemon shudders if any foe has a supereffective or OHKO move.",
|
|
53
53
|
gen6: {
|
|
54
|
-
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.
|
|
54
|
+
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. This effect considers any move that deals direct damage as an attacking move of its respective type, Hidden Power counts as its determined type, and Judgment, Natural Gift, Techno Blast, and Weather Ball are considered Normal-type moves.",
|
|
55
55
|
},
|
|
56
56
|
gen5: {
|
|
57
|
-
desc: "On switch-in, this Pokemon is alerted if any opposing Pokemon has an attack that is super effective
|
|
57
|
+
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. This effect considers any move that deals direct damage as an attacking move of its respective type, and Hidden Power, Judgment, Natural Gift, Techno Blast, and Weather Ball are considered Normal-type moves.",
|
|
58
|
+
},
|
|
59
|
+
gen4: {
|
|
60
|
+
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 that this Pokemon is not immune to and if its level is less than or equal to the opposing Pokemon's level. This effect does not consider Counter, Dragon Rage, Metal Burst, Mirror Coat, Night Shade, Psywave, or Seismic Toss as attacking moves, and Hidden Power, Judgment, Natural Gift, and Weather Ball are considered Normal-type moves. This effect considers any changes to the effectiveness of attacks against this Pokemon due to the effects of Gravity or the Normalize or Scrappy Abilities.",
|
|
58
61
|
},
|
|
59
62
|
activate: " [POKEMON] shuddered!",
|
|
60
63
|
},
|
|
61
64
|
arenatrap: {
|
|
62
65
|
name: "Arena Trap",
|
|
63
|
-
desc: "Prevents
|
|
64
|
-
shortDesc: "Prevents
|
|
66
|
+
desc: "Prevents opposing Pokemon from choosing to switch out unless they are airborne, are holding a Shed Shell, or are a Ghost type.",
|
|
67
|
+
shortDesc: "Prevents opposing Pokemon from choosing to switch out unless they are airborne.",
|
|
68
|
+
gen6: {
|
|
69
|
+
desc: "Prevents adjacent opposing Pokemon from choosing to switch out unless they are airborne, are holding a Shed Shell, or are a Ghost type.",
|
|
70
|
+
},
|
|
71
|
+
gen5: {
|
|
72
|
+
desc: "Prevents adjacent opposing Pokemon from choosing to switch out unless they are airborne or holding a Shed Shell.",
|
|
73
|
+
},
|
|
74
|
+
gen4: {
|
|
75
|
+
desc: "Prevents opposing Pokemon from choosing to switch out unless they are airborne or holding a Shed Shell.",
|
|
76
|
+
},
|
|
77
|
+
gen3: {
|
|
78
|
+
desc: "Prevents opposing Pokemon from choosing to switch out unless they are airborne.",
|
|
79
|
+
},
|
|
65
80
|
},
|
|
66
81
|
aromaveil: {
|
|
67
82
|
name: "Aroma Veil",
|
|
68
|
-
desc: "This Pokemon and its allies cannot
|
|
83
|
+
desc: "This Pokemon and its allies cannot become affected by Attract, Disable, Encore, Heal Block, Taunt, or Torment.",
|
|
69
84
|
shortDesc: "Protects user/allies from Attract, Disable, Encore, Heal Block, Taunt, and Torment.",
|
|
70
85
|
block: " [POKEMON] is protected by an aromatic veil!",
|
|
71
86
|
},
|
|
72
87
|
asone: {
|
|
73
88
|
name: "As One",
|
|
74
|
-
shortDesc: "
|
|
89
|
+
shortDesc: "See 'As One (Glastrier)' and 'As One (Spectrier)'.",
|
|
75
90
|
start: " [POKEMON] has two Abilities!",
|
|
76
91
|
},
|
|
77
92
|
asoneglastrier: {
|
|
78
93
|
name: "As One (Glastrier)",
|
|
79
|
-
shortDesc: "
|
|
94
|
+
shortDesc: "Combination of the Unnerve and Chilling Neigh Abilities.",
|
|
80
95
|
},
|
|
81
96
|
asonespectrier: {
|
|
82
97
|
name: "As One (Spectrier)",
|
|
83
|
-
shortDesc: "
|
|
98
|
+
shortDesc: "Combination of the Unnerve and Grim Neigh Abilities.",
|
|
84
99
|
},
|
|
85
100
|
aurabreak: {
|
|
86
101
|
name: "Aura Break",
|
|
@@ -90,8 +105,16 @@ exports.AbilitiesText = {
|
|
|
90
105
|
},
|
|
91
106
|
baddreams: {
|
|
92
107
|
name: "Bad Dreams",
|
|
93
|
-
desc: "Causes
|
|
94
|
-
shortDesc: "Causes sleeping
|
|
108
|
+
desc: "Causes opposing Pokemon to lose 1/8 of their maximum HP, rounded down, at the end of each turn if they are asleep.",
|
|
109
|
+
shortDesc: "Causes sleeping foes to lose 1/8 of their max HP at the end of each turn.",
|
|
110
|
+
gen6: {
|
|
111
|
+
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.",
|
|
112
|
+
shortDesc: "Causes sleeping adjacent foes to lose 1/8 of their max HP at the end of each turn.",
|
|
113
|
+
},
|
|
114
|
+
gen4: {
|
|
115
|
+
desc: "Causes opposing Pokemon to lose 1/8 of their maximum HP, rounded down, at the end of each turn if they are asleep.",
|
|
116
|
+
shortDesc: "Causes sleeping foes to lose 1/8 of their max HP at the end of each turn.",
|
|
117
|
+
},
|
|
95
118
|
damage: " [POKEMON] is tormented!",
|
|
96
119
|
},
|
|
97
120
|
ballfetch: {
|
|
@@ -108,19 +131,19 @@ exports.AbilitiesText = {
|
|
|
108
131
|
},
|
|
109
132
|
battlebond: {
|
|
110
133
|
name: "Battle Bond",
|
|
111
|
-
desc: "If this Pokemon is a Greninja, it transforms into Ash-Greninja
|
|
134
|
+
desc: "If this Pokemon is a Greninja, it transforms into Ash-Greninja if it attacks and knocks out another Pokemon. If this Pokemon is an Ash-Greninja, its Water Shuriken has 20 power and always hits three times.",
|
|
112
135
|
shortDesc: "After KOing a Pokemon: becomes Ash-Greninja, Water Shuriken: 20 power, hits 3x.",
|
|
113
136
|
activate: " [POKEMON] became fully charged due to its bond with its Trainer!",
|
|
114
137
|
transform: "[POKEMON] became Ash-Greninja!",
|
|
115
138
|
},
|
|
116
139
|
beastboost: {
|
|
117
140
|
name: "Beast Boost",
|
|
118
|
-
desc: "This Pokemon's highest stat is raised by 1 stage if it attacks and knocks out another Pokemon.",
|
|
141
|
+
desc: "This Pokemon's highest stat is raised by 1 stage if it attacks and knocks out another Pokemon. Stat stage changes are not considered. If multiple stats are tied, Attack, Defense, Special Attack, Special Defense, and Speed are prioritized in that order.",
|
|
119
142
|
shortDesc: "This Pokemon's highest stat is raised by 1 if it attacks and KOes another Pokemon.",
|
|
120
143
|
},
|
|
121
144
|
berserk: {
|
|
122
145
|
name: "Berserk",
|
|
123
|
-
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
|
|
146
|
+
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. This effect is prevented if the move had a secondary effect removed by the Sheer Force Ability.",
|
|
124
147
|
shortDesc: "This Pokemon's Sp. Atk is raised by 1 when it reaches 1/2 or less of its max HP.",
|
|
125
148
|
},
|
|
126
149
|
bigpecks: {
|
|
@@ -129,8 +152,8 @@ exports.AbilitiesText = {
|
|
|
129
152
|
},
|
|
130
153
|
blaze: {
|
|
131
154
|
name: "Blaze",
|
|
132
|
-
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its
|
|
133
|
-
shortDesc: "At 1/3 or less of its max HP, this Pokemon's
|
|
155
|
+
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its offensive stat is multiplied by 1.5 while using a Fire-type attack.",
|
|
156
|
+
shortDesc: "At 1/3 or less of its max HP, this Pokemon's offensive stat is 1.5x with Fire attacks.",
|
|
134
157
|
gen4: {
|
|
135
158
|
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.",
|
|
136
159
|
shortDesc: "At 1/3 or less of its max HP, this Pokemon's Fire-type attacks have 1.5x power.",
|
|
@@ -138,13 +161,15 @@ exports.AbilitiesText = {
|
|
|
138
161
|
},
|
|
139
162
|
bulletproof: {
|
|
140
163
|
name: "Bulletproof",
|
|
141
|
-
|
|
142
|
-
shortDesc: "Makes user immune to ballistic moves (Shadow Ball, Sludge Bomb, Focus Blast, etc).",
|
|
164
|
+
shortDesc: "This Pokemon is immune to bullet moves.",
|
|
143
165
|
},
|
|
144
166
|
cheekpouch: {
|
|
145
167
|
name: "Cheek Pouch",
|
|
146
|
-
desc: "If this Pokemon eats a Berry, it restores 1/3 of its maximum HP, rounded down, in addition to the Berry's effect.",
|
|
168
|
+
desc: "If this Pokemon eats a held Berry, it restores 1/3 of its maximum HP, rounded down, in addition to the Berry's effect. This effect can also activate after the effects of Bug Bite, Fling, Pluck, Stuff Cheeks, and Teatime if the eaten Berry had an effect on this Pokemon.",
|
|
147
169
|
shortDesc: "If this Pokemon eats a Berry, it restores 1/3 of its max HP after the Berry's effect.",
|
|
170
|
+
gen7: {
|
|
171
|
+
desc: "If this Pokemon eats a held Berry, it restores 1/3 of its maximum HP, rounded down, in addition to the Berry's effect. This effect can also activate after the effects of Bug Bite, Fling, and Pluck if the eaten Berry has an effect on this Pokemon.",
|
|
172
|
+
},
|
|
148
173
|
},
|
|
149
174
|
chillingneigh: {
|
|
150
175
|
name: "Chilling Neigh",
|
|
@@ -153,7 +178,7 @@ exports.AbilitiesText = {
|
|
|
153
178
|
},
|
|
154
179
|
chlorophyll: {
|
|
155
180
|
name: "Chlorophyll",
|
|
156
|
-
desc: "If Sunny Day is active
|
|
181
|
+
desc: "If Sunny Day is active, this Pokemon's Speed is doubled. This effect is prevented if this Pokemon is holding a Utility Umbrella.",
|
|
157
182
|
shortDesc: "If Sunny Day is active, this Pokemon's Speed is doubled.",
|
|
158
183
|
gen7: {
|
|
159
184
|
desc: "If Sunny Day is active, this Pokemon's Speed is doubled.",
|
|
@@ -170,7 +195,7 @@ exports.AbilitiesText = {
|
|
|
170
195
|
},
|
|
171
196
|
colorchange: {
|
|
172
197
|
name: "Color Change",
|
|
173
|
-
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
|
|
198
|
+
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. This effect is prevented if the move had a secondary effect removed by the Sheer Force Ability.",
|
|
174
199
|
shortDesc: "This Pokemon's type changes to the type of a move it's hit by, unless it has the type.",
|
|
175
200
|
gen4: {
|
|
176
201
|
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.",
|
|
@@ -178,7 +203,7 @@ exports.AbilitiesText = {
|
|
|
178
203
|
},
|
|
179
204
|
comatose: {
|
|
180
205
|
name: "Comatose",
|
|
181
|
-
desc: "This Pokemon
|
|
206
|
+
desc: "This Pokemon is considered to be asleep and cannot become affected by a non-volatile status condition or Yawn.",
|
|
182
207
|
shortDesc: "This Pokemon cannot be statused, and is considered to be asleep.",
|
|
183
208
|
start: " [POKEMON] is drowsing!",
|
|
184
209
|
},
|
|
@@ -193,15 +218,17 @@ exports.AbilitiesText = {
|
|
|
193
218
|
},
|
|
194
219
|
contrary: {
|
|
195
220
|
name: "Contrary",
|
|
196
|
-
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.",
|
|
197
221
|
shortDesc: "If this Pokemon has a stat stage raised it is lowered instead, and vice versa.",
|
|
222
|
+
gen7: {
|
|
223
|
+
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.",
|
|
224
|
+
},
|
|
198
225
|
gen6: {
|
|
199
226
|
desc: "If this Pokemon has a stat stage raised it is lowered instead, and vice versa.",
|
|
200
227
|
},
|
|
201
228
|
},
|
|
202
229
|
corrosion: {
|
|
203
230
|
name: "Corrosion",
|
|
204
|
-
shortDesc: "This Pokemon can poison or badly poison
|
|
231
|
+
shortDesc: "This Pokemon can poison or badly poison a Pokemon regardless of its typing.",
|
|
205
232
|
},
|
|
206
233
|
cottondown: {
|
|
207
234
|
name: "Cotton Down",
|
|
@@ -241,11 +268,15 @@ exports.AbilitiesText = {
|
|
|
241
268
|
desc: "While this Pokemon is active, Explosion, Self-Destruct, and the Aftermath Ability are prevented from having an effect.",
|
|
242
269
|
shortDesc: "Prevents Explosion/Self-Destruct/Aftermath while this Pokemon is active.",
|
|
243
270
|
},
|
|
271
|
+
gen3: {
|
|
272
|
+
desc: "While this Pokemon is active, Explosion and Self-Destruct are prevented from having an effect.",
|
|
273
|
+
shortDesc: "Prevents Explosion and Self-Destruct while this Pokemon is active.",
|
|
274
|
+
},
|
|
244
275
|
block: " [SOURCE] cannot use [MOVE]!",
|
|
245
276
|
},
|
|
246
277
|
dancer: {
|
|
247
278
|
name: "Dancer",
|
|
248
|
-
desc: "After another Pokemon uses a dance move, this Pokemon uses the same move.
|
|
279
|
+
desc: "After another Pokemon uses a dance move, this Pokemon uses the same move. The copied move is subject to all effects that can prevent a move from being executed. A move used through this Ability cannot be copied again by other Pokemon with this Ability.",
|
|
249
280
|
shortDesc: "After another Pokemon uses a dance move, this Pokemon uses the same move.",
|
|
250
281
|
},
|
|
251
282
|
darkaura: {
|
|
@@ -260,7 +291,7 @@ exports.AbilitiesText = {
|
|
|
260
291
|
},
|
|
261
292
|
dazzling: {
|
|
262
293
|
name: "Dazzling",
|
|
263
|
-
desc: "
|
|
294
|
+
desc: "While this Pokemon is active, priority moves from opposing Pokemon that target this Pokemon or its allies are prevented from having an effect.",
|
|
264
295
|
shortDesc: "This Pokemon and its allies are protected from opposing priority moves.",
|
|
265
296
|
block: "#damp",
|
|
266
297
|
},
|
|
@@ -276,12 +307,12 @@ exports.AbilitiesText = {
|
|
|
276
307
|
},
|
|
277
308
|
deltastream: {
|
|
278
309
|
name: "Delta Stream",
|
|
279
|
-
desc: "On switch-in, the weather becomes
|
|
310
|
+
desc: "On switch-in, the weather becomes Delta Stream, which removes 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 the Desolate Land or Primordial Sea Abilities.",
|
|
280
311
|
shortDesc: "On switch-in, strong winds begin until this Ability is not active in battle.",
|
|
281
312
|
},
|
|
282
313
|
desolateland: {
|
|
283
314
|
name: "Desolate Land",
|
|
284
|
-
desc: "On switch-in, the weather becomes
|
|
315
|
+
desc: "On switch-in, the weather becomes Desolate Land, which includes all the effects of Sunny Day and prevents damaging Water-type moves from executing. This weather remains in effect until this Ability is no longer active for any Pokemon, or the weather is changed by the Delta Stream or Primordial Sea Abilities.",
|
|
285
316
|
shortDesc: "On switch-in, extremely harsh sunlight begins until this Ability is not active in battle.",
|
|
286
317
|
},
|
|
287
318
|
disguise: {
|
|
@@ -302,7 +333,7 @@ exports.AbilitiesText = {
|
|
|
302
333
|
},
|
|
303
334
|
dragonsmaw: {
|
|
304
335
|
name: "Dragon's Maw",
|
|
305
|
-
shortDesc: "This Pokemon's
|
|
336
|
+
shortDesc: "This Pokemon's offensive stat is multiplied by 1.5 while using a Dragon-type attack.",
|
|
306
337
|
},
|
|
307
338
|
drizzle: {
|
|
308
339
|
name: "Drizzle",
|
|
@@ -314,7 +345,7 @@ exports.AbilitiesText = {
|
|
|
314
345
|
},
|
|
315
346
|
dryskin: {
|
|
316
347
|
name: "Dry Skin",
|
|
317
|
-
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.
|
|
348
|
+
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. The weather effects are prevented if this Pokemon is holding a Utility Umbrella.",
|
|
318
349
|
shortDesc: "This Pokemon is healed 1/4 by Water, 1/8 by Rain; is hurt 1.25x by Fire, 1/8 by Sun.",
|
|
319
350
|
gen7: {
|
|
320
351
|
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.",
|
|
@@ -343,7 +374,7 @@ exports.AbilitiesText = {
|
|
|
343
374
|
},
|
|
344
375
|
emergencyexit: {
|
|
345
376
|
name: "Emergency Exit",
|
|
346
|
-
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
|
|
377
|
+
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. This effect is prevented if the move had a secondary effect removed by the Sheer Force Ability. This effect applies to both direct and indirect damage, except Curse and Substitute on use, Belly Drum, Pain Split, and confusion damage.",
|
|
347
378
|
shortDesc: "This Pokemon switches out when it reaches 1/2 or less of its maximum HP.",
|
|
348
379
|
},
|
|
349
380
|
fairyaura: {
|
|
@@ -374,8 +405,11 @@ exports.AbilitiesText = {
|
|
|
374
405
|
},
|
|
375
406
|
flashfire: {
|
|
376
407
|
name: "Flash Fire",
|
|
377
|
-
desc: "This Pokemon is immune to Fire-type moves. The first time it is hit by a Fire-type move, its
|
|
408
|
+
desc: "This Pokemon is immune to Fire-type moves. The first time it is hit by a Fire-type move, its offensive 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.",
|
|
378
409
|
shortDesc: "This Pokemon's Fire attacks do 1.5x damage if hit by one Fire move; Fire immunity.",
|
|
410
|
+
gen4: {
|
|
411
|
+
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.",
|
|
412
|
+
},
|
|
379
413
|
gen3: {
|
|
380
414
|
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.",
|
|
381
415
|
},
|
|
@@ -383,7 +417,7 @@ exports.AbilitiesText = {
|
|
|
383
417
|
},
|
|
384
418
|
flowergift: {
|
|
385
419
|
name: "Flower Gift",
|
|
386
|
-
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.
|
|
420
|
+
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. These effects are prevented if the Pokemon is holding a Utility Umbrella.",
|
|
387
421
|
shortDesc: "If user is Cherrim and Sunny Day is active, it and allies' Attack and Sp. Def are 1.5x.",
|
|
388
422
|
gen7: {
|
|
389
423
|
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.",
|
|
@@ -406,7 +440,7 @@ exports.AbilitiesText = {
|
|
|
406
440
|
},
|
|
407
441
|
forecast: {
|
|
408
442
|
name: "Forecast",
|
|
409
|
-
desc: "If this Pokemon is a Castform, its type changes to the current weather condition's type, except Sandstorm.
|
|
443
|
+
desc: "If this Pokemon is a Castform, its type changes to the current weather condition's type, except Sandstorm. This effect is prevented if this Pokemon is holding a Utility Umbrella and the weather is Rain Dance or Sunny Day.",
|
|
410
444
|
shortDesc: "Castform's type changes to the current weather condition's type, except Sandstorm.",
|
|
411
445
|
gen7: {
|
|
412
446
|
desc: "If this Pokemon is a Castform, its type changes to the current weather condition's type, except Sandstorm.",
|
|
@@ -414,8 +448,11 @@ exports.AbilitiesText = {
|
|
|
414
448
|
},
|
|
415
449
|
forewarn: {
|
|
416
450
|
name: "Forewarn",
|
|
417
|
-
desc: "On switch-in, this Pokemon is alerted to the move with the highest power, at random, known by an opposing Pokemon.",
|
|
451
|
+
desc: "On switch-in, this Pokemon is alerted to the move with the highest power, at random, known by an opposing Pokemon. This effect considers OHKO moves to have 150 power, Counter, Mirror Coat, and Metal Burst to have 120 power, every other attacking move with an unspecified power to have 80 power, and non-damaging moves to have 1 power.",
|
|
418
452
|
shortDesc: "On switch-in, this Pokemon is alerted to the foes' move with the highest power.",
|
|
453
|
+
gen4: {
|
|
454
|
+
desc: "On switch-in, this Pokemon is alerted to the move with the highest power, at random, known by an opposing Pokemon. This effect considers OHKO moves to have 150 power, Counter, Mirror Coat, and Metal Burst to have 120 power, and every other attacking move with an unspecified power to have 80 power.",
|
|
455
|
+
},
|
|
419
456
|
activate: " [TARGET]'s [MOVE] was revealed!",
|
|
420
457
|
activateNoTarget: " [POKEMON]'s Forewarn alerted it to [MOVE]!",
|
|
421
458
|
},
|
|
@@ -427,14 +464,13 @@ exports.AbilitiesText = {
|
|
|
427
464
|
name: "Frisk",
|
|
428
465
|
shortDesc: "On switch-in, this Pokemon identifies the held items of all opposing Pokemon.",
|
|
429
466
|
gen5: {
|
|
430
|
-
shortDesc: "On switch-in, this Pokemon identifies a random
|
|
467
|
+
shortDesc: "On switch-in, this Pokemon identifies the held item of a random opposing Pokemon.",
|
|
431
468
|
},
|
|
432
469
|
activate: " [POKEMON] frisked [TARGET] and found its [ITEM]!",
|
|
433
470
|
activateNoTarget: " [POKEMON] frisked its target and found one [ITEM]!",
|
|
434
471
|
},
|
|
435
472
|
fullmetalbody: {
|
|
436
473
|
name: "Full Metal Body",
|
|
437
|
-
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.",
|
|
438
474
|
shortDesc: "Prevents other Pokemon from lowering this Pokemon's stat stages.",
|
|
439
475
|
},
|
|
440
476
|
furcoat: {
|
|
@@ -455,7 +491,8 @@ exports.AbilitiesText = {
|
|
|
455
491
|
},
|
|
456
492
|
gluttony: {
|
|
457
493
|
name: "Gluttony",
|
|
458
|
-
|
|
494
|
+
desc: "When this Pokemon is holding a Berry that usually activates with 1/4 or less of its maximum HP, it is eaten at 1/2 or less of its maximum HP instead.",
|
|
495
|
+
shortDesc: "This Pokemon eats Berries at 1/2 max HP or less instead of their usual 1/4 max HP.",
|
|
459
496
|
},
|
|
460
497
|
gooey: {
|
|
461
498
|
name: "Gooey",
|
|
@@ -463,6 +500,7 @@ exports.AbilitiesText = {
|
|
|
463
500
|
},
|
|
464
501
|
gorillatactics: {
|
|
465
502
|
name: "Gorilla Tactics",
|
|
503
|
+
desc: "This Pokemon's Attack is multiplied by 1.5, but it can only select the first move it executes. These effects are prevented while this Pokemon is Dynamaxed.",
|
|
466
504
|
shortDesc: "This Pokemon's Attack is 1.5x, but it can only select the first move it executes.",
|
|
467
505
|
},
|
|
468
506
|
grasspelt: {
|
|
@@ -485,7 +523,7 @@ exports.AbilitiesText = {
|
|
|
485
523
|
},
|
|
486
524
|
guts: {
|
|
487
525
|
name: "Guts",
|
|
488
|
-
desc: "If this Pokemon has a non-volatile status condition, its Attack is multiplied by 1.5
|
|
526
|
+
desc: "If this Pokemon has a non-volatile status condition, its Attack is multiplied by 1.5. This Pokemon's physical attacks ignore the burn effect of halving damage.",
|
|
489
527
|
shortDesc: "If this Pokemon is statused, its Attack is 1.5x; ignores burn halving physical damage.",
|
|
490
528
|
},
|
|
491
529
|
harvest: {
|
|
@@ -496,16 +534,21 @@ exports.AbilitiesText = {
|
|
|
496
534
|
},
|
|
497
535
|
healer: {
|
|
498
536
|
name: "Healer",
|
|
499
|
-
desc: "
|
|
500
|
-
shortDesc: "30% chance
|
|
537
|
+
desc: "30% chance this Pokemon's ally has its non-volatile status condition cured at the end of each turn.",
|
|
538
|
+
shortDesc: "30% chance this Pokemon's ally has its status cured at the end of each turn.",
|
|
539
|
+
gen6: {
|
|
540
|
+
desc: "30% chance each of this Pokemon's adjacent allies has its non-volatile status condition cured at the end of each turn.",
|
|
541
|
+
shortDesc: "30% chance each adjacent ally has its status cured at the end of each turn.",
|
|
542
|
+
},
|
|
501
543
|
},
|
|
502
544
|
heatproof: {
|
|
503
545
|
name: "Heatproof",
|
|
504
|
-
desc: "The power of Fire-type attacks against this Pokemon is halved
|
|
546
|
+
desc: "The power of Fire-type attacks against this Pokemon is halved. This Pokemon takes half of the usual burn damage, rounded down.",
|
|
505
547
|
shortDesc: "The power of Fire-type attacks against this Pokemon is halved; burn damage halved.",
|
|
506
548
|
},
|
|
507
549
|
heavymetal: {
|
|
508
550
|
name: "Heavy Metal",
|
|
551
|
+
desc: "This Pokemon's weight is doubled. This effect is calculated after the effect of Autotomize, and before the effect of Float Stone.",
|
|
509
552
|
shortDesc: "This Pokemon's weight is doubled.",
|
|
510
553
|
},
|
|
511
554
|
honeygather: {
|
|
@@ -518,6 +561,7 @@ exports.AbilitiesText = {
|
|
|
518
561
|
},
|
|
519
562
|
hungerswitch: {
|
|
520
563
|
name: "Hunger Switch",
|
|
564
|
+
desc: "If this Pokemon is a Morpeko, it changes formes between its Full Belly Mode and Hangry Mode at the end of each turn.",
|
|
521
565
|
shortDesc: "If Morpeko, it changes between Full Belly and Hangry Mode at the end of each turn.",
|
|
522
566
|
},
|
|
523
567
|
hustle: {
|
|
@@ -527,7 +571,7 @@ exports.AbilitiesText = {
|
|
|
527
571
|
},
|
|
528
572
|
hydration: {
|
|
529
573
|
name: "Hydration",
|
|
530
|
-
desc: "This Pokemon has its non-volatile status condition cured at the end of each turn if Rain Dance is active.
|
|
574
|
+
desc: "This Pokemon has its non-volatile status condition cured at the end of each turn if Rain Dance is active. This effect is prevented if this Pokemon is holding a Utility Umbrella.",
|
|
531
575
|
shortDesc: "This Pokemon has its status cured at the end of each turn if Rain Dance is active.",
|
|
532
576
|
gen7: {
|
|
533
577
|
desc: "This Pokemon has its non-volatile status condition cured at the end of each turn if Rain Dance is active.",
|
|
@@ -572,7 +616,7 @@ exports.AbilitiesText = {
|
|
|
572
616
|
},
|
|
573
617
|
infiltrator: {
|
|
574
618
|
name: "Infiltrator",
|
|
575
|
-
desc: "This Pokemon's moves ignore substitutes and the opposing side's Reflect, Light Screen, Safeguard, Mist and Aurora Veil.",
|
|
619
|
+
desc: "This Pokemon's moves ignore substitutes and the opposing side's Reflect, Light Screen, Safeguard, Mist, and Aurora Veil.",
|
|
576
620
|
shortDesc: "Moves ignore substitutes and foe's Reflect/Light Screen/Safeguard/Mist/Aurora Veil.",
|
|
577
621
|
gen6: {
|
|
578
622
|
desc: "This Pokemon's moves ignore substitutes and the opposing side's Reflect, Light Screen, Safeguard, and Mist.",
|
|
@@ -591,8 +635,10 @@ exports.AbilitiesText = {
|
|
|
591
635
|
},
|
|
592
636
|
innerfocus: {
|
|
593
637
|
name: "Inner Focus",
|
|
638
|
+
desc: "This Pokemon cannot be made to flinch. This Pokemon is immune to the effect of the Intimidate Ability.",
|
|
594
639
|
shortDesc: "This Pokemon cannot be made to flinch. Immune to Intimidate.",
|
|
595
640
|
gen7: {
|
|
641
|
+
desc: "This Pokemon cannot be made to flinch.",
|
|
596
642
|
shortDesc: "This Pokemon cannot be made to flinch.",
|
|
597
643
|
},
|
|
598
644
|
},
|
|
@@ -602,10 +648,21 @@ exports.AbilitiesText = {
|
|
|
602
648
|
},
|
|
603
649
|
intimidate: {
|
|
604
650
|
name: "Intimidate",
|
|
605
|
-
desc: "On switch-in, this Pokemon lowers the Attack of
|
|
606
|
-
shortDesc: "On switch-in, this Pokemon lowers the Attack of
|
|
651
|
+
desc: "On switch-in, this Pokemon lowers the Attack of opposing Pokemon by 1 stage. Pokemon with the Inner Focus, Oblivious, Own Tempo, or Scrappy Abilities and Pokemon behind a substitute are immune.",
|
|
652
|
+
shortDesc: "On switch-in, this Pokemon lowers the Attack of opponents by 1 stage.",
|
|
607
653
|
gen7: {
|
|
654
|
+
desc: "On switch-in, this Pokemon lowers the Attack of opposing Pokemon by 1 stage. Pokemon behind a substitute are immune.",
|
|
655
|
+
},
|
|
656
|
+
gen6: {
|
|
608
657
|
desc: "On switch-in, this Pokemon lowers the Attack of adjacent opposing Pokemon by 1 stage. Pokemon behind a substitute are immune.",
|
|
658
|
+
shortDesc: "On switch-in, this Pokemon lowers the Attack of adjacent opponents by 1 stage.",
|
|
659
|
+
},
|
|
660
|
+
gen4: {
|
|
661
|
+
desc: "On switch-in, this Pokemon lowers the Attack of opposing Pokemon by 1 stage. Pokemon behind a substitute are immune. If U-turn breaks an opposing substitute and this Pokemon switches in as the replacement, the Pokemon that had the substitute is still immune to this Ability.",
|
|
662
|
+
shortDesc: "On switch-in, this Pokemon lowers the Attack of opponents by 1 stage.",
|
|
663
|
+
},
|
|
664
|
+
gen3: {
|
|
665
|
+
desc: "On switch-in, this Pokemon lowers the Attack of opposing Pokemon by 1 stage. Pokemon behind a substitute are immune.",
|
|
609
666
|
},
|
|
610
667
|
},
|
|
611
668
|
intrepidsword: {
|
|
@@ -643,19 +700,19 @@ exports.AbilitiesText = {
|
|
|
643
700
|
},
|
|
644
701
|
leafguard: {
|
|
645
702
|
name: "Leaf Guard",
|
|
646
|
-
desc: "If Sunny Day is active
|
|
703
|
+
desc: "If Sunny Day is active, this Pokemon cannot become affected by a non-volatile status condition or Yawn, and Rest will fail for it. This effect is prevented if this Pokemon is holding a Utility Umbrella.",
|
|
647
704
|
shortDesc: "If Sunny Day is active, this Pokemon cannot be statused and Rest will fail for it.",
|
|
648
705
|
gen7: {
|
|
649
|
-
desc: "If Sunny Day is active, this Pokemon cannot
|
|
706
|
+
desc: "If Sunny Day is active, this Pokemon cannot become affected by a non-volatile status condition or Yawn, and Rest will fail for it.",
|
|
650
707
|
},
|
|
651
708
|
gen4: {
|
|
652
|
-
desc: "If Sunny Day is active, this Pokemon cannot
|
|
709
|
+
desc: "If Sunny Day is active, this Pokemon cannot become affected by a non-volatile status condition or Yawn, but can use Rest normally.",
|
|
653
710
|
shortDesc: "If Sunny Day is active, this Pokemon cannot be statused, but Rest works normally.",
|
|
654
711
|
},
|
|
655
712
|
},
|
|
656
713
|
levitate: {
|
|
657
714
|
name: "Levitate",
|
|
658
|
-
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.",
|
|
715
|
+
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. Thousand Arrows can hit this Pokemon as if it did not have this Ability.",
|
|
659
716
|
shortDesc: "This Pokemon is immune to Ground; Gravity/Ingrain/Smack Down/Iron Ball nullify it.",
|
|
660
717
|
gen5: {
|
|
661
718
|
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.",
|
|
@@ -676,11 +733,12 @@ exports.AbilitiesText = {
|
|
|
676
733
|
},
|
|
677
734
|
lightmetal: {
|
|
678
735
|
name: "Light Metal",
|
|
736
|
+
desc: "This Pokemon's weight is halved, rounded down to a tenth of a kilogram. This effect is calculated after the effect of Autotomize, and before the effect of Float Stone. A Pokemon's weight will not drop below 0.1 kg.",
|
|
679
737
|
shortDesc: "This Pokemon's weight is halved.",
|
|
680
738
|
},
|
|
681
739
|
lightningrod: {
|
|
682
740
|
name: "Lightning Rod",
|
|
683
|
-
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.",
|
|
741
|
+
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. If multiple Pokemon could redirect with this Ability, it goes to the one with the highest Speed, or in the case of a tie to the one that has had this Ability active longer.",
|
|
684
742
|
shortDesc: "This Pokemon draws Electric moves to itself to raise Sp. Atk by 1; Electric immunity.",
|
|
685
743
|
gen4: {
|
|
686
744
|
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.",
|
|
@@ -699,6 +757,9 @@ exports.AbilitiesText = {
|
|
|
699
757
|
liquidooze: {
|
|
700
758
|
name: "Liquid Ooze",
|
|
701
759
|
shortDesc: "This Pokemon damages those draining HP from it for as much as they would heal.",
|
|
760
|
+
gen4: {
|
|
761
|
+
desc: "This Pokemon damages those draining HP from it for as much as they would heal. This effect does not consider Dream Eater.",
|
|
762
|
+
},
|
|
702
763
|
damage: " [POKEMON] sucked up the liquid ooze!",
|
|
703
764
|
},
|
|
704
765
|
liquidvoice: {
|
|
@@ -712,8 +773,11 @@ exports.AbilitiesText = {
|
|
|
712
773
|
},
|
|
713
774
|
magicbounce: {
|
|
714
775
|
name: "Magic Bounce",
|
|
715
|
-
desc: "This Pokemon
|
|
716
|
-
shortDesc: "This Pokemon blocks certain
|
|
776
|
+
desc: "This Pokemon is unaffected by certain non-damaging moves directed at it and will instead use such moves against the original user. Moves reflected in this way are unable to be reflected again by this or Magic Coat's effect. Spikes, Stealth Rock, Sticky Web, and Toxic Spikes can only be reflected once per side, by the leftmost Pokemon under this or Magic Coat's effect. The Lightning Rod and Storm Drain Abilities redirect their respective moves before this Ability takes effect.",
|
|
777
|
+
shortDesc: "This Pokemon blocks certain Status moves and bounces them back to the user.",
|
|
778
|
+
gen5: {
|
|
779
|
+
desc: "This Pokemon is unaffected by certain non-damaging moves directed at it and will instead use such moves against the original user. Moves reflected in this way are unable to be reflected again by this or Magic Coat's effect. Spikes, Stealth Rock, and Toxic Spikes can only be reflected once per side, by the leftmost Pokemon under this or Magic Coat's effect. The Lightning Rod and Storm Drain Abilities redirect their respective moves before this Ability takes effect.",
|
|
780
|
+
},
|
|
717
781
|
move: "#magiccoat",
|
|
718
782
|
},
|
|
719
783
|
magicguard: {
|
|
@@ -721,7 +785,7 @@ exports.AbilitiesText = {
|
|
|
721
785
|
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.",
|
|
722
786
|
shortDesc: "This Pokemon can only be damaged by direct attacks.",
|
|
723
787
|
gen4: {
|
|
724
|
-
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
|
|
788
|
+
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 be prevented from moving because of paralysis, and is unaffected by Toxic Spikes on switch-in.",
|
|
725
789
|
shortDesc: "This Pokemon can only be damaged by direct attacks, and can't be fully paralyzed.",
|
|
726
790
|
},
|
|
727
791
|
},
|
|
@@ -736,13 +800,28 @@ exports.AbilitiesText = {
|
|
|
736
800
|
},
|
|
737
801
|
magnetpull: {
|
|
738
802
|
name: "Magnet Pull",
|
|
739
|
-
desc: "Prevents
|
|
740
|
-
shortDesc: "Prevents
|
|
803
|
+
desc: "Prevents opposing Steel-type Pokemon from choosing to switch out, unless they are holding a Shed Shell or are a Ghost type.",
|
|
804
|
+
shortDesc: "Prevents opposing Steel-type Pokemon from choosing to switch out.",
|
|
805
|
+
gen6: {
|
|
806
|
+
desc: "Prevents adjacent opposing Steel-type Pokemon from choosing to switch out, unless they are holding a Shed Shell or are a Ghost type.",
|
|
807
|
+
shortDesc: "Prevents adjacent opposing Steel-type Pokemon from choosing to switch out.",
|
|
808
|
+
},
|
|
809
|
+
gen5: {
|
|
810
|
+
desc: "Prevents adjacent opposing Steel-type Pokemon from choosing to switch out, unless they are holding a Shed Shell.",
|
|
811
|
+
shortDesc: "Prevents adjacent opposing Steel-type Pokemon from choosing to switch out.",
|
|
812
|
+
},
|
|
813
|
+
gen4: {
|
|
814
|
+
desc: "Prevents opposing Steel-type Pokemon from choosing to switch out, unless they are holding a Shed Shell.",
|
|
815
|
+
shortDesc: "Prevents opposing Steel-type Pokemon from choosing to switch out.",
|
|
816
|
+
},
|
|
817
|
+
gen3: {
|
|
818
|
+
desc: "Prevents Steel-type Pokemon from choosing to switch out, other than this Pokemon.",
|
|
819
|
+
shortDesc: "Prevents Steel-type Pokemon from choosing to switch out, other than this Pokemon.",
|
|
820
|
+
},
|
|
741
821
|
},
|
|
742
822
|
marvelscale: {
|
|
743
823
|
name: "Marvel Scale",
|
|
744
|
-
|
|
745
|
-
shortDesc: "If this Pokemon is statused, its Defense is 1.5x.",
|
|
824
|
+
shortDesc: "If this Pokemon has a non-volatile status condition, its Defense is multiplied by 1.5.",
|
|
746
825
|
},
|
|
747
826
|
megalauncher: {
|
|
748
827
|
name: "Mega Launcher",
|
|
@@ -755,7 +834,8 @@ exports.AbilitiesText = {
|
|
|
755
834
|
},
|
|
756
835
|
mimicry: {
|
|
757
836
|
name: "Mimicry",
|
|
758
|
-
|
|
837
|
+
desc: "This Pokemon's types change to match the active Terrain when this Pokemon acquires this Ability, or whenever a Terrain begins. Electric type during Electric Terrain, Grass type during Grassy Terrain, Fairy type during Misty Terrain, and Psychic type during Psychic Terrain. If this Ability is acquired without an active Terrain, or a Terrain ends, this Pokemon's types become the original types for its species.",
|
|
838
|
+
shortDesc: "This Pokemon's types change to match the Terrain. Type reverts when Terrain ends.",
|
|
759
839
|
activate: " [POKEMON] returned to its original type!",
|
|
760
840
|
},
|
|
761
841
|
minus: {
|
|
@@ -773,7 +853,7 @@ exports.AbilitiesText = {
|
|
|
773
853
|
},
|
|
774
854
|
mirrorarmor: {
|
|
775
855
|
name: "Mirror Armor",
|
|
776
|
-
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.",
|
|
856
|
+
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. If the other Pokemon has a substitute, neither Pokemon has its stat stage lowered.",
|
|
777
857
|
shortDesc: "If this Pokemon's stat stages would be lowered, the attacker's are lowered instead.",
|
|
778
858
|
},
|
|
779
859
|
mistysurge: {
|
|
@@ -782,7 +862,7 @@ exports.AbilitiesText = {
|
|
|
782
862
|
},
|
|
783
863
|
moldbreaker: {
|
|
784
864
|
name: "Mold Breaker",
|
|
785
|
-
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,
|
|
865
|
+
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, Dazzling, Disguise, Dry Skin, 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.",
|
|
786
866
|
shortDesc: "This Pokemon's moves and their effects ignore the Abilities of other Pokemon.",
|
|
787
867
|
gen7: {
|
|
788
868
|
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.",
|
|
@@ -794,13 +874,13 @@ exports.AbilitiesText = {
|
|
|
794
874
|
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.",
|
|
795
875
|
},
|
|
796
876
|
gen4: {
|
|
797
|
-
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
|
|
877
|
+
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. The Attack modifier from an ally's Flower Gift Ability is not negated.",
|
|
798
878
|
},
|
|
799
879
|
start: " [POKEMON] breaks the mold!",
|
|
800
880
|
},
|
|
801
881
|
moody: {
|
|
802
882
|
name: "Moody",
|
|
803
|
-
desc: "This Pokemon has a random stat other than accuracy or
|
|
883
|
+
desc: "This Pokemon has a random stat, other than accuracy or evasiveness, raised by 2 stages and another stat lowered by 1 stage at the end of each turn.",
|
|
804
884
|
shortDesc: "Boosts a random stat (except accuracy/evasion) +2 and another stat -1 every turn.",
|
|
805
885
|
gen7: {
|
|
806
886
|
desc: "This Pokemon has a random stat raised by 2 stages and another stat lowered by 1 stage at the end of each turn.",
|
|
@@ -823,20 +903,29 @@ exports.AbilitiesText = {
|
|
|
823
903
|
},
|
|
824
904
|
multitype: {
|
|
825
905
|
name: "Multitype",
|
|
826
|
-
shortDesc: "If this Pokemon is an Arceus, its type changes to match its held Plate
|
|
906
|
+
shortDesc: "If this Pokemon is an Arceus, its type changes to match its held Plate.",
|
|
907
|
+
gen7: {
|
|
908
|
+
shortDesc: "If this Pokemon is an Arceus, its type changes to match its held Plate or Z-Crystal.",
|
|
909
|
+
},
|
|
827
910
|
gen6: {
|
|
828
911
|
shortDesc: "If this Pokemon is an Arceus, its type changes to match its held Plate.",
|
|
829
912
|
},
|
|
913
|
+
gen4: {
|
|
914
|
+
shortDesc: "If this Pokemon is an Arceus, its type changes to match its held Plate. This Pokemon cannot lose its held item due to another Pokemon's attack.",
|
|
915
|
+
},
|
|
830
916
|
},
|
|
831
917
|
mummy: {
|
|
832
918
|
name: "Mummy",
|
|
833
|
-
desc: "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect
|
|
919
|
+
desc: "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect Pokemon with the As One, Battle Bond, Comatose, Disguise, Gulp Missile, Ice Face, Multitype, Mummy, Power Construct, RKS System, Schooling, Shields Down, Stance Change, or Zen Mode Abilities.",
|
|
834
920
|
shortDesc: "Pokemon making contact with this Pokemon have their Ability changed to Mummy.",
|
|
835
921
|
gen7: {
|
|
836
|
-
desc: "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect
|
|
922
|
+
desc: "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect Pokemon with the Battle Bond, Comatose, Disguise, Multitype, Mummy, Power Construct, RKS System, Schooling, Shields Down, Stance Change, or Zen Mode Abilities.",
|
|
837
923
|
},
|
|
838
924
|
gen6: {
|
|
839
|
-
desc: "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect the Multitype or Stance Change Abilities.",
|
|
925
|
+
desc: "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect Pokemon with the Multitype, Mummy, or Stance Change Abilities.",
|
|
926
|
+
},
|
|
927
|
+
gen5: {
|
|
928
|
+
desc: "Pokemon making contact with this Pokemon have their Ability changed to Mummy. Does not affect Pokemon with the Multitype or Mummy Abilities.",
|
|
840
929
|
},
|
|
841
930
|
changeAbility: " [TARGET]'s Ability became Mummy!",
|
|
842
931
|
},
|
|
@@ -847,11 +936,12 @@ exports.AbilitiesText = {
|
|
|
847
936
|
},
|
|
848
937
|
neuroforce: {
|
|
849
938
|
name: "Neuroforce",
|
|
939
|
+
desc: "This Pokemon's attacks that are super effective against the target have their damage multiplied by 1.25.",
|
|
850
940
|
shortDesc: "This Pokemon's attacks that are super effective against the target do 1.25x damage.",
|
|
851
941
|
},
|
|
852
942
|
neutralizinggas: {
|
|
853
943
|
name: "Neutralizing Gas",
|
|
854
|
-
desc: "While this Pokemon is active, Abilities have no effect. Does not affect the
|
|
944
|
+
desc: "While this Pokemon is active, Abilities have no effect. This Ability activates before hazards and other Abilities take effect. Does not affect the As One, Battle Bond, Comatose, Disguise, Gulp Missile, Ice Face, Multitype, Power Construct, RKS System, Schooling, Shields Down, Stance Change, or Zen Mode Abilities.",
|
|
855
945
|
shortDesc: "While this Pokemon is active, Abilities have no effect.",
|
|
856
946
|
start: " Neutralizing gas filled the area!",
|
|
857
947
|
end: " The effects of the neutralizing gas wore off!",
|
|
@@ -868,13 +958,16 @@ exports.AbilitiesText = {
|
|
|
868
958
|
desc: "This Pokemon's moves are changed to be Normal type. This effect comes before other effects that change a move's type.",
|
|
869
959
|
shortDesc: "This Pokemon's moves are changed to be Normal type.",
|
|
870
960
|
},
|
|
961
|
+
gen4: {
|
|
962
|
+
desc: "This Pokemon's moves are changed to be Normal type. This effect comes after other effects that change a move's type, except Struggle.",
|
|
963
|
+
},
|
|
871
964
|
},
|
|
872
965
|
oblivious: {
|
|
873
966
|
name: "Oblivious",
|
|
874
|
-
desc: "This Pokemon cannot be infatuated or taunted. Gaining this Ability while
|
|
967
|
+
desc: "This Pokemon cannot be infatuated or taunted. Gaining this Ability while infatuated or taunted cures it. This Pokemon is immune to the effect of the Intimidate Ability.",
|
|
875
968
|
shortDesc: "This Pokemon cannot be infatuated or taunted. Immune to Intimidate.",
|
|
876
969
|
gen7: {
|
|
877
|
-
desc: "This Pokemon cannot be infatuated or taunted. Gaining this Ability while
|
|
970
|
+
desc: "This Pokemon cannot be infatuated or taunted. Gaining this Ability while infatuated or taunted cures it.",
|
|
878
971
|
shortDesc: "This Pokemon cannot be infatuated or taunted.",
|
|
879
972
|
},
|
|
880
973
|
gen5: {
|
|
@@ -884,15 +977,17 @@ exports.AbilitiesText = {
|
|
|
884
977
|
},
|
|
885
978
|
overcoat: {
|
|
886
979
|
name: "Overcoat",
|
|
887
|
-
|
|
980
|
+
desc: "This Pokemon is immune to powder moves, damage from Sandstorm or Hail, and the effects of Rage Powder and the Effect Spore Ability.",
|
|
981
|
+
shortDesc: "This Pokemon is immune to powder moves, Sandstorm or Hail damage, Effect Spore.",
|
|
888
982
|
gen5: {
|
|
983
|
+
desc: "This Pokemon is immune to damage from Sandstorm or Hail.",
|
|
889
984
|
shortDesc: "This Pokemon is immune to damage from Sandstorm or Hail.",
|
|
890
985
|
},
|
|
891
986
|
},
|
|
892
987
|
overgrow: {
|
|
893
988
|
name: "Overgrow",
|
|
894
|
-
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its
|
|
895
|
-
shortDesc: "At 1/3 or less of its max HP, this Pokemon's
|
|
989
|
+
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its offensive stat is multiplied by 1.5 while using a Grass-type attack.",
|
|
990
|
+
shortDesc: "At 1/3 or less of its max HP, this Pokemon's offensive stat is 1.5x with Grass attacks.",
|
|
896
991
|
gen4: {
|
|
897
992
|
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.",
|
|
898
993
|
shortDesc: "At 1/3 or less of its max HP, this Pokemon's Grass-type attacks have 1.5x power.",
|
|
@@ -900,7 +995,7 @@ exports.AbilitiesText = {
|
|
|
900
995
|
},
|
|
901
996
|
owntempo: {
|
|
902
997
|
name: "Own Tempo",
|
|
903
|
-
desc: "This Pokemon cannot be confused. Gaining this Ability while confused cures it.
|
|
998
|
+
desc: "This Pokemon cannot be confused. Gaining this Ability while confused cures it. This Pokemon is immune to the effect of the Intimidate Ability.",
|
|
904
999
|
shortDesc: "This Pokemon cannot be confused. Immune to Intimidate.",
|
|
905
1000
|
gen7: {
|
|
906
1001
|
desc: "This Pokemon cannot be confused. Gaining this Ability while confused cures it.",
|
|
@@ -918,17 +1013,18 @@ exports.AbilitiesText = {
|
|
|
918
1013
|
},
|
|
919
1014
|
pastelveil: {
|
|
920
1015
|
name: "Pastel Veil",
|
|
1016
|
+
desc: "This Pokemon and its allies cannot be poisoned. Gaining this Ability while this Pokemon or its ally is poisoned cures them. If this Ability is being ignored during an effect that causes poison, this Pokemon is cured immediately but its ally is not.",
|
|
921
1017
|
shortDesc: "This Pokemon and its allies cannot be poisoned. On switch-in, cures poisoned allies.",
|
|
922
1018
|
},
|
|
923
1019
|
perishbody: {
|
|
924
1020
|
name: "Perish Body",
|
|
925
|
-
desc: "Making contact with this Pokemon starts the Perish Song effect for it and the attacker. This effect does not happen
|
|
1021
|
+
desc: "Making contact with this Pokemon starts the Perish Song effect for it and the attacker. This effect does not happen for this Pokemon if the attacker already has a perish count.",
|
|
926
1022
|
shortDesc: "Making contact with this Pokemon starts the Perish Song effect for it and the attacker.",
|
|
927
1023
|
start: " Both Pok\u00E9mon will faint in three turns!",
|
|
928
1024
|
},
|
|
929
1025
|
pickpocket: {
|
|
930
1026
|
name: "Pickpocket",
|
|
931
|
-
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
|
|
1027
|
+
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. This effect is prevented if the move had a secondary effect removed by the Sheer Force Ability.",
|
|
932
1028
|
shortDesc: "If this Pokemon has no item and is hit by a contact move, it steals the attacker's item.",
|
|
933
1029
|
},
|
|
934
1030
|
pickup: {
|
|
@@ -980,6 +1076,7 @@ exports.AbilitiesText = {
|
|
|
980
1076
|
},
|
|
981
1077
|
poisontouch: {
|
|
982
1078
|
name: "Poison Touch",
|
|
1079
|
+
desc: "This Pokemon's contact moves have a 30% chance of poisoning. This effect comes after a move's inherent secondary effect chance.",
|
|
983
1080
|
shortDesc: "This Pokemon's contact moves have a 30% chance of poisoning.",
|
|
984
1081
|
},
|
|
985
1082
|
powerconstruct: {
|
|
@@ -991,28 +1088,34 @@ exports.AbilitiesText = {
|
|
|
991
1088
|
},
|
|
992
1089
|
powerofalchemy: {
|
|
993
1090
|
name: "Power of Alchemy",
|
|
994
|
-
desc: "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are
|
|
1091
|
+
desc: "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are 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.",
|
|
995
1092
|
shortDesc: "This Pokemon copies the Ability of an ally that faints.",
|
|
996
1093
|
gen7: {
|
|
997
|
-
desc: "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are
|
|
1094
|
+
desc: "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are 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.",
|
|
998
1095
|
},
|
|
999
1096
|
changeAbility: "#receiver",
|
|
1000
1097
|
},
|
|
1001
1098
|
powerspot: {
|
|
1002
1099
|
name: "Power Spot",
|
|
1100
|
+
desc: "This Pokemon's allies have the power of their moves multiplied by 1.3. This affects Doom Desire and Future Sight, even if the user is not on the field.",
|
|
1003
1101
|
shortDesc: "This Pokemon's allies have the power of their moves multiplied by 1.3.",
|
|
1004
1102
|
},
|
|
1005
1103
|
prankster: {
|
|
1006
1104
|
name: "Prankster",
|
|
1105
|
+
desc: "This Pokemon's non-damaging moves have their priority increased by 1. Opposing Dark-type Pokemon are immune to these moves, and any move called by these moves, if the resulting user of the move has this Ability.",
|
|
1007
1106
|
shortDesc: "This Pokemon's Status moves have priority raised by 1, but Dark types are immune.",
|
|
1008
1107
|
gen6: {
|
|
1108
|
+
desc: "This Pokemon's non-damaging moves have their priority increased by 1.",
|
|
1009
1109
|
shortDesc: "This Pokemon's non-damaging moves have their priority increased by 1.",
|
|
1010
1110
|
},
|
|
1011
1111
|
},
|
|
1012
1112
|
pressure: {
|
|
1013
1113
|
name: "Pressure",
|
|
1014
|
-
desc: "If this Pokemon is the target of an opposing Pokemon's move, that move loses one additional PP.",
|
|
1114
|
+
desc: "If this Pokemon is the target of an opposing Pokemon's move, that move loses one additional PP. Imprison and Snatch also lose one additional PP when used by an opposing Pokemon, but Sticky Web does not.",
|
|
1015
1115
|
shortDesc: "If this Pokemon is the target of a foe's move, that move loses one additional PP.",
|
|
1116
|
+
gen5: {
|
|
1117
|
+
desc: "If this Pokemon is the target of an opposing Pokemon's move, that move loses one additional PP. Imprison and Snatch also lose one additional PP when used by an opposing Pokemon.",
|
|
1118
|
+
},
|
|
1016
1119
|
gen4: {
|
|
1017
1120
|
desc: "If this Pokemon is the target of another Pokemon's move, that move loses one additional PP.",
|
|
1018
1121
|
shortDesc: "If this Pokemon is the target of a move, that move loses one additional PP.",
|
|
@@ -1021,12 +1124,11 @@ exports.AbilitiesText = {
|
|
|
1021
1124
|
},
|
|
1022
1125
|
primordialsea: {
|
|
1023
1126
|
name: "Primordial Sea",
|
|
1024
|
-
desc: "On switch-in, the weather becomes
|
|
1127
|
+
desc: "On switch-in, the weather becomes Primordial Sea, which includes all the effects of Rain Dance and prevents damaging Fire-type moves from executing. This weather remains in effect until this Ability is no longer active for any Pokemon, or the weather is changed by the Delta Stream or Desolate Land Abilities.",
|
|
1025
1128
|
shortDesc: "On switch-in, heavy rain begins until this Ability is not active in battle.",
|
|
1026
1129
|
},
|
|
1027
1130
|
prismarmor: {
|
|
1028
1131
|
name: "Prism Armor",
|
|
1029
|
-
desc: "This Pokemon receives 3/4 damage from supereffective attacks. Moongeist Beam, Sunsteel Strike, and the Mold Breaker, Teravolt, and Turboblaze Abilities cannot ignore this Ability.",
|
|
1030
1132
|
shortDesc: "This Pokemon receives 3/4 damage from supereffective attacks.",
|
|
1031
1133
|
},
|
|
1032
1134
|
propellertail: {
|
|
@@ -1064,12 +1166,15 @@ exports.AbilitiesText = {
|
|
|
1064
1166
|
},
|
|
1065
1167
|
quickfeet: {
|
|
1066
1168
|
name: "Quick Feet",
|
|
1067
|
-
desc: "If this Pokemon has a non-volatile status condition, its Speed is multiplied by 1.5
|
|
1169
|
+
desc: "If this Pokemon has a non-volatile status condition, its Speed is multiplied by 1.5. This Pokemon ignores the paralysis effect of halving Speed.",
|
|
1068
1170
|
shortDesc: "If this Pokemon is statused, its Speed is 1.5x; ignores Speed drop from paralysis.",
|
|
1171
|
+
gen6: {
|
|
1172
|
+
desc: "If this Pokemon has a non-volatile status condition, its Speed is multiplied by 1.5. This Pokemon ignores the paralysis effect of quartering Speed.",
|
|
1173
|
+
},
|
|
1069
1174
|
},
|
|
1070
1175
|
raindish: {
|
|
1071
1176
|
name: "Rain Dish",
|
|
1072
|
-
desc: "If Rain Dance is active, this Pokemon restores 1/16 of its maximum HP, rounded down, at the end of each turn.
|
|
1177
|
+
desc: "If Rain Dance is active, this Pokemon restores 1/16 of its maximum HP, rounded down, at the end of each turn. This effect is prevented if this Pokemon is holding a Utility Umbrella.",
|
|
1073
1178
|
shortDesc: "If Rain Dance is active, this Pokemon heals 1/16 of its max HP each turn.",
|
|
1074
1179
|
gen7: {
|
|
1075
1180
|
desc: "If Rain Dance is active, this Pokemon restores 1/16 of its maximum HP, rounded down, at the end of each turn.",
|
|
@@ -1077,7 +1182,7 @@ exports.AbilitiesText = {
|
|
|
1077
1182
|
},
|
|
1078
1183
|
rattled: {
|
|
1079
1184
|
name: "Rattled",
|
|
1080
|
-
desc: "This Pokemon's Speed is raised by 1 stage if hit by a Bug-, Dark-, or Ghost-type attack, or Intimidate.",
|
|
1185
|
+
desc: "This Pokemon's Speed is raised by 1 stage if hit by a Bug-, Dark-, or Ghost-type attack, or if an opposing Pokemon affected this Pokemon with the Intimidate Ability.",
|
|
1081
1186
|
shortDesc: "Speed is raised 1 stage if hit by a Bug-, Dark-, or Ghost-type attack, or Intimidated.",
|
|
1082
1187
|
gen7: {
|
|
1083
1188
|
desc: "This Pokemon's Speed is raised by 1 stage if hit by a Bug-, Dark-, or Ghost-type attack.",
|
|
@@ -1086,10 +1191,10 @@ exports.AbilitiesText = {
|
|
|
1086
1191
|
},
|
|
1087
1192
|
receiver: {
|
|
1088
1193
|
name: "Receiver",
|
|
1089
|
-
desc: "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are
|
|
1194
|
+
desc: "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are 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.",
|
|
1090
1195
|
shortDesc: "This Pokemon copies the Ability of an ally that faints.",
|
|
1091
1196
|
gen7: {
|
|
1092
|
-
desc: "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are
|
|
1197
|
+
desc: "This Pokemon copies the Ability of an ally that faints. Abilities that cannot be copied are 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.",
|
|
1093
1198
|
},
|
|
1094
1199
|
changeAbility: " [SOURCE]'s [ABILITY] was taken over!",
|
|
1095
1200
|
},
|
|
@@ -1113,10 +1218,8 @@ exports.AbilitiesText = {
|
|
|
1113
1218
|
},
|
|
1114
1219
|
ripen: {
|
|
1115
1220
|
name: "Ripen",
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
// Check if they are affected by ripen.
|
|
1119
|
-
shortDesc: "When this Pokemon eats a Berry, its effect is doubled.",
|
|
1221
|
+
desc: "When this Pokemon eats certain Berries, the effects are doubled. Berries that restore HP or PP have the amount doubled, Berries that raise stat stages have the amount doubled, Berries that halve damage taken quarter it instead, and a Jaboca Berry or Rowap Berry has the attacker lose 1/4 of its maximum HP, rounded down.",
|
|
1222
|
+
shortDesc: "When this Pokemon eats certain Berries, the effects are doubled.",
|
|
1120
1223
|
},
|
|
1121
1224
|
rivalry: {
|
|
1122
1225
|
name: "Rivalry",
|
|
@@ -1129,13 +1232,20 @@ exports.AbilitiesText = {
|
|
|
1129
1232
|
},
|
|
1130
1233
|
rockhead: {
|
|
1131
1234
|
name: "Rock Head",
|
|
1132
|
-
desc: "This Pokemon does not take recoil damage
|
|
1235
|
+
desc: "This Pokemon does not take recoil damage, except Struggle. Does not affect Life Orb damage or crash damage.",
|
|
1133
1236
|
shortDesc: "This Pokemon does not take recoil damage besides Struggle/Life Orb/crash damage.",
|
|
1237
|
+
gen3: {
|
|
1238
|
+
desc: "This Pokemon does not take recoil damage, except Struggle. Does not affect crash damage.",
|
|
1239
|
+
shortDesc: "This Pokemon does not take recoil damage besides Struggle and crash damage.",
|
|
1240
|
+
},
|
|
1134
1241
|
},
|
|
1135
1242
|
roughskin: {
|
|
1136
1243
|
name: "Rough Skin",
|
|
1137
1244
|
desc: "Pokemon making contact with this Pokemon lose 1/8 of their maximum HP, rounded down.",
|
|
1138
1245
|
shortDesc: "Pokemon making contact with this Pokemon lose 1/8 of their max HP.",
|
|
1246
|
+
gen4: {
|
|
1247
|
+
desc: "Pokemon making contact with this Pokemon lose 1/8 of their maximum HP, rounded down. This effect does not happen if this Pokemon did not lose HP from the attack.",
|
|
1248
|
+
},
|
|
1139
1249
|
gen3: {
|
|
1140
1250
|
desc: "Pokemon making contact with this Pokemon lose 1/16 of their maximum HP, rounded down. This effect does not happen if this Pokemon did not lose HP from the attack.",
|
|
1141
1251
|
shortDesc: "Pokemon making contact with this Pokemon lose 1/16 of their max HP.",
|
|
@@ -1158,8 +1268,8 @@ exports.AbilitiesText = {
|
|
|
1158
1268
|
},
|
|
1159
1269
|
sandspit: {
|
|
1160
1270
|
name: "Sand Spit",
|
|
1161
|
-
desc: "When this Pokemon is hit by an attack, Sandstorm begins. This effect
|
|
1162
|
-
shortDesc: "When this Pokemon is hit, Sandstorm begins.",
|
|
1271
|
+
desc: "When this Pokemon is hit by an attack, the effect of Sandstorm begins. This effect comes after the effects of Max and G-Max Moves.",
|
|
1272
|
+
shortDesc: "When this Pokemon is hit by an attack, the effect of Sandstorm begins.",
|
|
1163
1273
|
},
|
|
1164
1274
|
sandstream: {
|
|
1165
1275
|
name: "Sand Stream",
|
|
@@ -1167,7 +1277,7 @@ exports.AbilitiesText = {
|
|
|
1167
1277
|
},
|
|
1168
1278
|
sandveil: {
|
|
1169
1279
|
name: "Sand Veil",
|
|
1170
|
-
desc: "If Sandstorm is active, this Pokemon
|
|
1280
|
+
desc: "If Sandstorm is active, the accuracy of moves used against this Pokemon is multiplied by 0.8. This Pokemon takes no damage from Sandstorm.",
|
|
1171
1281
|
shortDesc: "If Sandstorm is active, this Pokemon's evasiveness is 1.25x; immunity to Sandstorm.",
|
|
1172
1282
|
},
|
|
1173
1283
|
sapsipper: {
|
|
@@ -1184,7 +1294,7 @@ exports.AbilitiesText = {
|
|
|
1184
1294
|
},
|
|
1185
1295
|
scrappy: {
|
|
1186
1296
|
name: "Scrappy",
|
|
1187
|
-
desc: "This Pokemon can hit Ghost types with Normal- and Fighting-type moves.
|
|
1297
|
+
desc: "This Pokemon can hit Ghost types with Normal- and Fighting-type moves. This Pokemon is immune to the effect of the Intimidate Ability.",
|
|
1188
1298
|
shortDesc: "Fighting, Normal moves hit Ghost. Immune to Intimidate.",
|
|
1189
1299
|
gen7: {
|
|
1190
1300
|
desc: "This Pokemon can hit Ghost types with Normal- and Fighting-type moves.",
|
|
@@ -1197,17 +1307,31 @@ exports.AbilitiesText = {
|
|
|
1197
1307
|
},
|
|
1198
1308
|
serenegrace: {
|
|
1199
1309
|
name: "Serene Grace",
|
|
1310
|
+
desc: "This Pokemon's moves have their secondary effect chance doubled. This effect stacks with the Rainbow effect, except for secondary effects that cause the target to flinch.",
|
|
1200
1311
|
shortDesc: "This Pokemon's moves have their secondary effect chance doubled.",
|
|
1312
|
+
gen4: {
|
|
1313
|
+
desc: "This Pokemon's moves have their secondary effect chance doubled.",
|
|
1314
|
+
},
|
|
1201
1315
|
},
|
|
1202
1316
|
shadowshield: {
|
|
1203
1317
|
name: "Shadow Shield",
|
|
1204
|
-
desc: "If this Pokemon is at full HP, damage taken from attacks is halved. Moongeist Beam, Sunsteel Strike, and the Mold Breaker, Teravolt, and Turboblaze Abilities cannot ignore this Ability.",
|
|
1205
1318
|
shortDesc: "If this Pokemon is at full HP, damage taken from attacks is halved.",
|
|
1206
1319
|
},
|
|
1207
1320
|
shadowtag: {
|
|
1208
1321
|
name: "Shadow Tag",
|
|
1209
|
-
desc: "Prevents
|
|
1210
|
-
shortDesc: "Prevents
|
|
1322
|
+
desc: "Prevents opposing Pokemon from choosing to switch out, unless they are holding a Shed Shell, are a Ghost type, or also have this Ability.",
|
|
1323
|
+
shortDesc: "Prevents foes from choosing to switch unless they also have this Ability.",
|
|
1324
|
+
gen6: {
|
|
1325
|
+
desc: "Prevents adjacent opposing Pokemon from choosing to switch out, unless they are holding a Shed Shell, are a Ghost type, or also have this Ability.",
|
|
1326
|
+
shortDesc: "Prevents adjacent foes from choosing to switch unless they also have this Ability.",
|
|
1327
|
+
},
|
|
1328
|
+
gen5: {
|
|
1329
|
+
desc: "Prevents adjacent opposing Pokemon from choosing to switch out, unless they are holding a Shed Shell or also have this Ability.",
|
|
1330
|
+
},
|
|
1331
|
+
gen4: {
|
|
1332
|
+
desc: "Prevents opposing Pokemon from choosing to switch out, unless they are holding a Shed Shell or also have this Ability.",
|
|
1333
|
+
shortDesc: "Prevents foes from choosing to switch unless they also have this Ability.",
|
|
1334
|
+
},
|
|
1211
1335
|
gen3: {
|
|
1212
1336
|
desc: "Prevents opposing Pokemon from choosing to switch out.",
|
|
1213
1337
|
shortDesc: "Prevents opposing Pokemon from choosing to switch out.",
|
|
@@ -1239,31 +1363,45 @@ exports.AbilitiesText = {
|
|
|
1239
1363
|
},
|
|
1240
1364
|
shieldsdown: {
|
|
1241
1365
|
name: "Shields Down",
|
|
1242
|
-
desc: "If this Pokemon is a Minior, it changes to its Core forme if it has 1/2 or less of its maximum HP, and changes to Meteor Form if it has more than 1/2 its maximum HP. This check is done on switch-in and at the end of each turn. While in its Meteor Form, it cannot become affected by non-volatile status
|
|
1366
|
+
desc: "If this Pokemon is a Minior, it changes to its Core forme if it has 1/2 or less of its maximum HP, and changes to Meteor Form if it has more than 1/2 its maximum HP. This check is done on switch-in and at the end of each turn. While in its Meteor Form, it cannot become affected by a non-volatile status condition or Yawn.",
|
|
1243
1367
|
shortDesc: "If Minior, switch-in/end of turn it changes to Core at 1/2 max HP or less, else Meteor.",
|
|
1244
|
-
// n.b. this isn't a bug, the game actually says "Shields Down deactivated" on first transformation
|
|
1245
|
-
// https://www.youtube.com/watch?v=SThjYBz4SEA
|
|
1246
1368
|
transform: "Shields Down deactivated!\n([POKEMON] shielded itself.)",
|
|
1247
1369
|
transformEnd: "Shields Down activated!\n([POKEMON] stopped shielding itself.)",
|
|
1248
1370
|
},
|
|
1249
1371
|
simple: {
|
|
1250
1372
|
name: "Simple",
|
|
1251
|
-
|
|
1252
|
-
|
|
1373
|
+
shortDesc: "When one of this Pokemon's stat stages is raised or lowered, the amount is doubled.",
|
|
1374
|
+
gen7: {
|
|
1375
|
+
desc: "When one of this Pokemon's stat stages is raised or lowered, the amount is doubled. This Ability does not affect stat stage increases received from Z-Power effects that happen before a Status Z-Move is used.",
|
|
1376
|
+
},
|
|
1253
1377
|
gen6: {
|
|
1254
|
-
desc: "When this Pokemon's stat stages
|
|
1378
|
+
desc: "When one of this Pokemon's stat stages is raised or lowered, the amount is doubled.",
|
|
1255
1379
|
},
|
|
1256
1380
|
gen4: {
|
|
1381
|
+
desc: "This Pokemon's stat stages are considered doubled during stat calculations. A stat stage cannot be considered more than 6 or less than -6.",
|
|
1257
1382
|
shortDesc: "This Pokemon's stat stages are considered doubled during stat calculations.",
|
|
1258
1383
|
},
|
|
1259
1384
|
},
|
|
1260
1385
|
skilllink: {
|
|
1261
1386
|
name: "Skill Link",
|
|
1387
|
+
desc: "This Pokemon's multi-hit attacks always hit the maximum number of times. Triple Kick and Triple Axel do not check accuracy for the second and third hits.",
|
|
1262
1388
|
shortDesc: "This Pokemon's multi-hit attacks always hit the maximum number of times.",
|
|
1389
|
+
gen7: {
|
|
1390
|
+
desc: "This Pokemon's multi-hit attacks always hit the maximum number of times. Triple Kick does not check accuracy for the second and third hits.",
|
|
1391
|
+
},
|
|
1392
|
+
gen4: {
|
|
1393
|
+
desc: "This Pokemon's multi-hit attacks always hit the maximum number of times. Does not affect Triple Kick.",
|
|
1394
|
+
},
|
|
1263
1395
|
},
|
|
1264
1396
|
slowstart: {
|
|
1265
1397
|
name: "Slow Start",
|
|
1266
1398
|
shortDesc: "On switch-in, this Pokemon's Attack and Speed are halved for 5 turns.",
|
|
1399
|
+
gen7: {
|
|
1400
|
+
desc: "On switch-in, this Pokemon's Attack and Speed are halved for 5 turns. During the effect, if this Pokemon uses a generic Z-Move based on a special move, its Special Attack is halved during damage calculation.",
|
|
1401
|
+
},
|
|
1402
|
+
gen6: {
|
|
1403
|
+
desc: "On switch-in, this Pokemon's Attack and Speed are halved for 5 turns.",
|
|
1404
|
+
},
|
|
1267
1405
|
start: " [POKEMON] can't get it going!",
|
|
1268
1406
|
end: " [POKEMON] finally got its act together!",
|
|
1269
1407
|
},
|
|
@@ -1277,7 +1415,7 @@ exports.AbilitiesText = {
|
|
|
1277
1415
|
},
|
|
1278
1416
|
snowcloak: {
|
|
1279
1417
|
name: "Snow Cloak",
|
|
1280
|
-
desc: "If Hail is active, this Pokemon
|
|
1418
|
+
desc: "If Hail is active, the accuracy of moves used against this Pokemon is multiplied by 0.8. This Pokemon takes no damage from Hail.",
|
|
1281
1419
|
shortDesc: "If Hail is active, this Pokemon's evasiveness is 1.25x; immunity to Hail.",
|
|
1282
1420
|
},
|
|
1283
1421
|
snowwarning: {
|
|
@@ -1286,7 +1424,7 @@ exports.AbilitiesText = {
|
|
|
1286
1424
|
},
|
|
1287
1425
|
solarpower: {
|
|
1288
1426
|
name: "Solar Power",
|
|
1289
|
-
desc: "If Sunny Day is active, this Pokemon's Special Attack is multiplied by 1.5 and it loses 1/8 of its maximum HP, rounded down, at the end of each turn.
|
|
1427
|
+
desc: "If Sunny Day is active, this Pokemon's Special Attack is multiplied by 1.5 and it loses 1/8 of its maximum HP, rounded down, at the end of each turn. These effects are prevented if the Pokemon is holding a Utility Umbrella.",
|
|
1290
1428
|
shortDesc: "If Sunny Day is active, this Pokemon's Sp. Atk is 1.5x; loses 1/8 max HP per turn.",
|
|
1291
1429
|
gen7: {
|
|
1292
1430
|
desc: "If Sunny Day is active, this Pokemon's Special Attack is multiplied by 1.5 and it loses 1/8 of its maximum HP, rounded down, at the end of each turn.",
|
|
@@ -1298,12 +1436,14 @@ exports.AbilitiesText = {
|
|
|
1298
1436
|
},
|
|
1299
1437
|
soulheart: {
|
|
1300
1438
|
name: "Soul-Heart",
|
|
1301
|
-
|
|
1302
|
-
shortDesc: "This Pokemon's Sp. Atk is raised by 1 stage when another Pokemon faints.",
|
|
1439
|
+
shortDesc: "This Pokemon's Special Attack is raised by 1 stage when another Pokemon faints.",
|
|
1303
1440
|
},
|
|
1304
1441
|
soundproof: {
|
|
1305
1442
|
name: "Soundproof",
|
|
1306
|
-
shortDesc: "This Pokemon is immune to sound-based moves,
|
|
1443
|
+
shortDesc: "This Pokemon is immune to sound-based moves, unless it used the move.",
|
|
1444
|
+
gen7: {
|
|
1445
|
+
shortDesc: "This Pokemon is immune to sound-based moves, including Heal Bell.",
|
|
1446
|
+
},
|
|
1307
1447
|
gen5: {
|
|
1308
1448
|
shortDesc: "This Pokemon is immune to sound-based moves, except Heal Bell.",
|
|
1309
1449
|
},
|
|
@@ -1318,7 +1458,7 @@ exports.AbilitiesText = {
|
|
|
1318
1458
|
},
|
|
1319
1459
|
stakeout: {
|
|
1320
1460
|
name: "Stakeout",
|
|
1321
|
-
shortDesc: "This Pokemon's
|
|
1461
|
+
shortDesc: "This Pokemon's offensive stat is doubled against a target that switched in this turn.",
|
|
1322
1462
|
},
|
|
1323
1463
|
stall: {
|
|
1324
1464
|
name: "Stall",
|
|
@@ -1334,8 +1474,11 @@ exports.AbilitiesText = {
|
|
|
1334
1474
|
},
|
|
1335
1475
|
stancechange: {
|
|
1336
1476
|
name: "Stance Change",
|
|
1337
|
-
desc: "If this Pokemon is an Aegislash, it changes to Blade Forme before
|
|
1477
|
+
desc: "If this Pokemon is an Aegislash, it changes to Blade Forme before using an attacking move, and changes to Shield Forme before using King's Shield.",
|
|
1338
1478
|
shortDesc: "If Aegislash, changes Forme to Blade before attacks and Shield before King's Shield.",
|
|
1479
|
+
gen6: {
|
|
1480
|
+
desc: "If this Pokemon is an Aegislash, it changes to Blade Forme before attempting to use an attacking move, and changes to Shield Forme before attempting to use King's Shield.",
|
|
1481
|
+
},
|
|
1339
1482
|
transform: "Changed to Blade Forme!",
|
|
1340
1483
|
transformEnd: "Changed to Shield Forme!",
|
|
1341
1484
|
},
|
|
@@ -1356,14 +1499,16 @@ exports.AbilitiesText = {
|
|
|
1356
1499
|
},
|
|
1357
1500
|
steamengine: {
|
|
1358
1501
|
name: "Steam Engine",
|
|
1502
|
+
desc: "This Pokemon's Speed is raised by 6 stages after it is damaged by a Fire- or Water-type move.",
|
|
1359
1503
|
shortDesc: "This Pokemon's Speed is raised by 6 stages after it is damaged by Fire/Water moves.",
|
|
1360
1504
|
},
|
|
1361
1505
|
steelworker: {
|
|
1362
1506
|
name: "Steelworker",
|
|
1363
|
-
shortDesc: "This Pokemon's
|
|
1507
|
+
shortDesc: "This Pokemon's offensive stat is multiplied by 1.5 while using a Steel-type attack.",
|
|
1364
1508
|
},
|
|
1365
1509
|
steelyspirit: {
|
|
1366
1510
|
name: "Steely Spirit",
|
|
1511
|
+
desc: "This Pokemon and its allies' Steel-type moves have their power multiplied by 1.5. This affects Doom Desire even if the user is not on the field.",
|
|
1367
1512
|
shortDesc: "This Pokemon and its allies' Steel-type moves have their power multiplied by 1.5.",
|
|
1368
1513
|
},
|
|
1369
1514
|
stench: {
|
|
@@ -1377,12 +1522,16 @@ exports.AbilitiesText = {
|
|
|
1377
1522
|
},
|
|
1378
1523
|
stickyhold: {
|
|
1379
1524
|
name: "Sticky Hold",
|
|
1380
|
-
|
|
1525
|
+
desc: "This Pokemon cannot lose its held item due to another Pokemon's Ability or attack, unless the attack knocks out this Pokemon. A Sticky Barb will be transferred to other Pokemon regardless of this Ability.",
|
|
1526
|
+
shortDesc: "This Pokemon cannot lose its held item due to another Pokemon's Ability or attack.",
|
|
1527
|
+
gen4: {
|
|
1528
|
+
desc: "This Pokemon cannot lose its held item due to another Pokemon's attack, even if the attack knocks out this Pokemon. A Sticky Barb will be transferred to other Pokemon regardless of this Ability.",
|
|
1529
|
+
},
|
|
1381
1530
|
block: " [POKEMON]'s item cannot be removed!",
|
|
1382
1531
|
},
|
|
1383
1532
|
stormdrain: {
|
|
1384
1533
|
name: "Storm Drain",
|
|
1385
|
-
desc: "This Pokemon is immune to Water-type moves and raises its Special Attack by 1 stage when hit by a Water-type move. If this Pokemon is not the target of a single-target Water-type move used by another Pokemon, this Pokemon redirects that move to itself if it is within the range of that move.",
|
|
1534
|
+
desc: "This Pokemon is immune to Water-type moves and raises its Special Attack by 1 stage when hit by a Water-type move. If this Pokemon is not the target of a single-target Water-type move used by another Pokemon, this Pokemon redirects that move to itself if it is within the range of that move. If multiple Pokemon could redirect with this Ability, it goes to the one with the highest Speed, or in the case of a tie to the one that has had this Ability active longer.",
|
|
1386
1535
|
shortDesc: "This Pokemon draws Water moves to itself to raise Sp. Atk by 1; Water immunity.",
|
|
1387
1536
|
gen4: {
|
|
1388
1537
|
desc: "If this Pokemon is not the target of a single-target Water-type move used by another Pokemon, this Pokemon redirects that move to itself.",
|
|
@@ -1420,8 +1569,8 @@ exports.AbilitiesText = {
|
|
|
1420
1569
|
},
|
|
1421
1570
|
swarm: {
|
|
1422
1571
|
name: "Swarm",
|
|
1423
|
-
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its
|
|
1424
|
-
shortDesc: "At 1/3 or less of its max HP, this Pokemon's
|
|
1572
|
+
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its offensive stat is multiplied by 1.5 while using a Bug-type attack.",
|
|
1573
|
+
shortDesc: "At 1/3 or less of its max HP, this Pokemon's offensive stat is 1.5x with Bug attacks.",
|
|
1425
1574
|
gen4: {
|
|
1426
1575
|
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its Bug-type attacks have their power multiplied by 1.5.",
|
|
1427
1576
|
shortDesc: "At 1/3 or less of its max HP, this Pokemon's Bug-type attacks have 1.5x power.",
|
|
@@ -1429,12 +1578,13 @@ exports.AbilitiesText = {
|
|
|
1429
1578
|
},
|
|
1430
1579
|
sweetveil: {
|
|
1431
1580
|
name: "Sweet Veil",
|
|
1432
|
-
|
|
1581
|
+
desc: "This Pokemon and its allies cannot fall asleep, but those already asleep do not wake up immediately. This Pokemon and its allies cannot use Rest successfully or become affected by Yawn, and those previously affected will not fall asleep.",
|
|
1582
|
+
shortDesc: "This Pokemon and its allies cannot fall asleep; those already asleep do not wake up.",
|
|
1433
1583
|
block: " [POKEMON] can't fall asleep due to a veil of sweetness!",
|
|
1434
1584
|
},
|
|
1435
1585
|
swiftswim: {
|
|
1436
1586
|
name: "Swift Swim",
|
|
1437
|
-
desc: "If Rain Dance is active
|
|
1587
|
+
desc: "If Rain Dance is active, this Pokemon's Speed is doubled. This effect is prevented if this Pokemon is holding a Utility Umbrella.",
|
|
1438
1588
|
shortDesc: "If Rain Dance is active, this Pokemon's Speed is doubled.",
|
|
1439
1589
|
gen7: {
|
|
1440
1590
|
desc: "If Rain Dance is active, this Pokemon's Speed is doubled.",
|
|
@@ -1442,8 +1592,14 @@ exports.AbilitiesText = {
|
|
|
1442
1592
|
},
|
|
1443
1593
|
symbiosis: {
|
|
1444
1594
|
name: "Symbiosis",
|
|
1445
|
-
desc: "If an ally uses its item, this Pokemon gives its item to that ally immediately. Does not activate if the ally's item was stolen or knocked off.",
|
|
1595
|
+
desc: "If an ally uses its item, this Pokemon gives its item to that ally immediately. Does not activate if the ally's item was stolen or knocked off, or if the ally used an Eject Button or Eject Pack.",
|
|
1446
1596
|
shortDesc: "If an ally uses its item, this Pokemon gives its item to that ally immediately.",
|
|
1597
|
+
gen7: {
|
|
1598
|
+
desc: "If an ally uses its item, this Pokemon gives its item to that ally immediately. Does not activate if the ally's item was stolen or knocked off, or if the ally used an Eject Button.",
|
|
1599
|
+
},
|
|
1600
|
+
gen6: {
|
|
1601
|
+
desc: "If an ally uses its item, this Pokemon gives its item to that ally immediately. Does not activate if the ally's item was stolen or knocked off.",
|
|
1602
|
+
},
|
|
1447
1603
|
activate: " [POKEMON] shared its [ITEM] with [TARGET]!",
|
|
1448
1604
|
},
|
|
1449
1605
|
synchronize: {
|
|
@@ -1464,8 +1620,12 @@ exports.AbilitiesText = {
|
|
|
1464
1620
|
},
|
|
1465
1621
|
technician: {
|
|
1466
1622
|
name: "Technician",
|
|
1467
|
-
desc: "This Pokemon's moves of 60 power or less have their power multiplied by 1.5.
|
|
1468
|
-
shortDesc: "This Pokemon's moves of 60 power or less have 1.5x power
|
|
1623
|
+
desc: "This Pokemon's moves of 60 power or less have their power multiplied by 1.5, including Struggle. This effect comes after a move's effect changes its own power.",
|
|
1624
|
+
shortDesc: "This Pokemon's moves of 60 power or less have 1.5x power, including Struggle.",
|
|
1625
|
+
gen4: {
|
|
1626
|
+
desc: "This Pokemon's moves of 60 power or less have their power multiplied by 1.5, except Struggle. This effect comes after a move's effect changes its own power, as well as the effects of Charge and Helping Hand.",
|
|
1627
|
+
shortDesc: "This Pokemon's moves of 60 power or less have 1.5x power, except Struggle.",
|
|
1628
|
+
},
|
|
1469
1629
|
},
|
|
1470
1630
|
telepathy: {
|
|
1471
1631
|
name: "Telepathy",
|
|
@@ -1474,7 +1634,7 @@ exports.AbilitiesText = {
|
|
|
1474
1634
|
},
|
|
1475
1635
|
teravolt: {
|
|
1476
1636
|
name: "Teravolt",
|
|
1477
|
-
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,
|
|
1637
|
+
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, Dazzling, Disguise, Dry Skin, 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.",
|
|
1478
1638
|
shortDesc: "This Pokemon's moves and their effects ignore the Abilities of other Pokemon.",
|
|
1479
1639
|
gen7: {
|
|
1480
1640
|
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.",
|
|
@@ -1489,11 +1649,16 @@ exports.AbilitiesText = {
|
|
|
1489
1649
|
},
|
|
1490
1650
|
thickfat: {
|
|
1491
1651
|
name: "Thick Fat",
|
|
1492
|
-
desc: "If a Pokemon uses a Fire- or Ice-type attack against this Pokemon, that Pokemon's
|
|
1493
|
-
shortDesc: "Fire
|
|
1652
|
+
desc: "If a Pokemon uses a Fire- or Ice-type attack against this Pokemon, that Pokemon's offensive stat is halved when calculating the damage to this Pokemon.",
|
|
1653
|
+
shortDesc: "Fire-/Ice-type moves against this Pokemon deal damage with a halved offensive stat.",
|
|
1494
1654
|
gen4: {
|
|
1655
|
+
desc: "The power of Fire- and Ice-type attacks against this Pokemon is halved.",
|
|
1495
1656
|
shortDesc: "The power of Fire- and Ice-type attacks against this Pokemon is halved.",
|
|
1496
1657
|
},
|
|
1658
|
+
gen3: {
|
|
1659
|
+
desc: "If a Pokemon uses a Fire- or Ice-type attack against this Pokemon, that Pokemon's Special Attack is halved when calculating the damage to this Pokemon.",
|
|
1660
|
+
shortDesc: "Fire-/Ice-type moves against this Pokemon deal damage with a halved Sp. Atk stat.",
|
|
1661
|
+
},
|
|
1497
1662
|
},
|
|
1498
1663
|
tintedlens: {
|
|
1499
1664
|
name: "Tinted Lens",
|
|
@@ -1501,8 +1666,8 @@ exports.AbilitiesText = {
|
|
|
1501
1666
|
},
|
|
1502
1667
|
torrent: {
|
|
1503
1668
|
name: "Torrent",
|
|
1504
|
-
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its
|
|
1505
|
-
shortDesc: "At 1/3 or less of its max HP, this Pokemon's
|
|
1669
|
+
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its offensive stat is multiplied by 1.5 while using a Water-type attack.",
|
|
1670
|
+
shortDesc: "At 1/3 or less of its max HP, this Pokemon's offensive stat is 1.5x with Water attacks.",
|
|
1506
1671
|
gen4: {
|
|
1507
1672
|
desc: "When this Pokemon has 1/3 or less of its maximum HP, rounded down, its Water-type attacks have their power multiplied by 1.5.",
|
|
1508
1673
|
shortDesc: "At 1/3 or less of its max HP, this Pokemon's Water-type attacks have 1.5x power.",
|
|
@@ -1519,16 +1684,28 @@ exports.AbilitiesText = {
|
|
|
1519
1684
|
},
|
|
1520
1685
|
trace: {
|
|
1521
1686
|
name: "Trace",
|
|
1522
|
-
desc: "On switch-in,
|
|
1687
|
+
desc: "On switch-in, this Pokemon copies a random opposing Pokemon's Ability. Abilities that cannot be copied are 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, and Zen Mode. If no opposing Pokemon has an Ability that can be copied, this Ability will activate as soon as one does.",
|
|
1523
1688
|
shortDesc: "On switch-in, or when it can, this Pokemon copies a random adjacent foe's Ability.",
|
|
1524
1689
|
gen7: {
|
|
1525
|
-
desc: "On switch-in,
|
|
1690
|
+
desc: "On switch-in, this Pokemon copies a random opposing Pokemon's Ability. Abilities that cannot be copied are Battle Bond, Comatose, Disguise, Flower Gift, Forecast, Illusion, Imposter, Multitype, Power Construct, Power of Alchemy, Receiver, RKS System, Schooling, Shields Down, Stance Change, Trace, and Zen Mode. If no opposing Pokemon has an Ability that can be copied, this Ability will activate as soon as one does.",
|
|
1691
|
+
},
|
|
1692
|
+
gen6: {
|
|
1693
|
+
desc: "On switch-in, this Pokemon copies a random adjacent opposing Pokemon's Ability. Abilities that cannot be copied are Flower Gift, Forecast, Illusion, Imposter, Multitype, Stance Change, Trace, and Zen Mode. If no opposing Pokemon has an Ability that can be copied, this Ability will activate as soon as one does.",
|
|
1694
|
+
},
|
|
1695
|
+
gen5: {
|
|
1696
|
+
desc: "On switch-in, this Pokemon copies a random adjacent opposing Pokemon's Ability. Abilities that cannot be copied are Flower Gift, Forecast, Illusion, Imposter, Multitype, Trace, and Zen Mode. If no opposing Pokemon has an Ability that can be copied, this Ability will activate as soon as one does.",
|
|
1697
|
+
},
|
|
1698
|
+
gen4: {
|
|
1699
|
+
desc: "On switch-in, this Pokemon copies a random opposing Pokemon's Ability. Abilities that cannot be copied are Forecast, Multitype, and Trace. If no opposing Pokemon has an Ability that can be copied, this Ability will activate as soon as one does.",
|
|
1700
|
+
},
|
|
1701
|
+
gen3: {
|
|
1702
|
+
desc: "On switch-in, this Pokemon copies a random opposing Pokemon's Ability.",
|
|
1526
1703
|
},
|
|
1527
1704
|
changeAbility: " [POKEMON] traced [SOURCE]'s [ABILITY]!",
|
|
1528
1705
|
},
|
|
1529
1706
|
transistor: {
|
|
1530
1707
|
name: "Transistor",
|
|
1531
|
-
shortDesc: "This Pokemon's
|
|
1708
|
+
shortDesc: "This Pokemon's offensive stat is multiplied by 1.5 while using an Electric-type attack.",
|
|
1532
1709
|
},
|
|
1533
1710
|
triage: {
|
|
1534
1711
|
name: "Triage",
|
|
@@ -1537,11 +1714,14 @@ exports.AbilitiesText = {
|
|
|
1537
1714
|
truant: {
|
|
1538
1715
|
name: "Truant",
|
|
1539
1716
|
shortDesc: "This Pokemon skips every other turn instead of using a move.",
|
|
1717
|
+
gen3: {
|
|
1718
|
+
desc: "This Pokemon skips every other turn instead of using a move. If this Pokemon replaces a Pokemon that fainted during end-of-turn effects, its first turn will be skipped.",
|
|
1719
|
+
},
|
|
1540
1720
|
cant: "[POKEMON] is loafing around!",
|
|
1541
1721
|
},
|
|
1542
1722
|
turboblaze: {
|
|
1543
1723
|
name: "Turboblaze",
|
|
1544
|
-
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,
|
|
1724
|
+
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, Dazzling, Disguise, Dry Skin, 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.",
|
|
1545
1725
|
shortDesc: "This Pokemon's moves and their effects ignore the Abilities of other Pokemon.",
|
|
1546
1726
|
gen7: {
|
|
1547
1727
|
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.",
|
|
@@ -1561,19 +1741,18 @@ exports.AbilitiesText = {
|
|
|
1561
1741
|
},
|
|
1562
1742
|
unburden: {
|
|
1563
1743
|
name: "Unburden",
|
|
1564
|
-
desc: "If this Pokemon loses its held item for any reason, its Speed is doubled
|
|
1744
|
+
desc: "If this Pokemon loses its held item for any reason, its Speed is doubled as long as it remains active, has this Ability, and is not holding an item.",
|
|
1565
1745
|
shortDesc: "Speed is doubled on held item loss; boost is lost if it switches, gets new item/Ability.",
|
|
1566
1746
|
},
|
|
1567
1747
|
unnerve: {
|
|
1568
1748
|
name: "Unnerve",
|
|
1569
|
-
desc: "While this Pokemon is active, it prevents opposing Pokemon from using their Berries.
|
|
1749
|
+
desc: "While this Pokemon is active, it prevents opposing Pokemon from using their Berries. This Ability activates before hazards and other Abilities take effect.",
|
|
1570
1750
|
shortDesc: "While this Pokemon is active, it prevents opposing Pokemon from using their Berries.",
|
|
1571
1751
|
start: " [TEAM] is too nervous to eat Berries!",
|
|
1572
1752
|
},
|
|
1573
1753
|
unseenfist: {
|
|
1574
1754
|
name: "Unseen Fist",
|
|
1575
|
-
|
|
1576
|
-
shortDesc: "All contact moves hit through protection.",
|
|
1755
|
+
shortDesc: "This Pokemon's contact moves ignore the target's protection, except Max Guard.",
|
|
1577
1756
|
},
|
|
1578
1757
|
victorystar: {
|
|
1579
1758
|
name: "Victory Star",
|
|
@@ -1594,7 +1773,7 @@ exports.AbilitiesText = {
|
|
|
1594
1773
|
},
|
|
1595
1774
|
wanderingspirit: {
|
|
1596
1775
|
name: "Wandering Spirit",
|
|
1597
|
-
desc: "Pokemon making contact with this Pokemon have their Ability swapped with this one. Does not affect
|
|
1776
|
+
desc: "Pokemon making contact with this Pokemon have their Ability swapped with this one. Does not affect Pokemon with the As One, Battle Bond, Comatose, Disguise, Gulp Missile, Hunger Switch, Ice Face, Illusion, Multitype, Neutralizing Gas, Power Construct, RKS System, Schooling, Shields Down, Stance Change, Wonder Guard, or Zen Mode Abilities.",
|
|
1598
1777
|
shortDesc: "Pokemon making contact with this Pokemon have their Ability swapped with this one.",
|
|
1599
1778
|
activate: "#skillswap",
|
|
1600
1779
|
},
|
|
@@ -1605,7 +1784,7 @@ exports.AbilitiesText = {
|
|
|
1605
1784
|
},
|
|
1606
1785
|
waterbubble: {
|
|
1607
1786
|
name: "Water Bubble",
|
|
1608
|
-
desc: "This Pokemon's
|
|
1787
|
+
desc: "This Pokemon's offensive stat is doubled while using a Water-type attack. If a Pokemon uses a Fire-type attack against this Pokemon, that Pokemon's offensive stat is halved when calculating the damage to this Pokemon. This Pokemon cannot be burned. Gaining this Ability while burned cures it.",
|
|
1609
1788
|
shortDesc: "This Pokemon's Water power is 2x; it can't be burned; Fire power against it is halved.",
|
|
1610
1789
|
},
|
|
1611
1790
|
watercompaction: {
|
|
@@ -1631,7 +1810,7 @@ exports.AbilitiesText = {
|
|
|
1631
1810
|
},
|
|
1632
1811
|
wimpout: {
|
|
1633
1812
|
name: "Wimp Out",
|
|
1634
|
-
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
|
|
1813
|
+
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. This effect is prevented if the move had a secondary effect removed by the Sheer Force Ability. This effect applies to both direct and indirect damage, except Curse and Substitute on use, Belly Drum, Pain Split, and confusion damage.",
|
|
1635
1814
|
shortDesc: "This Pokemon switches out when it reaches 1/2 or less of its maximum HP.",
|
|
1636
1815
|
},
|
|
1637
1816
|
wonderguard: {
|
|
@@ -1646,13 +1825,16 @@ exports.AbilitiesText = {
|
|
|
1646
1825
|
},
|
|
1647
1826
|
wonderskin: {
|
|
1648
1827
|
name: "Wonder Skin",
|
|
1649
|
-
desc: "
|
|
1828
|
+
desc: "Non-damaging moves that check accuracy have their accuracy changed to 50% when used against this Pokemon. This effect comes before other effects that modify accuracy.",
|
|
1650
1829
|
shortDesc: "Status moves with accuracy checks are 50% accurate when used on this Pokemon.",
|
|
1651
1830
|
},
|
|
1652
1831
|
zenmode: {
|
|
1653
1832
|
name: "Zen Mode",
|
|
1654
|
-
desc: "If this Pokemon is a Darmanitan or Darmanitan
|
|
1833
|
+
desc: "If this Pokemon is a Darmanitan or Galarian Darmanitan, it changes to Zen Mode if it has 1/2 or less of its maximum HP at the end of a turn. If Darmanitan's HP is above 1/2 of its maximum HP at the end of a turn, it changes back to Standard Mode.",
|
|
1655
1834
|
shortDesc: "If Darmanitan, at end of turn changes Mode to Standard if > 1/2 max HP, else Zen.",
|
|
1835
|
+
gen7: {
|
|
1836
|
+
desc: "If this Pokemon is a Darmanitan, it changes to Zen Mode if it has 1/2 or less of its maximum HP at the end of a turn. If Darmanitan's HP is above 1/2 of its maximum HP at the end of a turn, it changes back to Standard Mode.",
|
|
1837
|
+
},
|
|
1656
1838
|
gen6: {
|
|
1657
1839
|
desc: "If this Pokemon is a Darmanitan, it changes to Zen Mode if it has 1/2 or less of its maximum HP at the end of a turn. If Darmanitan's HP is above 1/2 of its maximum HP at the end of a turn, it changes back to Standard Mode. If Darmanitan loses this Ability while in Zen Mode, it reverts to Standard Mode immediately.",
|
|
1658
1840
|
},
|