mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-19 21:48:23 -05:00
Update Balanced Hackmons legality
This commit is contained in:
parent
b3b8f431b3
commit
9cd16d1ba4
|
|
@ -462,10 +462,29 @@ let Formats = [
|
|||
mod: 'gen8',
|
||||
ruleset: ['-Nonexistent', 'OHKO Clause', 'Evasion Moves Clause', 'Team Preview', 'HP Percentage Mod', 'Cancel Mod', 'Sleep Clause Mod', 'Endless Battle Clause'],
|
||||
banlist: [
|
||||
'Eternatus-Eternamax', 'Shedinja', 'Comatose + Sleep Talk',
|
||||
'Eternatus-Eternamax', 'Shedinja', 'Zacian-Crowned', 'Comatose + Sleep Talk', 'Double Iron Bash',
|
||||
'Arena Trap', 'Contrary', 'Gorilla Tactics', 'Huge Power', 'Illusion', 'Innards Out', 'Libero', 'Magnet Pull', 'Moody',
|
||||
'Neutralizing Gas', 'Parental Bond', 'Protean', 'Psychic Surge', 'Pure Power', 'Shadow Tag', 'Stakeout', 'Water Bubble', 'Wonder Guard',
|
||||
],
|
||||
onChangeSet(set) {
|
||||
const item = toID(set.item);
|
||||
if (set.species === 'Zacian' && item === 'rustedsword') {
|
||||
set.species = 'Zacian-Crowned';
|
||||
set.ability = 'Intrepid Sword';
|
||||
let ironHead = set.moves.indexOf('ironhead');
|
||||
if (ironHead >= 0) {
|
||||
set.moves[ironHead] = 'behemothblade';
|
||||
}
|
||||
}
|
||||
if (set.species === 'Zamazenta' && item === 'rustedshield') {
|
||||
set.species = 'Zamazenta-Crowned';
|
||||
set.ability = 'Dauntless Shield';
|
||||
let ironHead = set.moves.indexOf('ironhead');
|
||||
if (ironHead >= 0) {
|
||||
set.moves[ironHead] = 'behemothbash';
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "[Gen 8] Mix and Mega",
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user