mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-08 00:19:29 +02:00
Replaced instances of consecutive game.scene.getPlayerParty
with destructuring
This commit is contained in:
parent
5d4e93b009
commit
6013bc8c00
@ -344,8 +344,7 @@ describe("Abilities - Wimp Out", () => {
|
|||||||
it("Wimp Out activating should not cancel a double battle", async () => {
|
it("Wimp Out activating should not cancel a double battle", async () => {
|
||||||
game.override.battleStyle("double").enemyAbility(AbilityId.WIMP_OUT).enemyMoveset([MoveId.SPLASH]).enemyLevel(1);
|
game.override.battleStyle("double").enemyAbility(AbilityId.WIMP_OUT).enemyMoveset([MoveId.SPLASH]).enemyLevel(1);
|
||||||
await game.classicMode.startBattle([SpeciesId.WIMPOD, SpeciesId.TYRUNT]);
|
await game.classicMode.startBattle([SpeciesId.WIMPOD, SpeciesId.TYRUNT]);
|
||||||
const enemyLeadPokemon = game.scene.getEnemyParty()[0];
|
const [enemyLeadPokemon, enemySecPokemon] = game.scene.getEnemyParty();
|
||||||
const enemySecPokemon = game.scene.getEnemyParty()[1];
|
|
||||||
|
|
||||||
game.move.select(MoveId.FALSE_SWIPE, 0, BattlerIndex.ENEMY);
|
game.move.select(MoveId.FALSE_SWIPE, 0, BattlerIndex.ENEMY);
|
||||||
game.move.select(MoveId.SPLASH, 1);
|
game.move.select(MoveId.SPLASH, 1);
|
||||||
|
@ -34,8 +34,7 @@ describe("Evolution", () => {
|
|||||||
it("should keep hidden ability after evolving", async () => {
|
it("should keep hidden ability after evolving", async () => {
|
||||||
await game.classicMode.runToSummon([SpeciesId.EEVEE, SpeciesId.TRAPINCH]);
|
await game.classicMode.runToSummon([SpeciesId.EEVEE, SpeciesId.TRAPINCH]);
|
||||||
|
|
||||||
const eevee = game.scene.getPlayerParty()[0];
|
const [eevee, trapinch] = game.scene.getPlayerParty();
|
||||||
const trapinch = game.scene.getPlayerParty()[1];
|
|
||||||
eevee.abilityIndex = 2;
|
eevee.abilityIndex = 2;
|
||||||
trapinch.abilityIndex = 2;
|
trapinch.abilityIndex = 2;
|
||||||
|
|
||||||
@ -49,8 +48,7 @@ describe("Evolution", () => {
|
|||||||
it("should keep same ability slot after evolving", async () => {
|
it("should keep same ability slot after evolving", async () => {
|
||||||
await game.classicMode.runToSummon([SpeciesId.BULBASAUR, SpeciesId.CHARMANDER]);
|
await game.classicMode.runToSummon([SpeciesId.BULBASAUR, SpeciesId.CHARMANDER]);
|
||||||
|
|
||||||
const bulbasaur = game.scene.getPlayerParty()[0];
|
const [bulbasaur, charmander] = game.scene.getPlayerParty();
|
||||||
const charmander = game.scene.getPlayerParty()[1];
|
|
||||||
bulbasaur.abilityIndex = 0;
|
bulbasaur.abilityIndex = 0;
|
||||||
charmander.abilityIndex = 1;
|
charmander.abilityIndex = 1;
|
||||||
|
|
||||||
@ -80,8 +78,7 @@ describe("Evolution", () => {
|
|||||||
nincada.gender = 1;
|
nincada.gender = 1;
|
||||||
|
|
||||||
await nincada.evolve(pokemonEvolutions[SpeciesId.NINCADA][0], nincada.getSpeciesForm());
|
await nincada.evolve(pokemonEvolutions[SpeciesId.NINCADA][0], nincada.getSpeciesForm());
|
||||||
const ninjask = game.scene.getPlayerParty()[0];
|
const [ninjask, shedinja] = game.scene.getPlayerParty();
|
||||||
const shedinja = game.scene.getPlayerParty()[1];
|
|
||||||
expect(ninjask.abilityIndex).toBe(2);
|
expect(ninjask.abilityIndex).toBe(2);
|
||||||
expect(shedinja.abilityIndex).toBe(1);
|
expect(shedinja.abilityIndex).toBe(1);
|
||||||
expect(ninjask.gender).toBe(1);
|
expect(ninjask.gender).toBe(1);
|
||||||
|
@ -113,8 +113,7 @@ describe("Items - Light Ball", () => {
|
|||||||
it("LIGHT_BALL held by fused PIKACHU (base)", async () => {
|
it("LIGHT_BALL held by fused PIKACHU (base)", async () => {
|
||||||
await game.classicMode.startBattle([SpeciesId.PIKACHU, SpeciesId.MAROWAK]);
|
await game.classicMode.startBattle([SpeciesId.PIKACHU, SpeciesId.MAROWAK]);
|
||||||
|
|
||||||
const partyMember = game.scene.getPlayerParty()[0];
|
const [partyMember, ally] = game.scene.getPlayerParty();
|
||||||
const ally = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
||||||
partyMember.fusionSpecies = ally.species;
|
partyMember.fusionSpecies = ally.species;
|
||||||
@ -152,8 +151,7 @@ describe("Items - Light Ball", () => {
|
|||||||
it("LIGHT_BALL held by fused PIKACHU (part)", async () => {
|
it("LIGHT_BALL held by fused PIKACHU (part)", async () => {
|
||||||
await game.classicMode.startBattle([SpeciesId.MAROWAK, SpeciesId.PIKACHU]);
|
await game.classicMode.startBattle([SpeciesId.MAROWAK, SpeciesId.PIKACHU]);
|
||||||
|
|
||||||
const partyMember = game.scene.getPlayerParty()[0];
|
const [partyMember, ally] = game.scene.getPlayerParty();
|
||||||
const ally = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
||||||
partyMember.fusionSpecies = ally.species;
|
partyMember.fusionSpecies = ally.species;
|
||||||
|
@ -107,8 +107,7 @@ describe("Items - Metal Powder", () => {
|
|||||||
it("METAL_POWDER held by fused DITTO (base)", async () => {
|
it("METAL_POWDER held by fused DITTO (base)", async () => {
|
||||||
await game.classicMode.startBattle([SpeciesId.DITTO, SpeciesId.MAROWAK]);
|
await game.classicMode.startBattle([SpeciesId.DITTO, SpeciesId.MAROWAK]);
|
||||||
|
|
||||||
const partyMember = game.scene.getPlayerParty()[0];
|
const [partyMember, ally] = game.scene.getPlayerParty();
|
||||||
const ally = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
||||||
partyMember.fusionSpecies = ally.species;
|
partyMember.fusionSpecies = ally.species;
|
||||||
@ -140,8 +139,7 @@ describe("Items - Metal Powder", () => {
|
|||||||
it("METAL_POWDER held by fused DITTO (part)", async () => {
|
it("METAL_POWDER held by fused DITTO (part)", async () => {
|
||||||
await game.classicMode.startBattle([SpeciesId.MAROWAK, SpeciesId.DITTO]);
|
await game.classicMode.startBattle([SpeciesId.MAROWAK, SpeciesId.DITTO]);
|
||||||
|
|
||||||
const partyMember = game.scene.getPlayerParty()[0];
|
const [partyMember, ally] = game.scene.getPlayerParty();
|
||||||
const ally = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
||||||
partyMember.fusionSpecies = ally.species;
|
partyMember.fusionSpecies = ally.species;
|
||||||
|
@ -107,8 +107,7 @@ describe("Items - Quick Powder", () => {
|
|||||||
it("QUICK_POWDER held by fused DITTO (base)", async () => {
|
it("QUICK_POWDER held by fused DITTO (base)", async () => {
|
||||||
await game.classicMode.startBattle([SpeciesId.DITTO, SpeciesId.MAROWAK]);
|
await game.classicMode.startBattle([SpeciesId.DITTO, SpeciesId.MAROWAK]);
|
||||||
|
|
||||||
const partyMember = game.scene.getPlayerParty()[0];
|
const [partyMember, ally] = game.scene.getPlayerParty();
|
||||||
const ally = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
||||||
partyMember.fusionSpecies = ally.species;
|
partyMember.fusionSpecies = ally.species;
|
||||||
@ -140,8 +139,7 @@ describe("Items - Quick Powder", () => {
|
|||||||
it("QUICK_POWDER held by fused DITTO (part)", async () => {
|
it("QUICK_POWDER held by fused DITTO (part)", async () => {
|
||||||
await game.classicMode.startBattle([SpeciesId.MAROWAK, SpeciesId.DITTO]);
|
await game.classicMode.startBattle([SpeciesId.MAROWAK, SpeciesId.DITTO]);
|
||||||
|
|
||||||
const partyMember = game.scene.getPlayerParty()[0];
|
const [partyMember, ally] = game.scene.getPlayerParty();
|
||||||
const ally = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
||||||
partyMember.fusionSpecies = ally.species;
|
partyMember.fusionSpecies = ally.species;
|
||||||
|
@ -157,8 +157,7 @@ describe("Items - Thick Club", () => {
|
|||||||
|
|
||||||
await game.classicMode.startBattle([species[randSpecies], SpeciesId.PIKACHU]);
|
await game.classicMode.startBattle([species[randSpecies], SpeciesId.PIKACHU]);
|
||||||
|
|
||||||
const partyMember = game.scene.getPlayerParty()[0];
|
const [partyMember, ally] = game.scene.getPlayerParty();
|
||||||
const ally = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
||||||
partyMember.fusionSpecies = ally.species;
|
partyMember.fusionSpecies = ally.species;
|
||||||
@ -194,8 +193,7 @@ describe("Items - Thick Club", () => {
|
|||||||
|
|
||||||
await game.classicMode.startBattle([SpeciesId.PIKACHU, species[randSpecies]]);
|
await game.classicMode.startBattle([SpeciesId.PIKACHU, species[randSpecies]]);
|
||||||
|
|
||||||
const partyMember = game.scene.getPlayerParty()[0];
|
const [partyMember, ally] = game.scene.getPlayerParty();
|
||||||
const ally = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
// Fuse party members (taken from PlayerPokemon.fuse(...) function)
|
||||||
partyMember.fusionSpecies = ally.species;
|
partyMember.fusionSpecies = ally.species;
|
||||||
|
@ -78,8 +78,7 @@ describe("Moves - Dragon Tail", () => {
|
|||||||
|
|
||||||
const leadPokemon = game.scene.getPlayerParty()[0];
|
const leadPokemon = game.scene.getPlayerParty()[0];
|
||||||
|
|
||||||
const enemyLeadPokemon = game.scene.getEnemyParty()[0];
|
const [enemyLeadPokemon, enemySecPokemon] = game.scene.getEnemyParty();
|
||||||
const enemySecPokemon = game.scene.getEnemyParty()[1];
|
|
||||||
|
|
||||||
game.move.select(MoveId.DRAGON_TAIL, 0, BattlerIndex.ENEMY);
|
game.move.select(MoveId.DRAGON_TAIL, 0, BattlerIndex.ENEMY);
|
||||||
game.move.select(MoveId.SPLASH, 1);
|
game.move.select(MoveId.SPLASH, 1);
|
||||||
@ -105,11 +104,9 @@ describe("Moves - Dragon Tail", () => {
|
|||||||
game.override.battleStyle("double").enemyMoveset(MoveId.SPLASH).enemyAbility(AbilityId.ROUGH_SKIN);
|
game.override.battleStyle("double").enemyMoveset(MoveId.SPLASH).enemyAbility(AbilityId.ROUGH_SKIN);
|
||||||
await game.classicMode.startBattle([SpeciesId.DRATINI, SpeciesId.DRATINI, SpeciesId.WAILORD, SpeciesId.WAILORD]);
|
await game.classicMode.startBattle([SpeciesId.DRATINI, SpeciesId.DRATINI, SpeciesId.WAILORD, SpeciesId.WAILORD]);
|
||||||
|
|
||||||
const leadPokemon = game.scene.getPlayerParty()[0];
|
const [leadPokemon, secPokemon] = game.scene.getPlayerParty();
|
||||||
const secPokemon = game.scene.getPlayerParty()[1];
|
|
||||||
|
|
||||||
const enemyLeadPokemon = game.scene.getEnemyParty()[0];
|
const [enemyLeadPokemon, enemySecPokemon] = game.scene.getEnemyParty();
|
||||||
const enemySecPokemon = game.scene.getEnemyParty()[1];
|
|
||||||
|
|
||||||
game.move.select(MoveId.DRAGON_TAIL, 0, BattlerIndex.ENEMY);
|
game.move.select(MoveId.DRAGON_TAIL, 0, BattlerIndex.ENEMY);
|
||||||
// target the same pokemon, second move should be redirected after first flees
|
// target the same pokemon, second move should be redirected after first flees
|
||||||
|
Loading…
Reference in New Issue
Block a user