mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 04:56:15 -04:00
Clairvoyant perks, hps adjusments
This commit is contained in:
parent
3745b527f5
commit
af02565bf1
12 changed files with 238 additions and 104 deletions
|
@ -14,7 +14,7 @@ import {
|
|||
import { getAudioContext, playPendingSounds } from "./sounds";
|
||||
import {
|
||||
currentLevelInfo,
|
||||
getRowColIndex,
|
||||
getRowColIndex, levelsListHTMl,
|
||||
max_levels,
|
||||
pickedUpgradesHTMl,
|
||||
} from "./game_utils";
|
||||
|
@ -271,7 +271,10 @@ export async function openUpgradesPicker(gameState: GameState) {
|
|||
wallHitsGain,
|
||||
compliment,
|
||||
})}
|
||||
</p>`,
|
||||
</p>
|
||||
|
||||
<p>${levelsListHTMl(gameState)}</p>
|
||||
`,
|
||||
allowClose: false,
|
||||
textAfterButtons,
|
||||
})) as PerkId;
|
||||
|
@ -432,6 +435,8 @@ async function openScorePanel() {
|
|||
${gameState.isCreativeModeRun ? `<p>${t("score_panel.test_run")}</p>` : ""}
|
||||
<p>${t("score_panel.upgrades_picked")}</p>
|
||||
<p>${pickedUpgradesHTMl(gameState)}</p>
|
||||
|
||||
<p>${levelsListHTMl(gameState)}</p>
|
||||
`,
|
||||
allowClose: true,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue