diff --git a/src/ui/render.js b/src/ui/render.js index eac36d4..242e231 100644 --- a/src/ui/render.js +++ b/src/ui/render.js @@ -1064,7 +1064,7 @@ export function renderRelicSelection(root) { -
Welcome, Prime, to ThePrimeagen Spire — a tower that rises once a year in your honor. At its base, the climb begins with a choice of relics, each shaping the path ahead. And know this: messages await in your Inbox, ready to be read before the journey begins.
+Select one of the following relics to begin your run.
@@ -1120,12 +1120,12 @@ export function renderEvent(root) { risk: "high", effect: () => { const oldHp = root.player.hp; - + root.player.hp += 15; if (root.player.hp > root.player.maxHp) { root.player.maxHp = root.player.hp; } - + root.player.deck.push("sugar_crash"); root.log(`Ate cake: +15 HP (${oldHp} → ${root.player.hp}), added Sugar Crash curse`); } @@ -1138,8 +1138,8 @@ export function renderEvent(root) { effect: () => { root.player.maxHp += 8; if (root.player.hp > root.player.maxHp) { - root.player.maxHp = root.player.hp; - } + root.player.maxHp = root.player.hp; + } root.log("Small bite: +8 HP"); } }, @@ -1248,7 +1248,7 @@ export function renderEvent(root) { ]; const event = events[Math.floor(Math.random() * events.length)]; - + // Store the current event so other systems can access it root.currentEvent = event; diff --git a/style.css b/style.css index 5ff16fa..3f9c685 100644 --- a/style.css +++ b/style.css @@ -6006,3 +6006,8 @@ h3 { font-size: 1.5em; } } + +.welcome-message { + width: 500px; + margin: 0 auto 50px !important; +}