mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-29 16:29:13 -04:00
Build 29095000
This commit is contained in:
parent
096f7d4abd
commit
4c324d211c
27 changed files with 500 additions and 1350 deletions
19
src/types.d.ts
vendored
19
src/types.d.ts
vendored
|
@ -1,5 +1,5 @@
|
|||
import {rawUpgrades} from "./upgrades";
|
||||
import {options} from "./options";
|
||||
import { rawUpgrades } from "./upgrades";
|
||||
import { options } from "./options";
|
||||
|
||||
export type colorString = string;
|
||||
|
||||
|
@ -301,14 +301,9 @@ export type OptionDef = {
|
|||
help: string;
|
||||
};
|
||||
export type OptionId = keyof typeof options;
|
||||
export type UpgradeLike = {
|
||||
id: PerkId;
|
||||
name: string;
|
||||
requires: string;
|
||||
threshold: number;
|
||||
};
|
||||
|
||||
export type UnlockCondition = {
|
||||
required: PerkId[];
|
||||
forbidden: PerkId[];
|
||||
minScore: number;
|
||||
}
|
||||
required: PerkId[];
|
||||
forbidden: PerkId[];
|
||||
minScore: number;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue