-
{classRating} {translate(m.name || m.grp)}
+
+ {m.mount && m.mount == 'F' ? : ''}
+ {m.mount && m.mount == 'G' ? : ''}
+ {m.mount && m.mount == 'T' ? : ''}
+ {m.type && m.type == 'K' ? : ''}
+ {m.type && m.type == 'T' ? : ''}
+ {m.type && m.type == 'KT' ? : ''}
+ {m.type && m.type == 'E' ? : ''}
+ {classRating} {translate(m.name || m.grp)}
{m.mass}{u.T}
- { m.damage ?
{translate('damage')}: {m.damage} { m.ssdam ? ({formats.int(m.ssdam)} {u.MJ}) : null }
: null }
- { m.dps ?
{translate('DPS')}: {m.dps} { m.mjdps ? ({formats.int(m.mjdps)} {u.MJ}) : null }
: null }
- { m.thermload ?
{translate('T-Load')}: {m.thermload}
: null }
- { m.type ?
{translate('type')}: {m.type}
: null }
+ { m.dps ?
{translate('DPS')}: {formats.int(10 * m.dps) / 10} { m.clip ? ({formats.int(10 * (m.clip * m.dps / m.rof) / ((m.clip / m.rof) + m.reload)) / 10}) : null }
: null }
+ { m.eps ?
{translate('EPS')}: {formats.int(10 * m.eps) / 10} { m.clip ? ({formats.int(10 * (m.clip * m.eps / m.rof) / ((m.clip / m.rof) + m.reload)) / 10}) : null }
: null }
+ { m.hps ?
{translate('HPS')}: {formats.int(10 * m.hps) / 10} { m.clip ? ({formats.int(10 * (m.clip * m.hps / m.rof) / ((m.clip / m.rof) + m.reload)) / 10}) : null }
: null }
+ { m.dps && m.eps ?
{translate('DPE')}: {formats.int( 10 * m.dps / m.eps) / 10}
: null }
{ m.rof ?
{translate('ROF')}: {m.rof}{u.ps}
: null }
- { m.armourpen ?
{translate('pen')}: {m.armourpen}
: null }
+ { m.range && !m.dps ?
{translate('Range')}: {m.range/1000}{u.km}
: null }
{ m.shieldmul ?
+{formats.rPct(m.shieldmul)}
: null }
- { m.range ?
{m.range} km
: null }
- { m.ammo >= 0 ?
{translate('ammo')}: {formats.int(m.clip)}+{formats.int(m.ammo)}
: null }
+ { m.ammo >= 0 ?
{translate('ammo')}: {formats.int(m.clip)}/{formats.int(m.ammo)}
: null }