mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-29 08:19:13 -04:00
wip
This commit is contained in:
parent
cb90fef3a9
commit
401e9b4548
22 changed files with 1024 additions and 959 deletions
|
@ -1,8 +1,7 @@
|
|||
import { getHistory } from "./gameOver";
|
||||
import { appVersion, icons } from "./loadGameData";
|
||||
import {appVersion, icons, upgrades} from "./loadGameData";
|
||||
import { t } from "./i18n/i18n";
|
||||
import { asyncAlert } from "./asyncAlert";
|
||||
import { rawUpgrades } from "./upgrades";
|
||||
import { getSettingValue, setSettingValue } from "./settings";
|
||||
|
||||
export function runHistoryViewerMenuEntry() {
|
||||
|
@ -31,7 +30,7 @@ export function runHistoryViewerMenuEntry() {
|
|||
label: t("history.columns.score"),
|
||||
field: (r) => r.score,
|
||||
},
|
||||
...rawUpgrades.map((u) => ({
|
||||
...upgrades.map((u) => ({
|
||||
label: icons["icon:" + u.id],
|
||||
tooltip: u.name,
|
||||
field: (r) => r.perks?.[u.id] || 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue