Return fr/lg level up moves for gen 3 pokemon

This commit is contained in:
javierhimura 2017-03-27 23:11:16 +02:00
parent c84f599e76
commit c70d690e9a

View File

@ -2410,9 +2410,14 @@ private static IEnumerable<int> getMoves(PKM pkm, int species, int lvl, int form
case 3: r.AddRange(LevelUpE[index].getMoves(lvl)); break;
}
}
else //Add only emerald moves, all the gen 3 level up tables are equal except deoxys level up tables
else
{
// Emerald level up table are equals to R/S level up tables
r.AddRange(LevelUpE[index].getMoves(lvl));
// fire red and leaf green are equals between each other but different than RSE
// Do not use FR Levelup table. It have 67 moves for charmander but Leaf Green moves table is correct
r.AddRange(LevelUpLG[index].getMoves(lvl));
}
}
if (Machine)
{