Prep for sub surface displacement missile

This commit is contained in:
William Blythe
2018-12-22 06:45:52 +11:00
parent 94141aa3c5
commit 600df162aa
3 changed files with 9 additions and 3 deletions

View File

@@ -56,7 +56,6 @@ const GRPCAT = {
'nl': 'ordnance', 'nl': 'ordnance',
'sc': 'scanners', 'sc': 'scanners',
'ss': 'scanners', 'ss': 'scanners',
'pwa': 'scanners',
// Utilities // Utilities
'cs': 'scanners', 'cs': 'scanners',
'kw': 'scanners', 'kw': 'scanners',
@@ -74,7 +73,12 @@ const GRPCAT = {
'gfsb': 'guardian', 'gfsb': 'guardian',
'gmrp': 'guardian', 'gmrp': 'guardian',
'gsc': 'guardian', 'gsc': 'guardian',
'ghrp': 'guardian' 'ghrp': 'guardian',
// Mining
'scl': 'mining',
'pwa': 'mining',
'sdm': 'mining'
}; };
// Order here is the order in which items will be shown in the modules menu // Order here is the order in which items will be shown in the modules menu
const CATEGORIES = { const CATEGORIES = {
@@ -105,7 +109,7 @@ const CATEGORIES = {
// Guardian // Guardian
'guardian': ['gpp', 'gpd', 'gpc', 'ggc', 'gsrp', 'gfsb', 'ghrp', 'gmrp', 'gsc'], 'guardian': ['gpp', 'gpd', 'gpc', 'ggc', 'gsrp', 'gfsb', 'ghrp', 'gmrp', 'gsc'],
'mining': ['scl', 'pwa'], 'mining': ['scl', 'pwa', 'sdm'],
}; };
/** /**

View File

@@ -134,6 +134,7 @@
"gmrp": "Guardian Module Reinforcement Package", "gmrp": "Guardian Module Reinforcement Package",
"pwa": "Pulse Wave Analyser", "pwa": "Pulse Wave Analyser",
"scl": "Seismic Charge Launcher", "scl": "Seismic Charge Launcher",
"sdm": "Sub-Surface Displacement Missile",
"tbsc": "Shock Cannon", "tbsc": "Shock Cannon",
"gsc": "Guardian Shard Cannon", "gsc": "Guardian Shard Cannon",
"psg": "Prismatic Shield Generator", "psg": "Prismatic Shield Generator",

View File

@@ -96,6 +96,7 @@ export const ModuleGroupToName = {
tbrfl: 'Remote Release Flechette Launcher', tbrfl: 'Remote Release Flechette Launcher',
pwa: 'Pulse Wave Analyser', pwa: 'Pulse Wave Analyser',
scl: 'Seismic Charge Launcher', scl: 'Seismic Charge Launcher',
sdm: 'Sub-Surface Displacement Missile',
}; };
let GrpNameToCodeMap = {}; let GrpNameToCodeMap = {};