KILL eggbug done enough

noped out of the timer lol
This commit is contained in:
mehbark 2023-07-12 08:06:24 -04:00
parent 7b08665427
commit 05a35d1018

View file

@ -60,7 +60,7 @@ const Defeated: Component = ({ last_health, max_health }) => (
eggbug is physically unharmed, emotionally destroyed <br />
... <br />
ok eggbug is fine now <br />
"reeadbug" to "killbug"
"re bug" to "killbug"
</div>
);
@ -117,11 +117,27 @@ const Battle: Component = ({
<Defeated last_health={last_health} max_health={max_health} />
);
const Timer: Component = () => (
<details class="timer">
<summary>
click this when done (HONOR SYSTEM) (EVEN AMONG EGGBUGS THERE CAN BE
HONOR)
<div class="timer-scroll">
{[
...new Array(601).fill(undefined).map((_, i) => `${i}s`),
"∞s",
]}
</div>
</summary>
</details>
);
// a timer would be flippin rad
// (it would look like an actual scrolling clock thingie)
// (because it would have to)
debug_render(
<Main>
<Battle max_health={10_000} damage_multiplier={200} damage_bonus={10} />
{/* <Timer /> */}
</Main>
);