Z-A OU: Ban Shed Tail

This commit is contained in:
Kris Johnson 2025-12-12 00:59:18 -07:00
parent 56a4b2a747
commit 9df07a958d
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -1307,7 +1307,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
tier: "OU",
},
wimpod: {
tier: "OU",
tier: "LC",
},
golisopod: {
tier: "OU",

View File

@ -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,

View File

@ -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;