refactor battle strength system

This commit is contained in:
bridge
2026-01-04 22:25:25 +08:00
parent 276902bca0
commit 4fc74b1531
5 changed files with 180 additions and 29 deletions

View File

@@ -108,6 +108,7 @@ async function handleClearObjective() {
/>
<StatItem label="灵石" :value="data.magic_stone" />
<StatItem label="颜值" :value="data.appearance" />
<StatItem label="基础战力" :value="data.base_battle_strength" />
</div>
<!-- Thinking -->

View File

@@ -62,6 +62,7 @@ export interface AvatarDetail extends EntityBase {
level: number;
hp: { cur: number; max: number };
magic_stone: number;
base_battle_strength: number;
// 属性与资质
alignment: string;