mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-05 21:17:43 -05:00
Seasonal: Remove items that clash with Trick-o-treat
Assault Vest disallows it. Choice Band and Specs lock into it without giving a proper boost. We give Life Orb to those so they can get a general damage boost.
This commit is contained in:
parent
5ecdfd8dc9
commit
2b0d9cd5b7
|
|
@ -3214,6 +3214,12 @@ exports.BattleScripts = {
|
|||
set.name = 'Devourer of Souls';
|
||||
}
|
||||
set.moves[4] = 'trickortreat';
|
||||
if (set.item === 'Assault Vest') {
|
||||
set.item = 'Leftovers';
|
||||
}
|
||||
if (set.item === 'Choice Band' || set.item === 'Choice Specs') {
|
||||
set.item = 'Life Orb';
|
||||
}
|
||||
}
|
||||
team.push(set);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user