Rename Cargo Scoop to Hatch, lower fg brightness, Eff -> Efficiency

This commit is contained in:
Colin McLeod
2015-05-26 03:03:29 -07:00
parent 01bc3104d2
commit b59150cb1f
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
angular.module('shipyard').service('Components', ['lodash', 'ComponentsDB', 'ShipsDB', 'ComponentSet', function (_, C, Ships, ComponentSet) {
this.cargoScoop = function() {
return { name: 'Cargo Scoop', class: 1, rating: 'H', power: 0.6};
return { name: 'Cargo Hatch', class: 1, rating: 'H', power: 0.6};
};
this.common = function (typeIndex, componentId) {

View File

@@ -4,7 +4,7 @@
@bgTransparency: 10%;
// Foreground colors
@fg: #fff;
@fg: #DDD;
@primary: #FF8C0D; // Light Orange
@secondary: #1FB0FF; // Light blue
@warning: #FF3B00; // Dark Orange

View File

@@ -75,7 +75,7 @@
<div class="l">{{pp.id}} Power Plant</div>
<div class="r">{{pp.c.mass}} <u>T</u></div>
<div class="cb"></div>
<div class="l">Eff: {{pp.c.eff}}</div>
<div class="l">Efficiency: {{pp.c.eff}}</div>
<div class="l">Power: {{pp.c.pGen}} <u>MW</u></div>
</div>
<div component-select class="select" s="pp" opts="availCS.common[0]" ng-if="selectedSlot==pp" ng-click="select('c',pp,$event)"></div>