diff --git a/config/formats.ts b/config/formats.ts index a30bb99999..937e8f3990 100644 --- a/config/formats.ts +++ b/config/formats.ts @@ -3019,7 +3019,7 @@ export const Formats: import('../sim/dex-formats').FormatList = [ ], mod: 'gen9legendsou', ruleset: ['Standard', 'Sleep Moves Clause', '!Sleep Clause Mod', 'Min Source Gen = 3', 'Terastal Clause'], - banlist: ['Uber', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Quick Claw', 'Baton Pass'], + banlist: ['Uber', 'Arena Trap', 'Moody', 'Power Construct', 'Shadow Tag', 'King\'s Rock', 'Quick Claw', 'Baton Pass', 'Shed Tail'], }, // Randomized Format Spotlight diff --git a/data/mods/gen9legendsou/formats-data.ts b/data/mods/gen9legendsou/formats-data.ts index 0b5092c416..913759c2f3 100644 --- a/data/mods/gen9legendsou/formats-data.ts +++ b/data/mods/gen9legendsou/formats-data.ts @@ -1307,7 +1307,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat tier: "OU", }, wimpod: { - tier: "OU", + tier: "LC", }, golisopod: { tier: "OU", diff --git a/data/pokedex.ts b/data/pokedex.ts index 149c2e8186..f4196fc332 100644 --- a/data/pokedex.ts +++ b/data/pokedex.ts @@ -19014,7 +19014,7 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { weightkg: 315, color: "Blue", eggGroups: ["Dragon", "Mineral"], - requiredItem: "Baxcaliburite", + requiredItem: "Baxcalibrite", }, gimmighoul: { num: 999, diff --git a/server/chat-plugins/othermetas.ts b/server/chat-plugins/othermetas.ts index eb6a01d60f..da64edad9c 100644 --- a/server/chat-plugins/othermetas.ts +++ b/server/chat-plugins/othermetas.ts @@ -237,7 +237,7 @@ export const commands: Chat.ChatCommands = { if (!species.otherFormes) throw new Chat.ErrorMessage(`Error: Mega Evolution not found.`); for (const poke of species.otherFormes) { const formeRegex = new RegExp( - `(?:-Douse|-Shock|-Chill|-Burn|-Cornerstone|-Wellspring|-Hearthflame|-Crowned|-Epilogue|-Origin|-Primal|-Mega(?:-[XY])?|${dex.types.names().filter(x => x !== 'Normal').map(x => '-' + x).join('|')})$` + `(?:-Douse|-Shock|-Chill|-Burn|-Cornerstone|-Wellspring|-Hearthflame|-Crowned|-Epilogue|-Origin|-Primal|-Mega(?:-[XYZ])?|${dex.types.names().filter(x => x !== 'Normal').map(x => '-' + x).join('|')})$` ); if (!formeRegex.test(poke)) { continue;