add guardian powerplant, gauss cannon and also plasma charger

This commit is contained in:
willyb321
2018-04-25 15:07:13 +10:00
parent f4cc9fc722
commit b14e7473f3
3 changed files with 27 additions and 5 deletions

View File

@@ -9,12 +9,16 @@ export const StandardArray = [
'pd', // Power Distributor
's', // Sensors
'ft', // Fuel Tank
'gpp', // Guardian Hybrid Power Plant
'gpd' // Guardian Hybrid Power Distributor
];
// Map to lookup group labels/names for component grp, used for JSON Serialization
export const ModuleGroupToName = {
// Standard
pp: 'Power Plant',
gpp: 'Guardian Hybrid Power Plant',
gpd: 'Guardian Hybrid Power Distributor',
t: 'Thrusters',
fsd: 'Frame Shift Drive',
ls: 'Life Support',
@@ -75,7 +79,9 @@ export const ModuleGroupToName = {
sb: 'Shield Booster',
tp: 'Torpedo Pylon',
sfn: 'Shutdown Field Neutraliser',
xs: 'Xeno Scanner'
xs: 'Xeno Scanner',
gpc: 'Guardian Plasma Charger',
ggc: 'Guardian Gauss Cannon',
};
let GrpNameToCodeMap = {};