📊 本周 Dota 战报

{{ date_range }}
{{ total_games }}
总局数
{{ total_wins }}
胜场
{{ total_losses }}
败场
{{ overall_win_rate }}%
总胜率
{% for player in players %}
{{ player.name }} {{ player.wins }}胜 {{ player.losses }}败
胜率: {{ player.win_rate }}%
KDA: {{ player.kda }}
场均: {{ player.avg_kills }}/{{ player.avg_deaths }}/{{ player.avg_assists }}
最常用英雄
{% if player.most_played_hero %}
{{ player.most_played_hero.name }}
{{ player.most_played_hero.name }}
{{ player.most_played_hero.wins }}胜 {{ player.most_played_hero.losses }}败 ({{ player.most_played_hero.games }}场)
{% else %}
暂无数据
{% endif %}
最佳英雄 (≥2场)
{% if player.best_hero %}
{{ player.best_hero.name }}
{{ player.best_hero.name }}
{{ player.best_hero.wins }}胜 {{ player.best_hero.losses }}败 ({{ player.best_hero.win_rate }}%胜率)
{% else %}
暂无数据
{% endif %}
{% endfor %}