Revert "Fix random moveset generation logic not working properly with evolutions"
This reverts commit a8cabd50d9
.
pull/16/head
parent
3ce8697c23
commit
bd67ccde8b
|
@ -779,7 +779,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
|||
const evolutionChain = this.species.getSimulatedEvolutionChain(this.level, this.hasTrainer(), this.isBoss(), this.isPlayer());
|
||||
for (let e = 0; e < evolutionChain.length; e++) {
|
||||
const speciesLevelMoves = getPokemonSpecies(evolutionChain[e][0] as Species).getLevelMoves();
|
||||
levelMoves.push(...speciesLevelMoves.filter(lm => (includeEvolutionMoves && !lm[0]) || (lm[0] >= evolutionChain[e][0] && (e === evolutionChain.length - 1 || lm[0] <= evolutionChain[e + 1][0]))));
|
||||
levelMoves.push(...speciesLevelMoves.filter(lm => (includeEvolutionMoves && !lm[0]) || (!e && (e === evolutionChain.length - 1 || lm[0] < evolutionChain[e + 1][0]))));
|
||||
}
|
||||
const uniqueMoves: Moves[] = [];
|
||||
levelMoves = levelMoves.filter(lm => {
|
||||
|
|
Loading…
Reference in New Issue