Merge branch 'beta' into implSynchronize
This commit is contained in:
commit
a25de2dcdf
|
@ -3471,7 +3471,7 @@ export class SpitUpPowerAttr extends VariablePowerAttr {
|
||||||
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
|
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
|
||||||
const stockpilingTag = user.getTag(StockpilingTag);
|
const stockpilingTag = user.getTag(StockpilingTag);
|
||||||
|
|
||||||
if (stockpilingTag !== null && stockpilingTag.stockpiledCount > 0) {
|
if (stockpilingTag && stockpilingTag.stockpiledCount > 0) {
|
||||||
const power = args[0] as Utils.IntegerHolder;
|
const power = args[0] as Utils.IntegerHolder;
|
||||||
power.value = this.multiplier * stockpilingTag.stockpiledCount;
|
power.value = this.multiplier * stockpilingTag.stockpiledCount;
|
||||||
return true;
|
return true;
|
||||||
|
@ -3489,7 +3489,7 @@ export class SwallowHealAttr extends HealAttr {
|
||||||
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
|
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
|
||||||
const stockpilingTag = user.getTag(StockpilingTag);
|
const stockpilingTag = user.getTag(StockpilingTag);
|
||||||
|
|
||||||
if (stockpilingTag !== null && stockpilingTag?.stockpiledCount > 0) {
|
if (stockpilingTag && stockpilingTag.stockpiledCount > 0) {
|
||||||
const stockpiled = stockpilingTag.stockpiledCount;
|
const stockpiled = stockpilingTag.stockpiledCount;
|
||||||
let healRatio: number;
|
let healRatio: number;
|
||||||
|
|
||||||
|
|
|
@ -1049,6 +1049,9 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
||||||
const teraType = this.getTeraType();
|
const teraType = this.getTeraType();
|
||||||
if (teraType !== Type.UNKNOWN) {
|
if (teraType !== Type.UNKNOWN) {
|
||||||
types.push(teraType);
|
types.push(teraType);
|
||||||
|
if (forDefend) {
|
||||||
|
return types;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1368,7 +1371,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
|
||||||
: 1);
|
: 1);
|
||||||
|
|
||||||
applyMoveAttrs(VariableMoveTypeMultiplierAttr, source, this, move, typeMultiplier);
|
applyMoveAttrs(VariableMoveTypeMultiplierAttr, source, this, move, typeMultiplier);
|
||||||
if (this.getTypes().find(t => move.isTypeImmune(source, this, t))) {
|
if (this.getTypes(true, true).find(t => move.isTypeImmune(source, this, t))) {
|
||||||
typeMultiplier.value = 0;
|
typeMultiplier.value = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,23 +1,32 @@
|
||||||
import { allMoves } from "#app/data/move";
|
import { allMoves } from "#app/data/move";
|
||||||
import { getPokemonSpecies } from "#app/data/pokemon-species";
|
import { getPokemonSpecies } from "#app/data/pokemon-species";
|
||||||
import { TrainerSlot } from "#app/data/trainer-config";
|
import { TrainerSlot } from "#app/data/trainer-config";
|
||||||
|
import { Type } from "#app/data/type";
|
||||||
import { Abilities } from "#app/enums/abilities";
|
import { Abilities } from "#app/enums/abilities";
|
||||||
import { Moves } from "#app/enums/moves";
|
import { Moves } from "#app/enums/moves";
|
||||||
import { Species } from "#app/enums/species";
|
import { Species } from "#app/enums/species";
|
||||||
import * as Messages from "#app/messages";
|
import * as Messages from "#app/messages";
|
||||||
|
import { TerastallizeModifier } from "#app/modifier/modifier";
|
||||||
import GameManager from "#test/utils/gameManager";
|
import GameManager from "#test/utils/gameManager";
|
||||||
import Phaser from "phaser";
|
import Phaser from "phaser";
|
||||||
import { afterEach, beforeAll, describe, expect, it, vi } from "vitest";
|
import { afterEach, beforeAll, describe, expect, it, vi } from "vitest";
|
||||||
|
|
||||||
function testMoveEffectiveness(game: GameManager, move: Moves, targetSpecies: Species,
|
function testMoveEffectiveness(game: GameManager, move: Moves, targetSpecies: Species,
|
||||||
expected: number, targetAbility: Abilities = Abilities.BALL_FETCH): void {
|
expected: number, targetAbility: Abilities = Abilities.BALL_FETCH, teraType?: Type): void {
|
||||||
// Suppress getPokemonNameWithAffix because it calls on a null battle spec
|
// Suppress getPokemonNameWithAffix because it calls on a null battle spec
|
||||||
vi.spyOn(Messages, "getPokemonNameWithAffix").mockReturnValue("");
|
vi.spyOn(Messages, "getPokemonNameWithAffix").mockReturnValue("");
|
||||||
game.override.enemyAbility(targetAbility);
|
game.override.enemyAbility(targetAbility);
|
||||||
|
|
||||||
|
if (teraType !== undefined) {
|
||||||
|
game.override.enemyHeldItems([{ name:"TERA_SHARD", type: teraType }]);
|
||||||
|
}
|
||||||
|
|
||||||
const user = game.scene.addPlayerPokemon(getPokemonSpecies(Species.SNORLAX), 5);
|
const user = game.scene.addPlayerPokemon(getPokemonSpecies(Species.SNORLAX), 5);
|
||||||
const target = game.scene.addEnemyPokemon(getPokemonSpecies(targetSpecies), 5, TrainerSlot.NONE);
|
const target = game.scene.addEnemyPokemon(getPokemonSpecies(targetSpecies), 5, TrainerSlot.NONE);
|
||||||
|
|
||||||
expect(target.getMoveEffectiveness(user, allMoves[move])).toBe(expected);
|
expect(target.getMoveEffectiveness(user, allMoves[move])).toBe(expected);
|
||||||
|
user.destroy();
|
||||||
|
target.destroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
describe("Moves - Type Effectiveness", () => {
|
describe("Moves - Type Effectiveness", () => {
|
||||||
|
@ -29,6 +38,8 @@ describe("Moves - Type Effectiveness", () => {
|
||||||
type: Phaser.HEADLESS,
|
type: Phaser.HEADLESS,
|
||||||
});
|
});
|
||||||
game = new GameManager(phaserGame);
|
game = new GameManager(phaserGame);
|
||||||
|
TerastallizeModifier.prototype.apply = (args) => true;
|
||||||
|
|
||||||
game.override.ability(Abilities.BALL_FETCH);
|
game.override.ability(Abilities.BALL_FETCH);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -67,4 +78,30 @@ describe("Moves - Type Effectiveness", () => {
|
||||||
it("Electric-type attacks are negated by Volt Absorb",
|
it("Electric-type attacks are negated by Volt Absorb",
|
||||||
() => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.GYARADOS, 0, Abilities.VOLT_ABSORB)
|
() => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.GYARADOS, 0, Abilities.VOLT_ABSORB)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
it("Electric-type attacks are super-effective against Tera-Water Pokemon",
|
||||||
|
() => testMoveEffectiveness(game, Moves.THUNDERBOLT, Species.EXCADRILL, 2, Abilities.BALL_FETCH, Type.WATER)
|
||||||
|
);
|
||||||
|
|
||||||
|
it("Powder moves have no effect on Grass-type Pokemon",
|
||||||
|
() => testMoveEffectiveness(game, Moves.SLEEP_POWDER, Species.AMOONGUSS, 0)
|
||||||
|
);
|
||||||
|
|
||||||
|
it("Powder moves have no effect on Tera-Grass Pokemon",
|
||||||
|
() => testMoveEffectiveness(game, Moves.SLEEP_POWDER, Species.SNORLAX, 0, Abilities.BALL_FETCH, Type.GRASS)
|
||||||
|
);
|
||||||
|
|
||||||
|
it("Prankster-boosted status moves have no effect on Dark-type Pokemon",
|
||||||
|
() => {
|
||||||
|
game.override.ability(Abilities.PRANKSTER);
|
||||||
|
testMoveEffectiveness(game, Moves.BABY_DOLL_EYES, Species.MIGHTYENA, 0);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
it("Prankster-boosted status moves have no effect on Tera-Dark Pokemon",
|
||||||
|
() => {
|
||||||
|
game.override.ability(Abilities.PRANKSTER);
|
||||||
|
testMoveEffectiveness(game, Moves.BABY_DOLL_EYES, Species.SNORLAX, 0, Abilities.BALL_FETCH, Type.DARK);
|
||||||
|
}
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue