5E 对战平台
{{ nickname }}
5E Arena 玩家战绩
{% if stats.career.match_time %}
• 总时长: {{ stats.career.match_time }}h
{% endif %}
当前 ELO
{{ stats.career.elo_9 or '---' }}
胜率
{{ '%.1f' % (stats.career.win_total / stats.career.match_total * 100) if stats.career.match_total else '0.0' }}%
{% if stats.role and stats.role.role_name %}
{{ stats.role.role_name }}
{{ stats.role.role_desc }}
{% for tag in stats.role.role_tags %}
{{ tag }}
{% endfor %}
{% endif %}
基础数据
Rating
{{ stats.career.rating or '0.00' }}
ADR
{{ stats.career.adr or stats.best_season.adr or '0.0' }}
RWS
{{ stats.career.rws or '0.00' }}
KPR
{{ stats.career.kpr or '0.00' }}
胜 / 场
{{ stats.career.win_total or '0' }} / {{ stats.career.match_total or '0' }}
HS%
{{ '%.1f' % (stats.career.headshot_total / stats.career.kill_total * 100) if stats.career.kill_total else '0.0' }}%
高光数据
{% for item in combat.summary_cards %}
{{ item.label }}
{{ item.value }}
{% endfor %}
残局拆分
{% for item in combat.clutch_cards %}
{{ item.label }}
{{ item.value }}
{% endfor %}
{% if stats.recent_matches %}
最近 5 场比赛
{% for match in stats.recent_matches %} {% set res_class = 'win' if match.is_win else ('tie' if match.is_tie else 'loss') %}
{{ '胜' if match.is_win else ('平' if match.is_tie else '负') }}
{{ match.map_name }}
{{ match.score }}
{{ match.rating }}
Rating
{{ match.kill }}/{{ match.death }}
K/D
{{ match.adr or '0.0' }}
ADR
{% endfor %}
{% endif %}