Skip to content

Commit 8121d67

Browse files
committed
Easy math
1 parent ad1ff15 commit 8121d67

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

game.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
Pushie: { price: 17, desc: "Pushes opponent toward nearest edge." },
3636
Speed: { price: 8, desc: "Speed +50% for 10s." },
3737
"Emergency Platform": { price: 15, desc: "Automatically saves you from falling into the void." },
38-
"Math": { price: 16, desc: "Solve math to build up attack. One mistake flips it on you." }
38+
"Math": { price: 1, desc: "Solve math to build up attack. One mistake flips it on you." }
3939
};
4040

4141
const LEVELS = {
@@ -783,6 +783,7 @@
783783
<div style="color:var(--muted);font-weight:600">${t.price}</div>
784784
<button class="btn" data-name="${k}">Buy</button>
785785
</div>`;
786+
if (k === 'Math') row.style.border = '1px solid var(--accent)';
786787
row.querySelector('button').addEventListener('click', () => { buyTactic(k); });
787788
shopTacticsEl.appendChild(row);
788789
});

0 commit comments

Comments
 (0)