Set default fps to 10 instead of 12 for pokemon sprites

This commit is contained in:
pom-eranian 2024-11-10 00:32:58 -05:00
parent 198ac2431d
commit 073f85c8cb

View File

@ -427,7 +427,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
this.scene.anims.create({ this.scene.anims.create({
key: this.getBattleSpriteKey(), key: this.getBattleSpriteKey(),
frames: battleFrameNames, frames: battleFrameNames,
frameRate: 12, frameRate: 10,
repeat: -1 repeat: -1
}); });
} }