Player Stats
Character Name: {avatar.name}
Empire: {getFactionName(avatar.faction)}
{avatar.faction}/
{face} not found
Battle Rank: {calculateBr(avatar.bep)}
Command Rank: {calculateCr(avatar.cep)}
Kills: {totalKills}
Deaths: {totalDeaths}
KDR: {#if totalDeaths !== 0} {(totalKills / totalDeaths).toFixed(2)} {:else} {totalKills} {/if}


Kills by Weapon - Total: {iWeaponsKillsSum} {#each iWeapons as weapon} {/each}
Weapon Kills Assists Shots Fired Shots Landed Accuracy
{getWeaponName(weapon.weapon_id)} {weapon.kills} {weapon.assists} {weapon.shots_fired} {weapon.shots_landed} {((weapon.shots_landed / weapon.shots_fired) * 100).toFixed(2)}%
Kills by Vehicle - Total: {vehicleKillsSum} {#each vehicles as veh} {/each}
Vehicle Kills
{getWeaponName(veh.weapon_id)} {veh.kills}
Kills by Deployable - Total: {deployableKillsSum} {#each deployables as ce} {/each}
Deployable Kills
{getWeaponName(ce.weapon_id)} {ce.kills}
Daily Stats {#each kdByDate as date} {/each}
Date Kills Deaths KDR
{date.date} {date.kills} {date.deaths} {#if date.deaths !== 0} {(date.kills / date.deaths).toFixed(2)} {:else} {date.kills} {/if}