From 2e266ba92d2ac3e82d52261fbc10d38fcb03a3f2 Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Tue, 9 Sep 2025 08:43:42 -0700 Subject: [PATCH] fix typo in tooltip. 20%! --- src/ui/render.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/render.js b/src/ui/render.js index b8c6eb9..b5e09f4 100644 --- a/src/ui/render.js +++ b/src/ui/render.js @@ -323,7 +323,7 @@ export async function renderMap(root) { const boss = ENEMIES[node.enemy]; return `Boss Battle\nFight: ${boss?.name || 'Unknown Boss'}\nHP: ${boss?.maxHp || '?'}\nFinal challenge of the act`; case 'rest': - return 'Rest Site\nHeal up to 30% max HP\nor upgrade a card'; + return 'Rest Site\nHeal up to 20% max HP\nor upgrade a card'; case 'shop': return 'Shop\nSpend your hard-earned gold'; case 'event':