[ STATUS ]
NAME:
{{ petState.name || 'UNNAMED' }}
STAGE:
{{ getStageName(petState.stage) }}
AGE:
{{ formatAge(petState.ageSeconds) }}
---------------
HUNGER:
{{ makeBar(petState.hunger) }} {{ Math.round(petState.hunger) }}
HAPPY:
{{ makeBar(petState.happiness) }} {{ Math.round(petState.happiness) }}
HEALTH:
{{ makeBar((petState.health / getMaxHealth(petState)) * 100) }} {{ Math.round(petState.health) }}/{{ getMaxHealth(petState) }}
---------------
STR:
{{ Math.round(petState.effectiveStr || petState.str || 0) }}
INT:
{{ Math.round(petState.effectiveInt || petState.int || 0) }}
DEX:
{{ Math.round(petState.effectiveDex || petState.dex || 0) }}
LUCK:
{{ Math.round(petState.effectiveLuck || petState.luck || 0) }}
---------------
[SLEEPING]
[SICK]
[POOP x{{ petState.poopCount }}]