mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
Z-A OU: Ban Shed Tail
This commit is contained in:
parent
56a4b2a747
commit
9df07a958d
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1307,7 +1307,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat
|
|||
tier: "OU",
|
||||
},
|
||||
wimpod: {
|
||||
tier: "OU",
|
||||
tier: "LC",
|
||||
},
|
||||
golisopod: {
|
||||
tier: "OU",
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user