Skip to content

Commit

Permalink
Fix Whims in wrong tier
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivaD173 committed Jan 8, 2025
1 parent 53f6533 commit cff5018
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion data/formats-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3139,7 +3139,7 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable =
tier: "LC",
},
whimsicott: {
tier: "NU",
tier: "ZU",
doublesTier: "DOU",
natDexTier: "ZU",
},
Expand Down
8 changes: 4 additions & 4 deletions data/mods/gen9vgcgay/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
tailslap: {
"inherit": true,
"accuracy": 100,
shortDesc: "Hits 3-5 Times",
shortDesc: "Hits 3-5 Times.",
multihit: [3, 5],
},
"flameburst": {
Expand Down Expand Up @@ -1042,7 +1042,7 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
},
ragefist: {
inherit: true,
shortDesc: "+50 power each time user was hit. Max: 1000bp",
shortDesc: "+50 power each time user was hit. Max: 1000bp.",
basePowerCallback(pokemon) {
return Math.min(1000, 50 + 50 * pokemon.timesAttacked);
},
Expand Down Expand Up @@ -1193,9 +1193,9 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
fairylock: {
inherit: true,
isNonstandard: null,
shortDesc: "Prevents all Pokemon from switching for next 3 turns.",
shortDesc: "Prevents all Pokemon from switching for 3 turns.",
condition: {
duration: 4,
duration: 3,
onFieldStart(target) {
this.add('-fieldactivate', 'move: Fairy Lock');
},
Expand Down

0 comments on commit cff5018

Please sign in to comment.