Support for eggmoves

This commit is contained in:
2024-09-30 14:54:43 +02:00
parent c088386ba3
commit 38e6630c67
3 changed files with 36 additions and 0 deletions

View File

@@ -87,6 +87,10 @@ public static class SpeciesDataLoader
{
learnableMoves.AddLevelMove((byte)levelMove.Level, new StringKey(levelMove.Name));
}
foreach (var eggMove in moves.EggMoves)
{
learnableMoves.AddEggMove(new StringKey(eggMove));
}
return learnableMoves;
}