Skip to content

Commit

Permalink
Draft Factory: Fix several oversights (smogon#10724)
Browse files Browse the repository at this point in the history
* Draft Factory: Fix several oversights

* Remove matchups with teams that are missing moves

* Fix Greninja-Bond

* Remove matchup with duplicate teams
  • Loading branch information
Karthik99999 authored Dec 4, 2024
1 parent b68fc72 commit 3102387
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 62 deletions.
4 changes: 3 additions & 1 deletion config/formats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2621,9 +2621,10 @@ export const Formats: import('../sim/dex-formats').FormatList = [
},
{
name: "[Gen 9] Draft Factory",
desc: `Randomized matchups sourced from various 6v6 singles draft leagues.`,
mod: 'gen9',
team: 'randomDraftFactory',
ruleset: ['Obtainable', 'Team Preview', 'Species Clause', 'HP Percentage Mod', 'Cancel Mod'],
ruleset: ['Standard Draft'],
onBegin() {
for (const pokemon of this.getAllPokemon()) {
if (!(pokemon.set as any).teraCaptain) pokemon.canTerastallize = null;
Expand All @@ -2639,6 +2640,7 @@ export const Formats: import('../sim/dex-formats').FormatList = [
}
this.add(`${buf}`);
}
this.add(`raw|Only Tera Captains are allowed to Terastallize!`);
},
},
{
Expand Down
Loading

0 comments on commit 3102387

Please sign in to comment.