mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-09-09 01:35:38 -05:00
Add September 2026 Randomized Format Spotlight (#12277)
This commit is contained in:
@@ -654,11 +654,15 @@ export const Formats: import('../sim/dex-formats').FormatList = [
|
||||
column: 2,
|
||||
},
|
||||
{
|
||||
name: "[Gen 6] Random Battle (B12P6, No Team Preview)",
|
||||
mod: 'gen6',
|
||||
name: "[Gen 7] Chimera 1v1 Random Battle",
|
||||
desc: "Merges a team of six into a single Pok\u00e9mon depending on the order chosen at team preview: It gains the typing of the first, item of the second, ability of the third, stats of the fourth, the first two moves of the fifth, and the last two moves of the sixth.",
|
||||
mod: 'gen7',
|
||||
team: 'random',
|
||||
bestOfDefault: true,
|
||||
ruleset: ['[Gen 6] Random Battle', 'Max Team Size = 12', 'Picked Team Size = 6'],
|
||||
ruleset: ['[Gen 7] Random Battle', 'Chimera 1v1 Rule', 'Adjust Level = 100'],
|
||||
onBegin() {
|
||||
this.add(`raw|<div class="broadcast-blue"><b>Chimera Rands is a 1v1 format where you combine your 6 Pokemon into one "Chimera." The order you select during team preview is important! In sequence, your picks determine your Chimera's Type, Item, Ability, Stats, Moves 1 & 2, then finally Moves 3 & 4.</b></div>`);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "[Gen 9] No Holds Barred!",
|
||||
|
||||
@@ -1185,6 +1185,9 @@ export class RandomGen7Teams extends RandomGen8Teams {
|
||||
// Zoroark copies the last Pokemon and should not be generated in that slot
|
||||
if (set.ability === 'Illusion' && pokemon.length < 1) continue;
|
||||
|
||||
// Prevent Shedinja from generating for Chimera 1v1 (for Randomized Format Spotlight)
|
||||
if (set.ability === 'Wonder Guard' && ruleTable.has('chimera1v1rule')) continue;
|
||||
|
||||
// Okay, the set passes, add it to our team
|
||||
pokemon.unshift(set);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user