{Math.round(n).toString()}
);
const Battle = ({
max_health = 100,
health = max_health,
last_health = health,
damage_multiplier = 10,
damage_bonus = 1,
}: // ...rest
Partial<{
max_health: number;
health: number;
last_health: number;
damage_multiplier: number;
damage_bonus: number;
}>) =>
health > 0 ? (