From cff501866a27b90d93af42d69e0272821fb62660 Mon Sep 17 00:00:00 2001 From: Shiva Devarajan Date: Tue, 7 Jan 2025 21:35:41 -0500 Subject: [PATCH] Fix Whims in wrong tier --- data/formats-data.ts | 2 +- data/mods/gen9vgcgay/moves.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/data/formats-data.ts b/data/formats-data.ts index 421e97265896..c8ebd5909205 100644 --- a/data/formats-data.ts +++ b/data/formats-data.ts @@ -3139,7 +3139,7 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = tier: "LC", }, whimsicott: { - tier: "NU", + tier: "ZU", doublesTier: "DOU", natDexTier: "ZU", }, diff --git a/data/mods/gen9vgcgay/moves.ts b/data/mods/gen9vgcgay/moves.ts index aed9a9b3d0b4..024ec3c4c3e3 100644 --- a/data/mods/gen9vgcgay/moves.ts +++ b/data/mods/gen9vgcgay/moves.ts @@ -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": { @@ -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); }, @@ -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'); },