名字
{{ petState.name || '未命名' }}
階段
{{ getStageName(petState.stage) }}
年齡
{{ formatAge(petState.ageSeconds) }}
身高
{{ Math.round(petState.height || 0) }} cm
身高
{{ Math.round(petState.height || 0) }} cm
體重
{{ Math.round(petState.weight || 0) }} g
命格
{{ petState.destiny ? petState.destiny.name : '無' }}
{{ petState.destiny.description }}
力量 (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) }}
世代
第 {{ petState.generation || 1 }} 代
神明好感
{{ getDeityFavorDisplay(petState) }}
HP
{{ Math.round(petState.hp || petState.health || 0) }}
攻擊
{{ Math.round(petState.attack || 0) }}
防禦
{{ Math.round(petState.defense || 0) }}
速度
{{ Math.round(petState.speed || 0) }}