mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-07-20 10:04:07 +00:00
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import { allLevels, allLevelsAndIcons, icons, upgrades } from "./loadGameData";
|
|
import { t } from "./i18n/i18n";
|
|
import { asyncAlert } from "./asyncAlert";
|
|
import { miniMarkDown } from "./pure_functions";
|
|
import {
|
|
catchRateBest,
|
|
catchRateGood,
|
|
levelTimeBest,
|
|
levelTimeGood,
|
|
missesBest,
|
|
missesGood,
|
|
} from "./pure_functions";
|
|
|
|
export function helpMenuEntry() {
|
|
return {
|
|
icon: icons["icon:help"],
|
|
text: t("help.title"),
|
|
help: t("help.help"),
|
|
async value() {
|
|
await asyncAlert({
|
|
title: t("help.title"),
|
|
allowClose: true,
|
|
content: [
|
|
miniMarkDown(t("help.content")),
|
|
miniMarkDown(t("help.upgrades")),
|
|
...upgrades.map(
|
|
(u) => `
|
|
<div class="upgrade used">
|
|
${icons["icon:" + u.id]}
|
|
<p>
|
|
<strong>${u.name}</strong><br/>
|
|
${u.help(1)}
|
|
</p>
|
|
</div>
|
|
|
|
${miniMarkDown(u.fullHelp(1))}
|
|
`,
|
|
),
|
|
"<h2>" + t("help.levels") + "</h2>",
|
|
...allLevelsAndIcons
|
|
.filter((l) => l.credit?.trim())
|
|
.map(
|
|
(l) => `
|
|
<div class="upgrade used">
|
|
${icons[l.name]}
|
|
<div>
|
|
<p>
|
|
<strong>${l.name}</strong>
|
|
</p>
|
|
${miniMarkDown(l.credit || "")}
|
|
</div>
|
|
|
|
</div>`,
|
|
),
|
|
],
|
|
});
|
|
},
|
|
};
|
|
}
|