天梯排名{{ '#' + player.stats.pvpRank|string if player.stats.pvpRank and player.stats.pvpRank > 0 else '---' }}
天梯分数{{ player.stats.pvpScore or '0' }}
胜率{{ '%.1f' % (player.stats.winRate * 100) if player.stats.winRate and player.stats.winRate < 1 else (player.stats.winRate or '0.0') }}%
Rating{{ '%.2f' % ((player.stats.pwRating if player.stats.pwRating is not none else player.stats.rating) or 0) }}
ADR{{ '%.1f' % (player.stats.adr or 0) }}
RWS{{ '%.2f' % (player.stats.rws or 0) }}
MVP{{ player.stats.mvpCount or 0 }}
K/D{{ '%.2f' % (player.stats.kd or ((player.stats.kills / player.stats.deaths) if player.stats.deaths else 0)) }}
HS%{{ '%.1f' % ((player.stats.headShotRatio or 0) * 100) if player.stats.headShotRatio is not none and player.stats.headShotRatio < 1 else (player.stats.headShotRatio or '0.0') }}%
比赛{{ player.stats.cnt or '0' }}
平均 WE{{ '%.2f' % (player.stats.avgWe or 0) }}
总击杀{{ player.stats.kills or 0 }}
总助攻{{ player.stats.assists or 0 }}
总死亡{{ player.stats.deaths or 0 }}
首杀率{{ '%.1f' % ((player.stats.entryKillRatio or 0) * 100) }}%
致胜 {{ '%.2f' % (player.stats.victory or 0) }} / 枪法 {{ '%.2f' % (player.stats.shot or 0) }} / 道具 {{ '%.2f' % (player.stats.prop or 0) }} / 狙击 {{ '%.2f' % (player.stats.snipe or 0) }} / 突破 {{ '%.2f' % (player.stats.breach or 0) }}
{% if player.stats.endingWin is not none %}
残局胜利 {{ player.stats.endingWin or 0 }} 次,标题评价:{{ player.summary.description or '暂无' }}
{% endif %}