KILL eggbug done enough
noped out of the timer lol
This commit is contained in:
parent
7b08665427
commit
05a35d1018
1 changed files with 17 additions and 1 deletions
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue