This commit is contained in:
Renan LE CARO 2025-04-18 17:15:47 +02:00
parent 530e94f704
commit d43dd90a86
23 changed files with 268 additions and 152 deletions

4
src/types.d.ts vendored
View file

@ -281,8 +281,7 @@ export type GameState = {
};
rerolls: number;
creative: boolean;
computer_controlled: boolean;
isEditorTrialRun?: number;
startParams: RunParams;
};
export type RunParams = {
@ -292,6 +291,7 @@ export type RunParams = {
perks?: Partial<PerksMap>;
computer_controlled?: boolean;
isEditorTrialRun?: number;
isCreativeRun?: boolean;
};
export type OptionDef = {
default: boolean;