@@ -128,20 +134,52 @@ const formatDate = (dateStr: string) => {
生命
- {{ char.maxHP }}
+ {{ Math.floor(char.maxHP) }}
攻击
- {{ char.attack }}
+ {{ Math.floor(char.attack) }}
- 灵石
- {{ char.money }}
+ 防御
+ {{ Math.floor(char.defend) }}
+
+
+ 暴击
+ {{ Math.floor(char.criticalRate * 100) }}%
+
+
+
职业
{{ char.professionName }}
+
+ 灵石
+ {{ char.money }}
+
+
+
+
+
+ 经验
+
+ {{ Math.floor(char.currentExp) }}/{{ char.nextLevelMinExp }}
+
+
+ 修炼
+ {{ char.trainingExpRate }}x
+
+
+ 突破
+ {{ char.breakthroughRate }}%
+