This tool is designed to allow players to quickly and easily check whether the integrity of their Pokémon team rigorously complies with all the regulations, rules, and restrictions imposed by a particular tournament or a specific competitive battle format. Its function is to guarantee the legality of their squad (including Pokémon, moves, abilities, and items) before the player proceeds to compete.
Features: Config file with the following properties:
List with banned pokemon.
"BANNED_POKEMON": ["pokemonName1", "pokemonName2"]
List with special banned forms. (format must be "pokemonSpecie:-:FormName")
"BANNED_SPECIAL_FORMS": ["pokemon:-:specialForm", "pokemon:-:specialForm"]
List with banned moves.
"BANNED_MOVES": ["move1", "move2"]
List with banned items.
"BANNED_ITEMS": ["item1", "item2"]
List with banned abilities.
"BANNED_ABILITIES": ["ability1", "ability2"]
Validate or not OHKO Clause.
"OH_KO_CLAUSE": true/false
Validate or not Evasion Clause.
"EVASION_CLAUSE": true/false
Validate or not Repeated Item Clause.
"ITEM_CLAUSE": true/false
Validate or not Repeated Species Clause.
"SPECIES_CLAUSE": true/false
Default JSON:
{
"BANNED_POKEMON": [
"Mewtwo",
"Ditto",
"Lugia",
"Ho-Oh",
"Groudon",
"Kyogre",
"Rayquaza",
"Deoxys",
"Dialga",
"Palkia",
"Giratina",
"Arceus",
"Darkrai",
"Reshiram",
"Zekrom",
"Landorus",
"Genesect",
"Xerneas",
"Yveltal",
"Zygarde",
"Solgaleo",
"Lunala",
"Magearna",
"Marshadow",
"Pheromosa",
"Naganadel",
"Eternatus",
"Zacian",
"Urshifu",
"Spectrier",
"Dracovish",
"Sneasler",
"Miraidon",
"Koraidon",
"Annihilape",
"Baxcalibur",
"Espathra",
"Chi-Yu",
"Chien-Pao",
"Flutter Mane",
"Iron Bundle",
"Roaring Moon",
"Walking Wake",
"Gouging Fire"
],
"BANNED_SPECIAL_FORMS": [
"Shaymin:-:Sky",
"Kyurem:-:Black",
"Kyurem:-:White",
"Darmanitan:-:Galar",
"Necrozma:-:Dawn-Wings",
"Necrozma:-:Dusk-Mane",
"Necrozma:-:Ultra",
"Zacian:-:Crowned",
"Zamazenta:-:Crowned",
"Ursaluna:-:Bloodmoon",
"Calyrex:-:Ice",
"Calyrex:-:Shadow",
"Ogerpon:-:Hearthflame"
],
"BANNED_MOVES": [
"batonpass",
"Assist",
"LastRespects",
"ShedTail"
],
"BANNED_ITEMS": [
"Alakazite",
"Blastoisinite",
"Blazikenite",
"Gengarite",
"Kangaskhanite",
"Lucarionite",
"Metagrossite",
"Salamencite",
"Kings Rock",
"Quick Claw",
"Razor Fang"
],
"BANNED_ABILITIES": [
"ArenaTrap",
"Moody",
"PowerConstruct",
"ShadowTag"
],
"OH_KO_CLAUSE": true,
"EVASION_CLAUSE": true,
"ITEM_CLAUSE": false,
"SPECIES_CLAUSE": true
}

A tool that allows players to quickly and easily check whether their Pokémon team complies with the regulations of a specific tournament or battle format before competing.