Apply Biome

This commit is contained in:
NightKev 2025-07-02 03:38:46 -07:00
parent dd332e9a9f
commit 448255a93f

View File

@ -65,12 +65,12 @@ export class MoveHelper extends GameManagerHelper {
if (movePosition === -1) { if (movePosition === -1) {
expect.fail( expect.fail(
`MoveHelper.select called with move '${toReadableString(MoveId[move])}' not in moveset!` + `MoveHelper.select called with move '${toReadableString(MoveId[move])}' not in moveset!` +
`\nBattler Index: ${toReadableString(BattlerIndex[pkmIndex])}` + `\nBattler Index: ${toReadableString(BattlerIndex[pkmIndex])}` +
`\nMoveset: [${this.game.scene `\nMoveset: [${this.game.scene
.getPlayerParty() .getPlayerParty()
[pkmIndex].getMoveset() [pkmIndex].getMoveset()
.map(pm => toReadableString(MoveId[pm.moveId])) .map(pm => toReadableString(MoveId[pm.moveId]))
.join(", ")}]`, .join(", ")}]`,
); );
} }
@ -109,12 +109,12 @@ export class MoveHelper extends GameManagerHelper {
if (movePosition === -1) { if (movePosition === -1) {
expect.fail( expect.fail(
`MoveHelper.selectWithTera called with move '${toReadableString(MoveId[move])}' not in moveset!` + `MoveHelper.selectWithTera called with move '${toReadableString(MoveId[move])}' not in moveset!` +
`\nBattler Index: ${toReadableString(BattlerIndex[pkmIndex])}` + `\nBattler Index: ${toReadableString(BattlerIndex[pkmIndex])}` +
`\nMoveset: [${this.game.scene `\nMoveset: [${this.game.scene
.getPlayerParty() .getPlayerParty()
[pkmIndex].getMoveset() [pkmIndex].getMoveset()
.map(pm => toReadableString(MoveId[pm.moveId])) .map(pm => toReadableString(MoveId[pm.moveId]))
.join(", ")}]`, .join(", ")}]`,
); );
} }