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:
Juanma Serrano 2015-10-15 10:12:13 +02:00
parent 5ecdfd8dc9
commit 2b0d9cd5b7

View File

@ -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);
}