mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-29 16:29:13 -04:00
wip
This commit is contained in:
parent
bcf40fe667
commit
096f7d4abd
13 changed files with 1917 additions and 225 deletions
9
src/types.d.ts
vendored
9
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;
|
||||
|
||||
|
@ -307,3 +307,8 @@ export type UpgradeLike = {
|
|||
requires: string;
|
||||
threshold: number;
|
||||
};
|
||||
export type UnlockCondition = {
|
||||
required: PerkId[];
|
||||
forbidden: PerkId[];
|
||||
minScore: number;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue