This commit is contained in:
Cmdr McDonald
2016-12-13 18:56:59 +00:00
parent b944035541
commit 041f873f97
11 changed files with 73 additions and 49 deletions

View File

@@ -105,8 +105,9 @@ export const BulkheadNames = [
export const ShipFacets = [
{ // 0
title: 'agility',
props: ['agility'],
fmt: 'int',
props: ['topPitch', 'topRoll', 'topYaw'],
lbls: ['pitch', 'roll', 'yaw'],
fmt: 'f1',
i: 0
},
{ // 1
@@ -185,11 +186,18 @@ export const ShipFacets = [
},
{ // 11
title: 'DPS',
props: ['totalDps'],
lbls: ['DPS'],
props: ['totalDps', 'totalExplDps', 'totalKinDps', 'totalThermDps'],
lbls: ['total', 'explosive', 'kinetic', 'thermal'],
fmt: 'round',
i: 11
},
{ // 14
title: 'Sustained DPS',
props: ['totalSDps', 'totalExplSDps', 'totalKinSDps', 'totalThermSDps'],
lbls: ['total', 'explosive', 'kinetic', 'thermal'],
fmt: 'round',
i: 14
},
{ // 12
title: 'EPS',
props: ['totalEps'],