diff --git a/companion.py b/companion.py index fc6813ec..1165f7bc 100644 --- a/companion.py +++ b/companion.py @@ -80,6 +80,7 @@ ship_map = { 'belugaliner' : 'Beluga Liner', 'cobramkiii' : 'Cobra MkIII', 'cobramkiv' : 'Cobra MkIV', + 'clipper' : 'Panther Clipper', 'cutter' : 'Imperial Cutter', 'diamondback' : 'Diamondback Scout', 'diamondbackxl' : 'Diamondback Explorer', diff --git a/coriolis.py b/coriolis.py index 1ca9d333..315f7584 100755 --- a/coriolis.py +++ b/coriolis.py @@ -36,6 +36,7 @@ slot_map = { 'powerdistributor' : 'standard', 'radar' : 'standard', 'fueltank' : 'standard', + 'military' : 'internal', 'slot' : 'internal', } diff --git a/edshipyard.py b/edshipyard.py index 43167d86..de764c0f 100644 --- a/edshipyard.py +++ b/edshipyard.py @@ -37,6 +37,7 @@ slot_map = { 'powerdistributor' : 'PC', 'radar' : 'SS', 'fueltank' : 'FS', + 'military' : 'MC', } @@ -102,7 +103,7 @@ def export(data, filename=None): # Construct description string = '[%s]\n' % ship_map.get(data['ship']['name'].lower(), data['ship']['name']) - for slot in ['H', 'L', 'M', 'S', 'U', None, 'BH', 'RB', 'TM', 'FH', 'EC', 'PC', 'SS', 'FS', None, '9', '8', '7', '6', '5', '4', '3', '2', '1']: + for slot in ['H', 'L', 'M', 'S', 'U', None, 'BH', 'RB', 'TM', 'FH', 'EC', 'PC', 'SS', 'FS', None, 'MC', None, '9', '8', '7', '6', '5', '4', '3', '2', '1']: if not slot: string += '\n' elif slot in loadout: diff --git a/outfitting.py b/outfitting.py index 5555d7b8..9ac9275d 100644 --- a/outfitting.py +++ b/outfitting.py @@ -235,6 +235,7 @@ internal_map = { 'fuelscoop' : 'Fuel Scoop', 'fueltransfer' : 'Fuel Transfer Limpet Controller', 'hullreinforcement' : 'Hull Reinforcement Package', + 'modulereinforcement' : 'Module Reinforcement Package', 'passengercabin' : 'Passenger Cabin', 'prospector' : 'Prospector Limpet Controller', 'refinery' : 'Refinery',