mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 13:06:15 -04:00
wip
This commit is contained in:
parent
11c797bc59
commit
64a85200b9
23 changed files with 1849 additions and 329 deletions
5
src/types.d.ts
vendored
5
src/types.d.ts
vendored
|
@ -7,7 +7,6 @@ export type RawLevel = {
|
|||
name: string;
|
||||
size: number;
|
||||
bricks: string;
|
||||
svg: number | null;
|
||||
color: string;
|
||||
credit?: string;
|
||||
};
|
||||
|
@ -282,14 +281,16 @@ export type GameState = {
|
|||
rerolls: number;
|
||||
creative: boolean;
|
||||
computer_controlled: boolean;
|
||||
isEditorTrialRun?: number;
|
||||
};
|
||||
|
||||
export type RunParams = {
|
||||
level?: string;
|
||||
level?: Level;
|
||||
levelToAvoid?: string;
|
||||
perkToAvoid?: PerkId;
|
||||
perks?: Partial<PerksMap>;
|
||||
computer_controlled?: boolean;
|
||||
isEditorTrialRun?: number;
|
||||
};
|
||||
export type OptionDef = {
|
||||
default: boolean;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue