Jofthomas's picture
Jofthomas HF staff
Upload 4781 files
5c2ed06 verified
raw
history blame contribute delete
522 Bytes
export const Rulesets: import('../../../sim/dex-formats').ModdedFormatDataTable = {
teampreview: {
inherit: true,
onBattleStart() {
// Xerneas isn't in DLC1 but operated this way pre-1.3.2 update
const formesToLeak = ['zaciancrowned', 'zamazentacrowned', 'xerneas'];
for (const pokemon of this.getAllPokemon()) {
if (!formesToLeak.includes(pokemon.baseSpecies.id)) continue;
const newDetails = pokemon.details.replace(', shiny', '');
this.add('updatepoke', pokemon, newDetails);
}
},
},
};