mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-06-02 22:08:36 -05:00
Disallow Arceus, Keldeo, and genesect formes to be used in gen 8 (#5978)
This commit is contained in:
parent
ca392d979c
commit
d9b07bf848
|
|
@ -4910,70 +4910,88 @@ let BattleFormatsData = {
|
|||
arceusbug: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Insect Plate", "Buginium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusdark: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Dread Plate", "Darkinium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusdragon: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Draco Plate", "Dragonium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceuselectric: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Zap Plate", "Electrium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusfairy: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Pixie Plate", "Fairium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusfighting: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Fist Plate", "Fightinium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusfire: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Flame Plate", "Firium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusflying: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Sky Plate", "Flyinium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusghost: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Spooky Plate", "Ghostium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusgrass: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Meadow Plate", "Grassium Z"],
|
||||
isNonstandard: "Past",
|
||||
tier: "Illegal",
|
||||
},
|
||||
arceusground: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Earth Plate", "Groundium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusice: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Icicle Plate", "Icium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceuspoison: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Toxic Plate", "Poisonium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceuspsychic: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Mind Plate", "Psychium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceusrock: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Stone Plate", "Rockium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceussteel: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Iron Plate", "Steelium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
arceuswater: {
|
||||
eventOnly: true,
|
||||
requiredItems: ["Splash Plate", "Waterium Z"],
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
victini: {
|
||||
eventPokemon: [
|
||||
|
|
@ -6011,6 +6029,7 @@ let BattleFormatsData = {
|
|||
keldeoresolute: {
|
||||
eventOnly: true,
|
||||
requiredMove: "Secret Sword",
|
||||
isUnreleased: true,
|
||||
},
|
||||
meloetta: {
|
||||
eventPokemon: [
|
||||
|
|
@ -6041,18 +6060,22 @@ let BattleFormatsData = {
|
|||
genesectburn: {
|
||||
eventOnly: true,
|
||||
requiredItem: "Burn Drive",
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
genesectchill: {
|
||||
eventOnly: true,
|
||||
requiredItem: "Chill Drive",
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
genesectdouse: {
|
||||
eventOnly: true,
|
||||
requiredItem: "Douse Drive",
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
genesectshock: {
|
||||
eventOnly: true,
|
||||
requiredItem: "Shock Drive",
|
||||
isNonstandard: "Past",
|
||||
},
|
||||
chespin: {
|
||||
isNonstandard: "Past",
|
||||
|
|
|
|||
|
|
@ -3509,102 +3509,119 @@ let BattleFormatsData = {
|
|||
randomDoubleBattleMoves: ["swordsdance", "xscissor", "stoneedge", "recover", "earthquake", "ironhead", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Insect Plate", "Buginium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusdark: {
|
||||
randomBattleMoves: ["calmmind", "judgment", "recover", "fireblast", "toxic"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "recover", "focusblast", "safeguard", "snarl", "willowisp", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Dread Plate", "Darkinium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusdragon: {
|
||||
randomBattleMoves: ["swordsdance", "outrage", "extremespeed", "earthquake", "recover", "judgment", "fireblast", "willowisp", "defog"],
|
||||
randomDoubleBattleMoves: ["swordsdance", "dragonclaw", "extremespeed", "earthquake", "recover", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Draco Plate", "Dragonium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceuselectric: {
|
||||
randomBattleMoves: ["calmmind", "judgment", "recover", "icebeam", "earthpower"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "recover", "icebeam", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Zap Plate", "Electrium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusfairy: {
|
||||
randomBattleMoves: ["calmmind", "judgment", "recover", "willowisp", "defog", "earthpower", "toxic"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "recover", "willowisp", "protect", "earthpower", "thunderbolt"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Pixie Plate", "Fairium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusfighting: {
|
||||
randomBattleMoves: ["calmmind", "judgment", "stoneedge", "shadowball", "recover", "roar", "icebeam"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "icebeam", "shadowball", "recover", "willowisp", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Fist Plate", "Fightinium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusfire: {
|
||||
randomBattleMoves: ["calmmind", "fireblast", "roar", "thunderbolt", "icebeam", "recover"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "thunderbolt", "recover", "heatwave", "protect", "willowisp"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Flame Plate", "Firium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusflying: {
|
||||
randomBattleMoves: ["calmmind", "judgment", "earthpower", "fireblast", "toxic", "recover"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "safeguard", "recover", "substitute", "tailwind", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Sky Plate", "Flyinium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusghost: {
|
||||
randomBattleMoves: ["swordsdance", "shadowforce", "shadowclaw", "brickbreak", "extremespeed", "recover", "judgment", "toxic", "defog"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "focusblast", "recover", "swordsdance", "shadowforce", "brickbreak", "willowisp", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Spooky Plate", "Ghostium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusgrass: {
|
||||
randomBattleMoves: ["judgment", "recover", "calmmind", "icebeam", "fireblast"],
|
||||
randomDoubleBattleMoves: ["calmmind", "icebeam", "judgment", "earthpower", "recover", "safeguard", "thunderwave", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Meadow Plate", "Grassium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusground: {
|
||||
randomBattleMoves: ["swordsdance", "earthquake", "stoneedge", "recover", "judgment", "icebeam", "toxic", "stealthrock"],
|
||||
randomDoubleBattleMoves: ["swordsdance", "earthquake", "stoneedge", "recover", "calmmind", "judgment", "icebeam", "rockslide", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Earth Plate", "Groundium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusice: {
|
||||
randomBattleMoves: ["calmmind", "judgment", "thunderbolt", "fireblast", "recover"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "thunderbolt", "focusblast", "recover", "protect", "icywind"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Icicle Plate", "Icium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceuspoison: {
|
||||
randomBattleMoves: ["calmmind", "sludgebomb", "fireblast", "recover", "icebeam", "defog"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "sludgebomb", "heatwave", "recover", "willowisp", "protect", "earthpower"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Toxic Plate", "Poisonium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceuspsychic: {
|
||||
randomBattleMoves: ["judgment", "calmmind", "fireblast", "recover", "icebeam", "toxic"],
|
||||
randomDoubleBattleMoves: ["calmmind", "psyshock", "focusblast", "recover", "willowisp", "judgment", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Mind Plate", "Psychium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceusrock: {
|
||||
randomBattleMoves: ["swordsdance", "earthquake", "stoneedge", "recover", "judgment", "willowisp", "stealthrock"],
|
||||
randomDoubleBattleMoves: ["swordsdance", "stoneedge", "recover", "rockslide", "earthquake", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Stone Plate", "Rockium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceussteel: {
|
||||
randomBattleMoves: ["judgment", "recover", "willowisp", "defog", "roar", "swordsdance", "ironhead", "earthquake", "stoneedge"],
|
||||
randomDoubleBattleMoves: ["calmmind", "judgment", "recover", "protect", "willowisp"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Iron Plate", "Steelium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
arceuswater: {
|
||||
randomBattleMoves: ["recover", "calmmind", "judgment", "icebeam", "toxic", "defog"],
|
||||
randomDoubleBattleMoves: ["recover", "calmmind", "judgment", "icebeam", "fireblast", "icywind", "surf", "protect"],
|
||||
eventOnly: true,
|
||||
requiredItems: ["Splash Plate", "Waterium Z"],
|
||||
isNonstandard: null,
|
||||
},
|
||||
victini: {
|
||||
inherit: true,
|
||||
|
|
@ -4471,6 +4488,10 @@ let BattleFormatsData = {
|
|||
tier: "OU",
|
||||
doublesTier: "(DUU)",
|
||||
},
|
||||
keldeoresolute: {
|
||||
requiredMove: "Secret Sword",
|
||||
isUnreleased: false,
|
||||
},
|
||||
meloetta: {
|
||||
inherit: true,
|
||||
randomBattleMoves: ["uturn", "calmmind", "psyshock", "hypervoice", "shadowball", "focusblast"],
|
||||
|
|
@ -4493,6 +4514,26 @@ let BattleFormatsData = {
|
|||
tier: "Uber",
|
||||
doublesTier: "DOU",
|
||||
},
|
||||
genesectburn: {
|
||||
eventOnly: true,
|
||||
requiredItem: "Burn Drive",
|
||||
isNonstandard: null,
|
||||
},
|
||||
genesectchill: {
|
||||
eventOnly: true,
|
||||
requiredItem: "Chill Drive",
|
||||
isNonstandard: null,
|
||||
},
|
||||
genesectdouse: {
|
||||
eventOnly: true,
|
||||
requiredItem: "Douse Drive",
|
||||
isNonstandard: null,
|
||||
},
|
||||
genesectshock: {
|
||||
eventOnly: true,
|
||||
requiredItem: "Shock Drive",
|
||||
isNonstandard: null,
|
||||
},
|
||||
chespin: {
|
||||
tier: "LC",
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user