This commit is contained in:
Renan LE CARO 2025-04-26 20:07:01 +02:00
parent bcf40fe667
commit 096f7d4abd
13 changed files with 1917 additions and 225 deletions

9
src/types.d.ts vendored
View file

@ -1,5 +1,5 @@
import { rawUpgrades } from "./upgrades";
import { options } from "./options";
import {rawUpgrades} from "./upgrades";
import {options} from "./options";
export type colorString = string;
@ -307,3 +307,8 @@ export type UpgradeLike = {
requires: string;
threshold: number;
};
export type UnlockCondition = {
required: PerkId[];
forbidden: PerkId[];
minScore: number;
}