mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-18 14:22:19 +02:00
fixes
This commit is contained in:
parent
f8f5b4057b
commit
7a28b2d801
@ -2023,11 +2023,13 @@ export default class BattleScene extends SceneBase {
|
|||||||
percent: (p.getHpRatio(false))*100
|
percent: (p.getHpRatio(false))*100
|
||||||
},
|
},
|
||||||
moveset: p.moveset.map(m => {
|
moveset: p.moveset.map(m => {
|
||||||
|
let moveData = m.getMove();
|
||||||
return {
|
return {
|
||||||
moveId: m.moveId,
|
moveId: m.moveId,
|
||||||
|
name: m.getName(),
|
||||||
ppUsed: m.ppUsed,
|
ppUsed: m.ppUsed,
|
||||||
ppUp: m.ppUp,
|
ppUp: m.ppUp,
|
||||||
ppBase: m.getMove().pp
|
ppBase: moveData.pp,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user