Gen 2: Mirror Move is valid on Metronome

Apparently Mirror Move can be called by Metronome on gen 2.
Source:
https://github.com/kanzure/pokecrystal/blob/master/battle/effects/metronome.asm#L46-61
This commit is contained in:
Juanma Serrano 2014-01-21 11:59:47 +01:00
parent 254e7edf5e
commit ccc3ee8ac1

View File

@ -142,7 +142,7 @@ exports.BattleMovedex = {
if (i !== move.id) continue;
if (move.isNonstandard) continue;
var noMetronome = {
counter:1, destinybond:1, detect:1, endure:1, metronome:1, mimic:1, mirrorcoat:1, mirrormove:1, protect:1, sketch:1, sleeptalk:1, struggle:1, thief:1
counter:1, destinybond:1, detect:1, endure:1, metronome:1, mimic:1, mirrorcoat:1, protect:1, sketch:1, sleeptalk:1, struggle:1, thief:1
};
if (!noMetronome[move.id] && move.num < 252) {
moves.push(move.id);