Skip to content

Commit

Permalink
[Bug] Lock Capsule no longer treats common items as free (pagefaultga…
Browse files Browse the repository at this point in the history
…mes#3591)

* Fixed null check to actually check for null and not 0

* Add test and `startingModifier()` override helper function

* Add tsdoc
  • Loading branch information
DayKev committed Aug 17, 2024
1 parent a5cec9f commit a8c9065
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modifier/modifier-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2209,7 +2209,7 @@ export function getDefaultModifierTypeForTier(tier: ModifierTier): ModifierType
}

export class ModifierTypeOption {
public type: ModifierType | null;
public type: ModifierType;
public upgradeCount: integer;
public cost: integer;

Expand Down
2 changes: 1 addition & 1 deletion src/phases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5580,7 +5580,7 @@ export class SelectModifierPhase extends BattlePhase {
} else if (lockRarities) {
const tierValues = [50, 125, 300, 750, 2000];
for (const opt of typeOptions) {
baseValue += opt.type?.tier ? tierValues[opt.type.tier] : 0;
baseValue += tierValues[opt.type.tier ?? 0];
}
} else {
baseValue = 250;
Expand Down
47 changes: 47 additions & 0 deletions src/test/items/lock_capsule.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import GameManager from "#test/utils/gameManager";
import Phase from "phaser";
import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest";
import { Abilities } from "#app/enums/abilities.js";
import { Moves } from "#app/enums/moves.js";
import { getMovePosition } from "../utils/gameManagerUtils";
import { SelectModifierPhase } from "#app/phases.js";
import { ModifierTypeOption, modifierTypes } from "#app/modifier/modifier-type.js";

describe("Items - Lock Capsule", () => {
let phaserGame: Phaser.Game;
let game: GameManager;

beforeAll(() => {
phaserGame = new Phase.Game({
type: Phaser.HEADLESS,
});
});

afterEach(() => {
game.phaseInterceptor.restoreOg();
});

beforeEach(() => {
game = new GameManager(phaserGame);

game.override
.battleType("single")
.startingLevel(200)
.moveset([Moves.SURF])
.enemyAbility(Abilities.BALL_FETCH)
.startingModifier([{name: "LOCK_CAPSULE"}]);
});

it("doesn't set the cost of common tier items to 0", async() => {
await game.startBattle();

game.doAttack(getMovePosition(game.scene, 0, Moves.SURF));
await game.phaseInterceptor.to(SelectModifierPhase, false);

const rewards = game.scene.getCurrentPhase() as SelectModifierPhase;
const potion = new ModifierTypeOption(modifierTypes.POTION(), 0, 40); // Common tier item
const rerollCost = rewards.getRerollCost([potion, potion, potion], true);

expect(rerollCost).toBe(150);
}, 20000);
});
11 changes: 11 additions & 0 deletions src/test/utils/helpers/overridesHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ export class OverridesHelper extends GameManagerHelper {
return this;
}

/**
* Override the player's starting modifiers
* @param modifiers the modifiers to set
* @returns this
*/
startingModifier(modifiers: ModifierOverride[]): this {
vi.spyOn(Overrides, "STARTING_MODIFIER_OVERRIDE", "get").mockReturnValue(modifiers);
this.log(`Player starting modifiers set to: ${modifiers}`);
return this;
}

/**
* Override the player (pokemon) {@linkcode Abilities | ability}
* @param ability the (pokemon) {@linkcode Abilities | ability} to set
Expand Down

0 comments on commit a8c9065

Please sign in to comment.