From 1942b330397a7b4af403b48999ff94c040d6389e Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Fri, 31 Jan 2025 12:19:53 +0200 Subject: [PATCH 1/7] Hull, armor and shield components - modify ship_view/upgrade_view to support 4 facet armor and new shield keys - Fix bug in ship_view where ypr is 0. - Modify minimize_parts script to create new ships.json and units.json - Create new ships.json and units.json - Fix some stuff in units_old.json --- python/base_computer/ship_view.py | 54 +- python/base_computer/upgrade_view.py | 23 +- python/base_computer/upgrade_view.schema | 20 +- units/minimize_parts.py | 112 +- units/ships.json | 1287 +++------ units/units.json | 3220 ++++++++++++---------- units/units_old.json | 146 +- 7 files changed, 2404 insertions(+), 2458 deletions(-) diff --git a/python/base_computer/ship_view.py b/python/base_computer/ship_view.py index 6fd8c759..40c3ebe2 100644 --- a/python/base_computer/ship_view.py +++ b/python/base_computer/ship_view.py @@ -127,6 +127,14 @@ def get_iff(iff): if iff=='2': return 'object recognition' return iff +def get_ypr(ship_stats, prefix, divider_maneuver, left = '_Left', right = '_Right'): + data = get_dbl(ship_stats,prefix, divider_maneuver) + if data > 0: + return data + data = get_dbl(ship_stats,prefix+left, divider_maneuver) + data += get_dbl(ship_stats,prefix+right, divider_maneuver) + return data/2 + # General def get_general(ship_stats): text = f"{green}[GENERAL INFORMATION]{newline}" @@ -181,18 +189,10 @@ def get_governor(ship_stats): speed = get_int(ship_stats, 'Default_Speed_Governor') afterburner = get_int(ship_stats, 'Afterburner_Speed_Governor') - yaw = get_dbl(ship_stats, 'Yaw_Governor',divider) - #yaw_right = get_dbl(ship_stats, 'Yaw_Governor_Right') - #yaw_left = get_dbl(ship_stats, 'Yaw_Governor_Left') - - pitch = get_dbl(ship_stats, 'Pitch_Governor',divider) - #pitch_down = get_dbl(ship_stats, 'Pitch_Governor_Up') - #pitch_up = get_dbl(ship_stats, 'Pitch_Governor_Down') - - roll = get_dbl(ship_stats, 'Roll_Governor',divider) - #roll_right = get_dbl(ship_stats, 'Roll_Governor_Right') - #roll_left = get_dbl(ship_stats, 'Roll_Governor_Left') - + yaw = get_ypr(ship_stats, 'Yaw_Governor',divider) + pitch = get_ypr(ship_stats, 'Pitch_Governor',divider, '_Up', '_Down') + roll = get_ypr(ship_stats, 'Roll_Governor',divider) + text = f"{green}[GOVERNOR SETTINGS]{newline}#-c{newline}" text += f"{light_grey}Max combat speed: #-c{speed} m/s{newline}" text += f"{light_grey}Max overdrive combat speed: #-c{afterburner} m/s{newline}" @@ -255,33 +255,25 @@ def get_energy_spec_and_jump(ship_stats): def get_durability(ship_stats): armor = [ - ('Fore-starboard-high','Armor_Front_Top_Right'), - ('Aft-starboard-high','Armor_Back_Top_Right'), - ('Fore-port-high','Armor_Front_Top_Left'), - ('Aft-port-high','Armor_Back_Top_Left'), - ('Fore-starboard-low','Armor_Front_Bottom_Right'), - ('Aft-starboard-low','Armor_Back_Bottom_Right'), - ('Fore-port-low','Armor_Front_Bottom_Left'), - ('Aft-port-low','Armor_Back_Bottom_Left'), + ('Front armor','armor_front'), + ('Rear armor','armor_back'), + ('Port armor','armor_left'), + ('Starboard armor','armor_right') ] shield4 = [ - ('Port','Shield_Front_Bottom_Left'),('Starboard','Shield_Front_Bottom_Right'),('Fore','Shield_Front_Top_Right'),('Aft','Shield_Back_Top_Left'), + ('Front shield','shield_front'), + ('Rear shield','shield_back'), + ('Port shield','shield_left'), + ('Starboard shield','shield_right') ] shield2 = [ - ('Fore','Shield_Front_Top_Right'),('Aft','Shield_Back_Top_Left'), + ('Front shield','shield_front'), + ('Rear shield','shield_back') ] - # This is a kludge. Should go away when we refactor units.json and unit_csv.cpp - shield_stat = {} - num_emitters = 0 - for pair in shield4: - if not pair[1] in ship_stats: - continue - value = get_dbl(ship_stats,pair[1]) - if value > 0: - num_emitters += 1 + num_emitters = lnum(ship_stats, 'shield_facets') hull = lnum(ship_stats,'Hull') diff --git a/python/base_computer/upgrade_view.py b/python/base_computer/upgrade_view.py index de96b513..07bc0dc9 100644 --- a/python/base_computer/upgrade_view.py +++ b/python/base_computer/upgrade_view.py @@ -142,16 +142,15 @@ def process_line(line, unit): if eq_index == -1: key = line[start_index+1:end_index] if key in unit: - # Is there another tag? line = line[:start_index] + str(unit[key]) + line[end_index+1:] + # Is there another tag? if line.find('<') != -1: return process_line(line, unit) return line + "#n#" + '\n' else: - return '' - return + return '' else: pair = line[start_index+1:end_index] key, value = pair.split('=') @@ -185,6 +184,24 @@ def get_upgrade_info(key): unit.update(upgrade) break + # Process shield and armor + if 'shield_strength' in unit: + shield_strength = unit['shield_strength'] + unit['shield_front'] = shield_strength + unit['shield_back'] = shield_strength + unit['shield_left'] = shield_strength + unit['shield_right'] = shield_strength + del unit['shield_strength'] + + if 'armor_strength' in unit: + armor_strength = unit['armor_strength'] + unit['armor_front'] = armor_strength + unit['armor_back'] = armor_strength + unit['armor_left'] = armor_strength + unit['armor_right'] = armor_strength + del unit['armor_strength'] + + # Process ammo and weapons if 'Mounts' in unit: mounts = unit['Mounts'][1:-1] diff --git a/python/base_computer/upgrade_view.schema b/python/base_computer/upgrade_view.schema index 4510ff4f..c6b8ace3 100644 --- a/python/base_computer/upgrade_view.schema +++ b/python/base_computer/upgrade_view.schema @@ -30,14 +30,10 @@ #c.75:.9:1#Replaces existing armor, if any. Armor damage resistance:#-c -#c.675:.925:.825# - Fore-starboard-high: #-c MJ -#c.675:.925:.825# - Aft-starboard-high: #-c MJ -#c.675:.925:.825# - Fore-port-high: #-c MJ -#c.675:.925:.825# - Aft-port-high: #-c MJ -#c.675:.925:.825# - Fore-starboard-low: #-c MJ -#c.675:.925:.825# - Aft-starboard-low: #-c MJ -#c.675:.925:.825# - Fore-port-low: #-c MJ -#c.675:.925:.825# - Aft-port-low: #-c MJ +#c.675:.925:.825# - Front: #-c MJ +#c.675:.925:.825# - Back: #-c MJ +#c.675:.925:.825# - Left: #-c MJ +#c.675:.925:.825# - Right: #-c MJ // Autotracking #c.75:.9:1#Installs auto-tracking capability on the selected mount. @@ -77,10 +73,10 @@ Activated energy usage: #-c MJ/s // Shield #c.75:.9:1#Installs shield with following protection ratings:#-c -#c.675:.925:.825# - port: #-c MJ -#c.675:.925:.825# - starboard: #-c MJ -#c.675:.925:.825# - fore: #-c MJ -#c.675:.925:.825# - aft: #-c MJ +#c.675:.925:.825# - Front: #-c MJ +#c.675:.925:.825# - Back: #-c MJ +#c.675:.925:.825# - Left: #-c MJ +#c.675:.925:.825# - Right: #-c MJ #c.75:.9:1#Shield recharge rate of: #-c MJ/s // Tractor Capability diff --git a/units/minimize_parts.py b/units/minimize_parts.py index 4334d9ed..e045d63b 100644 --- a/units/minimize_parts.py +++ b/units/minimize_parts.py @@ -1,5 +1,6 @@ import json import sys +import os KEY = 'Key' NAME = 'Name' @@ -8,24 +9,24 @@ delete_array = ['box', 'box.blank', 'box.template'] delete_keys = ['Moment_Of_Inertia'] -minimize_array = [('armor', ['Armor_Front_Top_Right', - 'Armor_Front_Top_Left', - 'Armor_Front_Bottom_Right', - 'Armor_Front_Bottom_Left', - 'Armor_Back_Top_Right', - 'Armor_Back_Top_Left', - 'Armor_Back_Bottom_Right', - 'Armor_Back_Bottom_Left']), - ('shield_strength',['Shield_Front_Top_Right', - 'Shield_Back_Top_Left', - 'Shield_Front_Bottom_Right', - 'Shield_Front_Bottom_Left']), +minimize_array = [('armor', ['armor_front', 'armor_rear','armor_left', 'armor_right']), + ('shield_strength',['shield_front', 'shield_back','shield_left', 'shield_right']), ('accel', ['Left_Accel', 'Right_Accel', 'Top_Accel', 'Bottom_Accel']) ] +force_array = [(['armor_front', 'armor_back','armor_left', 'armor_right'], + ['Armor_Front_Top_Right', 'Armor_Front_Top_Left', + 'Armor_Front_Bottom_Right', 'Armor_Front_Bottom_Left', + 'Armor_Back_Top_Right', 'Armor_Back_Top_Left', + 'Armor_Back_Bottom_Right', + 'Armor_Back_Bottom_Left'], 'armor'), + (['shield_front', 'shield_back','shield_left', 'shield_right'], + ['Shield_Front_Top_Right', 'Shield_Back_Top_Left', + 'Shield_Front_Bottom_Right', 'Shield_Front_Bottom_Left'], 'shield')] + ship_defaults = {"Object_Type": "Vessel", "Hud_Functionality": "1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1", "Max_Hud_Functionality": "1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1", @@ -63,17 +64,66 @@ def delete_ship_by_key(key, units): units.remove(unit) return -def add_facets(unit): + + + +# Convert old armor/shield to new format +def force_minimize_shield_and_armor(unit, new_keys, old_keys, min_key): + sum_value = 0 facets = 0 + for old_key in old_keys: + if old_key not in unit: + continue + + temp_value = int(round(float(unit[old_key]))) + facets += 1 if temp_value > 0 else 0 + sum_value += temp_value - for key in minimize_array[1][1]: - if key in unit and float(unit[key]) > 0: - facets += 1 - - if facets > 0: - unit['shield_facets'] = str(facets) - + if facets == 2: + unit[new_keys[0]] = unit[new_keys[1]] = str(sum_value / 2) + elif facets == 4: + unit[new_keys[0]] = unit[new_keys[1]] = str(sum_value / 4) + unit[new_keys[2]] = unit[new_keys[3]] = str(sum_value / 4) + elif facets == 8: + unit[new_keys[0]] = unit[new_keys[1]] = str(sum_value / 4) + unit[new_keys[2]] = unit[new_keys[3]] = str(sum_value / 4) + elif facets == 0: + # Nothing to do + pass + else: + print(unit) + print('\n') + print(f"Illegal number of facets {facets} in force_minimize_shield_and_armor for {unit['Key']}") + sys.exit(1) + + if facets == 8: + facets = 4 + + # Try and minimize to one value + if facets == 2: + if unit[new_keys[0]] == unit[new_keys[1]]: + # Minimize new keys. We have a single value + unit[min_key] = unit[new_keys[0]] + del(unit[new_keys[0]]) + del(unit[new_keys[1]]) + + elif facets == 4: + if unit[new_keys[0]] == unit[new_keys[1]] and unit[new_keys[0]] == unit[new_keys[2]] and unit[new_keys[0]] == unit[new_keys[3]]: + unit[min_key] = unit[new_keys[0]] + # Minimize new keys. We have a single value + for new_key in new_keys: + del(unit[new_key]) + + # We got to the end, we can minimize + for old_key in old_keys: + if old_key in unit: + del(unit[old_key]) + + # Add shield facets + if new_keys[0].startswith('shield'): + unit['shield_facets'] = str(facets) + def minimize_some_values(unit, new_key, old_keys): old_value = None @@ -86,6 +136,7 @@ def minimize_some_values(unit, new_key, old_keys): if temp != old_value and old_value != None: # values don't match, exit + print(f"{unit['Key']} has inconsistent {old_key}") return old_value = temp @@ -103,6 +154,9 @@ def minimize_some_values(unit, new_key, old_keys): def minimize(units, upgrades, base_template): for unit in units: key = unit['Key'] + + if key == 'generic_cargo': + print('cargo') # Delete keys for key_to_delete in delete_keys: @@ -121,9 +175,13 @@ def minimize(units, upgrades, base_template): if k in unit and v == unit[k]: del unit[k] - # Add shield_facets - add_facets(unit) - + # Force minimize shields and armor + for force_minimize in force_array: + new_keys = force_minimize[0] + old_keys = force_minimize[1] + min_key = force_minimize[2] + force_minimize_shield_and_armor(unit, new_keys, old_keys, min_key) + for minimize_values in minimize_array: new_key = minimize_values[0] old_keys = minimize_values[1] @@ -176,6 +234,8 @@ def is_ship(unit): return True +# Go over units and extract all units with __upgrades into a separate list +# Remove some keys in the first line as well def generate_upgrades(units): exclude_list = ['Key', 'Name', 'Object_Type', 'Textual_Description', 'Moment_Of_Inertia', 'Mounts'] upgrades = {} @@ -324,6 +384,12 @@ def generate_cargo(unit, upgrades): if __name__ == '__main__': + # If run from Asset-Production, change to units folder + if os.path.isdir('units'): + path = os.getcwd() + os.chdir(path + '/units') + + units = [] base_template = {} diff --git a/units/ships.json b/units/ships.json index a19229b1..3db855ba 100644 --- a/units/ships.json +++ b/units/ships.json @@ -30,16 +30,6 @@ "Mass": "0.13", "Fuel_Capacity": "0.01", "Hull": "30", - "Armor_Front_Top_Right": "0.5", - "Armor_Front_Top_Left": "0.5", - "Armor_Front_Bottom_Right": "0.5", - "Armor_Front_Bottom_Left": "0.5", - "Armor_Back_Top_Right": "5.5", - "Armor_Back_Top_Left": "5.5", - "Armor_Back_Bottom_Right": "5.5", - "Armor_Back_Bottom_Left": "5.5", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Afterburner_Usage_Cost": "32767", "Maneuver_Yaw": "38.25", "Maneuver_Pitch": "38.25", @@ -55,7 +45,9 @@ "Upgrades": "{dualshield02;;}{skyscope1;;}{reactor01;;}", "Light": "{supernova.bmp.bfxm;-0.249996;0.00000e+0;-1.83758;1.5;;;;;}{supernova.bmp.bfxm;0.250004;0.00000e+0;-1.83758;1.5;;;;;}", "Mounts": "{;;;LIGHT SPECIAL;-4.07186e-6;-0.150000;1.99709;;;-1.06144e-5;0.00000e+0;2.00000;0.00000e+0;1.00000;0.00000e+0;1;1}", - "Upgrade_Storage_Volume": "16" + "Upgrade_Storage_Volume": "16", + "armor": "6.0", + "shield_facets": "0" }, "units": [ { @@ -129,6 +121,7 @@ "Mounts": "{;;3;Light medium autotracking;6;-2.75;-4.75;;;;;;;;;1;1}{;;3;Light medium autotracking;-6;-2.75;-4.75;;;;;;;;;1;1}{;;3;Light medium autotracking;6;4.75;-4.75;;;;;;;;;1;1}{;;3;Light medium autotracking;-6;4.75;-4.75;;;;;;;;;1;1}{;;;heavy autotracking;0;-3;3;;;;;;;;;1;1}{;;21;light-missile;6.082913;-.368988;0.747223;;;;;;;;;1;1}{;;21;light-missile;-6.157103;-.379586;1.100964;;;;;;;;;1;1}{;;300;Light-missile medium-missile heavy-missile;6.045031;-3.217878;0.973509;;;;;;;;;1;1}{;;300;Light-missile medium-missile heavy-missile;-6.022359;-3.201684;0.913285;;;;;;;;;1;1}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "900", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -137,14 +130,6 @@ "Key": "Areus", "Textual_Description": "Aeran assault craft (fighter bomber)", "Mass": "216", - "Armor_Front_Top_Right": "400", - "Armor_Front_Top_Left": "400", - "Armor_Front_Bottom_Right": "400", - "Armor_Front_Bottom_Left": "400", - "Armor_Back_Top_Right": "300", - "Armor_Back_Top_Left": "300", - "Armor_Back_Bottom_Right": "300", - "Armor_Back_Bottom_Left": "300", "Shield_Recharge": "40", "Warp_Capacitor": "1600", "Primary_Capacitor": "1200", @@ -163,22 +148,15 @@ "Lock_Cone": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Photon_MKIII;3000;6;Light medium autotracking;6;-2.75;-4.75;;;;;;;;;1;1}{Photon_MKIII;3000;6;Light medium autotracking;-6;-2.75;-4.75;;;;;;;;;1;1}{Photon_MKIII;3000;6;Light medium autotracking;6;4.75;-4.75;;;;;;;;;1;1}{Photon_MKIII;3000;6;Light medium autotracking;-6;4.75;-4.75;;;;;;;;;1;1}{Penetrator;;40;heavy autotracking;0;-3;3;;;;;;;;;1;1}{Heatseeker;7;21;light-missile;6.082913;-.368988;0.747223;;;;;;;;;1;1}{HeatSeeker;7;21;light-missile;-6.157103;-.379586;1.100964;;;;;;;;;1;1}{AdvTorpedo;4;400;Light-missile medium-missile heavy-missile;6.045031;-3.217878;0.973509;;;;;;;;;1;1}{AdvTorpedo;4;400;Light-missile medium-missile heavy-missile;-6.022359;-3.201684;0.913285;;;;;;;;;1;1}", - "shield_facets": "4", - "shield_strength": "1600" + "armor": "700.0", + "shield": "1600.0", + "shield_facets": "4" } }, { "data": { "Key": "Areus.milspec", "Mass": "216", - "Armor_Front_Top_Right": "150", - "Armor_Front_Top_Left": "150", - "Armor_Front_Bottom_Right": "150", - "Armor_Front_Bottom_Left": "150", - "Armor_Back_Top_Right": "137.5", - "Armor_Back_Top_Left": "137.5", - "Armor_Back_Bottom_Right": "137.5", - "Armor_Back_Bottom_Left": "137.5", "Shield_Recharge": "40", "Warp_Capacitor": "1600", "Primary_Capacitor": "1200", @@ -198,8 +176,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light medium autotracking;6;-2.75;-4.75;;;;;;;;;1;1}{;;5;Light medium autotracking;-6;-2.75;-4.75;;;;;;;;;1;1}{;;5;Light medium autotracking;6;4.75;-4.75;;;;;;;;;1;1}{;;5;Light medium autotracking;-6;4.75;-4.75;;;;;;;;;1;1}{;;30;heavy autotracking;0;-3;3;;;;;;;;;1;1}{;;21;light-missile;6.082913;-.368988;0.747223;;;;;;;;;1;1}{;;21;light-missile;-6.157103;-.379586;1.100964;;;;;;;;;1;1}{;;300;Light-missile medium-missile heavy-missile;6.045031;-3.217878;0.973509;;;;;;;;;1;1}{;;300;Light-missile medium-missile heavy-missile;-6.022359;-3.201684;0.913285;;;;;;;;;1;1}", "Cargo": "{Areus_Milspec_Package;upgrades/Packages/Milspec;200000;1;140;855;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "4", - "shield_strength": "600" + "armor": "288.0", + "shield": "600.0", + "shield_facets": "4" } } ] @@ -243,6 +222,7 @@ "Light": "{supernova.bmp.bfxm;0;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;0.6;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;-0.6;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;1.2;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;-1.2;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;1.8;0;-4.3;1.2;;;;;}{supernova.bmp.bfxm;-1.8;0;-4.3;1.2;;;;;}{supernova.bmp.bfxm;5;0.275;-2;2;;;;;}{supernova.bmp.bfxm;4;0.275;-2;2;;;;;}{supernova.bmp.bfxm;-5;0.275;-2;2;;;;;}{supernova.bmp.bfxm;-4;0.275;-2;2;;;;;}{supernova.bmp.bfxm;8.75;0.275;-2.75;2;;;;;}{supernova.bmp.bfxm;9.75;0.275;-2.75;2;;;;;}{supernova.bmp.bfxm;-9.75;0.275;-2.75;2;;;;;}{supernova.bmp.bfxm;-8.75;0.275;-2.75;2;;;;;}", "Mounts": "{;8;800;heavy-missile;1;-2;7;;;;;;;;;1;1}{;8;800;heavy-missile;-1;-2;7;;;;;;;;;1;1}{;8;800;heavy-missile;1;-2;-1;;;;;;;;;1;1}{;8;800;heavy-missile;-1;-2;-1;;;;;;;;;1;1}{;;;light autotracking;12.5;0.1;0;;;;;;;;;1;1}{;;;light autotracking;-12.5;0.1;0;;;;;;;;;1;1}{;;;light autotracking;12.5;-0.1;0;;;;;;;;;1;1}{;;;light autotracking;-12.5;-0.1;0;;;;;;;;;1;1}{;;;light medium autotracking;-2;0;12;;;;;;;;;1;1}{;;;light medium autotracking;2;-0;12;;;;;;;;;1;1}{;;;capship-light;-0.1;-2;13;;;;;;;;;1;1}{;;;capship-light;0.1;-2;13;;;;;;;;;1;1}{;5;80;light-missile medium-missile;4.1;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;3.9;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;-4.1;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;-3.9;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;8.1;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;7.9;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;-8.1;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;-7.9;0;-3;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "25000", + "shield_facets": "0", "accel": "60000" }, "units": [ @@ -250,10 +230,6 @@ "data": { "Key": "Goddard", "Mass": "4800", - "Shield_Front_Top_Right": "4200", - "Shield_Back_Top_Left": "3600", - "Shield_Front_Bottom_Right": "3600", - "Shield_Front_Bottom_Left": "3600", "Shield_Recharge": "200", "Warp_Capacitor": "450", "Primary_Capacitor": "4000", @@ -273,8 +249,9 @@ "Hold_Volume": "1000", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{torpedo;8;800;heavy-missile;1;-2;7;;;;;;;;;1;1}{torpedo;8;800;heavy-missile;-1;-2;7;;;;;;;;;1;1}{torpedo;8;800;heavy-missile;1;-2;-1;;;;;;;;;1;1}{torpedo;8;800;heavy-missile;-1;-2;-1;;;;;;;;;1;1}{FS_MWRF_Laser;;;light autotracking;12.5;0.1;0;;;;;;;;;1;1}{FS_MWRF_Laser;;;light autotracking;-12.5;0.1;0;;;;;;;;;1;1}{FS_MWRF_Laser;;;light autotracking;12.5;-0.1;0;;;;;;;;;1;1}{FS_MWRF_Laser;;;light autotracking;-12.5;-0.1;0;;;;;;;;;1;1}{DisruptorBeam;;;light medium autotracking;-2;0;12;;;;;;;;;1;1}{DisruptorBeam;;;light medium autotracking;2;-0;12;;;;;;;;;1;1}{RelativisticParticleBeam;;;capship-light;-0.1;-2;13;;;;;;;;;1;1}{RelativisticParticleBeam;;;capship-light;0.1;-2;13;;;;;;;;;1;1}{friendorfoe;5;80;light-missile medium-missile;4.1;0;-3;;;;;;;;;1;1}{friendorfoe;5;80;light-missile medium-missile;3.9;0;-3;;;;;;;;;1;1}{friendorfoe;5;80;light-missile medium-missile;-4.1;0;-3;;;;;;;;;1;1}{friendorfoe;5;80;light-missile medium-missile;-3.9;0;-3;;;;;;;;;1;1}{friendorfoe;5;80;light-missile medium-missile;8.1;0;-3;;;;;;;;;1;1}{friendorfoe;5;80;light-missile medium-missile;7.9;0;-3;;;;;;;;;1;1}{friendorfoe;5;80;light-missile medium-missile;-8.1;0;-3;;;;;;;;;1;1}{friendorfoe;5;80;light-missile medium-missile;-7.9;0;-3;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "850" + "armor": "1700.0", + "shield": "3750.0", + "shield_facets": "4" } }, { @@ -282,14 +259,6 @@ "Key": "Goddard.milspec", "Textual_Description": "Recently developed Andolian bomber. One of the most advanced and most expensive human craft currently in service.", "Mass": "4800", - "Armor_Front_Top_Right": "450", - "Armor_Front_Top_Left": "450", - "Armor_Front_Bottom_Right": "450", - "Armor_Front_Bottom_Left": "450", - "Armor_Back_Top_Right": "400", - "Armor_Back_Top_Left": "400", - "Armor_Back_Bottom_Right": "400", - "Armor_Back_Bottom_Left": "400", "Shield_Recharge": "200", "Warp_Capacitor": "450", "Primary_Capacitor": "4000", @@ -310,8 +279,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;800;heavy-missile;1;-2;7;;;;;;;;;1;1}{;;800;heavy-missile;-1;-2;7;;;;;;;;;1;1}{;;800;heavy-missile;1;-2;-1;;;;;;;;;1;1}{;;800;heavy-missile;-1;-2;-1;;;;;;;;;1;1}{;;5;light autotracking;12.5;0.1;0;;;;;;;;;1;1}{;;5;light autotracking;-12.5;0.1;0;;;;;;;;;1;1}{;;5;light autotracking;12.5;-0.1;0;;;;;;;;;1;1}{;;5;light autotracking;-12.5;-0.1;0;;;;;;;;;1;1}{;;5;light medium autotracking;-2;0;12;;;;;;;;;1;1}{;;5;light medium autotracking;2;-0;12;;;;;;;;;1;1}{;;30;medium heavy;0.1;-2;13;;;;;;;;;1;1}{;;30;medium heavy;0.1;-2;13;;;;;;;;;1;1}{;;30;medium heavy;0.1;-2;13;;;;;;;;;1;1}{;;80;light-missile medium-missile;4.1;0;-3;;;;;;;;;1;1}{;;80;light-missile medium-missile;3.9;0;-3;;;;;;;;;1;1}{;;80;light-missile medium-missile;-4.1;0;-3;;;;;;;;;1;1}{;;80;light-missile medium-missile;-3.9;0;-3;;;;;;;;;1;1}{;;80;light-missile medium-missile;8.1;0;-3;;;;;;;;;1;1}{;;80;light-missile medium-missile;7.9;0;-3;;;;;;;;;1;1}{;;80;light-missile medium-missile;-8.1;0;-3;;;;;;;;;1;1}{;;80;light-missile medium-missile;-7.9;0;-3;;;;;;;;;1;1}", "Cargo": "{Goddard_Milspec_Package;upgrades/Packages/Milspec;200000;1;300;24000;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "4", - "shield_strength": "1400" + "armor": "850.0", + "shield": "1400.0", + "shield_facets": "4" } } ] @@ -354,6 +324,7 @@ "Light": "{supernova.bmp.bfxm;0;0.75;-7.5;4;;;;;}{supernova.bmp.bfxm;0;-2;0.3;1;;;;;}{supernova.bmp.bfxm;0.5;-2;0.3;1;;;;;}{supernova.bmp.bfxm;-0.5;-2;0.3;1;;;;;}{supernova.bmp.bfxm;0.25;-2;0.3;1;;;;;}{supernova.bmp.bfxm;-0.25;-2;0.3;1;;;;;}{supernova.bmp.bfxm;0;-1.6;-1.35;1;;;;;}{supernova.bmp.bfxm;0.4;-1.6;-1.35;1;;;;;}{supernova.bmp.bfxm;-0.4;-1.6;-1.35;1;;;;;}{supernova.bmp.bfxm;0.2;-1.6;-1.35;1;;;;;}{supernova.bmp.bfxm;-0.2;-1.6;-1.35;1;;;;;}", "Mounts": "{;;800;light-missile medium-missile special-missile;2.1;0.75;0;;;;;;;;;1;1}{;;800;light-missile medium-missile special-missile;-2;0.75;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "4500", + "shield_facets": "0", "accel": "8000" }, "units": [ @@ -361,10 +332,6 @@ "data": { "Key": "Kierkegaard", "Mass": "1500", - "Shield_Front_Top_Right": "2800", - "Shield_Back_Top_Left": "2800", - "Shield_Front_Bottom_Right": "2400", - "Shield_Front_Bottom_Left": "2400", "Shield_Recharge": "150", "Warp_Capacitor": "1600", "Primary_Capacitor": "2000", @@ -383,8 +350,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Sub_Units": "{turretpdlong;0;2.3;-4.5;0;0;1;0;1;0;180.0}{turretpdlong;0;-1.9;5.75;0;0;1;0;-1;0;180.0}{turretbeam;2.1;2;-4.4;1.0;0;0;0;1;0;180.0}{turretbeam;-2.3;-0.65;-4.1;1.0;0;0;0;-1;0;180.0}{turretbeam;-2.1;2;-4.4;1.0;0;0;0;1;0;180.0}{turretbeam;2.3;-0.65;-4.1;1.0;0;0;0;-1;0;180.0}", "Mounts": "{Resignation;32;800;light-missile medium-missile special-missile;2.1;0.75;0;;;;;;;;;1;1}{Resignation;32;800;light-missile medium-missile special-missile;-2;0.75;0;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "650" + "armor": "1300.0", + "shield": "2600.0", + "shield_facets": "4" } } ] @@ -427,6 +395,7 @@ "Light": "{supernova.bmp.bfxm;4;1.05;-15.5;13;;;;;}{supernova.bmp.bfxm;-4;1.05;-15.5;13;;;;;}{supernova.bmp.bfxm;3.75;-.75;-17;18;;;;;}{supernova.bmp.bfxm;-3.75;-.75;-17;18;;;;;}{supernova.bmp.bfxm;3.5;-3.75;-15.8;8;;;;;}{supernova.bmp.bfxm;-3.5;-3.75;-15.8;8;;;;;}{supernova.bmp.bfxm;5.25;-3.75;-15.8;8;;;;;}{supernova.bmp.bfxm;-5.25;-3.75;-15.8;8;;;;;}{supernova.bmp.bfxm;5.25;-5.1;-15.8;8;;;;;}{supernova.bmp.bfxm;-5.25;-5.1;-15.8;8;;;;;}{supernova.bmp.bfxm;3.5;-5.1;-15.8;8;;;;;}{supernova.bmp.bfxm;-3.5;-5.1;-15.8;8;;;;;}", "Mounts": "{;;3;Light Medium Heavy;1;-5.86;11.5;;;;;;;;;1;1}{;;3;Light Medium Heavy;-1;-5.86;11.5;;;;;;;;;1;1}{;;3;Light Medium Heavy;1;-8;11.5;;;;;;;;;1;1}{;;3;Light Medium Heavy;-1;-8;11.5;;;;;;;;;1;1}{;;3;Light;.65;3.75;7;;;;;;;;;1;1}{;;3;Light;-.65;3.75;7;;;;;;;;;1;1}{;;8;special-missile;4;-3.75;.2;;;;;;;;;1;1}{;;8;special-missile;-4;-3.75;.2;;;;;;;;;1;1}{;;200;heavy-missile;-5.000000;-.9000000;-3.000000;;;;;;;;;1;1}{;;200;heavy-missile;5.000000;-.9000000;-3.000000;;;;;;;;;1;1}{;;16;light-missile medium-missile;3.000000;-.9000000;-1.000000;;;;;;;;;1;1}{;;16;light-missile medium-missile;-3.000000;-.9000000;-1.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "2500", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -464,7 +433,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;15;Light Medium Heavy;1;-5.86;11.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;-1;-5.86;11.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;1;-8;11.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;-1;-8;11.5;;;;;;;;;1;1}{;;3;Light;.65;3.75;7;;;;;;;;;1;1}{;;3;Light;-.65;3.75;7;;;;;;;;;1;1}{;;8;special-missile;4;-3.75;.2;;;;;;;;;1;1}{;;8;special-missile;-4;-3.75;.2;;;;;;;;;1;1}{;;200;heavy-missile;-5.000000;-.9000000;-3.000000;;;;;;;;;1;1}{;;200;heavy-missile;5.000000;-.9000000;-3.000000;;;;;;;;;1;1}{;;16;light-missile medium-missile;3.000000;-.9000000;-1.000000;;;;;;;;;1;1}{;;16;light-missile medium-missile;-3.000000;-.9000000;-1.000000;;;;;;;;;1;1}", "Cargo": "{Pacifier_Milspec_Package;upgrades/Packages/Milspec;200000;1;114;2375;1;1;Full-Custom Milspec Configuration;0}", - "armor": "1" + "armor": "2.0" } }, { @@ -491,10 +460,6 @@ "Key": "Pacifier.rgspec", "Textual_Description": "Aging Purist heavy fighter/bomber", "Mass": "640", - "Shield_Front_Top_Right": "1", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", "Jump_Drive_Present": "1", "Afterburner_Speed_Governor": "180", "Default_Speed_Governor": "180", @@ -506,8 +471,7 @@ "Upgrades": "{armor06;;}{quadshield10;;}{add_spec_capacitor04;;}{capacitor09;;}{reactor07;;}{jump_drive;;}{hawkeye2;;}{ecm_package03;;}", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Upgrade_Storage_Volume": "125", - "shield_facets": "1", - "armor": "1" + "armor": "2.0" } }, { @@ -526,9 +490,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;15;Light Medium Heavy;1;-5.86;11.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;-1;-5.86;11.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;1;-8;11.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;-1;-8;11.5;;;;;;;;;1;1}{;;3;Light;.65;3.75;7;;;;;;;;;1;1}{;;3;Light;-.65;3.75;7;;;;;;;;;1;1}{;;8;special-missile;4;-3.75;.2;;;;;;;;;1;1}{;;8;special-missile;-4;-3.75;.2;;;;;;;;;1;1}{;;200;heavy-missile;-5.000000;-.9000000;-3.000000;;;;;;;;;1;1}{;;200;heavy-missile;5.000000;-.9000000;-3.000000;;;;;;;;;1;1}{;;16;light-missile medium-missile;3.000000;-.9000000;-1.000000;;;;;;;;;1;1}{;;16;light-missile medium-missile;-3.000000;-.9000000;-1.000000;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -570,6 +534,7 @@ "Mounts": "{;;;Light Medium Heavy autotracking;-9;-.25;-.75;;;;;;;;;1;1}{;;;Light Medium Heavy autotracking;9;-.25;-.75;;;;;;;;;1;1}{;;;Light;-4.5;-.6;12.25;;;;;;;;;1;1}{;;;Light;4.5;-.6;12.25;;;;;;;;;1;1}{;;200;special-missile;0;-0.5;0;;;;;;;;;1;1}", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "1500", + "shield_facets": "0", "accel": "12000" }, "units": [ @@ -578,18 +543,6 @@ "Key": "Taizong", "Mass": "240", "Hull": "1800", - "Armor_Front_Top_Right": "800", - "Armor_Front_Top_Left": "800", - "Armor_Front_Bottom_Right": "800", - "Armor_Front_Bottom_Left": "800", - "Armor_Back_Top_Right": "600", - "Armor_Back_Top_Left": "600", - "Armor_Back_Bottom_Right": "600", - "Armor_Back_Bottom_Left": "600", - "Shield_Front_Top_Right": "450", - "Shield_Back_Top_Left": "400", - "Shield_Front_Bottom_Right": "400", - "Shield_Front_Bottom_Left": "400", "Shield_Recharge": "250", "Warp_Capacitor": "600", "Primary_Capacitor": "1400", @@ -612,6 +565,8 @@ "Hold_Volume": "50", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{KtekBeam;;;Light Medium Heavy autotracking;-9;-.25;-.75;;;;;;;;;1;1}{KtekBeam;;;Light Medium Heavy autotracking;9;-.25;-.75;;;;;;;;;1;1}{Ktek;;;Light;-4.5;-.6;12.25;;;;;;;;;1;1}{Ktek;;;Light;4.5;-.6;12.25;;;;;;;;;1;1}{MiniGravThumper;8;200;special-missile;0;-0.5;0;;;;;;;;;1;1}", + "armor": "1400.0", + "shield": "412.5", "shield_facets": "4" } }, @@ -619,18 +574,6 @@ "data": { "Key": "Taizong.milspec", "Mass": "240", - "Armor_Front_Top_Right": "140", - "Armor_Front_Top_Left": "140", - "Armor_Front_Bottom_Right": "140", - "Armor_Front_Bottom_Left": "140", - "Armor_Back_Top_Right": "122.5", - "Armor_Back_Top_Left": "122.5", - "Armor_Back_Bottom_Right": "122.5", - "Armor_Back_Bottom_Left": "122.5", - "Shield_Front_Top_Right": "350", - "Shield_Back_Top_Left": "300", - "Shield_Front_Bottom_Right": "300", - "Shield_Front_Bottom_Left": "300", "Shield_Recharge": "250", "Warp_Capacitor": "600", "Primary_Capacitor": "1400", @@ -654,6 +597,8 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light Medium Heavy autotracking;-9;-.25;-.75;;;;;;;;;1;1}{;;5;Light Medium Heavy autotracking;9;-.25;-.75;;;;;;;;;1;1}{;;5;Light;-4.5;-.6;12.25;;;;;;;;;1;1}{;;5;Light;4.5;-.6;12.25;;;;;;;;;1;1}{;;200;special-missile;0;-0.5;0;;;;;;;;;1;1}", "Cargo": "{Taizong_Milspec_Package;upgrades/Packages/Milspec;200000;1;140;1425;1;1;Full-Custom Milspec Configuration;0}", + "armor": "262.0", + "shield": "312.5", "shield_facets": "4" } }, @@ -672,9 +617,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light Medium Heavy autotracking;-9;-.25;-.75;;;;;;;;;1;1}{;;5;Light Medium Heavy autotracking;9;-.25;-.75;;;;;;;;;1;1}{;;5;Light;-4.5;-.6;12.25;;;;;;;;;1;1}{;;5;Light;4.5;-.6;12.25;;;;;;;;;1;1}{;;200;special-missile;0;-0.5;0;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -724,9 +669,9 @@ "Light": "{supernova.bmp.bfxm;-0.007512;0.108995;-13.162303;0.420000;;;;;}{supernova.bmp.bfxm;-1.298644;0.250378;-9.955322;0.739999;;;;;}{supernova.bmp.bfxm;-2.182528;0.257965;-9.449021;0.779999;;;;;}{supernova.bmp.bfxm;-2.919419;0.241751;-9.026920;0.779999;;;;;}{supernova.bmp.bfxm;1.947601;0.169290;-9.583591;0.690000;;;;;}{supernova.bmp.bfxm;1.252088;0.181478;-9.981990;0.680000;;;;;}{supernova.bmp.bfxm;2.731254;0.138757;-9.134703;0.530000;;;;;}", "Dock": "{;.50;.45;9;.3;0}{;-.50;.45;9;.3;0}", "Upgrade_Storage_Volume": "100000", + "armor": "25000.0", + "shield": "42000.0", "shield_facets": "4", - "armor": "12500", - "shield_strength": "42000", "accel": "10000000" }, "units": [ @@ -739,8 +684,8 @@ "Light": "{supernova.bmp.bfxm;-0.65;-0.0;-1260.76;100;;;;;}{supernova.bmp.bfxm;-219.38;-0.0;-996.0;100;;;;;}{supernova.bmp.bfxm;-150.35;-0.0;-996.0;100;;;;;}{supernova.bmp.bfxm;-80.64;-0.0;-996.0;100;;;;;}{supernova.bmp.bfxm;220.49;-0.0;-996.0;100;;;;;}{supernova.bmp.bfxm;151.14;-0.0;-996.0;100;;;;;}{supernova.bmp.bfxm;80.98;-0.0;-996.0;100;;;;;}", "Dock": "{;264.81;-0.0;-698.71;57.69;0}{;-264.17;-0.0;-698.71;57.69;0}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;1;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;1;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;;3}{Industrially_Manufactured_Goods/Electronics;.8;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;1;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;3;4}{Industrially_Manufactured_Goods/Recycled_Products;.78;.2;10;15}{Natural_Products/Food;1.2;.2;5;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys;1.1;.1;;2}{Refined_Materials/Chemicals;1.1;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.1;.2;;4}{Specialty_Goods/Medical;1.1;.1;;3}{starships/Confed/Heavy;1;;-2;5}{starships/Confed/Light;1;;;3}{starships/Confed/Medium;1;;-3;9}{starships/Confed/Milspec;1;;-3;5}{starships/Regional_Guard/Heavy;1;;-2;3}{starships/Regional_Guard/Light;1;;;2}{starships/Regional_Guard/Medium;1;;;2}{upgrades/Ammunition/Confed;1;.1;-20;50}{upgrades/Armor;1;.1;;5}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Experimental;1.4;.2;-20;23}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;;5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets;1;.1;1;1}", - "armor": "25000", - "shield_strength": "64000" + "armor": "50000.0", + "shield": "64000.0" } } ] @@ -791,9 +736,9 @@ "Mounts": "{;;1600;;0.64;-40;120;;;;;;;;;1;1}{;;1600;;-0.64;-40;120;;;;;;;;;1;1}{;;1600;;1;-35;123;;;;;;;;;1;1}{;;1600;;-1;-35;123;;;;;;;;;1;1}", "Dock": "{;0;-55;120;40;0}{;0;-30;0;30;0}", "Upgrade_Storage_Volume": "100000", + "armor": "23000.0", + "shield": "12000.0", "shield_facets": "4", - "armor": "11500", - "shield_strength": "12000", "accel": "10000000" }, "units": [ @@ -803,8 +748,8 @@ "Hold_Volume": "50000000", "Mounts": "{torpedo;16;;;0.64;-40;120;;;;;;;;;1;1}{torpedo;16;;;-0.64;-40;120;;;;;;;;;1;1}{torpedo;16;;;1;-35;123;;;;;;;;;1;1}{torpedo;16;;;-1;-35;123;;;;;;;;;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;1;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;1;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;;3}{Industrially_Manufactured_Goods/Electronics;.8;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;1;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;3;4}{Industrially_Manufactured_Goods/Recycled_Products;.78;.2;10;15}{Natural_Products/Food;1.2;.2;5;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys;1.1;.1;;2}{Refined_Materials/Chemicals;1.1;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.1;.2;;4}{Specialty_Goods/Medical;1.1;.1;;3}{starships/Confed/Heavy;1;;-2;5}{starships/Confed/Light;1;;;3}{starships/Confed/Medium;1;;-3;9}{starships/Confed/Milspec;1;;-3;5}{starships/Regional_Guard/Heavy;1;;-2;3}{starships/Regional_Guard/Light;1;;;2}{starships/Regional_Guard/Medium;1;;;2}{upgrades/Ammunition/Confed;1;.1;200;50}{upgrades/Ammunition/Common;1.4;.1;200;50}{upgrades/Armor;1;.1;;5}{upgrades/Capacitors/Standard;1;.1;2;10}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Experimental;1.4;.2;-20;23}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;;5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets;1;.1;1;1}", - "armor": "22000", - "shield_strength": "36000" + "armor": "44000.0", + "shield": "36000.0" } }, { @@ -822,8 +767,8 @@ "Hold_Volume": "50000000", "Mounts": "{;;1600;heavy-missile;0.64;-40;120;;;;;;;;;1;1}{;;1600;heavy-missile;-0.64;-40;120;;;;;;;;;1;1}{;;1600;heavy-missile;1;-35;123;;;;;;;;;1;1}{;;1600;heavy-missile;-1;-35;123;;;;;;;;;1;1}", "Cargo": "{Clydesdale_Milspec_Package;upgrades/Packages/Milspec;200000;1;1;1;1;1;Full-Custom Milspec Configuration;0}", - "armor": "22000", - "shield_strength": "36000" + "armor": "44000.0", + "shield": "36000.0" } } ] @@ -878,9 +823,9 @@ "Dock": "{1;6;0;-17.75;3;0}{1;-6;0;-17.75;3;0}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;3;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;1;1}{Industrially_Manufactured_Goods/Electronics;.8;.2;2;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;10;7}{Natural_Products/Food;1.1;.2;15;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;1;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys;1.1;.1;2;2}{Refined_Materials/Chemicals;1.1;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.2;1;1}{Specialty_Goods/Medical;1.1;.1;3;3}{upgrades/Ammunition/Confed;1;.1;;50}{upgrades/Armor;1;.1;;5}{upgrades/Capacitors/Standard;1;.1;2;10}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;;5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets;1;.1;1;1}", "Upgrade_Storage_Volume": "100000", + "armor": "60000.0", + "shield": "64000.0", "shield_facets": "4", - "armor": "30000", - "shield_strength": "64000", "accel": "10000000" }, "units": [ @@ -939,9 +884,9 @@ "Cargo": "{Pilot;Contraband;1000;0;274;1;1;1;;0}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "100000", + "armor": "32000.0", + "shield": "64000.0", "shield_facets": "4", - "armor": "16000", - "shield_strength": "64000", "accel": "200000000" }, "units": [ @@ -951,8 +896,8 @@ "Hold_Volume": "50000000", "Mounts": "{GrandGauss;;;special;1.177931;-0.016667;7.600000;;;0.000000;0.000000;1.000000;-0.110432;-0.993884;0.000000;1;1}{GrandGauss;;;special;-0.016667;1.177931;7.600000;;;0.000000;0.000000;1.000000;-0.000000;1.000000;0.000000;1;1}{GrandGauss;;;special;-1.177931;-0.016667;7.600000;;;0.000000;-0.000000;1.000000;-1.000000;-0.000000;0.000000;1;1}{GrandGauss;;;special;-0.016667;-1.177931;7.600000;;;0.000000;-0.000000;1.000000;-0.993884;0.110432;0.000000;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Electronics;1.2;.2;;20}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.2;;10}{Industrially_Manufactured_Goods/Electronics;1.1;.2;;10}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;30}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;;10}{Natural_Products/Food/Aera;1.9;.2;15;20}{Natural_Products/Food;.7;.2;;}{Natural_Products/Life-forms;.95;.1;;}{Natural_Products/Liquor;1.1;.1;10;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;1.1;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys/Aera;1;.1;;20}{Refined_Materials/Alloys;.8;.1;;}{Refined_Materials/Chemicals;1.2;.3;;10}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Refined_Materials/Synthetics;1.05;.3;;10}{Research;12;2;-5;10}{Specialty_Goods/Entertainment;1.7;.2;;10}{Specialty_Goods/Pharmaceutical;1.9;.1;-1;3}{starships/Aera/Heavy;1;;5;15}{starships/Aera/Light;1;;15;20}{starships/Aera/Milspec;1;;10;15}{upgrades/Ammunition/Aera;1;.1;;25}{upgrades/Armor;1;.1;1;5}{upgrades/Capacitors/Standard;1;.1;2;10}{upgrades/ECM_Systems;1;.1;1.5;5.5}{upgrades/Experimental;1.4;.2;-8;10}{upgrades/Jump_Drives;1;.1;10;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;2;17}{upgrades/Repair_Systems;1;.1;5;2}{upgrades/Sensors/Confed;1;.1;2;1}{upgrades/Sensors/Common;1;.1;5;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;;2}{upgrades/Shield_Systems;1;.1;-2;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;2;10}{upgrades/Weapons/Beam_Arrays_Light;1;;10;50}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;5;20}{upgrades/Weapons/Mount_Enhancements;1;.1;10;50}{upgrades/Weapons/Mounted_Guns_Aera_Milspec;1;.1;;20}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;30}{upgrades/Weapons/Mounted_Guns_Light;1;;;100}{upgrades/Weapons/Mounted_Guns_Medium;1;;;50}{upgrades/Weapons/Turrets/Aera;1;.1;;1}", - "armor": "52000", - "shield_strength": "264000" + "armor": "104000.0", + "shield": "264000.0" } } ] @@ -999,7 +944,8 @@ "Mounts": "{;;;CAPSHIP-HEAVY ;10;-165;270;;;;;;;;;1;1}{;;;CAPSHIP-HEAVY ;0;-170;270;;;;;;;;;1;1}{;;;CAPSHIP-HEAVY ;-10;-165;270;;;;;;;;;1;1}{;12;;HEAVY-CAPSHIP-MISSILE;0;-170;270;;;;;;;;;1;1}", "Dock": "{;0;-100;-220;80;0}", "Upgrade_Storage_Volume": "100000", - "armor": "12000", + "armor": "24000.0", + "shield_facets": "0", "accel": "950000000" }, "units": [ @@ -1020,9 +966,9 @@ "Sub_Units": "{rlaanturret;108.5;31.25;234.5;0;1;0;1;.325;0;180.0}{rlaanturret;-108.5;31.25;234.5;0;1;0;-1;.325;0;180.0}{rlaanturret;108;82.25;93;0;1;0;1;.375;0;180.0}{rlaanturret;-108;82.25;93;0;1;0;-1;.375;0;180.0}{rlaanturret;66;179;47.75;0;0;1;1;.5;0;180.0}{rlaanturret;-66;179;47.75;0;0;1;-1;.5;0;180.0}{rlaanturret;0;-177.5;266.5;0;0;-1;0;-1;0;180.0}{rlaanturretpd;108.5;31.25;225.5;0;1;0;1;.325;0;180.0}{rlaanturretpd;-108.5;31.25;225.5;0;1;0;-1;.325;0;180.0}{rlaanturretpd;108;82.25;85;0;1;0;1;.375;0;180.0}{rlaanturretpd;-108;82.25;85;0;1;0;-1;.375;0;180.0}{rlaanturretmini;66;179;40.75;0;0;1;1;.5;0;180.0}{rlaanturretmini;-66;179;40.75;0;0;1;-1;.5;0;180.0}{rlaanturretpd;0;-177.5;258.5;0;0;-1;0;-1;0;180.0}", "Mounts": "{icepick;;;capship-heavy autotracking;10;-165;270;;;;;;;;;1;1}{icepick;;;capship-heavy autotracking;0;-170;270;;;;;;;;;1;1}{icepick;;;capship-heavy autotracking;-10;-165;270;;;;;;;;;1;1}{hellspawn;12;;heavy-capship-missile;0;-170;270;;;;;;;;;1;1}", "Explosion": "explosion_rlaan.ani", - "shield_facets": "4", - "armor": "61000", - "shield_strength": "4800" + "armor": "122000.0", + "shield": "4800.0", + "shield_facets": "4" } } ] @@ -1040,18 +986,6 @@ "Mass": "34409966", "Fuel_Capacity": "2867497.17", "Hull": "1820000", - "Armor_Front_Top_Right": "13750", - "Armor_Front_Top_Left": "13750", - "Armor_Front_Bottom_Right": "13750", - "Armor_Front_Bottom_Left": "13750", - "Armor_Back_Top_Right": "11500", - "Armor_Back_Top_Left": "11500", - "Armor_Back_Bottom_Right": "11500", - "Armor_Back_Bottom_Left": "11500", - "Shield_Front_Top_Right": "42000", - "Shield_Back_Top_Left": "24000", - "Shield_Front_Bottom_Right": "24000", - "Shield_Front_Bottom_Left": "24000", "Shield_Recharge": "150", "Warp_Capacitor": "20000", "Primary_Capacitor": "300000", @@ -1085,6 +1019,8 @@ "Mounts": "{;;;capship-heavy autotracking;265.415009;-136.698349;-276.000000;;;-0.000000;0.000000;1.000000;0.809017;0.587785;0.000000;1;1}{;;;capship-heavy autotracking;-265.415009;-136.698349;-276.000000;;;0.000000;0.000000;1.000000;-0.809017;-0.587785;0.000000;1;1}{;;;capship-heavy autotracking;230.528397;-120.472023;-240.000000;;;-0.000000;0.000000;1.000000;0.809017;0.587785;0.000000;1;1}{;;;capship-heavy autotracking;-230.528397;-112.863564;-240.000000;;;0.000000;0.000000;1.000000;0.309017;-0.951056;0.000000;1;1}{;;;capship-heavy autotracking;192.264206;-102.962555;-216.000000;;;-0.000000;0.000000;1.000000;0.809017;0.587785;0.000000;1;1}{;;;capship-heavy autotracking;-192.264206;-95.354103;-216.000000;;;0.000000;0.000000;1.000000;0.309017;-0.951057;0.000000;1;1}", "Dock": "{;211.844528;61.513916;-720.000000;90.120924;0}{;-211.844528;61.513916;-720.000000;96.601067;0}{;-530.841492;-195.520065;-888.000000;71.160479;0}{;533.229492;-195.802505;-887.999939;76.320614;0}{;0;-200;300;100;0}{;0;-200;172;100;0}{;0;-200;30;100;0}{;0;60;300;100;0}{;0;60;172;100;0}{;0;60;30;100;0}", "Upgrade_Storage_Volume": "100000", + "armor": "25250.0", + "shield": "28500.0", "shield_facets": "4", "accel": "100000000" }, @@ -1092,22 +1028,12 @@ { "data": { "Key": "Tesla", - "Armor_Front_Top_Right": "20000", - "Armor_Front_Top_Left": "20000", - "Armor_Front_Bottom_Right": "20000", - "Armor_Front_Bottom_Left": "20000", - "Armor_Back_Top_Right": "18000", - "Armor_Back_Top_Left": "18000", - "Armor_Back_Bottom_Right": "18000", - "Armor_Back_Bottom_Left": "18000", - "Shield_Front_Top_Right": "68000", - "Shield_Back_Top_Left": "48000", - "Shield_Front_Bottom_Right": "48000", - "Shield_Front_Bottom_Left": "48000", "Warp_Capacitor": "25000", "Hold_Volume": "50000000", "Mounts": "{LR_PminusbeamMKIV;;;capship-heavy autotracking;265.415009;-136.698349;-276.000000;;;-0.000000;0.000000;1.000000;0.809017;0.587785;0.000000;1;1}{LR_PminusbeamMKIV;;;capship-heavy autotracking;-265.415009;-136.698349;-276.000000;;;0.000000;0.000000;1.000000;-0.809017;-0.587785;0.000000;1;1}{LR_PminusbeamMKIV;;;capship-heavy autotracking;230.528397;-120.472023;-240.000000;;;-0.000000;0.000000;1.000000;0.809017;0.587785;0.000000;1;1}{LR_PminusbeamMKIV;;;capship-heavy autotracking;-230.528397;-112.863564;-240.000000;;;0.000000;0.000000;1.000000;0.309017;-0.951056;0.000000;1;1}{LR_PminusbeamMKIV;;;capship-heavy autotracking;192.264206;-102.962555;-216.000000;;;-0.000000;0.000000;1.000000;0.809017;0.587785;0.000000;1;1}{LR_PminusbeamMKIV;;;capship-heavy autotracking;-192.264206;-95.354103;-216.000000;;;0.000000;0.000000;1.000000;0.309017;-0.951057;0.000000;1;1}", - "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;3;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;1;1}{Industrially_Manufactured_Goods/Electronics;.8;.2;2;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;10;7}{Natural_Products/Food;1.1;.2;15;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;1;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys;1.1;.1;2;2}{Refined_Materials/Chemicals;1.1;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.2;1;1}{Specialty_Goods/Medical;1.1;.1;3;3}{starships/Confed/Heavy;1;;;5}{starships/Confed/Light;1;;;10}{starships/Confed/Medium;1;;;7}{starships/Confed/Milspec;1;;;2}{starships/Regional_Guard/Heavy;1;;;2}{starships/Regional_Guard/Light;1;;;7}{starships/Regional_Guard/Medium;1;;;5}{upgrades/Ammunition/Confed;1;.1;;50}{upgrades/Armor;1;.1;;5}{upgrades/Capacitors/Standard;1;.1;2;10}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Experimental;1.4;.2;-2;3}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;;5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets;1;.1;1;1}" + "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;3;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;1;1}{Industrially_Manufactured_Goods/Electronics;.8;.2;2;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;10;7}{Natural_Products/Food;1.1;.2;15;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;1;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys;1.1;.1;2;2}{Refined_Materials/Chemicals;1.1;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.2;1;1}{Specialty_Goods/Medical;1.1;.1;3;3}{starships/Confed/Heavy;1;;;5}{starships/Confed/Light;1;;;10}{starships/Confed/Medium;1;;;7}{starships/Confed/Milspec;1;;;2}{starships/Regional_Guard/Heavy;1;;;2}{starships/Regional_Guard/Light;1;;;7}{starships/Regional_Guard/Medium;1;;;5}{upgrades/Ammunition/Confed;1;.1;;50}{upgrades/Armor;1;.1;;5}{upgrades/Capacitors/Standard;1;.1;2;10}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Experimental;1.4;.2;-2;3}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;;5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets;1;.1;1;1}", + "armor": "38000.0", + "shield": "53000.0" } } ] @@ -1158,9 +1084,9 @@ "Dock": "{;-5;0;-.3;1.9;0}{;5;0;-.3;1.9;0}{;-5;0;1.7;1.9;0}{;5;0;1.7;1.9;0}{;-5;0;3.7;1.9;0}{;-5;0;3.7;1.9;0}{;5;0;5.7;1.9;0}{;-5;0;5.7;1.9;0}{;5;0;7.7;1.9;0}{;-5;0;7.7;1.9;0}{;5;0;9.7;1.9;0}{;-5;0;9.7;1.9;0}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "100000", + "armor": "28500.0", + "shield": "50000.0", "shield_facets": "4", - "armor": "14250", - "shield_strength": "50000", "accel": "25000000" }, "units": [ @@ -1169,8 +1095,8 @@ "Key": "Agesipolis", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;;20}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;;20}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.2;;10}{Industrially_Manufactured_Goods/Electronics;1.1;.2;;10}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;30}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;;10}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;7}{Natural_Products/Food/Aera;1.9;.2;150;2}{Natural_Products/Food;1.05;.2;150;2}{Natural_Products/Life-forms;.95;.1;;}{Natural_Products/Liquor;.9;.1;10;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;;10}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;1.1;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys/Aera;1;.1;;20}{Refined_Materials/Alloys;1.05;.1;;20}{Refined_Materials/Chemicals;1.2;.3;;10}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Refined_Materials/Synthetics;1.05;.3;;10}{Research;12;2;-5;10}{Specialty_Goods/Entertainment;1.1;.2;;10}{Specialty_Goods/Medical;.8;.1;;}{Specialty_Goods/Pharmaceutical;1.9;.1;-1;3}{starships/Aera/Heavy;1;;;10}{starships/Aera/Light;1;;7.5;12.5}{starships/Aera/Milspec;1;;1;5}{upgrades/Ammunition/Aera;1;.1;10000;2500}{upgrades/Ammunition/Common;6;.3;10000;2500}{upgrades/Armor;1;.1;1;5}{upgrades/ECM_Systems;1;.1;1.5;5.5}{upgrades/Experimental;1.4;.2;;}{upgrades/Jump_Drives;1;.1;10;5}{upgrades/Miscellaneous/Aera_Milspec;1;.1;2;1}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;.1;2;10}{upgrades/Repair_Systems;1.1;.2;1.5;5.5}{upgrades/Sensors/Confed;1;.1;2;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;;2}{upgrades/Shield_Systems;1;.1;-2;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;2;10}{upgrades/Weapons/Beam_Arrays_Light;1;;10;50}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;5;20}{upgrades/Weapons/Mount_Enhancements;1;.1;10;50}{upgrades/Weapons/Mounted_Guns_Aera_Milspec;1;.1;;20}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;30}{upgrades/Weapons/Mounted_Guns_Light;1;;;100}{upgrades/Weapons/Mounted_Guns_Medium;1;;;50}{upgrades/Weapons/Turrets/Aera;1;.1;;1}{upgrades/Weapons/Turrets;1;.1;;1}", "Cargo": "{Pilot;Contraband;1000;0;367;1;1;1;;0}", - "armor": "30000", - "shield_strength": "100000" + "armor": "60000.0", + "shield": "100000.0" } } ] @@ -1221,16 +1147,16 @@ "Dock": "{;96;0;1000;200;0}{;-96;0;1000;200;0}{;96;0;800;200;0}{;-96;0;800;200;0}{;96;0;600;200;0}{;-96;0;600;200;0}{;96;0;400;200;0}{;-96;0;400;200;0}{;96;0;200;200;0}{;-96;0;200;200;0}{;96;0;00;200;0}{;-96;0;00;200;0}{;96;0;-200;200;0}{;-96;0;-200;200;0}{;96;0;-400;200;0}{;-96;0;-400;200;0}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "100000", + "armor": "20000.0", + "shield": "30000.0", "shield_facets": "4", - "armor": "10000", - "shield_strength": "30000", "accel": "11000000" }, "units": [ { "data": { "Key": "Anaxidamus", - "shield_strength": "48000" + "shield": "48000.0" } } ] @@ -1279,9 +1205,9 @@ "Mounts": "{Progeny;5;;special-missile;1;1;6;;;0;0;1;0;1;0;1;1}{Progeny;5;;special-missile;-1;1;6;;;0;0;1;0;1;0;1;1}{Progeny;5;;special-missile;1;-1;6;;;0;0;1;0;1;0;1;1}{Progeny;5;;special-missile;-1;-1;6;;;0;0;1;0;1;0;1;1}", "Dock": "{;0;0;36;48;0}{;0;0;72;48;0}{;0;0;108;48;0}{;0;0;144;48;0}{;0;0;180;48;0}{;0;0;216;48;0}{;0;0;252;48;0}{;0;0;288;48;0}{;0;0;324;48;0}{;0;0;360;48;0}{;0;0;396;48;0}{;0;0;432;48;0}{;0;0;0;48;0}{;0;0;-36;48;0}{;0;0;-72;48;0}{;0;0;-108;48;0}{;0;0;-144;48;0}{;0;0;-180;48;0}{;0;0;-216;48;0}{;0;0;-252;48;0}{;0;0;-288;48;0}{;0;0;-324;48;0}{;0;0;-360;48;0}{;0;0;-396;48;0}{;0;0;-432;48;0}", "Upgrade_Storage_Volume": "16384", + "armor": "8300.0", + "shield": "4000.0", "shield_facets": "4", - "armor": "4150", - "shield_strength": "4000", "accel": "1000000" }, "units": [ @@ -1338,9 +1264,9 @@ "Light": "{supernova.bmp.bfxm;-109.315216;-11.178051;-504.000031;64.200336;;;;;}{supernova.bmp.bfxm;-157.605957;-7.940502;-504.000000;47.399963;;;;;}{supernova.bmp.bfxm;-195.157822;-4.150342;-504.000031;31.000000;;;;;}{supernova.bmp.bfxm;109.315216;-11.178051;-504.000031;64.200336;;;;;}{supernova.bmp.bfxm;157.605957;-7.940502;-504.000000;47.399963;;;;;}{supernova.bmp.bfxm;195.157822;-4.150342;-504.000031;31.000000;;;;;}", "Dock": "{;0;0;0;0.75;0}{;0;0;1;0.75;0}{;0;0;2;0.75;0}{;0;0;4;0.75;0}{;0;0;8;0.75;0}{;0;0;-1;0.75;0}{;0;0;-2;0.75;0}{;0;0;-4;0.75;0}{;0;0;-8;0.75;0}", "Upgrade_Storage_Volume": "100000", + "armor": "8300.0", + "shield": "4000.0", "shield_facets": "4", - "armor": "4150", - "shield_strength": "4000", "accel": "1000000" }, "units": [ @@ -1353,7 +1279,7 @@ "Light": "{supernova.bmp.bfxm;3.350628;-0.048065;-10.520159;1;;;;;}{supernova.bmp.bfxm;-3.608623;-0.048065;-10.520159;1;;;;;}{supernova.bmp.bfxm;2.635845;-0.006721;-10.520159;2;;;;;}{supernova.bmp.bfxm;-2.89384;0.006721;-10.520159;2;;;;;}{supernova.bmp.bfxm;1.738954;-0.006894;-10.515365;2;;;;;}{supernova.bmp.bfxm;-1.996949;-0.006894;-10.515365;2;;;;;}", "Mounts": "{Goddard;1;;special-missile;0;0;0;;;0;0;1;0;1;0;1;1}{Goddard;1;;special-missile;0;0;0;;;0;0;1;0;1;0;1;1}{Dostoevsky;3;;special-missile;0;0;0;;;0;0;1;0;1;0;1;1}{Dostoevsky;3;;special-missile;0;0;0;;;0;0;1;0;1;0;1;1}{Dostoevsky;3;;special-missile;0;0;0;;;0;0;1;0;1;0;1;1}{Dostoevsky;3;;special-missile;0;0;0;;;0;0;1;0;1;0;1;1}{CS_UV_Laser;;;capship-Light autotracking;1.897978;-0.019207;9.455606;;;0;0;1;0;1;0;1;1}{CS_UV_Laser;;;capship-Light autotracking;-2.155974;-0.019207;9.455606;;;0;0;1;0;1;0;1;1}{CS_UV_Laser;;;capship-Light autotracking;-2.637869;-0.019207;9.455606;;;0;0;1;0;1;0;1;1}{CS_UV_Laser;;;capship-Light autotracking;2.379874;-0.019207;9.455606;;;0;0;1.000000;0;1;0;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;3;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;;}{Industrially_Manufactured_Goods/Electronics;1.1;.2;2;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.3;3;1}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Food;1.3;.2;15;2}{Natural_Products/Life-forms;.8;.1;;}{Natural_Products/Liquor;1.05;.1;1;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys;1.15;.1;2;2}{Refined_Materials/Chemicals;1.3;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.1;.2;1;1}{Specialty_Goods/Medical;1.1;.1;3;3}{starships/Confed/Heavy;1.2;;-8;10}{starships/Confed/Light;1;;-8;12}{starships/Confed/Medium;1.1;;-6;10}{starships/Confed/Milspec;1.3;;-5;6}{upgrades/Ammunition/Confed;1;.1;700;500}{upgrades/Ammunition/Common;2;.1;70;50}{upgrades/Ammunition/Uncommon;7;.1;50;70}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;2;10}{upgrades/ECM_Systems;1;.1;9;6}{upgrades/Experimental;1.2;.2;;}{upgrades/Jump_Drives;1;.1;10;5}{upgrades/Overdrive;1;.1;10;5}{upgrades/Reactors/Standard;1;;16.5;13.5}{upgrades/Repair_Systems;1.1;.2;7.5;7.5}{upgrades/Sensors/Common;1;.1;5;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;10;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;;7}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;-2;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;2;1}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;5;2}{upgrades/Weapons/Mount_Enhancements;1;.1;10;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1.1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Heavy;1.1;.1;8;3}{upgrades/Weapons/Mounted_Guns_Light;1;;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1.1;;10;5}{upgrades/Weapons/Turrets;1;.1;1;1}", - "shield_strength": "8000" + "shield": "8000.0" } } ] @@ -1371,18 +1297,6 @@ "Mass": "21836054", "Fuel_Capacity": "1819671.17", "Hull": "1344080", - "Armor_Front_Top_Right": "9250", - "Armor_Front_Top_Left": "9250", - "Armor_Front_Bottom_Right": "9250", - "Armor_Front_Bottom_Left": "9250", - "Armor_Back_Top_Right": "8000", - "Armor_Back_Top_Left": "8000", - "Armor_Back_Bottom_Right": "8000", - "Armor_Back_Bottom_Left": "8000", - "Shield_Front_Top_Right": "28000", - "Shield_Back_Top_Left": "21000", - "Shield_Front_Bottom_Right": "21000", - "Shield_Front_Bottom_Left": "21000", "Shield_Recharge": "40", "Warp_Capacitor": "25", "Primary_Capacitor": "32000", @@ -1416,6 +1330,8 @@ "Dock": "{;1;-1.27;8.27;.4;0}{;-1;-1.27;8.27;.4;0}{;1;-1.27;8.67;.4;0}{;-1;-1.27;8.67;.4;0}{;1;-1.27;9.07;.4;0}{;-1;-1.27;9.07;.4;0}{;1;-1.27;9.47;.4;0}{;-1;-1.27;9.47;.4;0}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "100000", + "armor": "17250.0", + "shield": "22750.0", "shield_facets": "4", "accel": "5000000" }, @@ -1423,13 +1339,10 @@ { "data": { "Key": "Agasicles", - "Shield_Front_Top_Right": "56000", - "Shield_Back_Top_Left": "42000", - "Shield_Front_Bottom_Right": "42000", - "Shield_Front_Bottom_Left": "42000", "Warp_Capacitor": "42000", "Mounts": "{PenetratorMKVI;;;capship-heavy autotracking;-1.014189;-0.804348;11.984498;;;0.000000;0.000000;1.000000;-0.000000;1.000000;0.000000;1;1}{PenetratorMKVI;;;capship-heavy autotracking;1.014189;-0.804348;11.984498;;;0.000000;0.000000;1.000000;1.000000;0.000000;0.000000;1;1}{PenetratorMKVI;;;capship-heavy autotracking;-1.014189;-1.652174;11.984498;;;0.000000;0.000000;1.000000;0.000000;-1.000000;0.000000;1;1}{PenetratorMKVI;;;capship-heavy autotracking;1.014189;-1.652174;11.984498;;;0.000000;-0.000000;1.000000;-1.000000;-0.000000;0.000000;1;1}", - "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.2;;1}{Industrially_Manufactured_Goods/Electronics;1.1;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;;1}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;7}{Natural_Products/Food/Aera;1.9;.2;5;5}{Natural_Products/Food;.5;.2;;2}{Natural_Products/Life-forms;.4;.1;;}{Natural_Products/Liquor;.4;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys/Aera;1.07;.05;;2}{Refined_Materials/Alloys;1.05;.1;;2}{Refined_Materials/Chemicals;1;.3;;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Synthetics;1;.3;;1}{Research;12;2;;1}{Specialty_Goods/Entertainment;1.1;.2;;1}{Specialty_Goods/Medical;1.1;.1;;3}{starships/Aera/Light;1;;;10}{upgrades/Ammunition/Aera;2;.1;200;100}{upgrades/Armor;1;.1;;5}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Miscellaneous/Aera_Milspec;1;.1;-10;11}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;-8.5;13.5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;;2}{upgrades/Shield_Systems;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Aera_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets/Aera;1;.1;1;1}{upgrades/Weapons/Turrets;1;.1;1;1}" + "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.2;;1}{Industrially_Manufactured_Goods/Electronics;1.1;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;;1}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;7}{Natural_Products/Food/Aera;1.9;.2;5;5}{Natural_Products/Food;.5;.2;;2}{Natural_Products/Life-forms;.4;.1;;}{Natural_Products/Liquor;.4;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys/Aera;1.07;.05;;2}{Refined_Materials/Alloys;1.05;.1;;2}{Refined_Materials/Chemicals;1;.3;;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Synthetics;1;.3;;1}{Research;12;2;;1}{Specialty_Goods/Entertainment;1.1;.2;;1}{Specialty_Goods/Medical;1.1;.1;;3}{starships/Aera/Light;1;;;10}{upgrades/Ammunition/Aera;2;.1;200;100}{upgrades/Armor;1;.1;;5}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Miscellaneous/Aera_Milspec;1;.1;-10;11}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;-8.5;13.5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;;2}{upgrades/Shield_Systems;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Aera_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets/Aera;1;.1;1;1}{upgrades/Weapons/Turrets;1;.1;1;1}", + "shield": "45500.0" } } ] @@ -1448,14 +1361,6 @@ "Mass": "21000000", "Fuel_Capacity": "1750000", "Hull": "1300000", - "Armor_Front_Top_Right": "10750", - "Armor_Front_Top_Left": "10750", - "Armor_Front_Bottom_Right": "10750", - "Armor_Front_Bottom_Left": "10750", - "Armor_Back_Top_Right": "9000", - "Armor_Back_Top_Left": "9000", - "Armor_Back_Bottom_Right": "9000", - "Armor_Back_Bottom_Left": "9000", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "20000", "Afterburner_Type": "1", @@ -1479,6 +1384,8 @@ "Mounts": "{;16;;CAPSHIP;-1;0;0;;;;;;;;;1;1}{;16;;CAPSHIP;1;0;0;;;;;;;;;1;1}{;16;;CAPSHIP;-1;.1;0;;;;;;;;;1;1}{;16;;CAPSHIP;1;.1;0;;;;;;;;;1;1}{;16;;CAPSHIP;-1;.2;0;;;;;;;;;1;1}{;16;;CAPSHIP;1;.2;0;;;;;;;;;1;1}{;16;;CAPSHIP;-1;.3;0;;;;;;;;;1;1}{;16;;CAPSHIP;1;.3;0;;;;;;;;;1;1}{;16;;CAPSHIP;-2;0;0;;;;;;;;;1;1}{;16;;CAPSHIP;2;0;0;;;;;;;;;1;1}{;16;;CAPSHIP;-2;.1;0;;;;;;;;;1;1}{;16;;CAPSHIP;2;.1;0;;;;;;;;;1;1}{;16;;CAPSHIP;-2;.2;0;;;;;;;;;1;1}{;16;;CAPSHIP;2;.2;0;;;;;;;;;1;1}{;4;;CAPSHIP;-2;.3;0;;;;;;;;;1;1}{;4;;CAPSHIP;2;.3;0;;;;;;;;;1;1}{;;;CAPSHIP-MASSIVE ;4;0;0;;;;;;;;;1;1}{;;;CAPSHIP-MASSIVE ;-4;0;0;;;;;;;;;1;1}", "Dock": "{;0;4;-10;7;0}", "Upgrade_Storage_Volume": "100000", + "armor": "19750.0", + "shield_facets": "0", "accel": "10000000" }, "units": [ @@ -1486,10 +1393,6 @@ "data": { "Key": "Kahan", "Unit_Scale": "108.97", - "Shield_Front_Top_Right": "42000", - "Shield_Back_Top_Left": "40000", - "Shield_Front_Bottom_Right": "40000", - "Shield_Front_Bottom_Left": "40000", "Shield_Recharge": "115", "Warp_Capacitor": "30000", "Primary_Capacitor": "30000", @@ -1502,6 +1405,7 @@ "Lock_Cone": "101.54", "Mounts": "{Torpedo;16;;capship;-1;0;0;;;;;;;;;1;1}{Torpedo;16;;capship;1;0;0;;;;;;;;;1;1}{Torpedo;16;;capship;-1;.1;0;;;;;;;;;1;1}{Torpedo;16;;capship;1;.1;0;;;;;;;;;1;1}{Torpedo;16;;capship;-1;.2;0;;;;;;;;;1;1}{Torpedo;16;;capship;1;.2;0;;;;;;;;;1;1}{Torpedo;16;;capship;-1;.3;0;;;;;;;;;1;1}{Torpedo;16;;capship;1;.3;0;;;;;;;;;1;1}{Torpedo;16;;capship;-2;0;0;;;;;;;;;1;1}{Torpedo;16;;capship;2;0;0;;;;;;;;;1;1}{Torpedo;16;;capship;-2;.1;0;;;;;;;;;1;1}{Torpedo;16;;capship;2;.1;0;;;;;;;;;1;1}{Torpedo;16;;capship;-2;.2;0;;;;;;;;;1;1}{Torpedo;16;;capship;2;.2;0;;;;;;;;;1;1}{Torpedo;4;;capship;-2;.3;0;;;;;;;;;1;1}{Torpedo;4;;capship;2;.3;0;;;;;;;;;1;1}{LR_PminusBeam;;;capship-massive autotracking;4;0;0;;;;;;;;;1;1}{LR_PminusBeam;;;capship-massive autotracking;-4;0;0;;;;;;;;;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;3;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;1;1}{Industrially_Manufactured_Goods/Electronics;.8;.2;2;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;10;7}{Natural_Products/Food;1.1;.2;15;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;1;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys/Confed;1.1;.1;2;2}{Refined_Materials/Chemicals;1.1;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.2;1;1}{Specialty_Goods/Medical;1.1;.1;3;3}{starships/Confed/Heavy;1;;;5}{starships/Confed/Light;1;;;10}{starships/Confed/Medium;1;;;7}{starships/Confed/Milspec;1;;;2}{starships/Regional_Guard/Heavy;1;;;2}{starships/Regional_Guard/Light;1;;;7}{starships/Regional_Guard/Medium;1;;;5}{upgrades/Ammunition/Common;1;.1;500;500}{upgrades/Ammunition/Uncommon;4;.1;50;100}{upgrades/Ammunition/Confed;.8;.1;100;80}{upgrades/Armor;1;.1;;5}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Experimental;1.4;.2;-2;3}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;;5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets;1;.1;1;1}", + "shield": "40500.0", "shield_facets": "4" } } @@ -1543,6 +1447,7 @@ "Dock": "{;0;-45;-120;30;0}", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "600", + "shield_facets": "0", "accel": "550000000" }, "units": [ @@ -1550,14 +1455,6 @@ "data": { "Key": "Ruizong", "Hull": "2100000", - "Armor_Front_Top_Right": "24000", - "Armor_Front_Top_Left": "24000", - "Armor_Front_Bottom_Right": "24000", - "Armor_Front_Bottom_Left": "24000", - "Armor_Back_Top_Right": "20000", - "Armor_Back_Top_Left": "20000", - "Armor_Back_Bottom_Right": "20000", - "Armor_Back_Bottom_Left": "20000", "Shield_Recharge": "384", "Warp_Capacitor": "30000", "Primary_Capacitor": "30000", @@ -1574,8 +1471,9 @@ "Max_Cone": "180", "Lock_Cone": "84.26", "Mounts": "{hellspawn;4;;;0;-46;34;;;0;-1;0;;;;1;1}{icepick;;;;0;-40;40;;;;;;;;;1;1}", - "shield_facets": "4", - "shield_strength": "3200" + "armor": "44000.0", + "shield": "3200.0", + "shield_facets": "4" } } ] @@ -1615,24 +1513,13 @@ "Mounts": "{;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{tractor;;; SPECIAL autotracking;0;0;-1;;;0;-0.17;0.98;0;1;0;1;1}", "Dock": "{;0;-0.3;-0.7;0.3;0}", "Upgrade_Storage_Volume": "600", + "shield_facets": "0", "accel": "800000" }, "units": [ { "data": { "Key": "Thales", - "Armor_Front_Top_Right": "350", - "Armor_Front_Top_Left": "350", - "Armor_Front_Bottom_Right": "500", - "Armor_Front_Bottom_Left": "500", - "Armor_Back_Top_Right": "450", - "Armor_Back_Top_Left": "450", - "Armor_Back_Bottom_Right": "600", - "Armor_Back_Bottom_Left": "600", - "Shield_Front_Top_Right": "15000", - "Shield_Back_Top_Left": "12000", - "Shield_Front_Bottom_Right": "12000", - "Shield_Front_Bottom_Left": "12000", "Shield_Recharge": "50", "Warp_Capacitor": "1000", "Primary_Capacitor": "11000", @@ -1650,6 +1537,8 @@ "Lock_Cone": "60", "Mounts": "{capshipdisruptor;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{capshipdisruptor;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{capshipdisruptor;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{tractor;;; SPECIAL autotracking;0;0;-1;;;0;-0.17;0.98;0;1;0;1;1}", "Cargo_Import": "{Natural_Products/Food;1.3;.2;10;20}{Natural_Products/Liquor;1.05;.1;;1}{upgrades/Ammunition/Common;1;.1;80;90}{upgrades/Ammunition/Uncommon;2;.3;60;180}", + "armor": "950.0", + "shield": "12750.0", "shield_facets": "4" } }, @@ -1659,14 +1548,6 @@ "Combat_Role": "SCAVENGER", "Textual_Description": "Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.", "Hull": "2500", - "Armor_Front_Top_Right": "250", - "Armor_Front_Top_Left": "250", - "Armor_Front_Bottom_Right": "500", - "Armor_Front_Bottom_Left": "500", - "Armor_Back_Top_Right": "350", - "Armor_Back_Top_Left": "350", - "Armor_Back_Bottom_Right": "600", - "Armor_Back_Bottom_Left": "600", "Shield_Recharge": "50", "Warp_Capacitor": "1000", "Primary_Capacitor": "11000", @@ -1694,8 +1575,9 @@ "Mounts": "{capshipdisruptor;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{tractor;;; SPECIAL autotracking;0;0;-1;;;0;-0.17;0.98;0;1;0;1;1}", "Cargo_Import": "{Natural_Products/Food;1.3;.2;10;20}{Natural_Products/Liquor;1.05;.1;;1}{upgrades/Ammunition;2;.1;5;10}", "Spec_Interdiction": "-10", + "armor": "850.0", + "shield": "10000.0", "shield_facets": "4", - "shield_strength": "10000", "accel": "750000" } }, @@ -1764,9 +1646,9 @@ "Prohibited_Upgrades": "upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Dock": "{1;0;-0.1;-2.1;0.8;0}", "Upgrade_Storage_Volume": "600", + "armor": "2400.0", + "shield": "18000.0", "shield_facets": "4", - "armor": "1200", - "shield_strength": "18000", "accel": "800000" }, "units": [ @@ -1824,6 +1706,7 @@ "Light": "{supernova.bmp.bfxm;4.5;1.8;-13.85;5;;;;;}{supernova.bmp.bfxm;5.1;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;3.95;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;-4.5;1.8;-13.85;5;;;;;}{supernova.bmp.bfxm;-5.1;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;-3.95;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;4.5;.35;-13.85;12;;;;;}{supernova.bmp.bfxm;-4.5;.35;-13.85;12;;;;;}{supernova.bmp.bfxm;6.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;5.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;4.5;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-6.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-5.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-4.5;-4.8;-12.3;4;;;;;}", "Mounts": "{;;;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;300;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "1400", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -1865,7 +1748,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Crippler;;;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{Crippler;;;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{Crippler;;;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{Crippler;;;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{LeechGun;;;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{LeechGun;;;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{Leech;48;48;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{Leech;48;48;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{EMPTorpedo;1;90;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "60", - "armor": "1" + "armor": "2.0" } }, { @@ -1885,7 +1768,7 @@ "Mounts": "{;;15;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;15;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;15;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;5;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;5;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;300;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Cargo": "{Admonisher_Milspec_Package;upgrades/Packages/Milspec;200000;1;140;1330;1;1;Full-Custom Milspec Configuration;0}", "Upgrade_Storage_Volume": "1200", - "armor": "1" + "armor": "2.0" } }, { @@ -1906,7 +1789,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;20;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;20;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;20;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;20;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;5;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;5;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;300;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "60", - "armor": "1" + "armor": "2.0" } }, { @@ -1939,7 +1822,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;15;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;15;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;15;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;5;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;5;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;5;1;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;5;1;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;1;1;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "60", - "armor": "1" + "armor": "2.0" } }, { @@ -1950,7 +1833,7 @@ "Radar_Range": "3000000", "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;15;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;15;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;15;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;5;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;5;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;5;1;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;5;1;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;1;1;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", - "armor": "1" + "armor": "2.0" } }, { @@ -1970,9 +1853,9 @@ "Mounts": "{;;15;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;15;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;15;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;15;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;5;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;5;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;90;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", "Upgrade_Storage_Volume": "1200", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -2017,6 +1900,7 @@ "Light": "{supernova.bmp.bfxm;4.5;1.8;-13.85;5;;;;;}{supernova.bmp.bfxm;5.1;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;3.95;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;-4.5;1.8;-13.85;5;;;;;}{supernova.bmp.bfxm;-5.1;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;-3.95;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;4.5;.35;-13.85;12;;;;;}{supernova.bmp.bfxm;-4.5;.35;-13.85;12;;;;;}{supernova.bmp.bfxm;6.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;5.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;4.5;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-6.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-5.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-4.5;-4.8;-12.3;4;;;;;}", "Mounts": "{;;;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;100;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "1200", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -2058,8 +1942,6 @@ "Mass": "52", "Fuel_Capacity": "3.25", "Hull": "120", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -2082,6 +1964,7 @@ "Light": "{thrust1.bfxm;0;.5;-7.5;8;;;;;}{thrust1.bfxm;1.3;0;-7.5;10;;;;;}{thrust1.bfxm;-1.3;0;-7.5;10;;;;;}{thrust1.bfxm;.4;-.3;-7;4;;;;;}{thrust1.bfxm;-.4;-.3;-7;4;;;;;}", "Mounts": "{;;;Light Autotrack;1.75;1.5;-1;;;;;;;;;1;1}{;;;Light Autotrack;-1.75;1.5;-1;;;;;;;;;1;1}{;;;Light Medium;3.5;0;3.125;;;;;;;;;1;1}{;;;Light Medium;-3.5;0;3.125;;;;;;;;;1;1}{;4;48;light-missile medium-missile;-2.500000;-0.200000;-2.00000;;;;;;;;;1;1}{;4;48;light-missile medium-missile;2.500000;-0.200000;-2.00000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "400", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -2089,8 +1972,6 @@ "data": { "Key": "Ancestor", "Mass": "112", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "220", "Shield_Recharge": "30", "Warp_Capacitor": "590", "Primary_Capacitor": "300", @@ -2107,8 +1988,9 @@ "Hold_Volume": "175", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Pugilist;;;Light Autotrack;1.75;1.5;-1;;;;;;;;;1;1}{Pugilist;;;Light Autotrack;-1.75;1.5;-1;;;;;;;;;1;1}{IonBeam;;;Light Medium;3.5;0;3.125;;;;;;;;;1;1}{IonBeam;;;Light Medium;-3.5;0;3.125;;;;;;;;;1;1}{ImageRecognition;4;48;light-missile medium-missile;-2.500000;-0.200000;-2.00000;;;;;;;;;1;1}{ImageRecognition;4;48;light-missile medium-missile;2.500000;-0.200000;-2.00000;;;;;;;;;1;1}", - "shield_facets": "2", - "armor": "25" + "armor": "50.0", + "shield": "260.0", + "shield_facets": "2" } }, { @@ -2116,8 +1998,6 @@ "Key": "Ancestor.milspec", "Textual_Description": "Shaper orbit-ground aerospace attack craft", "Mass": "112", - "Shield_Front_Top_Right": "200", - "Shield_Back_Top_Left": "180", "Shield_Recharge": "30", "Warp_Capacitor": "590", "Primary_Capacitor": "300", @@ -2135,8 +2015,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light Autotrack;1.75;1.5;-1;;;;;;;;;1;1}{;;5;Light Autotrack;-1.75;1.5;-1;;;;;;;;;1;1}{;;10;Light Medium;3.5;0;3.125;;;;;;;;;1;1}{;;10;Light Medium;-3.5;0;3.125;;;;;;;;;1;1}{;;48;light-missile medium-missile;-2.500000;-0.200000;-2.00000;;;;;;;;;1;1}{;;48;light-missile medium-missile;2.500000;-0.200000;-2.00000;;;;;;;;;1;1}", "Cargo": "{Ancestor_Milspec_Package;upgrades/Packages/Milspec;200000;1;60;380;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "2", - "armor": "19" + "armor": "38.0", + "shield": "190.0", + "shield_facets": "2" } }, { @@ -2149,7 +2030,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light Autotrack;1.75;1.5;-1;;;;;;;;;1;1}{;;5;Light Autotrack;-1.75;1.5;-1;;;;;;;;;1;1}{;;10;Light Medium;3.5;0;3.125;;;;;;;;;1;1}{;;10;Light Medium;-3.5;0;3.125;;;;;;;;;1;1}{;4;48;light-missile medium-missile;-2.500000;-0.200000;-2.00000;;;;;;;;;1;1}{;4;48;light-missile medium-missile;2.500000;-0.200000;-2.00000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "20", - "armor": "1" + "armor": "2.0" } }, { @@ -2157,8 +2038,6 @@ "Key": "Ancestor.stock", "Textual_Description": "Shaper orbit-ground aerospace attack craft", "Mass": "66", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", "Warp_Capacitor": "325", "Primary_Capacitor": "100", @@ -2170,8 +2049,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light Autotrack;1.75;1.5;-1;;;;;;;;;1;1}{;;5;Light Autotrack;-1.75;1.5;-1;;;;;;;;;1;1}{;;10;Light Medium;3.5;0;3.125;;;;;;;;;1;1}{;;10;Light Medium;-3.5;0;3.125;;;;;;;;;1;1}{;4;48;light-missile medium-missile;-2.500000;-0.200000;-2.00000;;;;;;;;;1;1}{;4;48;light-missile medium-missile;2.500000;-0.200000;-2.00000;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{dualshield01;upgrades/Shield_Systems/Standard_Dual_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "2", - "armor": "1" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "2" } } ] @@ -2215,6 +2095,7 @@ "Mounts": "{;;;light medium autotracking;8;-3;10.85;;;;;;;;;1;1}{;;;light medium autotracking;-8;-3;10.85;;;;;;;;;1;1}{;;;light medium autotracking;6;-2.9;10.5;;;;;;;;;1;1}{;;;light medium autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{;;;light medium autotracking;9;-1.65;-1;;;;;;;;;1;1}{;;;light medium autotracking;-9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;8;-3;10.85;;;;;;;;;1;1}{;27;27;special-missile autotracking;-8;-3;10.85;;;;;;;;;1;1}{;27;27;special-missile autotracking;6;-2.9;10.5;;;;;;;;;1;1}{;27;27;special-missile autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{;27;27;special-missile autotracking;9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;-9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;3.6;-1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;-3.6;-1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;3.6;1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;-3.6;1.6;1.2;;;;;;;;;1;1}{;3;9;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{;3;9;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}{;6;30;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{;6;30;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "600", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -2239,9 +2120,9 @@ "Lock_Cone": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Photon_MKIII;3000;6;light medium autotracking;8;-3;10.85;;;;;;;;;1;1}{Photon_MKIII;3000;6;light medium autotracking;-8;-3;10.85;;;;;;;;;1;1}{Photon_MKIII;3000;6;light medium autotracking;6;-2.9;10.5;;;;;;;;;1;1}{Photon_MKIII;3000;6;light medium autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{Photon_MKIII;3000;6;light medium autotracking;9;-1.65;-1;;;;;;;;;1;1}{Photon_MKIII;3000;6;light medium autotracking;-9;-1.65;-1;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;8;-3;10.85;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;-8;-3;10.85;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;6;-2.9;10.5;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;9;-1.65;-1;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;-9;-1.65;-1;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;3.6;-1.6;1.2;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;-3.6;-1.6;1.2;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;3.6;1.6;1.2;;;;;;;;;1;1}{Javelin;27;27;special-missile autotracking;-3.6;1.6;1.2;;;;;;;;;1;1}{heatseeker;3;9;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{heatseeker;3;9;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}{porcupinemine;6;30;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{porcupinemine;6;30;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "450", - "shield_strength": "600" + "armor": "900.0", + "shield": "600.0", + "shield_facets": "4" } }, { @@ -2264,9 +2145,9 @@ "Lock_Cone": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Photon_MKIII;6000;12;light medium autotracking;8;-3;10.85;;;;;;;;;1;1}{Photon_MKIII;6000;12;light medium autotracking;-8;-3;10.85;;;;;;;;;1;1}{Photon_MKIII;6000;12;light medium autotracking;6;-2.9;10.5;;;;;;;;;1;1}{Photon_MKIII;6000;12;light medium autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{Photon_MKIII;6000;12;light medium autotracking;9;-1.65;-1;;;;;;;;;1;1}{Photon_MKIII;6000;12;light medium autotracking;-9;-1.65;-1;;;;;;;;;1;1}{heatseeker;3;9;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{heatseeker;3;9;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}{heatseeker;10;30;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{heatseeker;10;30;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "120", - "shield_strength": "475" + "armor": "240.0", + "shield": "475.0", + "shield_facets": "4" } }, { @@ -2290,9 +2171,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;10;light medium autotracking;8;-3;10.85;;;;;;;;;1;1}{;;10;light medium autotracking;-8;-3;10.85;;;;;;;;;1;1}{;;10;light medium autotracking;6;-2.9;10.5;;;;;;;;;1;1}{;;10;light medium autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{;;10;light medium autotracking;9;-1.65;-1;;;;;;;;;1;1}{;;10;light medium autotracking;-9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;8;-3;10.85;;;;;;;;;1;1}{;27;27;special-missile autotracking;-8;-3;10.85;;;;;;;;;1;1}{;27;27;special-missile autotracking;6;-2.9;10.5;;;;;;;;;1;1}{;27;27;special-missile autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{;27;27;special-missile autotracking;9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;-9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;3.6;-1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;-3.6;-1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;3.6;1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;-3.6;1.6;1.2;;;;;;;;;1;1}{;;9;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{;;9;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}{;;30;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{;;30;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}", "Cargo": "{Ariston_Milspec_Package;upgrades/Packages/Milspec;200000;1;90;590;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "4", - "armor": "120", - "shield_strength": "475" + "armor": "240.0", + "shield": "475.0", + "shield_facets": "4" } }, { @@ -2310,9 +2191,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;10;light medium autotracking;8;-3;10.85;;;;;;;;;1;1}{;;10;light medium autotracking;-8;-3;10.85;;;;;;;;;1;1}{;;10;light medium autotracking;6;-2.9;10.5;;;;;;;;;1;1}{;;10;light medium autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{;;10;light medium autotracking;9;-1.65;-1;;;;;;;;;1;1}{;;10;light medium autotracking;-9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;8;-3;10.85;;;;;;;;;1;1}{;27;27;special-missile autotracking;-8;-3;10.85;;;;;;;;;1;1}{;27;27;special-missile autotracking;6;-2.9;10.5;;;;;;;;;1;1}{;27;27;special-missile autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{;27;27;special-missile autotracking;9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;-9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;3.6;-1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;-3.6;-1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;3.6;1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;-3.6;1.6;1.2;;;;;;;;;1;1}{;3;9;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{;3;9;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}{;6;30;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{;6;30;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -2360,9 +2241,9 @@ "Light": "{supernova.bmp.bfxm;0;-0.5;13;0.500000;;;;;}{supernova.bmp.bfxm;0;0;-7.20000;3.000000;;;;;}", "Mounts": "{UnknownHeavyBeam;;;Light autotracking;0;-0.5;13.0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "667", + "armor": "1000.0", + "shield": "10000.0", "shield_facets": "4", - "armor": "500", - "shield_strength": "10000", "accel": "31415" }, "units": [ @@ -2411,6 +2292,7 @@ "Light": "{supernova.bmp.bfxm;-0.506007;2.40000e-2;-5.16000;.6;;;;;}{supernova.bmp.bfxm;9.59928e-2;3.20000e-2;-3.67200;.6;;;;;}", "Mounts": "{;;;Light;-2.75800;-0.682000;0.628000;;;;;;;;;1;1}{;;;Light;3.94800;-1.03200;1.21200;;;;;;;;;1;1}{;;;Medium;-4.40000e-2;1.22800;-0.508000;;;;;;;;;1;1}{;;;Medium;-0.320000;-0.352000;4.16400;;;;;;;;;1;1}{;20;5;special-missile;-3.00944e-2;0.757442;-1.86303;;;;;;;;;1;1}{;1;100;Light-missile medium-missile heavy-missile;1.65074;-0.522844;1.34526e-3;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "275", + "shield_facets": "0", "accel": "3000" }, "units": [ @@ -2435,9 +2317,9 @@ "Hold_Volume": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{DisruptorBeam;;;Light;-2.75800;-0.682000;0.628000;;;;;;;;;1;1}{DisruptorBeam;;;Light;3.94800;-1.03200;1.21200;;;;;;;;;1;1}{Dissonance;;;Medium;-4.40000e-2;1.22800;-0.508000;;;;;;;;;1;1}{Dissonance;;;Medium;-0.320000;-0.352000;4.16400;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "41", - "shield_strength": "600" + "armor": "82.0", + "shield": "600.0", + "shield_facets": "4" } }, { @@ -2463,9 +2345,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light;-2.75800;-0.682000;0.628000;;;;;;;;;1;1}{;;5;Light;3.94800;-1.03200;1.21200;;;;;;;;;1;1}{;;10;Medium;-4.40000e-2;1.22800;-0.508000;;;;;;;;;1;1}{;;10;Medium;-0.320000;-0.352000;4.16400;;;;;;;;;1;1}", "Cargo": "{Convolution_Milspec_Package;upgrades/Packages/Milspec;200000;1;40;265;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "4", - "armor": "41", - "shield_strength": "300" + "armor": "82.0", + "shield": "300.0", + "shield_facets": "4" } }, { @@ -2484,9 +2366,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light;-2.75800;-0.682000;0.628000;;;;;;;;;1;1}{;;5;Light;3.94800;-1.03200;1.21200;;;;;;;;;1;1}{;;10;Medium;-4.40000e-2;1.22800;-0.508000;;;;;;;;;1;1}{;;10;Medium;-0.320000;-0.352000;4.16400;;;;;;;;;1;1}{;20;5;special-missile;-3.00944e-2;0.757442;-1.86303;;;;;;;;;1;1}{;1;100;Light-missile medium-missile heavy-missile;1.65074;-0.522844;1.34526e-3;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -2528,6 +2410,7 @@ "Light": "{supernova.bmp.bfxm;0.158000;2.80064e-2;-4.83800;1;;;;;}{supernova.bmp.bfxm;0.786000;3.40064e-2;-4.83800;1;;;;;}", "Mounts": "{;;;Light;-0.598000;3.19962e-2;2.87600;;;;;;;;;1;1}{;;;Light Medium Heavy;0.270000;-0.418006;3.63600;;;;;;;;;1;1}{;5;80;Light-missile Medium-missile;-1.50600;-0.154000;-1.83200;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "120", + "shield_facets": "0", "accel": "3000" }, "units": [ @@ -2535,14 +2418,6 @@ "data": { "Key": "Determinant", "Mass": "54", - "Armor_Front_Top_Right": "45", - "Armor_Front_Top_Left": "45", - "Armor_Front_Bottom_Right": "45", - "Armor_Front_Bottom_Left": "45", - "Armor_Back_Top_Right": "40", - "Armor_Back_Top_Left": "40", - "Armor_Back_Bottom_Right": "40", - "Armor_Back_Bottom_Left": "40", "Shield_Recharge": "45", "Warp_Capacitor": "300", "Primary_Capacitor": "357", @@ -2560,8 +2435,9 @@ "Hold_Volume": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{DisruptorBeam;;;Light;-0.598000;3.19962e-2;2.87600;;;;;;;;;1;1}{Dissonance;;;Light Medium Heavy;0.270000;-0.418006;3.63600;;;;;;;;;1;1}{FriendOrFoe;5;80;Light-missile Medium-missile;-1.50600;-0.154000;-1.83200;;;;;;;;;1;1}", - "shield_facets": "4", - "shield_strength": "600" + "armor": "85.0", + "shield": "600.0", + "shield_facets": "4" } }, { @@ -2569,14 +2445,6 @@ "Key": "Determinant.milspec", "Textual_Description": "Unadorned superiority fighter", "Mass": "54", - "Armor_Front_Top_Right": "45", - "Armor_Front_Top_Left": "45", - "Armor_Front_Bottom_Right": "45", - "Armor_Front_Bottom_Left": "45", - "Armor_Back_Top_Right": "40", - "Armor_Back_Top_Left": "40", - "Armor_Back_Bottom_Right": "40", - "Armor_Back_Bottom_Left": "40", "Shield_Recharge": "45", "Warp_Capacitor": "300", "Primary_Capacitor": "357", @@ -2595,8 +2463,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light;-0.598000;3.19962e-2;2.87600;;;;;;;;;1;1}{;;15;Light Medium Heavy;0.270000;-0.418006;3.63600;;;;;;;;;1;1}{;;80;Light-missile Medium-missile;-1.50600;-0.154000;-1.83200;;;;;;;;;1;1}", "Cargo": "{Determinant_Milspec_Package;upgrades/Packages/Milspec;200000;1;24;115;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "4", - "shield_strength": "300" + "armor": "85.0", + "shield": "300.0", + "shield_facets": "4" } }, { @@ -2615,9 +2484,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light;-0.598000;3.19962e-2;2.87600;;;;;;;;;1;1}{;;15;Light Medium Heavy;0.270000;-0.418006;3.63600;;;;;;;;;1;1}{;5;80;Light-missile Medium-missile;-1.50600;-0.154000;-1.83200;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -2660,6 +2529,7 @@ "Light": "{supernova.bmp.bfxm;0;0;-6.36800;4;;;;;}", "Mounts": "{;4;1;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}{;;;Light Medium Heavy Special;3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}{;;;Light Medium Heavy Special;-3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}", "Upgrade_Storage_Volume": "125", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -2695,7 +2565,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;80;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}{;;15;Light Medium Heavy Special;3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}{;;15;Light Medium Heavy Special;-3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}", "Upgrade_Storage_Volume": "5", - "armor": "1" + "armor": "2.0" } }, { @@ -2714,7 +2584,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;1;90;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}{;;10;Light Medium Heavy Special autotracking;3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}{;;10;Light Medium Heavy Special autotracking;-3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}", "Cargo": "{Dostoevsky_Milspec_Package;upgrades/Packages/Milspec;200000;1;20;120;1;1;Full-Custom Milspec Configuration;0}", - "armor": "1" + "armor": "2.0" } }, { @@ -2747,7 +2617,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;32;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}{;;15;Light Medium Heavy Special;3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}{;;15;Light Medium Heavy Special;-3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}", "Upgrade_Storage_Volume": "5", - "armor": "1" + "armor": "2.0" } }, { @@ -2766,9 +2636,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;32;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}{;;15;Light Medium Heavy Special;3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}{;;15;Light Medium Heavy Special;-3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -2812,6 +2682,7 @@ "Light": "{supernova.bmp.bfxm;0.086;-0.269;-14.620000;2.000000;;;;;}", "Mounts": "{;;;Light;3.76500;0.15400;19.31000;;;;;;;;;1;1}{;;;Light;2.80800;0.15400;19.98000;;;;;;;;;1;1}{;;;Light;3.76500;-0.15400;19.31000;;;;;;;;;1;1}{;;;Light;2.80800;-0.15400;19.98000;;;;;;;;;1;1}{;1;100;heavy-missile;-12;0;6.5;;;;;;;;;1;1}{;1;16;medium-missile;-12;0.05;6.55;;;;;;;;;1;1}{;1;16;medium-missile;-12;-0.05;6.55;;;;;;;;;1;1}{;1;16;medium-missile;-12;-0.05;6.45;;;;;;;;;1;1}{;1;16;medium-missile;-12;0.05;6.45;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "325", + "shield_facets": "0", "accel": "2000" }, "units": [ @@ -2819,18 +2690,6 @@ "data": { "Key": "Hammer", "Mass": "104", - "Armor_Front_Top_Right": "100", - "Armor_Front_Top_Left": "100", - "Armor_Front_Bottom_Right": "100", - "Armor_Front_Bottom_Left": "100", - "Armor_Back_Top_Right": "70", - "Armor_Back_Top_Left": "70", - "Armor_Back_Bottom_Right": "70", - "Armor_Back_Bottom_Left": "70", - "Shield_Front_Top_Right": "440", - "Shield_Back_Top_Left": "120", - "Shield_Front_Bottom_Right": "200", - "Shield_Front_Bottom_Left": "200", "Shield_Recharge": "40", "Warp_Capacitor": "200", "Primary_Capacitor": "800", @@ -2846,6 +2705,8 @@ "Max_Cone": "180", "Lock_Cone": "10", "Mounts": "{IonBeam;;;Light;3.76500;0.15400;19.31000;;;;;;;;;1;1}{IonBeam;;;Light;2.80800;0.15400;19.98000;;;;;;;;;1;1}{IonBeam;;;Light;3.76500;-0.15400;19.31000;;;;;;;;;1;1}{IonBeam;;;Light;2.80800;-0.15400;19.98000;;;;;;;;;1;1}{torpedo;1;100;heavy-missile;-12;0;6.5;;;;;;;;;1;1}{friendorfoe;1;16;medium-missile;-12;0.05;6.55;;;;;;;;;1;1}{friendorfoe;1;16;medium-missile;-12;-0.05;6.55;;;;;;;;;1;1}{friendorfoe;1;16;medium-missile;-12;-0.05;6.45;;;;;;;;;1;1}{friendorfoe;1;16;medium-missile;-12;0.05;6.45;;;;;;;;;1;1}", + "armor": "170.0", + "shield": "240.0", "shield_facets": "4" } }, @@ -2854,18 +2715,6 @@ "Key": "Hammer.iso", "Textual_Description": "The Hammer assault craft was originally named the 'Toad', a creation of the LIHW. However, usage of this model by the ISO has made it iconic, to the point where few call it by its original name. Much larger than the other famous ISO ship, the Sickle, the Hammer has sometimes been referred to as 'the mighty arm of the proletariat' in ISO propaganda.", "Mass": "104", - "Armor_Front_Top_Right": "100", - "Armor_Front_Top_Left": "100", - "Armor_Front_Bottom_Right": "100", - "Armor_Front_Bottom_Left": "100", - "Armor_Back_Top_Right": "70", - "Armor_Back_Top_Left": "70", - "Armor_Back_Bottom_Right": "70", - "Armor_Back_Bottom_Left": "70", - "Shield_Front_Top_Right": "220", - "Shield_Back_Top_Left": "60", - "Shield_Front_Bottom_Right": "100", - "Shield_Front_Bottom_Left": "100", "Shield_Recharge": "40", "Warp_Capacitor": "200", "Primary_Capacitor": "800", @@ -2881,6 +2730,8 @@ "Max_Cone": "180", "Lock_Cone": "10", "Mounts": "{ParticleBeam;;;Light;3.76500;0.15400;19.31000;;;;;;;;;1;1}{ParticleBeam;;;Light;2.80800;0.15400;19.98000;;;;;;;;;1;1}{ParticleBeam;;;Light;3.76500;-0.15400;19.31000;;;;;;;;;1;1}{ParticleBeam;;;Light;2.80800;-0.15400;19.98000;;;;;;;;;1;1}{torpedo;1;100;heavy-missile;-12;0;6.5;;;;;;;;;1;1}{friendorfoe;1;16;medium-missile;-12;0.05;6.55;;;;;;;;;1;1}{friendorfoe;1;16;medium-missile;-12;-0.05;6.55;;;;;;;;;1;1}{friendorfoe;1;16;medium-missile;-12;-0.05;6.45;;;;;;;;;1;1}{friendorfoe;1;16;medium-missile;-12;0.05;6.45;;;;;;;;;1;1}", + "armor": "170.0", + "shield": "120.0", "shield_facets": "4" } }, @@ -2889,18 +2740,6 @@ "Key": "Hammer.isospec", "Textual_Description": "The Hammer assault craft was originally named the 'Toad', a creation of the LIHW. However, usage of this model by the ISO has made it iconic, to the point where few call it by its original name. Much larger than the other famous ISO ship, the Sickle, the Hammer has sometimes been referred to as 'the mighty arm of the proletariat' in ISO propaganda.", "Mass": "104", - "Armor_Front_Top_Right": "100", - "Armor_Front_Top_Left": "100", - "Armor_Front_Bottom_Right": "100", - "Armor_Front_Bottom_Left": "100", - "Armor_Back_Top_Right": "70", - "Armor_Back_Top_Left": "70", - "Armor_Back_Bottom_Right": "70", - "Armor_Back_Bottom_Left": "70", - "Shield_Front_Top_Right": "220", - "Shield_Back_Top_Left": "60", - "Shield_Front_Bottom_Right": "100", - "Shield_Front_Bottom_Left": "100", "Shield_Recharge": "40", "Warp_Capacitor": "200", "Primary_Capacitor": "800", @@ -2917,6 +2756,8 @@ "Lock_Cone": "10", "Mounts": "{;;5;Light;3.76500;0.15400;19.31000;;;;;;;;;1;1}{;;5;Light;2.80800;0.15400;19.98000;;;;;;;;;1;1}{;;5;Light;3.76500;-0.15400;19.31000;;;;;;;;;1;1}{;;5;Light;2.80800;-0.15400;19.98000;;;;;;;;;1;1}{;1;100;heavy-missile;-12;0;6.5;;;;;;;;;1;1}{;1;16;medium-missile;-12;0.05;6.55;;;;;;;;;1;1}{;1;16;medium-missile;-12;-0.05;6.55;;;;;;;;;1;1}{;1;16;medium-missile;-12;-0.05;6.45;;;;;;;;;1;1}{;1;16;medium-missile;-12;0.05;6.45;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "16", + "armor": "170.0", + "shield": "120.0", "shield_facets": "4" } }, @@ -2933,9 +2774,9 @@ "Lock_Cone": "25", "Mounts": "{;;5;Light;3.76500;0.15400;19.31000;;;;;;;;;1;1}{;;5;Light;2.80800;0.15400;19.98000;;;;;;;;;1;1}{;;5;Light;3.76500;-0.15400;19.31000;;;;;;;;;1;1}{;;5;Light;2.80800;-0.15400;19.98000;;;;;;;;;1;1}{;1;100;heavy-missile;-12;0;6.5;;;;;;;;;1;1}{;1;16;medium-missile;-12;0.05;6.55;;;;;;;;;1;1}{;1;16;medium-missile;-12;-0.05;6.55;;;;;;;;;1;1}{;1;16;medium-missile;-12;-0.05;6.45;;;;;;;;;1;1}{;1;16;medium-missile;-12;0.05;6.45;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -2978,6 +2819,7 @@ "Light": "{supernova.bmp.bfxm;-43.740699;-14.15585;-74.549662;20;;;;;}{supernova.bmp.bfxm;-35.702901;-14.15585;-74.549662;20;;;;;}{supernova.bmp.bfxm;35.702901;-14.15585;-74.549662;20;;;;;}{supernova.bmp.bfxm;43.740699;-14.15585;-74.549662;20;;;;;}", "Mounts": "{;;;Light Special;-12.6;-16.5;4;;;;;;;;;1;1}{;;;Light Special;12.6;-16.5;4;;;;;;;;;1;1}{;;;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{;;;Light;12.5;-1.5;-1;;;;;;;;;1;1}{;1;16;Special;0;-.23;4;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "450", + "shield_facets": "0", "accel": "2000" }, "units": [ @@ -2986,10 +2828,6 @@ "Key": "Hyena", "Textual_Description": "\"The Hyena's size and bulk may be to its detriment as a combat vessel, but are desired properties for looting-oriented engagements.\"\n", "Mass": "144", - "Shield_Front_Top_Right": "180", - "Shield_Back_Top_Left": "120", - "Shield_Front_Bottom_Right": "120", - "Shield_Front_Bottom_Left": "120", "Shield_Recharge": "23.5", "Warp_Capacitor": "250", "Primary_Capacitor": "300", @@ -3005,8 +2843,9 @@ "Lock_Cone": "10", "Hold_Volume": "200", "Mounts": "{MiniDriver;4000;20;Light Medium;-12.6;-16.5;4;;;;;;;;;1;1}{MiniDriver;4000;20;Light Medium;12.6;-16.5;4;;;;;;;;;1;1}{Pugilist;;;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{Pugilist;;;Light;12.5;-1.5;-1;;;;;;;;;1;1}{friendorfoe;1;16;Special light-missile;0;-.23;4;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "44" + "armor": "88.0", + "shield": "135.0", + "shield_facets": "4" } }, { @@ -3014,10 +2853,6 @@ "Key": "Hyena.civvie", "Textual_Description": "Like their namesakes from the savannahs of Earth, Hyenas are often seen preferring to engage the damaged, the naive, and the straggler rather than pursuing more solid prey, especially when in the hands of Pirates. Though they possess neither great speed, nor impressive maneuverability, the Hyenas nonetheless pack enough firepower to give a pilot pause, especially in packs.", "Mass": "144", - "Shield_Front_Top_Right": "90", - "Shield_Back_Top_Left": "60", - "Shield_Front_Bottom_Right": "60", - "Shield_Front_Bottom_Left": "60", "Shield_Recharge": "23.5", "Warp_Capacitor": "250", "Primary_Capacitor": "300", @@ -3033,8 +2868,9 @@ "Lock_Cone": "10", "Hold_Volume": "200", "Mounts": "{Pugilist;;;Light Medium;-12.6;-16.5;4;;;;;;;;;1;1}{Pugilist;;;Light Medium;12.6;-16.5;4;;;;;;;;;1;1}{PlasmaPlume;;;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{PlasmaPlume;;;Light;12.5;-1.5;-1;;;;;;;;;1;1}{tractorbeam;1;16;Special light-missile;0;-.23;4;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "44" + "armor": "88.0", + "shield": "67.5", + "shield_facets": "4" } }, { @@ -3045,7 +2881,7 @@ "Warp_Capacitor": "325", "Radar_Range": "300000000", "Mounts": "{;;5;Light Special;-12.6;-16.5;4;;;;;;;;;1;1}{;;5;Light Special;12.6;-16.5;4;;;;;;;;;1;1}{;;5;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{;;5;Light;12.5;-1.5;-1;;;;;;;;;1;1}{;1;16;Special;0;-.23;4;;;;;;;;;1;1}", - "armor": "1" + "armor": "2.0" } }, { @@ -3063,9 +2899,9 @@ "Lock_Cone": "25", "Mounts": "{;;5;Light Special;-12.6;-16.5;4;;;;;;;;;1;1}{;;5;Light Special;12.6;-16.5;4;;;;;;;;;1;1}{;;5;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{;;5;Light;12.5;-1.5;-1;;;;;;;;;1;1}{;1;16;Special;0;-.23;4;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -3109,6 +2945,7 @@ "Light": "{supernova.bmp.bfxm;-3.35;1.125;-9.25;8;;;;;}{supernova.bmp.bfxm;3.35;1.125;-9.25;8;;;;;}{supernova.bmp.bfxm;-3.5;.125;-9.25;3;;;;;}{supernova.bmp.bfxm;3.5;.125;-9.25;3;;;;;}{supernova.bmp.bfxm;-3;.25;-9.25;3;;;;;}{supernova.bmp.bfxm;3;.25;-9.25;3;;;;;}{supernova.bmp.bfxm;-3.35;-.3;-9.25;3;;;;;}{supernova.bmp.bfxm;3.35;-.3;-9.25;3;;;;;}{supernova.bmp.bfxm;-2.9;-.16;-9.25;3;;;;;}{supernova.bmp.bfxm;2.9;-.16;-9.25;3;;;;;}", "Mounts": "{;;;light medium;-0.6;-2.8;7;;;;;;;;;1;1}{;;;light medium;0.6;-2.8;7;;;;;;;;;1;1}{;;;medium heavy;-2;-0.16;11;;;;;;;;;1;1}{;;;medium heavy;2;-0.16;11;;;;;;;;;1;1}{;4;1;light-missile medium-missile;4.470487;-0.182350;-1.094219;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-4.512798;-0.183760;-1.121801;;;;;;;;;1;1}{;4;1;light-missile medium-missile;3.470487;-0.182350;-1.094219;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-3.512798;-0.183760;-1.121801;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "725", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -3117,18 +2954,6 @@ "Key": "Lancelot", "Mass": "208", "Hull": "950", - "Armor_Front_Top_Right": "515", - "Armor_Front_Top_Left": "515", - "Armor_Front_Bottom_Right": "515", - "Armor_Front_Bottom_Left": "515", - "Armor_Back_Top_Right": "390", - "Armor_Back_Top_Left": "390", - "Armor_Back_Bottom_Right": "390", - "Armor_Back_Bottom_Left": "390", - "Shield_Front_Top_Right": "2400", - "Shield_Back_Top_Left": "1500", - "Shield_Front_Bottom_Right": "1800", - "Shield_Front_Bottom_Left": "1800", "Shield_Recharge": "80", "Warp_Capacitor": "250", "Primary_Capacitor": "1200", @@ -3143,6 +2968,8 @@ "Hold_Volume": "75", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{razor;1000;20;light medium autotracking;-0.6;-2.8;7;;;;;;;;;1;1}{razor;1000;20;light medium autotracking;0.6;-2.8;7;;;;;;;;;1;1}{ShieldBreaker;;;medium heavy;-2;-0.16;11;;;;;;;;;1;1}{ShieldBreaker;;;medium heavy;2;-0.16;11;;;;;;;;;1;1}{HeatSeeker;4;12;light-missile medium-missile;4.470487;-0.182350;-1.094219;;;;;;;;;1;1}{HeatSeeker;4;12;light-missile medium-missile;-4.512798;-0.183760;-1.121801;;;;;;;;;1;1}{HeatSeeker;4;12;light-missile medium-missile;3.470487;-0.182350;-1.094219;;;;;;;;;1;1}{HeatSeeker;4;12;light-missile medium-missile;-3.512798;-0.183760;-1.121801;;;;;;;;;1;1}", + "armor": "905.0", + "shield": "1875.0", "shield_facets": "4" } }, @@ -3161,7 +2988,7 @@ "Hold_Volume": "75", "Mounts": "{;;20;light medium;-0.6;-2.8;7;;;;;;;;;1;1}{;;20;light medium;0.6;-2.8;7;;;;;;;;;1;1}{;;20;medium heavy;-2;-0.16;11;;;;;;;;;1;1}{;;20;medium heavy;2;-0.16;11;;;;;;;;;1;1}{;;12;light-missile medium-missile;4.470487;-0.182350;-1.094219;;;;;;;;;1;1}{;;12;light-missile medium-missile;-4.512798;-0.183760;-1.121801;;;;;;;;;1;1}{;;12;light-missile medium-missile;3.470487;-0.182350;-1.094219;;;;;;;;;1;1}{;;12;light-missile medium-missile;-3.512798;-0.183760;-1.121801;;;;;;;;;1;1}", "Cargo": "{Lancelot_Milspec_Package;upgrades/Packages/Milspec;200000;1;100;690;1;1;Full-Custom Milspec Configuration;0}", - "armor": "1" + "armor": "2.0" } }, { @@ -3179,9 +3006,9 @@ "Lock_Cone": "25", "Mounts": "{;;10;light medium;-0.6;-2.8;7;;;;;;;;;1;1}{;;10;light medium;0.6;-2.8;7;;;;;;;;;1;1}{;;15;medium heavy;-2;-0.16;11;;;;;;;;;1;1}{;;15;medium heavy;2;-0.16;11;;;;;;;;;1;1}{;4;1;light-missile medium-missile;4.470487;-0.182350;-1.094219;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-4.512798;-0.183760;-1.121801;;;;;;;;;1;1}{;4;1;light-missile medium-missile;3.470487;-0.182350;-1.094219;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-3.512798;-0.183760;-1.121801;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -3203,8 +3030,6 @@ "Mass": "11.2", "Fuel_Capacity": "3.25", "Hull": "120", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -3227,6 +3052,7 @@ "Light": "{thrust1.bfxm;-0.0;-0.533517;-4.4708;5;;;;;}", "Mounts": "{;;;Light Medium;-0.876000;-0.140000;-0.732000;;;;;;;;;1;1}{;;;Light Medium;0.886000;-0.140000;-0.732000;;;;;;;;;1;1}{;1;32;light-missile;-0.276000;-0.182000;0.00000e+0;;;;;;;;;1;1}{;1;32;light-missile;0.278000;-0.182000;0.00000e+0;;;;;;;;;1;1}{;4;1;Special Special-Missile;-0.582000;-0.182000;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "40", + "shield_facets": "0", "accel": "700" }, "units": [ @@ -3242,15 +3068,13 @@ "Hold_Volume": "5", "Upgrades": "{armor01;;}{dualshield02;;}{add_spec_capacitor01;;}{capacitor01;;}{reactor02;;}{skyscope2;;}", "Mounts": "{MiniDriver;1000;5;Light Medium;-0.876000;-0.140000;-0.732000;;;;;;;;;1;1}{MassDriver;1000;5;Light Medium;0.886000;-0.140000;-0.732000;;;;;;;;;1;1}{Dumbfire;32;32;light-missile;-0.276000;-0.182000;0.00000e+0;;;;;;;;;1;1}{Dumbfire;32;32;light-missile;0.278000;-0.182000;0.00000e+0;;;;;;;;;1;1}", - "armor": "20" + "armor": "40.0" } }, { "data": { "Key": "Redeemer.stock", "Textual_Description": "Aging Luddite insystem fighter", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", "Primary_Capacitor": "100", "Reactor_Recharge": "15", @@ -3260,8 +3084,9 @@ "Lock_Cone": "25", "Mounts": "{;;5;Light Medium;-0.876000;-0.140000;-0.732000;;;;;;;;;1;1}{;;5;Light Medium;0.886000;-0.140000;-0.732000;;;;;;;;;1;1}{;1;32;light-missile;-0.276000;-0.182000;0.00000e+0;;;;;;;;;1;1}{;1;32;light-missile;0.278000;-0.182000;0.00000e+0;;;;;;;;;1;1}{;4;1;Special Special-Missile;-0.582000;-0.182000;0;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{dualshield01;upgrades/Shield_Systems/Standard_Dual_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "2", - "armor": "1" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "2" } } ] @@ -3278,8 +3103,6 @@ "Mass": "72", "Fuel_Capacity": "3.46", "Hull": "200", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -3305,6 +3128,7 @@ "Light": "{supernova.bmp.bfxm;-0.5973;0.48082;-7.39491;4;;;;;}{supernova.bmp.bfxm;0.5973;0.48082;-7.39491;4;;;;;}{supernova.bmp.bfxm;2.0167;0.00188;-7.39491;4;;;;;}{supernova.bmp.bfxm;-2.0167;0.00188;-7.39491;4;;;;;}{supernova.bmp.bfxm;0.61947;-0.49032;-7.39491;4;;;;;}{supernova.bmp.bfxm;-0.61947;-0.49032;-7.39491;4;;;;;}", "Mounts": "{FS_MWRF_Laser;;;Medium;0;-2.8;5.5;.2;.2;;;;;;;1;1}{FS_MWRF_Laser;;;Medium;0;3;7.75;.2;.2;;;;;;;1;1}{Hail;100;25;special special-missile medium-missile;0;0;6.5;;;;;;;;;1;1}{Hail;100;25;special special-missile medium-missile;0;0;6.5;;;;;;;;;1;1}{Hail;100;25;special special-missile medium-missile;0;0;6.5;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "125", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -3314,15 +3138,14 @@ "Textual_Description": "Shmrn in-system superiority fighter", "Unit_Scale": "1", "Shield_Mesh": "regret-shield.bfxm", - "Shield_Front_Top_Right": "250", - "Shield_Back_Top_Left": "250", "Shield_Recharge": "25", "Primary_Capacitor": "300", "Reactor_Recharge": "25", "ITTS": "1", "Radar_Color": "1", - "shield_facets": "2", - "armor": "50" + "armor": "100.0", + "shield": "250.0", + "shield_facets": "2" } } ] @@ -3343,8 +3166,6 @@ "Mass": "28", "Fuel_Capacity": "3.51", "Hull": "127", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -3367,6 +3188,7 @@ "Light": "{supernova.bmp.bfxm;1.500000;0.700000;-8.000000;2.750000;;;;;}{supernova.bmp.bfxm;-1.500000;0.700000;-8.000000;2.750000;;;;;}", "Mounts": "{;;;light;0.800000;-0.600000;8.000000;;;;;;;;;1;1}{;;;light;-0.800000;-0.600000;8.000000;;;;;;;;;1;1}{;;;light;-0.000000;-0.400000;8.200000;;;;;;;;;1;1}{;25;7;Special Special-Missile;2.000000;0.800000;-4.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;-2.000000;0.800000;-4.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;-1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "125", + "shield_facets": "0", "accel": "2000" }, "units": [ @@ -3374,8 +3196,6 @@ "data": { "Key": "Robin", "Mass": "48", - "Shield_Front_Top_Right": "250", - "Shield_Back_Top_Left": "250", "Shield_Recharge": "25", "Warp_Capacitor": "250", "Primary_Capacitor": "400", @@ -3391,8 +3211,9 @@ "Lock_Cone": "10", "Hold_Volume": "25", "Mounts": "{Pugilist;;;light;0.800000;-0.600000;8.000000;;;;;;;;;1;1}{Pugilist;;;light;-0.800000;-0.600000;8.000000;;;;;;;;;1;1}{ParticleBeam;;;light;-0.000000;-0.400000;8.200000;;;;;;;;;1;1}{Swarm;25;7;Special Special-Missile;2.000000;0.800000;-4.000000;;;;;;;;;1;1}{Swarm;25;7;Special Special-Missile;-2.000000;0.800000;-4.000000;;;;;;;;;1;1}{Swarm;25;7;Special Special-Missile;1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{Swarm;25;7;Special Special-Missile;-1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{FriendOrFoe;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{FriendOrFoe;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", - "shield_facets": "2", - "armor": "35" + "armor": "70.0", + "shield": "250.0", + "shield_facets": "2" } }, { @@ -3400,15 +3221,14 @@ "Key": "Robin.hunter", "Textual_Description": "LIHW mass production utility fighter", "Mass": "48", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", "Warp_Capacitor": "250", "Radar_Range": "300000000", "Mounts": "{;;5;light;0.800000;-0.600000;8.000000;;;;;;;;;1;1}{;;5;light;-0.800000;-0.600000;8.000000;;;;;;;;;1;1}{;;5;light;-0.000000;-0.400000;8.200000;;;;;;;;;1;1}{;25;7;Special Special-Missile;2.000000;0.800000;-4.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;-2.000000;0.800000;-4.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;-1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{dualshield01;upgrades/Shield_Systems/Standard_Dual_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "2", - "armor": "1" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "2" } }, { @@ -3416,8 +3236,6 @@ "Key": "Robin.stock", "Textual_Description": "LIHW mass production utility fighter", "Mass": "42", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", "Warp_Capacitor": "325", "Primary_Capacitor": "100", @@ -3428,8 +3246,9 @@ "Lock_Cone": "25", "Mounts": "{;;5;light;0.800000;-0.600000;8.000000;;;;;;;;;1;1}{;;5;light;-0.800000;-0.600000;8.000000;;;;;;;;;1;1}{;;5;light;-0.000000;-0.400000;8.200000;;;;;;;;;1;1}{;25;7;Special Special-Missile;2.000000;0.800000;-4.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;-2.000000;0.800000;-4.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;-1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{dualshield01;upgrades/Shield_Systems/Standard_Dual_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "2", - "armor": "1" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "2" } }, { @@ -3454,9 +3273,9 @@ "Hold_Volume": "25", "Upgrades": "{quadshield15;;}{armor06;;}{autotracking;;}{mult_overdrive02;;}{ecm_package03;;}{reactor08;;}{capacitor05;;}", "Mounts": "{Pugilist;;;light;0.800000;-0.600000;8.000000;;;;;;;;;1;1}{Pugilist;;;light;-0.800000;-0.600000;8.000000;;;;;;;;;1;1}{ParticleBeam;;;light;-0.000000;-0.400000;8.200000;;;;;;;;;1;1}{Swarm;25;7;Special Special-Missile;2.000000;0.800000;-4.000000;;;;;;;;;1;1}{Swarm;25;7;Special Special-Missile;-2.000000;0.800000;-4.000000;;;;;;;;;1;1}{Swarm;25;7;Special Special-Missile;1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{Swarm;25;7;Special Special-Missile;-1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{FriendOrFoe;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{FriendOrFoe;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "500", - "shield_strength": "250" + "armor": "1000.0", + "shield": "250.0", + "shield_facets": "4" } } ] @@ -3474,8 +3293,6 @@ "Mass": "25", "Fuel_Capacity": "2", "Hull": "60", - "Shield_Front_Top_Right": "50", - "Shield_Back_Top_Left": "50", "Shield_Recharge": "15", "Warp_Capacitor": "25", "Primary_Capacitor": "200", @@ -3504,8 +3321,9 @@ "Light": "{supernova.bmp.bfxm;4.97838;5.31369;-12.347302;13;;;;;}{supernova.bmp.bfxm;-4.97823;5.31369;-12.347297;13;;;;;}", "Mounts": "{Arc_Device;;;Light Medium;21.89495;-6.265625;15.019003;;;;;;;;;1;1}{Arc_Device;;;Light Medium;-21.89495;-6.265625;15.019003;;;;;;;;;1;1}{Crippler;;;Light Medium Special;0;19.2408;20.111703;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "1", + "armor": "50.0", + "shield": "50.0", "shield_facets": "2", - "armor": "25", "accel": "3000" }, "units": [ @@ -3513,7 +3331,8 @@ "data": { "Key": "Seaxbane__upgrades", "Object_Type": "FIXME", - "Mounts": "{Seaxbane;1;;;;;;;;;;;;;;1;1}" + "Mounts": "{Seaxbane;1;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" } } ] @@ -3558,9 +3377,9 @@ "Hold_Volume": "25", "Prohibited_Upgrades": "upgrades/Overdrive;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Upgrade_Storage_Volume": "50", + "armor": "900.0", + "shield": "150.0", "shield_facets": "4", - "armor": "450", - "shield_strength": "150", "accel": "7500" }, "units": [ @@ -3587,8 +3406,6 @@ "Mass": "110", "Fuel_Capacity": "4.58", "Hull": "150", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -3611,6 +3428,7 @@ "Light": "{supernova.bmp.bfxm;0.058558;0.326294;-1.977969;1.780003;;;;;}{supernova.bmp.bfxm;-1.347379;0.958650;-3.000000;0.40000;;;;;}{supernova.bmp.bfxm;1.347379;0.958650;-3.000000;0.40000;;;;;}{supernova.bmp.bfxm;0.863464;-1.003810;-3.000000;0.40000;;;;;}{supernova.bmp.bfxm;-0.863464;-1.003810;-3.000000;0.40000;;;;;}", "Mounts": "{;2;32;Light-missile Medium-missile;-1.056411;-1.226957;3.200000;;;;;;;;;1;1}{;2;32;Light-missile Medium-missile;1.056411;-1.226957;3.200000;;;;;;;;;1;1}{;;;Light medium;0;0.1;3;;;;;;;;;1;1}{;2;32;light-missile medium-missile Special;-1.629525;1.044771;3.200000;;;;;;;;;1;1}{;2;32;light-missile medium-missile Special;1.629525;1.044771;3.200000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "250", + "shield_facets": "0", "accel": "2000" }, "units": [ @@ -3618,16 +3436,6 @@ "data": { "Key": "Sickle", "Mass": "180", - "Armor_Front_Top_Right": "40", - "Armor_Front_Top_Left": "40", - "Armor_Front_Bottom_Right": "40", - "Armor_Front_Bottom_Left": "40", - "Armor_Back_Top_Right": "22.5", - "Armor_Back_Top_Left": "22.5", - "Armor_Back_Bottom_Right": "22.5", - "Armor_Back_Bottom_Left": "22.5", - "Shield_Front_Top_Right": "360", - "Shield_Back_Top_Left": "120", "Shield_Recharge": "20", "Warp_Capacitor": "250", "Primary_Capacitor": "180", @@ -3643,6 +3451,8 @@ "Lock_Cone": "10", "Hold_Volume": "50", "Mounts": "{friendorfoe;2;32;Light-missile Medium-missile;-1.056411;-1.226957;3.200000;;;;;;;;;1;1}{friendorfoe;2;32;Light-missile Medium-missile;1.056411;-1.226957;3.200000;;;;;;;;;1;1}{HeavyIonBeam;;;Light medium;0;0.1;3;;;;;;;;;1;1}{friendorfoe;2;32;light-missile medium-missile Special;-1.629525;1.044771;3.200000;;;;;;;;;1;1}{friendorfoe;2;32;light-missile medium-missile Special;1.629525;1.044771;3.200000;;;;;;;;;1;1}", + "armor": "62.0", + "shield": "240.0", "shield_facets": "2" } }, @@ -3651,16 +3461,6 @@ "Key": "Sickle.iso", "Textual_Description": "Like the Hammer, the Sickle is a ship of LIHW design, and was known prior to ISO usage as the 'Goose'. While the Hammer is more feared, the Sickle is more common. By far the most common ship seen in use by the ISO, the Sickle's maneuverability and large missile bays make it a favorite of many Hunters as well.", "Mass": "180", - "Armor_Front_Top_Right": "40", - "Armor_Front_Top_Left": "40", - "Armor_Front_Bottom_Right": "40", - "Armor_Front_Bottom_Left": "40", - "Armor_Back_Top_Right": "22.5", - "Armor_Back_Top_Left": "22.5", - "Armor_Back_Bottom_Right": "22.5", - "Armor_Back_Bottom_Left": "22.5", - "Shield_Front_Top_Right": "180", - "Shield_Back_Top_Left": "60", "Shield_Recharge": "20", "Warp_Capacitor": "250", "Primary_Capacitor": "180", @@ -3676,6 +3476,8 @@ "Lock_Cone": "10", "Hold_Volume": "50", "Mounts": "{friendorfoe;2;32;Light-missile Medium-missile;-1.056411;-1.226957;3.200000;;;;;;;;;1;1}{friendorfoe;2;32;Light-missile Medium-missile;1.056411;-1.226957;3.200000;;;;;;;;;1;1}{HeavyIonBeam;;;Light medium;0;0.1;3;;;;;;;;;1;1}{friendorfoe;2;32;light-missile medium-missile Special;-1.629525;1.044771;3.200000;;;;;;;;;1;1}{friendorfoe;2;32;light-missile medium-missile Special;1.629525;1.044771;3.200000;;;;;;;;;1;1}", + "armor": "62.0", + "shield": "120.0", "shield_facets": "2" } }, @@ -3684,16 +3486,6 @@ "Key": "Sickle.isospec", "Textual_Description": "Like the Hammer, the Sickle is a ship of LIHW design, and was known prior to ISO usage as the 'Goose'. While the Hammer is more feared, the Sickle is more common. By far the most common ship seen in use by the ISO, the Sickle's maneuverability and large missile bays make it a favorite of many Hunters as well.", "Mass": "180", - "Armor_Front_Top_Right": "40", - "Armor_Front_Top_Left": "40", - "Armor_Front_Bottom_Right": "40", - "Armor_Front_Bottom_Left": "40", - "Armor_Back_Top_Right": "22.5", - "Armor_Back_Top_Left": "22.5", - "Armor_Back_Bottom_Right": "22.5", - "Armor_Back_Bottom_Left": "22.5", - "Shield_Front_Top_Right": "180", - "Shield_Back_Top_Left": "60", "Shield_Recharge": "20", "Warp_Capacitor": "250", "Primary_Capacitor": "180", @@ -3710,6 +3502,8 @@ "Hold_Volume": "50", "Mounts": "{;2;32;Light-missile Medium-missile;-1.056411;-1.226957;3.200000;;;;;;;;;1;1}{;2;32;Light-missile Medium-missile;1.056411;-1.226957;3.200000;;;;;;;;;1;1}{;;10;Light medium;0;0.1;3;;;;;;;;;1;1}{;2;32;light-missile medium-missile Special;-1.629525;1.044771;3.200000;;;;;;;;;1;1}{;2;32;light-missile medium-missile Special;1.629525;1.044771;3.200000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "12", + "armor": "62.0", + "shield": "120.0", "shield_facets": "2" } }, @@ -3718,8 +3512,6 @@ "Key": "Sickle.stock", "Textual_Description": "Like the Hammer, the Sickle is a ship of LIHW design, and was known prior to ISO usage as the 'Goose'. While the Hammer is more feared, the Sickle is more common. By far the most common ship seen in use by the ISO, the Sickle's maneuverability and large missile bays make it a favorite of many Hunters as well.", "Mass": "124", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", "Warp_Capacitor": "325", "Primary_Capacitor": "100", @@ -3729,8 +3521,9 @@ "Max_Cone": "180", "Lock_Cone": "25", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{dualshield01;upgrades/Shield_Systems/Standard_Dual_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "2", - "armor": "1" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "2" } } ] @@ -3775,6 +3568,7 @@ "Light": "{supernova.bmp.bfxm;7.861;-2.5;2.6;11;;;;;}{supernova.bmp.bfxm;-7.861;-2.5;2.6;11;;;;;}{supernova.bmp.bfxm;7.661;-3.9;4.206;8;;;;;}{supernova.bmp.bfxm;-7.661;-3.9;4.206;8;;;;;}", "Mounts": "{;;;light autotracking;-34.575;0.55;29.427;;;;;;;;;1;1}{;;;light autotracking;-34.575;-4.244;29.427;;;;;;;;;1;1}{;;;light autotracking;-23.535;0.55;33.618;;;;;;;;;1;1}{;;;light autotracking;-23.535;-4.244;33.618;;;;;;;;;1;1}{;;;light autotracking;23.535;0.55;33.618;;;;;;;;;1;1}{;;;light autotracking;23.535;-4.244;33.618;;;;;;;;;1;1}{;;;light autotracking;34.575;0.55;29.427;;;;;;;;;1;1}{;;;light autotracking;34.575;-4.244;29.427;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "680", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -3783,18 +3577,6 @@ "Key": "Vendetta.hunter", "Mass": "250", "Hull": "700", - "Armor_Front_Top_Right": "450", - "Armor_Front_Top_Left": "450", - "Armor_Front_Bottom_Right": "450", - "Armor_Front_Bottom_Left": "450", - "Armor_Back_Top_Right": "400", - "Armor_Back_Top_Left": "400", - "Armor_Back_Bottom_Right": "400", - "Armor_Back_Bottom_Left": "400", - "Shield_Front_Top_Right": "1200", - "Shield_Back_Top_Left": "900", - "Shield_Front_Bottom_Right": "800", - "Shield_Front_Bottom_Left": "800", "Shield_Recharge": "60", "Warp_Capacitor": "325", "Primary_Capacitor": "2000", @@ -3807,6 +3589,8 @@ "Max_Cone": "180", "Lock_Cone": "25", "Mounts": "{IonBurster;;;light autotracking;-34.575;0.55;29.427;;;;;;;;;1;1}{IonBurster;;;light autotracking;-34.575;-4.244;29.427;;;;;;;;;1;1}{IonBurster;;;light autotracking;-23.535;0.55;33.618;;;;;;;;;1;1}{IonBurster;;;light autotracking;-23.535;-4.244;33.618;;;;;;;;;1;1}{IonBurster;;;light autotracking;23.535;0.55;33.618;;;;;;;;;1;1}{IonBurster;;;light autotracking;23.535;-4.244;33.618;;;;;;;;;1;1}{IonBurster;;;light autotracking;34.575;0.55;29.427;;;;;;;;;1;1}{IonBurster;;;light autotracking;34.575;-4.244;29.427;;;;;;;;;1;1}", + "armor": "850.0", + "shield": "925.0", "shield_facets": "4" } }, @@ -3823,9 +3607,9 @@ "Max_Cone": "180", "Lock_Cone": "25", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -3868,6 +3652,7 @@ "Mounts": "{;;;Light Medium Heavy;-7.5;-1;0;;;;;;;;;1;1}{;;;Light Medium Heavy;7.5;-1;0;;;;;;;;;1;1}{;;;Light Medium Heavy;-.75;-6;3.25;;;;;;;;;1;1}{;;;Light Medium Heavy;.75;-6;3.25;;;;;;;;;1;1}", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "200", + "shield_facets": "0", "accel": "12000" }, "units": [ @@ -3876,10 +3661,6 @@ "Key": "Zhuangzong", "Mass": "170", "Hull": "750", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "200", - "Shield_Front_Bottom_Right": "250", - "Shield_Front_Bottom_Left": "250", "Shield_Recharge": "150", "Warp_Capacitor": "350", "Primary_Capacitor": "800", @@ -3894,18 +3675,15 @@ "Lock_Cone": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{KtekBeam;;;Light Medium Heavy;-7.5;-1;0;;;;;;;;;1;1}{KtekBeam;;;Light Medium Heavy;7.5;-1;0;;;;;;;;;1;1}{Ktek;;;Light Medium Heavy;-.75;-6;3.25;;;;;;;;;1;1}{Ktek;;;Light Medium Heavy;.75;-6;3.25;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "380" + "armor": "760.0", + "shield": "250.0", + "shield_facets": "4" } }, { "data": { "Key": "Zhuangzong.milspec", "Mass": "170", - "Shield_Front_Top_Right": "150", - "Shield_Back_Top_Left": "100", - "Shield_Front_Bottom_Right": "125", - "Shield_Front_Bottom_Left": "125", "Shield_Recharge": "100", "Warp_Capacitor": "350", "Primary_Capacitor": "800", @@ -3920,8 +3698,9 @@ "Lock_Cone": "10", "Mounts": "{;;5;Light Medium Heavy;-7.5;-1;0;;;;;;;;;1;1}{;;5;Light Medium Heavy;7.5;-1;0;;;;;;;;;1;1}{;;5;Light Medium Heavy;-.75;-6;3.25;;;;;;;;;1;1}{;;5;Light Medium Heavy;.75;-6;3.25;;;;;;;;;1;1}", "Cargo": "{Zhuangzong_Milspec_Package;upgrades/Packages/Milspec;200000;1;70;190;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "4", - "armor": "56" + "armor": "112.0", + "shield": "125.0", + "shield_facets": "4" } }, { @@ -3938,9 +3717,9 @@ "Lock_Cone": "25", "Mounts": "{;;5;Light Medium Heavy;-7.5;-1;0;;;;;;;;;1;1}{;;5;Light Medium Heavy;7.5;-1;0;;;;;;;;;1;1}{;;5;Light Medium Heavy;-.75;-6;3.25;;;;;;;;;1;1}{;;5;Light Medium Heavy;.75;-6;3.25;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -3962,8 +3741,6 @@ "Mass": "30", "Fuel_Capacity": "11.17", "Hull": "275", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -3986,6 +3763,7 @@ "Light": "{supernova.bmp.bfxm;0.00000e+0;8.60000e-2;-3.90200;.5;;;;;}{supernova.bmp.bfxm;-0.386000;8.60000e-2;-3.90200;.5;;;;;}{supernova.bmp.bfxm;0.386000;8.60000e-2;-3.90200;.5;;;;;}", "Mounts": "{;;;special heavy;-2.24600;-0.412000;-0.328000;;;;;;;;;1;1}{;;;special heavy;2.24600;-0.422000;-0.328000;;;;;;;;;1;1}{;;;light medium;-0.382000;-5.80000e-2;3.26400;;;;;;;;;1;1}{;;;light medium;0.380000;-5.80000e-2;3.26400;;;;;;;;;1;1}{;2;6;light-missile medium-missile;-0.898000;-0.108000;-1.29000;;;;;;;;;1;1}{;2;6;light-missile medium-missile;0.904000;-0.108000;-1.29000;;;;;;;;;1;1}{;2;6;light-missile medium-missile;-0.152000;-1.80000e-2;2.67800;;;;;;;;;1;1}{;2;6;light-missile medium-missile;0.158000;-1.80000e-2;2.67800;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "100", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -3994,8 +3772,6 @@ "Key": "Derivative", "Shield_Mesh": "Derivative_shield.bfxm", "Mass": "60", - "Shield_Front_Top_Right": "600", - "Shield_Back_Top_Left": "600", "Shield_Recharge": "120", "Warp_Capacitor": "250", "Primary_Capacitor": "512", @@ -4013,8 +3789,9 @@ "Hold_Volume": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{LR_Disruptor;;;special heavy;-2.24600;-0.412000;-0.328000;;;;;;;;;1;1}{LR_Disruptor;;;special heavy;2.24600;-0.422000;-0.328000;;;;;;;;;1;1}{LR_Disruptor;;;light medium;-0.382000;-5.80000e-2;3.26400;;;;;;;;;1;1}{LR_Disruptor;;;light medium;0.380000;-5.80000e-2;3.26400;;;;;;;;;1;1}{HeatSeeker;2;6;light-missile medium-missile;-0.898000;-0.108000;-1.29000;;;;;;;;;1;1}{HeatSeeker;2;6;light-missile medium-missile;0.904000;-0.108000;-1.29000;;;;;;;;;1;1}{Heatseeker;2;6;light-missile medium-missile;-0.152000;-1.80000e-2;2.67800;;;;;;;;;1;1}{Heatseeker;2;6;light-missile medium-missile;0.158000;-1.80000e-2;2.67800;;;;;;;;;1;1}", - "shield_facets": "2", - "armor": "62" + "armor": "124.0", + "shield": "600.0", + "shield_facets": "2" } }, { @@ -4022,8 +3799,6 @@ "Key": "Derivative.milspec", "Textual_Description": "Unadorned missile based interceptor", "Mass": "60", - "Shield_Front_Top_Right": "420", - "Shield_Back_Top_Left": "420", "Shield_Recharge": "120", "Warp_Capacitor": "250", "Primary_Capacitor": "512", @@ -4041,8 +3816,9 @@ "Hold_Volume": "10", "Mounts": "{;;15;special heavy;-2.24600;-0.412000;-0.328000;;;;;;;;;1;1}{;;15;special heavy;2.24600;-0.422000;-0.328000;;;;;;;;;1;1}{;;10;light medium;-0.382000;-5.80000e-2;3.26400;;;;;;;;;1;1}{;;10;light medium;0.380000;-5.80000e-2;3.26400;;;;;;;;;1;1}{;;6;light-missile medium-missile;-0.898000;-0.108000;-1.29000;;;;;;;;;1;1}{;;6;light-missile medium-missile;0.904000;-0.108000;-1.29000;;;;;;;;;1;1}{;;6;light-missile medium-missile;-0.152000;-1.80000e-2;2.67800;;;;;;;;;1;1}{;;6;light-missile medium-missile;0.158000;-1.80000e-2;2.67800;;;;;;;;;1;1}", "Cargo": "{Derivative_Milspec_Package;upgrades/Packages/Milspec;200000;1;30;90;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "2", - "armor": "62" + "armor": "124.0", + "shield": "420.0", + "shield_facets": "2" } }, { @@ -4050,8 +3826,6 @@ "Key": "Derivative.stock", "Textual_Description": "Unadorned missile based interceptor", "Mass": "44", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", "Warp_Capacitor": "325", "Primary_Capacitor": "100", @@ -4062,8 +3836,9 @@ "Lock_Cone": "25", "Mounts": "{;;15;special heavy;-2.24600;-0.412000;-0.328000;;;;;;;;;1;1}{;;15;special heavy;2.24600;-0.422000;-0.328000;;;;;;;;;1;1}{;;10;light medium;-0.382000;-5.80000e-2;3.26400;;;;;;;;;1;1}{;;10;light medium;0.380000;-5.80000e-2;3.26400;;;;;;;;;1;1}{;2;6;light-missile medium-missile;-0.898000;-0.108000;-1.29000;;;;;;;;;1;1}{;2;6;light-missile medium-missile;0.904000;-0.108000;-1.29000;;;;;;;;;1;1}{;2;6;light-missile medium-missile;-0.152000;-1.80000e-2;2.67800;;;;;;;;;1;1}{;2;6;light-missile medium-missile;0.158000;-1.80000e-2;2.67800;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{dualshield01;upgrades/Shield_Systems/Standard_Dual_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "2", - "armor": "1" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "2" } } ] @@ -4106,16 +3881,13 @@ "Light": "{supernova.bmp.bfxm;1.55;-2.2;-3;4;;;;;}{supernova.bmp.bfxm;-1.55;-2.2;-3;4;;;;;}", "Mounts": "{;;;Light;4.3;0.5;7;;;;;;;;;1;1}{;;;Light;-4.3;0.5;7;;;;;;;;;1;1}{;;;Light;3.8;0.5;7;;;;;;;;;1;1}{;;;Light;-3.8;0.5;7.;;;;;;;;;1;1}{;3;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "75", + "shield_facets": "0", "accel": "1000" }, "units": [ { "data": { "Key": "Dirge", - "Shield_Front_Top_Right": "123", - "Shield_Back_Top_Left": "123", - "Shield_Front_Bottom_Right": "234", - "Shield_Front_Bottom_Left": "234", "Shield_Recharge": "25", "Primary_Capacitor": "400", "Reactor_Recharge": "128", @@ -4127,8 +3899,9 @@ "Lock_Cone": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;jump_drive;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{ParticleBeam;;;Light;4.3;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;-4.3;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;3.8;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;-3.8;0.5;7.;;;;;;;;;1;1}{friendorfoe;3;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{friendorfoe;3;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "50" + "armor": "100.0", + "shield": "178.5", + "shield_facets": "4" } }, { @@ -4143,9 +3916,9 @@ "Max_Cone": "180", "Lock_Cone": "25", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -4165,8 +3938,6 @@ "Mass": "42", "Fuel_Capacity": "3.46", "Hull": "400", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -4189,6 +3960,7 @@ "Light": "{supernova.bmp.bfxm;0;-.328;-9.75;8;;;;;}{supernova.bmp.bfxm;0.25;-1.1;-9.75;5;;;;;}{supernova.bmp.bfxm;-0.25;-1.1;-9.75;5;;;;;}", "Mounts": "{;;;Light;1.4;0;.5;.2;.2;;;;;;;1;1}{;;;Light;-1.4;0;.5;.2;.2;;;;;;;1;1}{;;;Light Medium;0;-2.5;10.25;.2;.2;;;;;;;1;1}{;;;Light;0;-2.8;10.25;.2;.2;;;;;;;1;1}{;4;1;special special-missile medium-missile;1.95;.45;-.75;;;;;;;;;1;1}{;4;1;Special special-missile medium-missile;-1.95;.45;-.75;;;;;;;;;1;1}{;4;1;light-missile medium-missile;1.95;.81;-.75;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-1.95;.81;-.75;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "225", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -4228,7 +4000,7 @@ "Upgrades": "{armor03;;}{dualshield04;;}{add_spec_capacitor02;;}{capacitor03;;}{reactor04;;}{jump_drive;;}{starscanner2;;}{ecm_package01;;}", "Mounts": "{;;5;Light;1.4;0;.5;.2;.2;;;;;;;1;1}{;;5;Light;-1.4;0;.5;.2;.2;;;;;;;1;1}{;;10;Light Medium;0;-2.5;10.25;.2;.2;;;;;;;1;1}{;;5;Light;0;-2.8;10.25;.2;.2;;;;;;;1;1}{;;5;special special-missile medium-missile;1.95;.45;-.75;;;;;;;;;1;1}{;;5;Special special-missile medium-missile;-1.95;.45;-.75;;;;;;;;;1;1}{;;8;light-missile medium-missile;1.95;.81;-.75;;;;;;;;;1;1}{;;8;light-missile medium-missile;-1.95;.81;-.75;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "10", - "armor": "1" + "armor": "2.0" } }, { @@ -4246,7 +4018,7 @@ "Hold_Volume": "25", "Mounts": "{;;5;Light;1.4;0;.5;.2;.2;;;;;;;1;1}{;;5;Light;-1.4;0;.5;.2;.2;;;;;;;1;1}{;;10;Light Medium;0;-2.5;10.25;.2;.2;;;;;;;1;1}{;;5;Light;0;-2.8;10.25;.2;.2;;;;;;;1;1}{;;5;special special-missile medium-missile;1.95;.45;-.75;;;;;;;;;1;1}{;;5;Special special-missile medium-missile;-1.95;.45;-.75;;;;;;;;;1;1}{;;8;light-missile medium-missile;1.95;.81;-.75;;;;;;;;;1;1}{;;8;light-missile medium-missile;-1.95;.81;-.75;;;;;;;;;1;1}", "Cargo": "{Gawain_Milspec_Package;upgrades/Packages/Milspec;200000;1;30;215;1;1;Full-Custom Milspec Configuration;0}", - "armor": "1" + "armor": "2.0" } }, { @@ -4254,8 +4026,6 @@ "Key": "Gawain.stock", "Textual_Description": "Main line High-Born interceptor", "Mass": "56", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", "Warp_Capacitor": "325", "Primary_Capacitor": "100", @@ -4266,8 +4036,9 @@ "Lock_Cone": "25", "Mounts": "{;;5;Light;1.4;0;.5;.2;.2;;;;;;;1;1}{;;5;Light;-1.4;0;.5;.2;.2;;;;;;;1;1}{;;10;Light Medium;0;-2.5;10.25;.2;.2;;;;;;;1;1}{;;5;Light;0;-2.8;10.25;.2;.2;;;;;;;1;1}{;4;1;special special-missile medium-missile;1.95;.45;-.75;;;;;;;;;1;1}{;4;1;Special special-missile medium-missile;-1.95;.45;-.75;;;;;;;;;1;1}{;4;1;light-missile medium-missile;1.95;.81;-.75;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-1.95;.81;-.75;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{dualshield01;upgrades/Shield_Systems/Standard_Dual_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "2", - "armor": "1" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "2" } } ] @@ -4287,10 +4058,6 @@ "Mass": "20", "Fuel_Capacity": "3", "Hull": "160", - "Shield_Front_Top_Right": "123", - "Shield_Back_Top_Left": "123", - "Shield_Front_Bottom_Right": "234", - "Shield_Front_Bottom_Left": "234", "Shield_Recharge": "25", "Warp_Capacitor": "25", "Primary_Capacitor": "400", @@ -4319,8 +4086,9 @@ "Light": "{supernova.bmp.bfxm;1.55;-2.2;-3;4;;;;;}{supernova.bmp.bfxm;-1.55;-2.2;-3;4;;;;;}", "Mounts": "{ParticleBeam;;;Light;4.3;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;-4.3;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;3.8;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;-3.8;0.5;7.;;;;;;;;;1;1}{friendorfoe;3;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{friendorfoe;3;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "75", + "armor": "100.0", + "shield": "178.5", "shield_facets": "4", - "armor": "50", "accel": "1000" }, "units": [ @@ -4346,10 +4114,6 @@ "Mass": "20", "Fuel_Capacity": "3", "Hull": "160", - "Shield_Front_Top_Right": "123", - "Shield_Back_Top_Left": "123", - "Shield_Front_Bottom_Right": "234", - "Shield_Front_Bottom_Left": "234", "Shield_Recharge": "25", "Warp_Capacitor": "25", "Primary_Capacitor": "400", @@ -4378,8 +4142,9 @@ "Light": "{supernova.bmp.bfxm;1.55;-2.2;-3;4;;;;;}{supernova.bmp.bfxm;-1.55;-2.2;-3;4;;;;;}", "Mounts": "{ParticleBeam;;;Light;4.3;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;-4.3;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;3.8;0.5;7;;;;;;;;;1;1}{ParticleBeam;;;Light;-3.8;0.5;7.;;;;;;;;;1;1}{friendorfoe;3;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{friendorfoe;3;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "75", + "armor": "100.0", + "shield": "178.5", "shield_facets": "4", - "armor": "50", "accel": "1000" }, "units": [ @@ -4407,8 +4172,6 @@ "Mass": "41", "Fuel_Capacity": "11", "Hull": "271", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -4432,6 +4195,7 @@ "Mounts": "{;;;light medium autotracking;5.600000;-1.600000;3.200000;;;;;;;;;1;1}{;;;light medium autotracking;-5.600000;-1.600000;3.200000;;;;;;;;;1;1}{;;;light medium autotracking;.5;-1.65;8;;;;;;;;;1;1}{;;;light medium autotracking;-.5;-1.65;8;;;;;;;;;1;1}{;200;100;special-missile autotracking;3.600000;-1.600000;1.200000;;;;;;;;;1;1}{;200;100;special-missile autotracking;-3.600000;-1.600000;1.200000;;;;;;;;;1;1}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "225", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -4440,8 +4204,6 @@ "Key": "Nicander", "Mass": "61", "Hull": "350", - "Shield_Front_Top_Right": "1300", - "Shield_Back_Top_Left": "1300", "Shield_Recharge": "90", "Warp_Capacitor": "1300", "Primary_Capacitor": "500", @@ -4459,16 +4221,15 @@ "Hold_Volume": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Photon_MKIII;6000;12;light medium autotracking;5.600000;-1.600000;3.200000;;;;;;;;;1;1}{Photon_MKIII;6000;12;light medium autotracking;-5.600000;-1.600000;3.200000;;;;;;;;;1;1}{Photon_MKII;3000;15;light medium autotracking;.5;-1.65;8;;;;;;;;;1;1}{Photon_MKII;3000;15;light medium autotracking;-.5;-1.65;8;;;;;;;;;1;1}{Photonswarm;200;100;special-missile autotracking;3.600000;-1.600000;1.200000;;;;;;;;;1;1}{Photonswarm;200;100;special-missile autotracking;-3.600000;-1.600000;1.200000;;;;;;;;;1;1}", - "shield_facets": "2", - "armor": "180" + "armor": "360.0", + "shield": "1300.0", + "shield_facets": "2" } }, { "data": { "Key": "Nicander.escort", "Mass": "61", - "Shield_Front_Top_Right": "360", - "Shield_Back_Top_Left": "360", "Shield_Recharge": "90", "Warp_Capacitor": "1300", "Primary_Capacitor": "500", @@ -4486,16 +4247,15 @@ "Hold_Volume": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Photon_MKIII;6000;12;light medium autotracking;5.600000;-1.600000;3.200000;;;;;;;;;1;1}{Photon_MKIII;6000;12;light medium autotracking;-5.600000;-1.600000;3.200000;;;;;;;;;1;1}{Photon_MKIII;7500;15;light medium autotracking;.5;-1.65;8;;;;;;;;;1;1}{Photon_MKIII;7500;15;light medium autotracking;-.5;-1.65;8;;;;;;;;;1;1}{Photonswarm;200;100;special-missile autotracking;3.600000;-1.600000;1.200000;;;;;;;;;1;1}{Photonswarm;200;100;special-missile autotracking;-3.600000;-1.600000;1.200000;;;;;;;;;1;1}", - "shield_facets": "2", - "armor": "90" + "armor": "180.0", + "shield": "360.0", + "shield_facets": "2" } }, { "data": { "Key": "Nicander.milspec", "Mass": "61", - "Shield_Front_Top_Right": "360", - "Shield_Back_Top_Left": "360", "Shield_Recharge": "90", "Warp_Capacitor": "1300", "Primary_Capacitor": "500", @@ -4514,16 +4274,15 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;12;light medium autotracking;5.600000;-1.600000;3.200000;;;;;;;;;1;1}{;;12;light medium autotracking;-5.600000;-1.600000;3.200000;;;;;;;;;1;1}{;;15;light medium autotracking;.5;-1.65;8;;;;;;;;;1;1}{;;15;light medium autotracking;-.5;-1.65;8;;;;;;;;;1;1}{;;100;special-missile autotracking;3.600000;-1.600000;1.200000;;;;;;;;;1;1}{;;100;special-missile autotracking;-3.600000;-1.600000;1.200000;;;;;;;;;1;1}", "Cargo": "{Nicander_Milspec_Package;upgrades/Packages/Milspec;200000;1;20;215;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "2", - "armor": "90" + "armor": "180.0", + "shield": "360.0", + "shield_facets": "2" } }, { "data": { "Key": "Nicander.stock", "Mass": "55", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", "Warp_Capacitor": "325", "Primary_Capacitor": "100", @@ -4534,8 +4293,9 @@ "Lock_Cone": "25", "Mounts": "{;;10;light medium autotracking;5.600000;-1.600000;3.200000;;;;;;;;;1;1}{;;10;light medium autotracking;-5.600000;-1.600000;3.200000;;;;;;;;;1;1}{;;10;light medium autotracking;.5;-1.65;8;;;;;;;;;1;1}{;;10;light medium autotracking;-.5;-1.65;8;;;;;;;;;1;1}{;200;100;special-missile autotracking;3.600000;-1.600000;1.200000;;;;;;;;;1;1}{;200;100;special-missile autotracking;-3.600000;-1.600000;1.200000;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{dualshield01;upgrades/Shield_Systems/Standard_Dual_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "2", - "armor": "1" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "2" } } ] @@ -4579,6 +4339,7 @@ "Light": "{supernova.bmp.bfxm;2.8;2.8;-5;7;;;;;}{supernova.bmp.bfxm;-2.8;2.8;-5;7;;;;;}{supernova.bmp.bfxm;4;2.335;-5;7;;;;;}{supernova.bmp.bfxm;-4;2.335;-5;7;;;;;}", "Mounts": "{;;;light medium;0.95;-2.635;12.000000;;;;;;;;;1;1}{;;;light medium;-0.95;-2.635;12.000000;;;;;;;;;1;1}{;125;32;Special Special-Missile;2.641;-.705;10;;;;;;;;;1;1}{;125;32;Special Special-Missile;-2.641;-.705;10;;;;;;;;;1;1}{;125;32;Special Special-Missile;1.355;-.705;10;;;;;;;;;1;1}{;125;32;Special Special-Missile;-1.355;-.705;10;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "230", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -4587,18 +4348,6 @@ "Key": "Progeny", "Mass": "64", "Hull": "180", - "Armor_Front_Top_Right": "100", - "Armor_Front_Top_Left": "100", - "Armor_Front_Bottom_Right": "100", - "Armor_Front_Bottom_Left": "100", - "Armor_Back_Top_Right": "80", - "Armor_Back_Top_Left": "80", - "Armor_Back_Bottom_Right": "80", - "Armor_Back_Bottom_Left": "80", - "Shield_Front_Top_Right": "420", - "Shield_Back_Top_Left": "120", - "Shield_Front_Bottom_Right": "200", - "Shield_Front_Bottom_Left": "200", "Shield_Recharge": "42", "Warp_Capacitor": "250", "Primary_Capacitor": "300", @@ -4615,6 +4364,8 @@ "Hold_Volume": "20", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{LR_Disruptor;;;light medium;0.95;-2.635;12.000000;;;;;;;;;1;1}{LR_Disruptor;;;light medium;-0.95;-2.635;12.000000;;;;;;;;;1;1}{Swarm;125;32;Special Special-Missile;2.641;-.705;10;;;;;;;;;1;1}{Swarm;125;32;Special Special-Missile;-2.641;-.705;10;;;;;;;;;1;1}{Swarm;125;32;Special Special-Missile;1.355;-.705;10;;;;;;;;;1;1}{Swarm;125;32;Special Special-Missile;-1.355;-.705;10;;;;;;;;;1;1}{FriendOrFoe;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{FriendOrFoe;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", + "armor": "180.0", + "shield": "235.0", "shield_facets": "4" } }, @@ -4623,18 +4374,6 @@ "Key": "Progeny.milspec", "Textual_Description": "Shaper single-pilot interceptor", "Mass": "64", - "Armor_Front_Top_Right": "65", - "Armor_Front_Top_Left": "65", - "Armor_Front_Bottom_Right": "65", - "Armor_Front_Bottom_Left": "65", - "Armor_Back_Top_Right": "45", - "Armor_Back_Top_Left": "45", - "Armor_Back_Bottom_Right": "45", - "Armor_Back_Bottom_Left": "45", - "Shield_Front_Top_Right": "420", - "Shield_Back_Top_Left": "60", - "Shield_Front_Bottom_Right": "100", - "Shield_Front_Bottom_Left": "100", "Shield_Recharge": "42", "Primary_Capacitor": "300", "Reactor_Recharge": "40", @@ -4650,6 +4389,8 @@ "Hold_Volume": "20", "Mounts": "{;;10;light medium;0.95;-2.635;12.000000;;;;;;;;;1;1}{;;10;light medium;-0.95;-2.635;12.000000;;;;;;;;;1;1}{;;32;Special Special-Missile;2.641;-.705;10;;;;;;;;;1;1}{;;32;Special Special-Missile;-2.641;-.705;10;;;;;;;;;1;1}{;;32;Special Special-Missile;1.355;-.705;10;;;;;;;;;1;1}{;;32;Special Special-Missile;-1.355;-.705;10;;;;;;;;;1;1}{;;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{;;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", "Cargo": "{Progeny_Milspec_Package;upgrades/Packages/Milspec;200000;1;20;218;1;1;Full-Custom Milspec Configuration;0}", + "armor": "110.0", + "shield": "170.0", "shield_facets": "4" } }, @@ -4658,18 +4399,6 @@ "Key": "Progeny.rg", "Textual_Description": "Shaper single-pilot interceptor", "Mass": "64", - "Armor_Front_Top_Right": "65", - "Armor_Front_Top_Left": "65", - "Armor_Front_Bottom_Right": "65", - "Armor_Front_Bottom_Left": "65", - "Armor_Back_Top_Right": "45", - "Armor_Back_Top_Left": "45", - "Armor_Back_Bottom_Right": "45", - "Armor_Back_Bottom_Left": "45", - "Shield_Front_Top_Right": "420", - "Shield_Back_Top_Left": "60", - "Shield_Front_Bottom_Right": "100", - "Shield_Front_Bottom_Left": "100", "Shield_Recharge": "42", "Warp_Capacitor": "250", "Primary_Capacitor": "300", @@ -4686,6 +4415,8 @@ "Hold_Volume": "20", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Disruptor;;;light medium;0.95;-2.635;12.000000;;;;;;;;;1;1}{Disruptor;;;light medium;-0.95;-2.635;12.000000;;;;;;;;;1;1}{Swarm;125;32;Special Special-Missile;2.641;-.705;10;;;;;;;;;1;1}{Swarm;125;32;Special Special-Missile;-2.641;-.705;10;;;;;;;;;1;1}{Swarm;125;32;Special Special-Missile;1.355;-.705;10;;;;;;;;;1;1}{Swarm;125;32;Special Special-Missile;-1.355;-.705;10;;;;;;;;;1;1}{FriendOrFoe;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{FriendOrFoe;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", + "armor": "110.0", + "shield": "170.0", "shield_facets": "4" } }, @@ -4694,18 +4425,6 @@ "Key": "Progeny.rgspec", "Textual_Description": "Shaper single-pilot interceptor", "Mass": "64", - "Armor_Front_Top_Right": "65", - "Armor_Front_Top_Left": "65", - "Armor_Front_Bottom_Right": "65", - "Armor_Front_Bottom_Left": "65", - "Armor_Back_Top_Right": "45", - "Armor_Back_Top_Left": "45", - "Armor_Back_Bottom_Right": "45", - "Armor_Back_Bottom_Left": "45", - "Shield_Front_Top_Right": "420", - "Shield_Back_Top_Left": "60", - "Shield_Front_Bottom_Right": "100", - "Shield_Front_Bottom_Left": "100", "Shield_Recharge": "42", "Warp_Capacitor": "250", "Primary_Capacitor": "300", @@ -4722,6 +4441,8 @@ "Hold_Volume": "20", "Mounts": "{;;10;light medium;0.95;-2.635;12.000000;;;;;;;;;1;1}{;;10;light medium;-0.95;-2.635;12.000000;;;;;;;;;1;1}{;;32;Special Special-Missile;2.641;-.705;10;;;;;;;;;1;1}{;;32;Special Special-Missile;-2.641;-.705;10;;;;;;;;;1;1}{;;32;Special Special-Missile;1.355;-.705;10;;;;;;;;;1;1}{;;32;Special Special-Missile;-1.355;-.705;10;;;;;;;;;1;1}{;;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{;;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "15", + "armor": "110.0", + "shield": "170.0", "shield_facets": "4" } }, @@ -4739,9 +4460,9 @@ "Max_Cone": "180", "Lock_Cone": "25", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -4787,6 +4508,7 @@ "Light": "{supernova.bmp.bfxm;0;-.5;-5.5;10;;;;;}", "Mounts": "{;;;Light Autotracking;0;3;.5;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "325", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -4811,9 +4533,9 @@ "Hold_Volume": "75", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{DisruptorBeam;;;Light Autotracking;0;3;.5;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "12", - "shield_strength": "360" + "armor": "24.0", + "shield": "360.0", + "shield_facets": "4" } }, { @@ -4839,9 +4561,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;5;Light Autotracking;0;3;.5;;;;;;;;;1;1}", "Cargo": "{Schroedinger_Milspec_Package;upgrades/Packages/Milspec;200000;1;30;307;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "4", - "armor": "12", - "shield_strength": "360" + "armor": "24.0", + "shield": "360.0", + "shield_facets": "4" } }, { @@ -4859,9 +4581,9 @@ "Lock_Cone": "25", "Mounts": "{;;5;Light Autotracking;0;3;.5;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -4906,6 +4628,7 @@ "Mounts": "{;;;Light Medium;-4.125;-4.4;0;;;;;;;;;1;1}{;;;Light Medium;4.125;-4.4;0;;;;;;;;;1;1}", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "450", + "shield_facets": "0", "accel": "12000" }, "units": [ @@ -4928,9 +4651,9 @@ "Lock_Cone": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Ktek;;;Light Medium;-4.125;-4.4;0;;;;;;;;;1;1}{Ktek;;;Light Medium;4.125;-4.4;0;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "38", - "shield_strength": "100" + "armor": "76.0", + "shield": "100.0", + "shield_facets": "4" } }, { @@ -4950,9 +4673,9 @@ "Tracking_Cone": "5", "Max_Cone": "180", "Lock_Cone": "10", - "shield_facets": "4", - "armor": "38", - "shield_strength": "50" + "armor": "76.0", + "shield": "50.0", + "shield_facets": "4" } }, { @@ -4975,9 +4698,9 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{;;10;Light Medium;-4.125;-4.4;0;;;;;;;;;1;1}{;;10;Light Medium;4.125;-4.4;0;;;;;;;;;1;1}", "Cargo": "{Shizu_Milspec_Package;upgrades/Packages/Milspec;200000;1;60;425;1;1;Full-Custom Milspec Configuration;0}", - "shield_facets": "4", - "armor": "38", - "shield_strength": "50" + "armor": "76.0", + "shield": "50.0", + "shield_facets": "4" } }, { @@ -4994,9 +4717,9 @@ "Lock_Cone": "25", "Mounts": "{;;5;Light Medium;-4.125;-4.4;0;;;;;;;;;1;1}{;;5;Light Medium;4.125;-4.4;0;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -5039,24 +4762,13 @@ "Dock": "{;30;0;-37;30;0}{;-30;0;-37;30;0}", "Upgrade_Storage_Volume": "600", "Spec_Interdiction": "-8", + "shield_facets": "0", "accel": "10000" }, "units": [ { "data": { "Key": "Hidalgo__pirates", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "4600", - "Shield_Back_Top_Left": "6000", - "Shield_Front_Bottom_Right": "4000", - "Shield_Front_Bottom_Left": "4000", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -5079,6 +4791,8 @@ "Lock_Cone": "10", "Mounts": "{tractor;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{tractor;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{Arc_Device;;;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}{heatseeker;15;45;Medium-missile light-missile;6.5;3;12.5;;;;;;;;;1;1}{Heatseeker;15;45;Medium-missile light-missile;-6.5;3;12.5;;;;;;;;;1;1}{imagerecognition;8;72;special-missile Medium-missile;0;3;2.5;;;;;;;;;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Contraband/Confed;1.1;.1;;2}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Food;.7;.2;;10}", + "armor": "1825.0", + "shield": "4650.0", "shield_facets": "4" } }, @@ -5087,18 +4801,6 @@ "Key": "Hidalgo", "Combat_Role": "SUPPORT", "Textual_Description": "\"A luxury yacht of such size and quality of construction that only the wealthy can consider investing in one.\"\n", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "4600", - "Shield_Back_Top_Left": "6000", - "Shield_Front_Bottom_Right": "4000", - "Shield_Front_Bottom_Left": "4000", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -5121,6 +4823,8 @@ "Lock_Cone": "25", "Mounts": "{tractor;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{tractor;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{LR_Disruptor;;;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}{heatseeker;15;45;Medium-missile light-missile;6.5;3;12.5;;;;;;;;;1;1}{Heatseeker;15;45;Medium-missile light-missile;-6.5;3;12.5;;;;;;;;;1;1}{imagerecognition;8;72;special-missile Medium-missile;0;3;2.5;;;;;;;;;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Food;.7;.2;;10}", + "armor": "1825.0", + "shield": "4650.0", "shield_facets": "4", "accel": "100000" } @@ -5146,18 +4850,6 @@ "Key": "Hidalgo.civvie", "Combat_Role": "SUPPORT", "Textual_Description": "A luxury yacht of such size and quality of construction that only the wealthy can consider investing in one.", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "2300", - "Shield_Back_Top_Left": "3000", - "Shield_Front_Bottom_Right": "2000", - "Shield_Front_Bottom_Left": "2000", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -5181,6 +4873,8 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{tractor;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{tractor;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{Arc_Device;;;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}{heatseeker;15;45;Medium-missile light-missile;6.5;3;12.5;;;;;;;;;1;1}{Heatseeker;15;45;Medium-missile light-missile;-6.5;3;12.5;;;;;;;;;1;1}{imagerecognition;8;72;special-missile Medium-missile;0;3;2.5;;;;;;;;;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Food;.7;.2;;10}", + "armor": "1825.0", + "shield": "2325.0", "shield_facets": "4", "accel": "100000" } @@ -5224,6 +4918,7 @@ "Mounts": "{;;;Light Medium;-12.6;-16.5;4;;;;;;;;;1;1}{;;;Light Medium;12.6;-16.5;4;;;;;;;;;1;1}{;;;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{;;;Light;12.5;-1.5;-1;;;;;;;;;1;1}{;1;16;Special light-missile;0;-.23;4;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "325", "Spec_Interdiction": "-2", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -5231,10 +4926,6 @@ "data": { "Key": "Hyena__pirates", "Fuel_Capacity": "3.77", - "Shield_Front_Top_Right": "180", - "Shield_Back_Top_Left": "120", - "Shield_Front_Bottom_Right": "120", - "Shield_Front_Bottom_Left": "120", "Shield_Recharge": "23.5", "Warp_Capacitor": "100", "Primary_Capacitor": "300", @@ -5254,8 +4945,9 @@ "Lock_Cone": "10", "Hold_Volume": "45", "Mounts": "{Crippler;;;Light Special;-12.6;-16.5;4;;;;;;;;;1;1}{Crippler;;;Light Special;12.6;-16.5;4;;;;;;;;;1;1}{LeechGun;;;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{LeechGun;;;Light;12.5;-1.5;-1;;;;;;;;;1;1}{Tractor;1;16;Special;0;-.23;4;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "44" + "armor": "88.0", + "shield": "135.0", + "shield_facets": "4" } } ] @@ -5300,6 +4992,7 @@ "Mounts": "{;;;special;11.5;-2.5;24;;;;;;;;;1;1}{;;;special;-11.5;-2.5;24;;;;;;;;;1;1}{;;;Light Medium;11.5;-4.5;23;;;;;;;;;1;1}{;;;Light Medium;-11.5;-4.5;23;;;;;;;;;1;1}{;8;24;light-missile medium-missile;-5.3;7;12;;;;;;;;;1;1}{;8;24;light-missile medium-missile;5.3;7;12;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "600", "Spec_Interdiction": "-5", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -5307,16 +5000,6 @@ "data": { "Key": "Plowshare__pirates", "Fuel_Capacity": "44.17", - "Armor_Front_Top_Right": "150", - "Armor_Front_Top_Left": "150", - "Armor_Front_Bottom_Right": "150", - "Armor_Front_Bottom_Left": "150", - "Armor_Back_Top_Right": "162.5", - "Armor_Back_Top_Left": "162.5", - "Armor_Back_Bottom_Right": "162.5", - "Armor_Back_Bottom_Left": "162.5", - "Shield_Front_Top_Right": "440", - "Shield_Back_Top_Left": "440", "Shield_Recharge": "20", "Warp_Capacitor": "620", "Primary_Capacitor": "380", @@ -5336,6 +5019,8 @@ "Hold_Volume": "4000", "Mounts": "{Tractor;;;special;11.5;-2.5;24;;;;;;;;;1;1}{Tractor;;;special;-11.5;-2.5;24;;;;;;;;;1;1}{Crippler;;;Light Medium;11.5;-4.5;23;;;;;;;;;1;1}{Crippler;;;Light Medium;-11.5;-4.5;23;;;;;;;;;1;1}{HeatSeeker;8;24;light-missile medium-missile;-5.3;7;12;;;;;;;;;1;1}{HeatSeeker;8;24;light-missile medium-missile;5.3;7;12;;;;;;;;;1;1}", "Cargo_Import": "{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Specialty_Goods/Entertainment;1;.1;;1}", + "armor": "312.0", + "shield": "440.0", "shield_facets": "2" } }, @@ -5413,9 +5098,9 @@ "Hold_Volume": "10000", "Mounts": "{tractorbeam;;;special;11.5;-2.5;24;;;;;;;;;1;1}{tractorbeam;;;special;-11.5;-2.5;24;;;;;;;;;1;1}{MicroDriver;;;Light Medium;11.5;-4.5;23;;;;;;;;;1;1}{MicroDriver;;;Light Medium;-11.5;-4.5;23;;;;;;;;;1;1}", "Cargo_Import": "{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Specialty_Goods/Entertainment;1;.1;;1}", + "armor": "2.0", + "shield": "75.0", "shield_facets": "4", - "armor": "1", - "shield_strength": "75", "accel": "10000" } }, @@ -5446,9 +5131,9 @@ "Hold_Volume": "10000", "Mounts": "{;;;special;11.5;-2.5;24;;;;;;;;;1;1}{;;;special;-11.5;-2.5;24;;;;;;;;;1;1}{;;;Light Medium;11.5;-4.5;23;;;;;;;;;1;1}{;;;Light Medium;-11.5;-4.5;23;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-5.3;7;12;;;;;;;;;1;1}{;4;1;light-missile medium-missile;5.3;7;12;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -5496,7 +5181,8 @@ "Mounts": "{Disruptor;;;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{Disruptor;;;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{ParticleBeam;;;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{ParticleBeam;;;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Dock": "{;0;-0.85;1.5;0.5;0}", "Upgrade_Storage_Volume": "360", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -5547,6 +5233,7 @@ "Mounts": "{;;;;64;51;11.8091;;;;;;;;;1;1}{;;;;-64;51;11.8091;;;;;;;;;1;1}{;;;Special autotracking;212;-50;65;;;;;;;;;1;1}{;;;Special autotracking;-212;-50;65;;;;;;;;;1;1}{;;;Special;0;-35;95;;;;;;;;;1;1}{;;;Special;-0;-35;95;;;;;;;;;1;1}{;;;Special;0;-35;95;;;;;;;;;1;1}{;;;Special;-0;-35;95;;;;;;;;;1;1}{;;;Special;0;-35;95;;;;;;;;;1;1}{;;;Special;0;-35;95;;;;;;;;;1;1}", "Dock": "{;0;-4.7;6;25;0}", "Upgrade_Storage_Volume": "1800", + "shield_facets": "0", "accel": "10000" }, "units": [ @@ -5563,7 +5250,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{handlaser;;;;64;51;11.8091;;;;;;;;;1;1}{handlaser;;;;-64;51;11.8091;;;;;;;;;1;1}{Heavytractor;;;Special autotracking;212;-50;65;;;;;;;;;1;1}{Heavytractor;;;Special autotracking;-212;-50;65;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;-0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;-0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}", "Cargo_Import": "{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}", - "armor": "1" + "armor": "2.0" } }, { @@ -5581,9 +5268,9 @@ "Upgrades": "{armor01;;}{quadshield02;;}{add_spec_capacitor01;;}{capacitor02;;}{reactor03;;}{skyscope2;;}", "Mounts": "{handlaser;;;;64;51;11.8091;;;;;;;;;1;1}{handlaser;;;;-64;51;11.8091;;;;;;;;;1;1}{Heavytractor;;;Special autotracking;212;-50;65;;;;;;;;;1;1}{Heavytractor;;;Special autotracking;-212;-50;65;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;-0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;-0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}", "Cargo_Import": "{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "25" + "armor": "2.0", + "shield": "25.0", + "shield_facets": "4" } }, { @@ -5598,7 +5285,7 @@ "Lock_Cone": "25", "Mounts": "{handlaser;;;;64;51;11.8091;;;;;;;;;1;1}{handlaser;;;;-64;51;11.8091;;;;;;;;;1;1}{Heavytractor;;;Special autotracking;212;-50;65;;;;;;;;;1;1}{Heavytractor;;;Special autotracking;-212;-50;65;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;-0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;-0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}{Heavytractor;;;Special;0;-35;95;;;;;;;;;1;1}", "Cargo": "{Dodo_Milspec_Package;upgrades/Packages/Milspec;200000;1;140;1725;1;1;Full-Custom Milspec Configuration;0}", - "armor": "1" + "armor": "2.0" } }, { @@ -5615,9 +5302,9 @@ "Max_Cone": "180", "Lock_Cone": "25", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -5636,8 +5323,6 @@ "Mass": "72", "Fuel_Capacity": "3.46", "Hull": "400", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Jump_Drive_Present": "1", "Outsystem_Jump_Cost": "200", @@ -5661,6 +5346,7 @@ "Hold_Volume": "25", "Prohibited_Upgrades": "upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Upgrade_Storage_Volume": "225", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -5669,15 +5355,14 @@ "Key": "Entourage", "Textual_Description": "Luxury Personal Transportation by the Luxury Travel Conglomerate primarily utilized by the Highborn and Uln Ranks of Lords", "Cockpit": "no-cockpit", - "Shield_Front_Top_Right": "125", - "Shield_Back_Top_Left": "125", "Shield_Recharge": "25", "Warp_Capacitor": "250", "Primary_Capacitor": "125", "Reactor_Recharge": "15", "Light": "{supernova.bmp.bfxm;0.1;-0.44;-2.95;0.151;;;;;}{supernova.bmp.bfxm;-0.05;-0.44;-2.95;0.151;;;;;}{supernova.bmp.bfxm;-0.3;0.25;-2.99;0.195;;;;;}{supernova.bmp.bfxm;0.35;0.25;-2.99;0.195;;;;;}{supernova.bmp.bfxm;1.67;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;1.36;-0.08;-3.51;0.32;;;;;}{supernova.bmp.bfxm;1.04;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;0.75;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-1.61;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-1.31;-0.08;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-0.99;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-0.7;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-0.11;0.26;-2.99;0.274;;;;;}{supernova.bmp.bfxm;0.31;-0.43;-2.95;0.274;;;;;}{supernova.bmp.bfxm;-0.26;-0.43;-2.95;0.274;;;;;}{supernova.bmp.bfxm;0.15;0.26;-2.99;0.274;;;;;}", - "shield_facets": "2", - "armor": "25" + "armor": "50.0", + "shield": "125.0", + "shield_facets": "2" } }, { @@ -5685,15 +5370,14 @@ "Key": "Entourage.stock", "Textual_Description": "Luxury Personal Transportation by the Luxury Travel Conglomerate primarily utilized by the Highborn and Uln Ranks of Lords", "Cockpit": "no-cockpit", - "Shield_Front_Top_Right": "125", - "Shield_Back_Top_Left": "125", "Shield_Recharge": "25", "Warp_Capacitor": "250", "Primary_Capacitor": "125", "Reactor_Recharge": "15", "Light": "{supernova.bmp.bfxm;0.1;-0.44;-2.95;0.151;;;;;}{supernova.bmp.bfxm;-0.05;-0.44;-2.95;0.151;;;;;}{supernova.bmp.bfxm;-0.3;0.25;-2.99;0.195;;;;;}{supernova.bmp.bfxm;0.35;0.25;-2.99;0.195;;;;;}{supernova.bmp.bfxm;1.67;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;1.36;-0.08;-3.51;0.32;;;;;}{supernova.bmp.bfxm;1.04;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;0.75;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-1.61;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-1.31;-0.08;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-0.99;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-0.7;-0.1;-3.51;0.32;;;;;}{supernova.bmp.bfxm;-0.11;0.26;-2.99;0.274;;;;;}{supernova.bmp.bfxm;0.31;-0.43;-2.95;0.274;;;;;}{supernova.bmp.bfxm;-0.26;-0.43;-2.95;0.274;;;;;}{supernova.bmp.bfxm;0.15;0.26;-2.99;0.274;;;;;}", - "shield_facets": "2", - "armor": "25" + "armor": "50.0", + "shield": "125.0", + "shield_facets": "2" } } ] @@ -5736,6 +5420,7 @@ "Light": "{supernova.bmp.bfxm;0.00000e+0;2.40000e-2;-1.03600;.5;;;;;}{supernova.bmp.bfxm;-0.298000;2.40000e-2;-1.03600;.5;;;;;}{supernova.bmp.bfxm;0.290000;2.40000e-2;-1.03600;.5;;;;;}", "Mounts": "{;;;Light Medium;-1.45600;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;;;Light Medium;1.45800;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;Light Medium ;0.160000;-0.102000;2.42200;;;;;;;;;1;1}{;;;Light Medium;-0.132000;-0.102000;2.42200;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "300", + "shield_facets": "0", "accel": "10000" }, "units": [ @@ -5743,10 +5428,6 @@ "data": { "Key": "Franklin", "Mass": "152", - "Shield_Front_Top_Right": "3000", - "Shield_Back_Top_Left": "4000", - "Shield_Front_Bottom_Right": "3000", - "Shield_Front_Bottom_Left": "3000", "Warp_Capacitor": "325", "Primary_Capacitor": "600", "Reactor_Recharge": "25", @@ -5759,8 +5440,9 @@ "Lock_Cone": "10", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{Disruptor;;;Light Medium;-1.45600;-2.00000e-2;-0.396000;;;;;;;;;1;1}{Disruptor;;;Light Medium;1.45800;-2.00000e-2;-0.396000;;;;;;;;;1;1}{EMPTorpedo;1;90;Special-missile Heavy-missile;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{EMPTorpedo;1;90;Special-missile Heavy-missile;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{leechgun;;;special;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{leechgun;;;special;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{Disruptor;;;Light Medium;0.160000;-0.102000;2.42200;;;;;;;;;1;1}{Disruptor;;;Light Medium;-0.132000;-0.102000;2.42200;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "500" + "armor": "1000.0", + "shield": "3250.0", + "shield_facets": "4" } }, { @@ -5778,9 +5460,9 @@ "Max_Cone": "180", "Lock_Cone": "10", "Mounts": "{ParticleBeam;;;Light Medium Heavy;-1.45600;-2.00000e-2;-0.396000;;;;;;;;;1;1}{ParticleBeam;;;Light Medium Heavy;1.45800;-2.00000e-2;-0.396000;;;;;;;;;1;1}{Disruptor;;;Light Medium Heavy;0.160000;-0.102000;2.42200;;;;;;;;;1;1}{Disruptor;;;Light Medium Heavy;-0.132000;-0.102000;2.42200;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } }, { @@ -5796,9 +5478,9 @@ "Forward_Accel": "40000", "Radar_Range": "300000000", "Mounts": "{;;15;Light Medium;-1.45600;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;;15;Light Medium;1.45800;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;15;Light Medium;0.160000;-0.102000;2.42200;;;;;;;;;1;1}{;;15;Light Medium;-0.132000;-0.102000;2.42200;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "150" + "armor": "2.0", + "shield": "150.0", + "shield_facets": "4" } }, { @@ -5817,7 +5499,7 @@ "Lock_Cone": "10", "Mounts": "{;;15;Light Medium;-1.45600;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;;15;Light Medium;1.45800;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;15;Light Medium;0.160000;-0.102000;2.42200;;;;;;;;;1;1}{;;15;Light Medium;-0.132000;-0.102000;2.42200;;;;;;;;;1;1}", "Cargo": "{Franklin_Milspec_Package;upgrades/Packages/Milspec;200000;1;80;285;1;1;Full-Custom Milspec Configuration;0}", - "armor": "1" + "armor": "2.0" } }, { @@ -5837,9 +5519,9 @@ "Lock_Cone": "25", "Mounts": "{;;;Light Medium Heavy;-1.45600;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;;;Light Medium Heavy;1.45800;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;Light Medium Heavy;0.160000;-0.102000;2.42200;;;;;;;;;1;1}{;;;Light Medium Heavy;-0.132000;-0.102000;2.42200;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -5880,6 +5562,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;160;0;-400;800;;;;;}{supernova.bmp.bfxm;-160;0;-400;800;;;;;}", "Upgrade_Storage_Volume": "300", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -5896,9 +5579,9 @@ "Tracking_Cone": "4", "Max_Cone": "180", "Lock_Cone": "25", - "shield_facets": "4", - "armor": "1", - "shield_strength": "25" + "armor": "2.0", + "shield": "25.0", + "shield_facets": "4" } }, { @@ -5915,9 +5598,9 @@ "Tracking_Cone": "4", "Max_Cone": "180", "Lock_Cone": "25", - "shield_facets": "4", - "armor": "1", - "shield_strength": "25" + "armor": "2.0", + "shield": "25.0", + "shield_facets": "4" } } ] @@ -5935,8 +5618,6 @@ "Mass": "567", "Fuel_Capacity": "30.46", "Hull": "600", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "200", "Warp_Usage_Cost": "120", @@ -5960,6 +5641,7 @@ "Prohibited_Upgrades": "upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;5.25;-0.55;-12.75;6;;;;;}{supernova.bmp.bfxm;-5.25;-0.55;-12.75;6;;;;;}", "Upgrade_Storage_Volume": "225", + "shield_facets": "0", "accel": "5000" }, "units": [ @@ -5980,9 +5662,9 @@ "Sub_Units": "{turretgunsmall;-1.29;0.71;10.2;0.0;0.0;1.0;0.0;1.0;0.0;180.0}{turretgunsmall;1.29;0.71;10.2;0.0;0.0;1.0;0.0;1.0;0.0;180.0}", "Light": "{supernova.bmp.bfxm;-5.57;-0.33;-11.3;6.248;;;;;}{supernova.bmp.bfxm;5.56;-0.33;-11.3;6.248;;;;;}", "Mounts": "{IonBeam;;;Light;-1.2;0.71;10.2;;;;;;;;;1;1}{IonBeam;;;Light;-1.40;0.71;10.2;;;;;;;;;1;1}{IonBeam;;;Light;1.20;0.71;10.2;;;;;;;;;1;1}{IonBeam;;;Light;1.40;0.71;10.2;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "50", - "shield_strength": "900" + "armor": "100.0", + "shield": "900.0", + "shield_facets": "4" } } ] @@ -6022,6 +5704,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;0;1;-5.15;2;;;;;}{supernova.bmp.bfxm;1;1.2;-5.175;3;;;;;}{supernova.bmp.bfxm;-1;1.2;-5.175;3;;;;;}{supernova.bmp.bfxm;3;-1.8;-4.15;1;;;;;}{supernova.bmp.bfxm;-3;-1.8;-4.15;1;;;;;}{supernova.bmp.bfxm;2.7;-1.95;-4.15;1;;;;;}{supernova.bmp.bfxm;-2.7;-1.95;-4.15;1;;;;;}", "Upgrade_Storage_Volume": "250", + "shield_facets": "0", "accel": "10000" }, "units": [ @@ -6037,7 +5720,7 @@ "Max_Cone": "180", "Lock_Cone": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;jump_drive;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", - "armor": "1" + "armor": "2.0" } }, { @@ -6055,9 +5738,9 @@ "Lock_Cone": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;jump_drive;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Cargo_Import": "{Natural_Products/Renewable_Resources;.8;.2;;5}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "25" + "armor": "2.0", + "shield": "25.0", + "shield_facets": "4" } } ] @@ -6097,6 +5780,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;1.9;1.5;-4.9;4;;;;;}{supernova.bmp.bfxm;-1.8;1.5;-4.9;4;;;;;}{supernova.bmp.bfxm;1.9;-0.5;-4;4;;;;;}{supernova.bmp.bfxm;-1.9;-0.5;-4;4;;;;;}", "Upgrade_Storage_Volume": "250", + "shield_facets": "0", "accel": "10000" }, "units": [ @@ -6113,9 +5797,9 @@ "Lock_Cone": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;jump_drive;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Cargo_Import": "{Specialty_Goods/Entertainment;1;.1;;1}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "25" + "armor": "2.0", + "shield": "25.0", + "shield_facets": "4" } } ] @@ -6157,6 +5841,7 @@ "Light": "{supernova.bmp.bfxm;0.00000e+0;0.350000;-2.09200;2;;;;;}{supernova.bmp.bfxm;1.31600;-6.00000e-3;-1.82200;2;;;;;}{supernova.bmp.bfxm;-1.32800;-6.00000e-3;-1.82200;2;;;;;}{supernova.bmp.bfxm;1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.454;0.094;2.327;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.454;0.094;2.327;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}{supernova.bmp.bfxm;-1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}", "Mounts": "{;;;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{;;;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{;;;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{;;;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "360", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -6173,7 +5858,7 @@ "Lock_Cone": "25", "Upgrades": "{armor03;;}{quadshield05;;}{add_spec_capacitor03;;}{capacitor04;;}{reactor05;;}{jump_drive;;}{skyscope3;;}{ecm_package01;;}", "Mounts": "{Disruptor;;;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{Disruptor;;;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{ParticleBeam;;;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{ParticleBeam;;;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", - "armor": "1" + "armor": "2.0" } }, { @@ -6183,21 +5868,22 @@ "Use_Rapid": "1", "Mass": "250", "Shield_Recharge": "8", - "Warp_Capacitor": "400", + "Warp_Capacitor": "325", "Primary_Capacitor": "200", - "Reactor_Recharge": "44", + "Reactor_Recharge": "30", "Outsystem_Jump_Cost": "200", - "Default_Speed_Governor": "120/125", + "Afterburner_Speed_Governor": "120", + "Default_Speed_Governor": "120", "Radar_Range": "300000000", "Tracking_Cone": "4", "Max_Cone": "180", "Lock_Cone": "25", "Light": "{supernova.bmp.bfxm;0;0.35;-2.09200;2;;;;;}{supernova.bmp.bfxm;1.31;0;-1.82200;2;;;;;}{supernova.bmp.bfxm;-1.32800;0;-1.82200;2;;;;;}{supernova.bmp.bfxm;1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.454;0.094;2.327;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.454;0.094;2.327;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}{supernova.bmp.bfxm;-1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}", "Mounts": "{laser;;15;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{laser;;15;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{laser;;3;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{laser;;3;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{Dumbfire;48;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", - "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;@upgrades/skyscope_alpha.png@Refurbished Part;0}{capacitor02;upgrades/Capacitors/Standard;200;1;4;4;1;1;@upgrades/capacitor.png@Refurbished Part;0}{reactor03;upgrades/Reactors/Standard;200;1;2;3.5;1;1;@upgrades/reactor.png@Refurbished Part;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;@upgrades/reactor_capacitance.png@Refurbished Part;0}{quadshield02;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;2;8;1;1;@upgrades/shield.png@Refurbished Part;0}{armor02;upgrades/Armor;200;1;20;0;1;1;@cargo/plasteel.png@Refurbished Part;0}", - "shield_facets": "4", - "armor": "100", - "shield_strength": "150" + "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;@upgrades/skyscope_alpha.png@Refurbished Part;0}{capacitor02;upgrades/Capacitors/Standard;200;1;4;4;1;1;@upgrades/capacitor.png@Refurbished Part;0}{reactor02;upgrades/Reactors/Standard;200;1;2;3.5;1;1;@upgrades/reactor.png@Refurbished Part;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;@upgrades/reactor_capacitance.png@Refurbished Part;0}{quadshield02;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;2;8;1;1;@upgrades/shield.png@Refurbished Part;0}{armor02;upgrades/Armor;200;1;20;0;1;1;@cargo/plasteel.png@Refurbished Part;0}", + "armor": "200.0", + "shield": "150.0", + "shield_facets": "4" } }, { @@ -6214,9 +5900,9 @@ "Max_Cone": "180", "Lock_Cone": "25", "Mounts": "{Laser;;;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{Laser;;;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{;;;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{;;;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } }, { @@ -6234,9 +5920,9 @@ "Lock_Cone": "25", "Mounts": "{;;10;Light Medium;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{;;10;Light Medium;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{;;5;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{;;5;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -6256,8 +5942,6 @@ "Mass": "4480", "Fuel_Capacity": "5", "Hull": "1240", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "25", "Outsystem_Jump_Cost": "300", "Warp_Usage_Cost": "120", @@ -6280,6 +5964,7 @@ "Light": "{supernova.bmp.bfxm;0;0.8;-5.5;5;;;;;}", "Dock": "{;0;-4.7;6;25;0}", "Upgrade_Storage_Volume": "200", + "shield_facets": "0", "accel": "22000" }, "units": [ @@ -6287,8 +5972,6 @@ "data": { "Key": "Sartre", "Fuel_Capacity": "91.41", - "Shield_Front_Top_Right": "900", - "Shield_Back_Top_Left": "900", "Shield_Recharge": "20", "Warp_Capacitor": "150", "Primary_Capacitor": "2000", @@ -6307,8 +5990,9 @@ "Lock_Cone": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;jump_drive;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Cargo_Import": "{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}", + "armor": "600.0", + "shield": "900.0", "shield_facets": "2", - "armor": "300", "accel": "22231" } }, @@ -6317,8 +6001,6 @@ "Key": "Sartre.civvie", "Textual_Description": "Andolian Protectorate orbital shuttle", "Fuel_Capacity": "91.41", - "Shield_Front_Top_Right": "600", - "Shield_Back_Top_Left": "600", "Shield_Recharge": "20", "Warp_Capacitor": "150", "Primary_Capacitor": "2000", @@ -6337,8 +6019,9 @@ "Lock_Cone": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;jump_drive;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Cargo_Import": "{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}", + "armor": "600.0", + "shield": "600.0", "shield_facets": "2", - "armor": "300", "accel": "22231" } } @@ -6388,7 +6071,8 @@ "Mounts": "{Disruptor;;;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{Disruptor;;;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{ParticleBeam;;;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{ParticleBeam;;;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Dock": "{;0;-0.85;1.5;0.5;0}", "Upgrade_Storage_Volume": "360", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "4000" }, "units": [ @@ -6440,9 +6124,9 @@ "Light": "{aeraburn.bfxm;-1;5.125;-11.25;2;;;;;}", "Dock": "{;0;-1.5;0;1;0}", "Upgrade_Storage_Volume": "600", + "armor": "22000.0", + "shield": "16000.0", "shield_facets": "4", - "armor": "11000", - "shield_strength": "16000", "accel": "5000000" }, "units": [ @@ -6500,9 +6184,9 @@ "Light": "{supernova.bmp.bfxm;0.115;-0.33;-7.37;0.61;;;;;}{supernova.bmp.bfxm;0.115;-0.67;-7.37;0.61;;;;;}{supernova.bmp.bfxm;0.35;-0.33;-7.37;0.61;;;;;}{supernova.bmp.bfxm;0.35;-0.67;-7.37;0.61;;;;;}{supernova.bmp.bfxm;0.72;-0.33;-7.37;0.61;;;;;}{supernova.bmp.bfxm;0.72;-0.67;-7.37;0.61;;;;;}{supernova.bmp.bfxm;0.955;-0.33;-7.37;0.61;;;;;}{supernova.bmp.bfxm;0.955;-0.67;-7.37;0.61;;;;;}{supernova.bmp.bfxm;-0.235;-0.33;-7.37;0.61;;;;;}{supernova.bmp.bfxm;-0.235;-0.67;-7.37;0.61;;;;;}{supernova.bmp.bfxm;-0.47;-0.33;-7.37;0.61;;;;;}{supernova.bmp.bfxm;-0.47;-0.67;-7.37;0.61;;;;;}{supernova.bmp.bfxm;-0.84;-0.33;-7.37;0.61;;;;;}{supernova.bmp.bfxm;-0.84;-0.67;-7.37;0.61;;;;;}{supernova.bmp.bfxm;-1.075;-0.33;-7.37;0.61;;;;;}{supernova.bmp.bfxm;-1.075;-0.67;-7.37;0.61;;;;;}", "Dock": "{;0;2.9;1.25;3;0}", "Upgrade_Storage_Volume": "600", + "armor": "4600.0", + "shield": "7500.0", "shield_facets": "4", - "armor": "2300", - "shield_strength": "7500", "accel": "5000000" }, "units": [ @@ -6528,18 +6212,6 @@ "Mass": "32000", "Fuel_Capacity": "2333.33", "Hull": "14000", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "2300", - "Shield_Back_Top_Left": "3000", - "Shield_Front_Bottom_Right": "2000", - "Shield_Front_Bottom_Left": "2000", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -6569,6 +6241,8 @@ "Mounts": "{tractor;;;special autotracking;0;0.75;8.5;;;;;;;;;1;1}", "Dock": "{;0;0;12;3;0}", "Upgrade_Storage_Volume": "600", + "armor": "1825.0", + "shield": "2325.0", "shield_facets": "4", "accel": "50000" }, @@ -6594,18 +6268,6 @@ "Mass": "32000", "Fuel_Capacity": "2333.33", "Hull": "14000", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "2300", - "Shield_Back_Top_Left": "3000", - "Shield_Front_Bottom_Right": "2000", - "Shield_Front_Bottom_Left": "2000", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -6636,6 +6298,8 @@ "Dock": "{;0;0;12;3;0}", "Cargo_Import": "{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Fragments;;;100;100}", "Upgrade_Storage_Volume": "600", + "armor": "1825.0", + "shield": "2325.0", "shield_facets": "4", "accel": "50000" }, @@ -6661,18 +6325,6 @@ "Mass": "25", "Fuel_Capacity": "9", "Hull": "60", - "Armor_Front_Top_Right": "140", - "Armor_Front_Top_Left": "140", - "Armor_Front_Bottom_Right": "140", - "Armor_Front_Bottom_Left": "140", - "Armor_Back_Top_Right": "122.5", - "Armor_Back_Top_Left": "122.5", - "Armor_Back_Bottom_Right": "122.5", - "Armor_Back_Bottom_Left": "122.5", - "Shield_Front_Top_Right": "35", - "Shield_Back_Top_Left": "30", - "Shield_Front_Bottom_Right": "30", - "Shield_Front_Bottom_Left": "30", "Shield_Recharge": "20", "Warp_Capacitor": "201", "Primary_Capacitor": "140", @@ -6701,6 +6353,8 @@ "Prohibited_Upgrades": "upgrades/Overdrive", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "2", + "armor": "262.0", + "shield": "31.25", "shield_facets": "4", "accel": "12000" }, @@ -6752,16 +6406,13 @@ "Dock": "{0;95;0;25;50;0}{0;-95;0;25;50;0}", "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Natural_Products/Food;.7;.2;;30}{Specialty_Goods/Medical;1.2;.1;;3}", "Upgrade_Storage_Volume": "600", + "shield_facets": "0", "accel": "50000" }, "units": [ { "data": { "Key": "Gleaner", - "Shield_Front_Top_Right": "4000", - "Shield_Back_Top_Left": "5000", - "Shield_Front_Bottom_Right": "4000", - "Shield_Front_Bottom_Left": "4000", "Shield_Recharge": "15", "Warp_Capacitor": "325", "Primary_Capacitor": "2000", @@ -6769,8 +6420,9 @@ "Jump_Drive_Present": "1", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Sub_Units": "{turretbeam;31;25;350;0;0;1;1;0;0;180.0}{turretbeam;33;25;275;0;0;1;1;0;0;180.0}{turretbeam;34;25;160;0;0;1;1;0;0;180.0}{turretbeam;-31;25;350;0;0;1;1;0;0;180.0}{turretbeam;-33;25;275;0;0;1;1;0;0;180.0}{turretbeam;-34;25;160;0;0;1;1;0;0;180.0}", - "shield_facets": "4", - "armor": "1000" + "armor": "2000.0", + "shield": "4250.0", + "shield_facets": "4" } } ] @@ -6790,8 +6442,6 @@ "Mass": "18", "Fuel_Capacity": "3.46", "Hull": "60", - "Shield_Front_Top_Right": "1", - "Shield_Back_Top_Left": "1", "Shield_Recharge": "1", "Warp_Capacitor": "25", "Primary_Capacitor": "100", @@ -6820,8 +6470,9 @@ "Light": "{supernova.bmp.bfxm;1.85;0.9;-0.5;1.5;;;;;}{supernova.bmp.bfxm;-1.83;0.9;-0.5;1.5;;;;;}", "Mounts": "{Tractor;;;special;0;0;0;;;0;-1;0;0;0;1;1;1}", "Upgrade_Storage_Volume": "5", + "armor": "10.0", + "shield": "1.0", "shield_facets": "2", - "armor": "5", "accel": "500" }, "units": [ @@ -6872,6 +6523,7 @@ "Mounts": "{;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{;;;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}{;15;45;Medium-missile light-missile;6.5;3;12.5;;;;;;;;;1;1}{;15;45;Medium-missile light-missile;-6.5;3;12.5;;;;;;;;;1;1}{;8;72;special-missile Medium-missile;0;3;2.5;;;;;;;;;1;1}", "Dock": "{;30;0;-37;30;0}{;-30;0;-37;30;0}", "Upgrade_Storage_Volume": "600", + "shield_facets": "0", "accel": "50000" }, "units": [ @@ -6879,18 +6531,6 @@ "data": { "Key": "Mule", "Mass": "32000", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "5000", - "Shield_Back_Top_Left": "6000", - "Shield_Front_Bottom_Right": "3800", - "Shield_Front_Bottom_Left": "3800", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -6908,6 +6548,8 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{tractor;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{tractor;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{MiniDriver;;;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}{heatseeker;15;45;Medium-missile light-missile;6.5;3;12.5;;;;;;;;;1;1}{Heatseeker;15;45;Medium-missile light-missile;-6.5;3;12.5;;;;;;;;;1;1}{imagerecognition;8;72;special-missile Medium-missile;0;3;2.5;;;;;;;;;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Food;.7;.2;;10}", + "armor": "1825.0", + "shield": "4650.0", "shield_facets": "4" } }, @@ -6916,18 +6558,6 @@ "Key": "Mule.civvie", "Textual_Description": "The most ubiquitous cargo hauler in human space, Mule class vessels are prized for both their dependability, and, because of their number and smallish size, their ease of replacement.", "Mass": "32000", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "2300", - "Shield_Back_Top_Left": "3000", - "Shield_Front_Bottom_Right": "2000", - "Shield_Front_Bottom_Left": "2000", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -6944,6 +6574,8 @@ "Lock_Cone": "25", "Mounts": "{tractor;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{tractor;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{MicroDriver;;;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Food;.7;.2;;10}", + "armor": "1825.0", + "shield": "2325.0", "shield_facets": "4" } }, @@ -6952,18 +6584,6 @@ "Key": "Mule.milspec", "Textual_Description": "The most ubiquitous cargo hauler in human space, Mule class vessels are prized for both their dependability, and, because of their number and smallish size, their ease of replacement.", "Mass": "32000", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "2300", - "Shield_Back_Top_Left": "3000", - "Shield_Front_Bottom_Right": "2000", - "Shield_Front_Bottom_Left": "2000", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -6981,6 +6601,8 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{tractor;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{tractor;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{;;25;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}{;15;45;Medium-missile light-missile;6.5;3;12.5;;;;;;;;;1;1}{;15;45;Medium-missile light-missile;-6.5;3;12.5;;;;;;;;;1;1}{;8;72;special-missile Medium-missile;0;3;2.5;;;;;;;;;1;1}", "Cargo": "{Mule_Milspec_Package;upgrades/Packages/Milspec;200000;1;500;570;1;1;Full-Custom Milspec Configuration;0}", + "armor": "1825.0", + "shield": "2325.0", "shield_facets": "4" } }, @@ -6999,9 +6621,9 @@ "Lock_Cone": "25", "Mounts": "{;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{;;25;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}{;15;45;Medium-missile light-missile;6.5;3;12.5;;;;;;;;;1;1}{;15;45;Medium-missile light-missile;-6.5;3;12.5;;;;;;;;;1;1}{;8;72;special-missile Medium-missile;0;3;2.5;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -7044,6 +6666,7 @@ "Light": "{supernova.bmp.bfxm;60;90;-370;22;;;;;}{supernova.bmp.bfxm;-60;90;-370;22;;;;;}{supernova.bmp.bfxm;130;-60;-370;22;;;;;}{supernova.bmp.bfxm;0;-60;-370;22;;;;;}{supernova.bmp.bfxm;-130;-60;-370;22;;;;;}", "Dock": "{;0;-24;477;100;0}{;0;58;504;10;0}", "Upgrade_Storage_Volume": "600", + "shield_facets": "0", "accel": "5000000" }, "units": [ @@ -7051,10 +6674,6 @@ "data": { "Key": "Ox", "Mass": "30000000", - "Shield_Front_Top_Right": "8000", - "Shield_Back_Top_Left": "10000", - "Shield_Front_Bottom_Right": "8000", - "Shield_Front_Bottom_Left": "8000", "Shield_Recharge": "15", "Warp_Capacitor": "325", "Primary_Capacitor": "5000", @@ -7066,8 +6685,9 @@ "Lock_Cone": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Natural_Products/Food;.7;.2;;30}{Specialty_Goods/Medical;1.2;.1;;3}", - "shield_facets": "4", - "armor": "1000" + "armor": "2000.0", + "shield": "8500.0", + "shield_facets": "4" } }, { @@ -7084,9 +6704,9 @@ "Max_Cone": "180", "Lock_Cone": "25", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;;0}{capacitor01;upgrades/Capacitors/Standard;200;1;2;2;1;1;;0}{reactor01;upgrades/Reactors/Standard;200;1;1;2;1;1;;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;;0}{quadshield01;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;1;4;1;1;;0}", - "shield_facets": "4", - "armor": "1", - "shield_strength": "75" + "armor": "2.0", + "shield": "75.0", + "shield_facets": "4" } } ] @@ -7132,7 +6752,8 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;0;0;-6.36800;4;;;;;}", "Mounts": "{;8;24;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}", - "Upgrade_Storage_Volume": "125" + "Upgrade_Storage_Volume": "125", + "shield_facets": "0" }, "units": [ { @@ -7151,9 +6772,9 @@ "Lock_Cone": "25", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Mounts": "{heatseeker;8;24;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}", + "armor": "2.0", + "shield": "25.0", "shield_facets": "4", - "armor": "1", - "shield_strength": "25", "accel": "4000" } }, @@ -7172,9 +6793,9 @@ "Tracking_Cone": "4", "Max_Cone": "180", "Lock_Cone": "25", + "armor": "2.0", + "shield": "25.0", "shield_facets": "4", - "armor": "1", - "shield_strength": "25", "accel": "4000" } } @@ -7221,9 +6842,9 @@ "Prohibited_Upgrades": "upgrades/Overdrive;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Dock": "{;0;-100;0;50;0}", "Upgrade_Storage_Volume": "600", + "armor": "24000.0", + "shield": "600.0", "shield_facets": "4", - "armor": "12000", - "shield_strength": "600", "accel": "7500000" }, "units": [ @@ -7279,9 +6900,9 @@ "Dock": "{;0;-55;120;40;0}{;0;-30;0;30;0}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;1;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;1;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;;3}{Industrially_Manufactured_Goods/Electronics;.8;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;1;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;3;4}{Industrially_Manufactured_Goods/Recycled_Products;.78;.2;10;15}{Natural_Products/Food;1.2;.2;5;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys;1.1;.1;;2}{Refined_Materials/Chemicals;1.1;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.1;.2;;4}{Specialty_Goods/Medical;1.1;.1;;3}{starships/Confed/Heavy;1;;-2;5}{starships/Confed/Light;1;;;3}{starships/Confed/Medium;1;;-3;9}{starships/Confed/Milspec;1;;-3;5}{starships/Regional_Guard/Heavy;1;;-2;3}{starships/Regional_Guard/Light;1;;;2}{starships/Regional_Guard/Medium;1;;;2}{upgrades/Ammunition/Confed;1;.1;200;50}{upgrades/Ammunition/Common;1.4;.1;200;50}{upgrades/Armor;1;.1;;5}{upgrades/Capacitors/Standard;1;.1;2;10}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Experimental;1.4;.2;-20;23}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;;5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets;1;.1;1;1}", "Upgrade_Storage_Volume": "100000", + "armor": "23000.0", + "shield": "12000.0", "shield_facets": "4", - "armor": "11500", - "shield_strength": "12000", "accel": "10000000" }, "units": [ @@ -7338,16 +6959,13 @@ "Dock": "{;0;-125;330;60;0}", "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Natural_Products/Food;.7;.2;;30}{Specialty_Goods/Medical;1.2;.1;;3}", "Upgrade_Storage_Volume": "600", + "shield_facets": "0", "accel": "5000000" }, "units": [ { "data": { "Key": "Yeoman", - "Shield_Front_Top_Right": "6000", - "Shield_Back_Top_Left": "6000", - "Shield_Front_Bottom_Right": "4000", - "Shield_Front_Bottom_Left": "4000", "Shield_Recharge": "25", "Warp_Capacitor": "325", "Primary_Capacitor": "5000", @@ -7355,11 +6973,12 @@ "Jump_Drive_Present": "1", "Prohibited_Upgrades": "mult_shady_moreupgrade;mult_shady_morethrust;mult_shady_moreshields;mult_shady_moregunrecharge;mult_shady_moreshieldrecharge;mult_shady_moreturning;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Sub_Units": "{turretbeam;-4;-103.75;375;0;0;1;0;-1;0;120.0}{turretbeam;-4;80;475;0;0;1;0;1;0;120.0}{turretbeam;-4;-93;-575;0;0;-1;0;-1;0;120.0}{turretbeam;1;102;-575;0;0;-1;0;1;0;120.0}", - "shield_facets": "4", - "armor": "1000" + "armor": "2000.0", + "shield": "5000.0", + "shield_facets": "4" } } ] } ] -} +} \ No newline at end of file diff --git a/units/units.json b/units/units.json index 4c464d49..f19c0beb 100644 --- a/units/units.json +++ b/units/units.json @@ -6,7 +6,8 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/plasteel.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "50" + "armor": "100.0", + "shield_facets": "0" }, { "Key": "armor02__upgrades", @@ -15,7 +16,8 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/isometal.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "100" + "armor": "200.0", + "shield_facets": "0" }, { "Key": "armor03__upgrades", @@ -24,7 +26,8 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/hull_patches.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "150" + "armor": "300.0", + "shield_facets": "0" }, { "Key": "armor04__upgrades", @@ -33,7 +36,8 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/tritanium.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "200" + "armor": "400.0", + "shield_facets": "0" }, { "Key": "armor05__upgrades", @@ -42,7 +46,8 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/carbonium.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "250" + "armor": "500.0", + "shield_facets": "0" }, { "Key": "armor06__upgrades", @@ -51,7 +56,8 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/duranium.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "300" + "armor": "600.0", + "shield_facets": "0" }, { "Key": "dualshield01__upgrades", @@ -61,9 +67,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield2light.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "75", - "Shield_Back_Top_Left": "75", "Shield_Recharge": "4", + "shield": "75.0", "shield_facets": "2" }, { @@ -74,9 +79,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield2light.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "150", - "Shield_Back_Top_Left": "150", "Shield_Recharge": "8", + "shield": "150.0", "shield_facets": "2" }, { @@ -87,9 +91,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4light.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "300", "Shield_Recharge": "14", + "shield": "300.0", "shield_facets": "2" }, { @@ -100,9 +103,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4light.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "400", - "Shield_Back_Top_Left": "400", "Shield_Recharge": "18", + "shield": "400.0", "shield_facets": "2" }, { @@ -113,9 +115,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4light.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "500", - "Shield_Back_Top_Left": "500", "Shield_Recharge": "22", + "shield": "500.0", "shield_facets": "2" }, { @@ -126,9 +127,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield2medium.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "600", - "Shield_Back_Top_Left": "600", "Shield_Recharge": "26", + "shield": "600.0", "shield_facets": "2" }, { @@ -139,9 +139,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield2medium.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "700", - "Shield_Back_Top_Left": "700", "Shield_Recharge": "32", + "shield": "700.0", "shield_facets": "2" }, { @@ -152,9 +151,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4medium.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "800", - "Shield_Back_Top_Left": "800", "Shield_Recharge": "36", + "shield": "800.0", "shield_facets": "2" }, { @@ -165,9 +163,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4medium.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "900", - "Shield_Back_Top_Left": "900", "Shield_Recharge": "40", + "shield": "900.0", "shield_facets": "2" }, { @@ -178,9 +175,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4medium.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "1000", - "Shield_Back_Top_Left": "1000", "Shield_Recharge": "44", + "shield": "1000.0", "shield_facets": "2" }, { @@ -191,9 +187,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield2heavy.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "1200", - "Shield_Back_Top_Left": "1200", "Shield_Recharge": "54", + "shield": "1200.0", "shield_facets": "2" }, { @@ -204,9 +199,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield2heavy.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "1400", - "Shield_Back_Top_Left": "1400", "Shield_Recharge": "62", + "shield": "1400.0", "shield_facets": "2" }, { @@ -217,9 +211,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4heavy.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "1600", - "Shield_Back_Top_Left": "1600", "Shield_Recharge": "72", + "shield": "1600.0", "shield_facets": "2" }, { @@ -230,9 +223,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4heavy.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "1800", - "Shield_Back_Top_Left": "1800", "Shield_Recharge": "80", + "shield": "1800.0", "shield_facets": "2" }, { @@ -243,9 +235,8 @@ "Facets": "2", "Textual_Description": "\"@upgrades/shield4heavy.png@GEM shielding, with fore and aft decoupling.\"\n", "Mass": "2", - "Shield_Front_Top_Right": "2000", - "Shield_Back_Top_Left": "2000", "Shield_Recharge": "90", + "shield": "2000.0", "shield_facets": "2" }, { @@ -257,8 +248,8 @@ "Textual_Description": "\"@upgrades/shield.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "4", - "shield_facets": "4", - "shield_strength": "75" + "shield": "75.0", + "shield_facets": "4" }, { "Key": "quadshield02__upgrades", @@ -269,8 +260,8 @@ "Textual_Description": "\"@upgrades/shield.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "8", - "shield_facets": "4", - "shield_strength": "150" + "shield": "150.0", + "shield_facets": "4" }, { "Key": "quadshield03__upgrades", @@ -281,8 +272,8 @@ "Textual_Description": "\"@upgrades/shield.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "14", - "shield_facets": "4", - "shield_strength": "300" + "shield": "300.0", + "shield_facets": "4" }, { "Key": "quadshield04__upgrades", @@ -293,8 +284,8 @@ "Textual_Description": "\"@upgrades/shield2.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "18", - "shield_facets": "4", - "shield_strength": "400" + "shield": "400.0", + "shield_facets": "4" }, { "Key": "quadshield05__upgrades", @@ -305,8 +296,8 @@ "Textual_Description": "\"@upgrades/shield2.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "22", - "shield_facets": "4", - "shield_strength": "500" + "shield": "500.0", + "shield_facets": "4" }, { "Key": "quadshield06__upgrades", @@ -317,8 +308,8 @@ "Textual_Description": "\"@upgrades/shield2.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "26", - "shield_facets": "4", - "shield_strength": "600" + "shield": "600.0", + "shield_facets": "4" }, { "Key": "quadshield07__upgrades", @@ -329,8 +320,8 @@ "Textual_Description": "\"@upgrades/shield3.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "32", - "shield_facets": "4", - "shield_strength": "700" + "shield": "700.0", + "shield_facets": "4" }, { "Key": "quadshield08__upgrades", @@ -341,8 +332,8 @@ "Textual_Description": "\"@upgrades/shield3.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "36", - "shield_facets": "4", - "shield_strength": "800" + "shield": "800.0", + "shield_facets": "4" }, { "Key": "quadshield09__upgrades", @@ -353,8 +344,8 @@ "Textual_Description": "\"@upgrades/shield3.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "40", - "shield_facets": "4", - "shield_strength": "900" + "shield": "900.0", + "shield_facets": "4" }, { "Key": "quadshield10__upgrades", @@ -365,8 +356,8 @@ "Textual_Description": "\"@upgrades/shield4.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "44", - "shield_facets": "4", - "shield_strength": "1000" + "shield": "1000.0", + "shield_facets": "4" }, { "Key": "quadshield11__upgrades", @@ -377,8 +368,8 @@ "Textual_Description": "\"@upgrades/shield4.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "54", - "shield_facets": "4", - "shield_strength": "1200" + "shield": "1200.0", + "shield_facets": "4" }, { "Key": "quadshield12__upgrades", @@ -389,8 +380,8 @@ "Textual_Description": "\"@upgrades/shield4.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "62", - "shield_facets": "4", - "shield_strength": "1400" + "shield": "1400.0", + "shield_facets": "4" }, { "Key": "quadshield13__upgrades", @@ -401,8 +392,8 @@ "Textual_Description": "\"@upgrades/shield5.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "72", - "shield_facets": "4", - "shield_strength": "1600" + "shield": "1600.0", + "shield_facets": "4" }, { "Key": "quadshield14__upgrades", @@ -413,8 +404,8 @@ "Textual_Description": "\"@upgrades/shield5.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "80", - "shield_facets": "4", - "shield_strength": "1800" + "shield": "1800.0", + "shield_facets": "4" }, { "Key": "quadshield15__upgrades", @@ -425,8 +416,8 @@ "Textual_Description": "\"@upgrades/shield5.png@GEM shielding, fore, aft, port, and starboard decoupling.\"\n", "Mass": "3", "Shield_Recharge": "90", - "shield_facets": "4", - "shield_strength": "2000" + "shield": "2000.0", + "shield_facets": "4" }, { "Key": "reactor01__upgrades", @@ -435,7 +426,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "15" + "Reactor_Recharge": "15", + "shield_facets": "0" }, { "Key": "reactor02__upgrades", @@ -444,7 +436,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "30" + "Reactor_Recharge": "30", + "shield_facets": "0" }, { "Key": "reactor03__upgrades", @@ -453,7 +446,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "44" + "Reactor_Recharge": "44", + "shield_facets": "0" }, { "Key": "reactor04__upgrades", @@ -462,7 +456,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "57" + "Reactor_Recharge": "57", + "shield_facets": "0" }, { "Key": "reactor05__upgrades", @@ -471,7 +466,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "69" + "Reactor_Recharge": "69", + "shield_facets": "0" }, { "Key": "reactor06__upgrades", @@ -480,7 +476,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "80" + "Reactor_Recharge": "80", + "shield_facets": "0" }, { "Key": "reactor07__upgrades", @@ -489,7 +486,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "90" + "Reactor_Recharge": "90", + "shield_facets": "0" }, { "Key": "reactor08__upgrades", @@ -498,7 +496,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "99" + "Reactor_Recharge": "99", + "shield_facets": "0" }, { "Key": "reactor09__upgrades", @@ -507,7 +506,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "108" + "Reactor_Recharge": "108", + "shield_facets": "0" }, { "Key": "reactor10__upgrades", @@ -516,7 +516,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "115" + "Reactor_Recharge": "115", + "shield_facets": "0" }, { "Key": "reactor11__upgrades", @@ -525,7 +526,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "120" + "Reactor_Recharge": "120", + "shield_facets": "0" }, { "Key": "reactor12__upgrades", @@ -534,7 +536,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "125" + "Reactor_Recharge": "125", + "shield_facets": "0" }, { "Key": "reactor13__upgrades", @@ -543,7 +546,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "130" + "Reactor_Recharge": "130", + "shield_facets": "0" }, { "Key": "reactor14__upgrades", @@ -552,7 +556,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "140" + "Reactor_Recharge": "140", + "shield_facets": "0" }, { "Key": "reactor15__upgrades", @@ -561,7 +566,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "145" + "Reactor_Recharge": "145", + "shield_facets": "0" }, { "Key": "add_spec_capacitor01__upgrades", @@ -570,7 +576,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "200" + "Warp_Capacitor": "200", + "shield_facets": "0" }, { "Key": "add_spec_capacitor02__upgrades", @@ -578,7 +585,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "400" + "Warp_Capacitor": "400", + "shield_facets": "0" }, { "Key": "add_spec_capacitor03__upgrades", @@ -587,7 +595,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "800" + "Warp_Capacitor": "800", + "shield_facets": "0" }, { "Key": "add_spec_capacitor04__upgrades", @@ -596,7 +605,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "2000" + "Warp_Capacitor": "2000", + "shield_facets": "0" }, { "Key": "add_spec_capacitor05__upgrades", @@ -605,7 +615,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "3000" + "Warp_Capacitor": "3000", + "shield_facets": "0" }, { "Key": "capacitor01__upgrades", @@ -614,7 +625,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "100" + "Primary_Capacitor": "100", + "shield_facets": "0" }, { "Key": "capacitor02__upgrades", @@ -623,7 +635,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "200" + "Primary_Capacitor": "200", + "shield_facets": "0" }, { "Key": "capacitor03__upgrades", @@ -632,7 +645,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "300" + "Primary_Capacitor": "300", + "shield_facets": "0" }, { "Key": "capacitor04__upgrades", @@ -641,7 +655,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor2.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "400" + "Primary_Capacitor": "400", + "shield_facets": "0" }, { "Key": "capacitor05__upgrades", @@ -650,7 +665,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor2.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "500" + "Primary_Capacitor": "500", + "shield_facets": "0" }, { "Key": "capacitor06__upgrades", @@ -659,7 +675,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor2.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "600" + "Primary_Capacitor": "600", + "shield_facets": "0" }, { "Key": "capacitor07__upgrades", @@ -668,7 +685,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor3.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "700" + "Primary_Capacitor": "700", + "shield_facets": "0" }, { "Key": "capacitor08__upgrades", @@ -677,7 +695,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor3.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "800" + "Primary_Capacitor": "800", + "shield_facets": "0" }, { "Key": "capacitor09__upgrades", @@ -686,7 +705,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor3.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "900" + "Primary_Capacitor": "900", + "shield_facets": "0" }, { "Key": "capacitor10__upgrades", @@ -695,7 +715,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor4.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1000" + "Primary_Capacitor": "1000", + "shield_facets": "0" }, { "Key": "capacitor11__upgrades", @@ -704,7 +725,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor4.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1100" + "Primary_Capacitor": "1100", + "shield_facets": "0" }, { "Key": "capacitor12__upgrades", @@ -713,7 +735,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor4.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1200" + "Primary_Capacitor": "1200", + "shield_facets": "0" }, { "Key": "capacitor13__upgrades", @@ -722,7 +745,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor5.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1300" + "Primary_Capacitor": "1300", + "shield_facets": "0" }, { "Key": "capacitor14__upgrades", @@ -731,7 +755,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor5.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1400" + "Primary_Capacitor": "1400", + "shield_facets": "0" }, { "Key": "capacitor15__upgrades", @@ -740,7 +765,8 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor5.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1500" + "Primary_Capacitor": "1500", + "shield_facets": "0" }, { "Key": "cloaking_device__upgrades", @@ -753,7 +779,8 @@ "Cloak_Min": "0.8", "Cloak_Rate": "0.1", "Cloak_Energy": "1", - "Textual_Description": "\"@cargo/cargo_hud.png@This device uses gravity manipulation technology. A powerful gravitational lens distorts a massive region around the vessel, bending signals emitted by active sensors around the ship and out at seeming random angles and locations. This makes it very easy to know that a ship mounting a cloaking device is present, but very hard to figure out what class of ship, where it's headed, and where exactly it is.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@This device uses gravity manipulation technology. A powerful gravitational lens distorts a massive region around the vessel, bending signals emitted by active sensors around the ship and out at seeming random angles and locations. This makes it very easy to know that a ship mounting a cloaking device is present, but very hard to figure out what class of ship, where it's headed, and where exactly it is.\"\n", + "shield_facets": "0" }, { "Key": "jump_drive__upgrades", @@ -762,79 +789,86 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/jump_drive.png@Jump drive for traveling between stars\"\n", "Mass": "10", - "Jump_Drive_Present": "1" + "Jump_Drive_Present": "1", + "shield_facets": "0" }, { "Key": "mult_overdrive01__upgrades", "Name": "Overdrive I", - "Upgrade_Type": "Afterburner_Upgrade", + "Upgrade_Type": "Afterburner", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1", "Afterburner_Accel": "1.8", - "Afterburner_Speed_Governor": "1.6" + "Afterburner_Speed_Governor": "1.6", + "shield_facets": "0" }, { "Key": "mult_overdrive02__upgrades", "Name": "Overdrive II", - "Upgrade_Type": "Afterburner_Upgrade", + "Upgrade_Type": "Afterburner", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1.2", "Afterburner_Accel": "1.9", - "Afterburner_Speed_Governor": "1.7" + "Afterburner_Speed_Governor": "1.7", + "shield_facets": "0" }, { "Key": "mult_overdrive03__upgrades", "Name": "Overdrive III", - "Upgrade_Type": "Afterburner_Upgrade", + "Upgrade_Type": "Afterburner", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1.4", "Afterburner_Accel": "2", - "Afterburner_Speed_Governor": "1.8" + "Afterburner_Speed_Governor": "1.8", + "shield_facets": "0" }, { "Key": "mult_overdrive04__upgrades", "Name": "Overdrive IV", - "Upgrade_Type": "Afterburner_Upgrade", + "Upgrade_Type": "Afterburner", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1.6", "Afterburner_Accel": "2.1", - "Afterburner_Speed_Governor": "1.9" + "Afterburner_Speed_Governor": "1.9", + "shield_facets": "0" }, { "Key": "mult_overdrive05__upgrades", "Name": "Overdrive V", - "Upgrade_Type": "Afterburner_Upgrade", + "Upgrade_Type": "Afterburner", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1.8", "Afterburner_Accel": "2.2", - "Afterburner_Speed_Governor": "2" + "Afterburner_Speed_Governor": "2", + "shield_facets": "0" }, { "Key": "mult_overdrive06__upgrades", "Name": "Overdrive VI", - "Upgrade_Type": "Afterburner_Upgrade", + "Upgrade_Type": "Afterburner", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "2", "Afterburner_Accel": "2.3", - "Afterburner_Speed_Governor": "2.1" + "Afterburner_Speed_Governor": "2.1", + "shield_facets": "0" }, { "Key": "Admonisher_Milspec_Package__upgrades", @@ -874,7 +908,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor04;;}{quadshield08;;}{add_spec_capacitor03;;}{capacitor07;;}{reactor10;;}{jump_drive;;}{starscanner2;;}{ecm_package02;;}", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "4000" }, { @@ -882,8 +917,6 @@ "Name": "Ancestor_Milspec_Package", "Mass": "112", "Hull": "120", - "Shield_Front_Top_Right": "200", - "Shield_Back_Top_Left": "180", "Shield_Recharge": "30", "Warp_Capacitor": "590", "Primary_Capacitor": "300", @@ -920,22 +953,15 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "38.0", + "shield": "190.0", "shield_facets": "2", - "armor": "19", "accel": "5000" }, { "Key": "Areus_Milspec_Package__upgrades", "Name": "Areus_Milspec_Package", "Mass": "216", - "Armor_Front_Top_Right": "150", - "Armor_Front_Top_Left": "150", - "Armor_Front_Bottom_Right": "150", - "Armor_Front_Bottom_Left": "150", - "Armor_Back_Top_Right": "137.5", - "Armor_Back_Top_Left": "137.5", - "Armor_Back_Bottom_Right": "137.5", - "Armor_Back_Bottom_Left": "137.5", "Shield_Recharge": "40", "Warp_Capacitor": "1600", "Primary_Capacitor": "1200", @@ -954,8 +980,9 @@ "Tracking_Cone": "8", "Max_Cone": "180", "Lock_Cone": "10", - "shield_facets": "4", - "shield_strength": "600" + "armor": "288.0", + "shield": "600.0", + "shield_facets": "4" }, { "Key": "Ariston_Milspec_Package__upgrades", @@ -999,9 +1026,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "240.0", + "shield": "475.0", "shield_facets": "4", - "armor": "120", - "shield_strength": "475", "accel": "4000" }, { @@ -1045,9 +1072,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "44000.0", + "shield": "36000.0", "shield_facets": "4", - "armor": "22000", - "shield_strength": "36000", "accel": "10000000" }, { @@ -1092,9 +1119,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "82.0", + "shield": "300.0", "shield_facets": "4", - "armor": "41", - "shield_strength": "300", "accel": "3000" }, { @@ -1102,8 +1129,6 @@ "Name": "Derivative_Milspec_Package", "Mass": "60", "Hull": "275", - "Shield_Front_Top_Right": "420", - "Shield_Back_Top_Left": "420", "Shield_Recharge": "120", "Warp_Capacitor": "250", "Primary_Capacitor": "512", @@ -1141,8 +1166,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "124.0", + "shield": "420.0", "shield_facets": "2", - "armor": "62", "accel": "4000" }, { @@ -1150,14 +1176,6 @@ "Name": "Determinant_Milspec_Package", "Mass": "54", "Hull": "150", - "Armor_Front_Top_Right": "45", - "Armor_Front_Top_Left": "45", - "Armor_Front_Bottom_Right": "45", - "Armor_Front_Bottom_Left": "45", - "Armor_Back_Top_Right": "40", - "Armor_Back_Top_Left": "40", - "Armor_Back_Bottom_Right": "40", - "Armor_Back_Bottom_Left": "40", "Shield_Recharge": "45", "Warp_Capacitor": "300", "Primary_Capacitor": "357", @@ -1195,8 +1213,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "85.0", + "shield": "300.0", "shield_facets": "4", - "shield_strength": "300", "accel": "3000" }, { @@ -1236,7 +1255,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor01;;}{quadshield02;;}{add_spec_capacitor01;;}{capacitor02;;}{reactor03;;}{skyscope2;;}", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "10000" }, { @@ -1277,7 +1297,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor03;;}{quadshield05;;}{add_spec_capacitor03;;}{capacitor04;;}{reactor05;;}{jump_drive;;}{skyscope3;;}{ecm_package01;;}", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "5000" }, { @@ -1317,7 +1338,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "10000" }, { @@ -1325,8 +1347,6 @@ "Name": "Gawain_Milspec_Package", "Mass": "72", "Hull": "400", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Warp_Capacitor": "250", "Jump_Drive_Present": "1", "Outsystem_Jump_Cost": "200", @@ -1360,7 +1380,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor03;;}{dualshield04;;}{add_spec_capacitor02;;}{capacitor03;;}{reactor04;;}{jump_drive;;}{starscanner2;;}{ecm_package01;;}", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "5000" }, { @@ -1368,14 +1389,6 @@ "Name": "Goddard_Milspec_Package", "Mass": "4800", "Hull": "2100", - "Armor_Front_Top_Right": "450", - "Armor_Front_Top_Left": "450", - "Armor_Front_Bottom_Right": "450", - "Armor_Front_Bottom_Left": "450", - "Armor_Back_Top_Right": "400", - "Armor_Back_Top_Left": "400", - "Armor_Back_Bottom_Right": "400", - "Armor_Back_Bottom_Left": "400", "Shield_Recharge": "200", "Warp_Capacitor": "450", "Primary_Capacitor": "4000", @@ -1413,8 +1426,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "850.0", + "shield": "1400.0", "shield_facets": "4", - "shield_strength": "1400", "accel": "60000" }, { @@ -1455,7 +1469,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor04;;}{quadshield07;;}{add_spec_capacitor03;;}{capacitor06;;}{reactor06;;}{jump_drive;;}{starscanner3;;}{ecm_package02;;}", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "5000" }, { @@ -1463,18 +1478,6 @@ "Name": "Mule_Milspec_Package", "Mass": "32000", "Hull": "14000", - "Armor_Front_Top_Right": "825", - "Armor_Front_Top_Left": "825", - "Armor_Front_Bottom_Right": "825", - "Armor_Front_Bottom_Left": "825", - "Armor_Back_Top_Right": "1000", - "Armor_Back_Top_Left": "1000", - "Armor_Back_Bottom_Right": "1000", - "Armor_Back_Bottom_Left": "1000", - "Shield_Front_Top_Right": "2300", - "Shield_Back_Top_Left": "3000", - "Shield_Front_Bottom_Right": "2000", - "Shield_Front_Bottom_Left": "2000", "Shield_Recharge": "30", "Warp_Capacitor": "1200", "Primary_Capacitor": "5000", @@ -1511,6 +1514,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "1825.0", + "shield": "2325.0", "shield_facets": "4", "accel": "50000" }, @@ -1519,8 +1524,6 @@ "Name": "Nicander_Milspec_Package", "Mass": "61", "Hull": "271", - "Shield_Front_Top_Right": "360", - "Shield_Back_Top_Left": "360", "Shield_Recharge": "90", "Warp_Capacitor": "1300", "Primary_Capacitor": "500", @@ -1558,8 +1561,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "180.0", + "shield": "360.0", "shield_facets": "2", - "armor": "90", "accel": "4000" }, { @@ -1600,7 +1604,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor06;;}{quadshield10;;}{add_spec_capacitor04;;}{capacitor09;;}{reactor07;;}{jump_drive;;}{hawkeye2;;}{ecm_package03;;}", - "armor": "1", + "armor": "2.0", + "shield_facets": "0", "accel": "4000" }, { @@ -1608,18 +1613,6 @@ "Name": "Progeny_Milspec_Package", "Mass": "64", "Hull": "165", - "Armor_Front_Top_Right": "65", - "Armor_Front_Top_Left": "65", - "Armor_Front_Bottom_Right": "65", - "Armor_Front_Bottom_Left": "65", - "Armor_Back_Top_Right": "45", - "Armor_Back_Top_Left": "45", - "Armor_Back_Bottom_Right": "45", - "Armor_Back_Bottom_Left": "45", - "Shield_Front_Top_Right": "420", - "Shield_Back_Top_Left": "60", - "Shield_Front_Bottom_Right": "100", - "Shield_Front_Bottom_Left": "100", "Shield_Recharge": "42", "Warp_Capacitor": "250", "Primary_Capacitor": "300", @@ -1656,6 +1649,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "110.0", + "shield": "170.0", "shield_facets": "4", "accel": "5000" }, @@ -1704,9 +1699,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "24.0", + "shield": "360.0", "shield_facets": "4", - "armor": "12", - "shield_strength": "360", "accel": "5000" }, { @@ -1752,9 +1747,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "76.0", + "shield": "50.0", "shield_facets": "4", - "armor": "38", - "shield_strength": "50", "accel": "12000" }, { @@ -1762,18 +1757,6 @@ "Name": "Taizong_Milspec_Package", "Mass": "240", "Hull": "1200", - "Armor_Front_Top_Right": "140", - "Armor_Front_Top_Left": "140", - "Armor_Front_Bottom_Right": "140", - "Armor_Front_Bottom_Left": "140", - "Armor_Back_Top_Right": "122.5", - "Armor_Back_Top_Left": "122.5", - "Armor_Back_Bottom_Right": "122.5", - "Armor_Back_Bottom_Left": "122.5", - "Shield_Front_Top_Right": "350", - "Shield_Back_Top_Left": "300", - "Shield_Front_Bottom_Right": "300", - "Shield_Front_Bottom_Left": "300", "Shield_Recharge": "250", "Warp_Capacitor": "600", "Primary_Capacitor": "1400", @@ -1809,6 +1792,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "262.0", + "shield": "312.5", "shield_facets": "4", "accel": "12000" }, @@ -1817,10 +1802,6 @@ "Name": "Zhuangzong_Milspec_Package", "Mass": "170", "Hull": "400", - "Shield_Front_Top_Right": "150", - "Shield_Back_Top_Left": "100", - "Shield_Front_Bottom_Right": "125", - "Shield_Front_Bottom_Left": "125", "Shield_Recharge": "100", "Warp_Capacitor": "350", "Primary_Capacitor": "800", @@ -1856,8 +1837,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", + "armor": "112.0", + "shield": "125.0", "shield_facets": "4", - "armor": "56", "accel": "12000" }, { @@ -1872,8 +1854,6 @@ "Mass": "100", "Fuel_Capacity": "0", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Radar_Range": "10000", "Tracking_Cone": "4", "Max_Cone": "180", @@ -1887,12 +1867,14 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "upgrading_dummy_unit__upgrades", "Name": "Upgrading Dummy Unit", - "Object_Type": "DUMMY" + "Object_Type": "DUMMY", + "shield_facets": "0" }, { "Key": "ABelt__neutral", @@ -1919,7 +1901,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}", + "shield_facets": "0" }, { "Key": "AFieldBaseSparse__neutral", @@ -1946,7 +1929,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", + "shield_facets": "0" }, { "Key": "AFieldBaseThin__neutral", @@ -1973,7 +1957,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", + "shield_facets": "0" }, { "Key": "AFieldBase__neutral", @@ -2000,7 +1985,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}", + "shield_facets": "0" }, { "Key": "AFieldJumpSparse__neutral", @@ -2027,7 +2013,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", + "shield_facets": "0" }, { "Key": "AFieldJumpThin__neutral", @@ -2054,7 +2041,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", + "shield_facets": "0" }, { "Key": "AFieldJump__neutral", @@ -2081,7 +2069,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}", + "shield_facets": "0" }, { "Key": "AFieldSparse__neutral", @@ -2108,7 +2097,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", + "shield_facets": "0" }, { "Key": "AFieldThin__neutral", @@ -2135,7 +2125,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", + "shield_facets": "0" }, { "Key": "AField__neutral", @@ -2162,13 +2153,15 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}", + "shield_facets": "0" }, { "Key": "Arc_Device__upgrades", "Name": "Arc Device", "Object_Type": "FIXME", - "Mounts": "{Arc_Device;;;;;;;;;;;;;;;1;1}" + "Mounts": "{Arc_Device;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Dirt__planets", @@ -2193,7 +2186,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;12;4}{starships/Confed/Heavy;1;;3;2}{starships/Confed/Light;1;;24;5}{starships/Confed/Medium;1;;12;4}{starships/Highborn/Heavy;1;;3;2}{starships/Hunter/Heavy;1;;3;2}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;3}{starships/ISO/Heavy;1;;3;2}{starships/ISO/Medium;1;;36;8}{starships/Merchant/Heavy;1;;3;2}{starships/Merchant/Light;1;;24;5}{starships/Merchant/Light_Capship;1;;-24;30}{starships/Merchant/Medium;1;;12;4}{starships/Regional_Guard/Heavy;1;;3;2}{starships/Regional_Guard/Light;1;;24;5}{starships/Regional_Guard/Medium;1;;12;4}{upgrades/Ammunition/Common;1;.1;160;40}{upgrades/Ammunition/Uncommon;3;.9;60;140}{upgrades/Ammunition/Confed;2;.3;20;30}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;3;1}{upgrades/Jump_Drives;1;.1;12;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;5;3}{upgrades/Sensors/Confed;1;.1;-8;10}{upgrades/Sensors/Common;1;.1;6;2}{upgrades/Sensors/Highborn;1;.1;-8;10}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;24;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;12;4}{upgrades/Weapons/Mount_Enhancements;1;.1;-24;30}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;3;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;24;6}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;12;5}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "HiddenAsteroid__neutral", @@ -2220,7 +2214,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Dock": "{;-150;107;0.594800;300.000000;0}", - "armor": "4000" + "armor": "8000.0", + "shield_facets": "0" }, { "Key": "Lava__planets", @@ -2245,49 +2240,57 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Specialty_Goods/Augmentation;1.3;.1;1;1}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "Photon_MK_III__upgrades", "Name": "Photon MK III", "Object_Type": "FIXME", - "Mounts": "{Photon_MKIII;5000;;;;;;;;;;;;;;1;1}" + "Mounts": "{Photon_MKIII;5000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Photon_MK_III_ammo__upgrades", "Name": "Photon MK III Warheads", "Object_Type": "FIXME", - "Mounts": "{Photon_MKIII;500;;;;;;;;;;;;;;1;1}" + "Mounts": "{Photon_MKIII;500;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Photon_MK_II__upgrades", "Name": "Photon MK II", "Object_Type": "FIXME", - "Mounts": "{Photon_MKII;3000;;;;;;;;;;;;;;1;1}" + "Mounts": "{Photon_MKII;3000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Photon_MK_II_ammo__upgrades", "Name": "Photon MK II Warheads", "Object_Type": "FIXME", - "Mounts": "{Photon_MKII;200;;;;;;;;;;;;;;1;1}" + "Mounts": "{Photon_MKII;200;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Photon_MK_I__upgrades", "Name": "Photon MK I", "Object_Type": "FIXME", - "Mounts": "{Photon_MKI;3000;;;;;;;;;;;;;;1;1}" + "Mounts": "{Photon_MKI;3000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Photon_MK_I_ammo__upgrades", "Name": "Photon MK I Warheads", "Object_Type": "FIXME", - "Mounts": "{Photon_MKI;200;;;;;;;;;;;;;;1;1}" + "Mounts": "{Photon_MKI;200;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Plasma_Plume__upgrades", "Name": "Plasma Plume", "Object_Type": "FIXME", - "Mounts": "{PlasmaPlume;;;;;;;;;;;;;;;1;1}" + "Mounts": "{PlasmaPlume;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Snow__planets", @@ -2312,41 +2315,47 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1.15;.1;;}{Industrially_Manufactured_Goods/Agricultural;.5;.2;;}{Industrially_Manufactured_Goods/Construction;1.35;.4;10;15}{Industrially_Manufactured_Goods/Electronics;1.3;.2;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.05;.1;3;5}{Industrially_Manufactured_Goods/Mining;.7;.2;;}{Industrially_Manufactured_Goods/Power_Utilities;1.1;.2;3;5}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.2;.2;;}{Natural_Products/Renewable_Resources;.8;.2;;}{Raw_Materials/Gases;1;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;.8;.2;;}{Raw_Materials/Metals;.7;.1;;}{Raw_Materials/Stone;.9;.1;5;10}{Refined_Materials/Chemicals;1.25;.2;5;10}{Refined_Materials/Precious_Metals;.8;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;.7;.1;;}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.2;.1;5;3}{starships/Hunter/Heavy;1;;;2}{starships/Hunter/Light;1;;;5}{starships/Hunter/Medium;1;;;3}{starships/ISO/Heavy;1;;;2}{starships/ISO/Medium;1;;;8}{starships/Merchant/Heavy;1;;-2;3}{starships/Merchant/Light;1;;;5}{starships/Merchant/Light_Capship;1;;-22;26}{starships/Merchant/Medium;1;;-1;4}{upgrades/Ammunition;7;.8;10;120}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;;1}{upgrades/Jump_Drives;1;.1;4;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-3;5}{upgrades/Sensors/Confed;1;.1;-8;10}{upgrades/Sensors/Common;1;.1;10;15}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;-24;25}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;2}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "advtorpedo_ammo__upgrades", "Name": "advtorpedo_ammo", "Object_Type": "FIXME", "Mounts": "{AdvTorpedo;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "aera_turret_pd__upgrades", "Name": "aera_turret_pd", "Object_Type": "FIXME", "Sub_Units": "{aeraturretpd;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@Using low yield pulse lasers, the aera have made simple and effective anti-missile turrets.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@Using low yield pulse lasers, the aera have made simple and effective anti-missile turrets.\"\n", + "shield_facets": "0" }, { "Key": "anihilator_gun__upgrades", "Name": "anihilator_gun", "Object_Type": "FIXME", "Mounts": "{Anihilator;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "antimatter__upgrades", "Name": "antimatter", "Object_Type": "FIXME", - "Mounts": "{Antimatter;;;;;;;;;;;;;;;1;1}" + "Mounts": "{Antimatter;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "antimatter_gun__upgrades", "Name": "antimatter_gun", "Object_Type": "FIXME", "Mounts": "{Antimatter;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "asteroids1600gap__neutral", @@ -2368,7 +2377,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "asteroids200gap__neutral", @@ -2390,7 +2400,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "asteroids400gap__neutral", @@ -2412,7 +2423,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "asteroids800gap__neutral", @@ -2434,7 +2446,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "asteroids__neutral", @@ -2460,75 +2473,86 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "beam_heavy_lr__upgrades", "Name": "beam_heavy_lr", "Object_Type": "FIXME", "Mounts": "{LR_BeamHvy;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "beam_turret__upgrades", "Name": "beam_turret", "Object_Type": "FIXME", "Sub_Units": "{turretbeam;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@Specially designed for the energy and heat dissipation requirements of beam weapons, this turret has everything you need to mount a pair of them.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@Specially designed for the energy and heat dissipation requirements of beam weapons, this turret has everything you need to mount a pair of them.\"\n", + "shield_facets": "0" }, { "Key": "breeze_ammo__upgrades", "Name": "breeze_ammo", "Object_Type": "FIXME", "Mounts": "{Breeze;5;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "cap_iff__upgrades", "Name": "cap_iff", "Object_Type": "FIXME", "Mounts": "{CAPIFF;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/capiff.png@\"\n" + "Textual_Description": "\"@upgrades/capiff.png@\"\n", + "shield_facets": "0" }, { "Key": "capcluster_ammo__upgrades", "Name": "capcluster_ammo", "Object_Type": "FIXME", "Mounts": "{CapCluster;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "capiff_ammo__upgrades", "Name": "capiff_ammo", "Object_Type": "FIXME", "Mounts": "{CapIFF;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/capiff.png@\"\n" + "Textual_Description": "\"@upgrades/capiff.png@\"\n", + "shield_facets": "0" }, { "Key": "capship_disruptor__upgrades", "Name": "capship_disruptor", "Object_Type": "FIXME", - "Mounts": "{CapshipDisruptor;;;;;;;;;;;;;;;1;1}" + "Mounts": "{CapshipDisruptor;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "capship_turret__upgrades", "Name": "capship_turret", "Object_Type": "FIXME", "Sub_Units": "{turret;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@When hunting for bear, hover softly, and carry a big stick\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@When hunting for bear, hover softly, and carry a big stick\"\n", + "shield_facets": "0" }, { "Key": "capship_turret_heavy__upgrades", "Name": "capship_turret_heavy", "Object_Type": "FIXME", "Sub_Units": "{turretheavy;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@If your vessel can mount this, this can mount whatever you want.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@If your vessel can mount this, this can mount whatever you want.\"\n", + "shield_facets": "0" }, { "Key": "capshipmissile_ammo__upgrades", "Name": "Capship_Missile_ammo", "Object_Type": "FIXME", - "Mounts": "{CapshipMissile;1;;;;;;;;;;;;;;1;1}" + "Mounts": "{CapshipMissile;1;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "carribean__planets", @@ -2553,14 +2577,16 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.2;4;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;2}{Industrially_Manufactured_Goods/Agricultural;.9;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.1;7;3}{Industrially_Manufactured_Goods/Electronics;1.1;.1;2;1}{Industrially_Manufactured_Goods/Manufacturing;1;.1;;}{Industrially_Manufactured_Goods/Mining;.9;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.1;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;1;1}{Natural_Products/Life-forms;1.3;.1;;}{Natural_Products/Liquor;1.2;.2;3;2}{Natural_Products/Renewable_Resources;.9;.1;;}{Raw_Materials/Gases;1;.1;;}{Raw_Materials/Hydrocarbons;.9;.2;;}{Raw_Materials/Industrial_Gems;.9;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;.9;.1;1;1}{Refined_Materials/Chemicals;1.2;.3;8;2}{Refined_Materials/Precious_Metals;.9;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;1.1;.3;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.3;.2;12;7}{Specialty_Goods/Medical;1.2;.2;;}{starships/Andolian/Medium;1;;3;2}{starships/Confed/Light;1;;4;4}{starships/Hunter/Light;1;;2;2}{starships/Merchant/Light;1;;8;5}{starships/Merchant/Medium;1;;-2;5}{starships/Regional_Guard/Light;1;;3;2}{upgrades/Ammunition/Common;1;.1;600;700}{upgrades/Ammunition/Uncommon;2;.7;200;800}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;7;1}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;2;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "cluster_ammo__upgrades", "Name": "cluster_ammo", "Object_Type": "FIXME", "Mounts": "{Cluster;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/cluster.png@\"\n" + "Textual_Description": "\"@upgrades/cluster.png@\"\n", + "shield_facets": "0" }, { "Key": "contraband", @@ -2577,7 +2603,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "contraband.blank", @@ -2594,7 +2621,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "contraband.template", @@ -2612,7 +2640,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "16" + "Upgrade_Storage_Volume": "16", + "shield_facets": "0" }, { "Key": "contraband__aera", @@ -2631,7 +2660,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Contraband/Aera;;;1;}", - "Upgrade_Storage_Volume": "16" + "Upgrade_Storage_Volume": "16", + "shield_facets": "0" }, { "Key": "contraband__confed", @@ -2649,7 +2679,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Cargo_Import": "{Contraband/Confed;;;1;}" + "Cargo_Import": "{Contraband/Confed;;;1;}", + "shield_facets": "0" }, { "Key": "contraband__luddites", @@ -2667,7 +2698,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Cargo_Import": "{Contraband/Luddite;;;1;}" + "Cargo_Import": "{Contraband/Luddite;;;1;}", + "shield_facets": "0" }, { "Key": "contraband__rlaan", @@ -2686,14 +2718,16 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Contraband/Rlaan;;;1;}", - "Upgrade_Storage_Volume": "16" + "Upgrade_Storage_Volume": "16", + "shield_facets": "0" }, { "Key": "crippler__upgrades", "Name": "Crippler", "Object_Type": "FIXME", "Mounts": "{Crippler;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "desert__planets", @@ -2718,21 +2752,24 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.2;4;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;2}{Contraband/Rlaan;1.55;.4;;}{Industrially_Manufactured_Goods/Agricultural;.9;.1;;}{Industrially_Manufactured_Goods/Construction;1.5;.1;7;3}{Industrially_Manufactured_Goods/Manufacturing;1;.1;;}{Industrially_Manufactured_Goods/Mining;.9;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.05;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;1;1}{Natural_Products/Food/Rlaan;1.9;.2;15;5}{Natural_Products/Life-forms;1.1;.1;;}{Natural_Products/Liquor;.5;.2;3;2}{Natural_Products/Renewable_Resources;.9;.1;;}{Raw_Materials/Gases;1;.1;;}{Raw_Materials/Hydrocarbons;.9;.2;;}{Raw_Materials/Industrial_Gems;.9;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;.9;.1;1;1}{Refined_Materials/Chemicals;1.05;.35;16;4}{Refined_Materials/Precious_Metals;.9;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;1.15;.3;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Augmentation;1.2;.1;;}{Specialty_Goods/Entertainment;1.3;.2;12;7}{Specialty_Goods/Medical;1.225;.925;;}{starships/Hunter/Light;1;;2;2}{starships/Rlaan/Light;1;;4;4}{upgrades/Ammunition/Common;1;.1;220;60}{upgrades/Ammunition/Uncommon;5;.9;60;160}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;7;1}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;2;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "discontinuity__upgrades", "Name": "discontinuity", "Object_Type": "FIXME", "Mounts": "{Discontinuity;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "dumbfire_ammo__upgrades", "Name": "dumbfire_ammo", "Object_Type": "FIXME", "Mounts": "{Dumbfire;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/dumbfire.png@\"\n" + "Textual_Description": "\"@upgrades/dumbfire.png@\"\n", + "shield_facets": "0" }, { "Key": "earth__planets", @@ -2757,28 +2794,32 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12.5;3.5;;}{Specialty_Goods/Augmentation;1.25;.1;;}{Specialty_Goods/Entertainment;.9;.1;20;20}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;2;2}{starships/Confed/Heavy;1;;2;2}{starships/Confed/Light;1;;3;3}{starships/Confed/Medium;1;;2;2}{starships/Confed/Milspec;1.5;.5;1;1}{starships/Highborn/Heavy;1;;2;2}{starships/Merchant/Heavy;1;;2;2}{starships/Merchant/Light;1;;3;3}{starships/Merchant/Medium;1;;2;2}{starships/Regional_Guard/Heavy;1;;2;2}{starships/Regional_Guard/Light;1;;3;3}{starships/Regional_Guard/Medium;1;;2;2}{starships/Purist/Milspec;1.5;.5;1;1}{upgrades/Ammunition;1;;2500;5000}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;14;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;;20;10}{upgrades/Sensors/Confed;1;;10;5}{upgrades/Sensors/Common;1;;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;;10;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;;10;5}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;;10;5}{upgrades/Weapons/Mount_Enhancements;1;;10;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;2;;1;1}{upgrades/Weapons/Mounted_Guns_Heavy;1;;10;5}{upgrades/Weapons/Mounted_Guns_Light;1;;10;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;10;5}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "emp_torpedo_ammo__upgrades", "Name": "emp_torpedo_ammo", "Object_Type": "FIXME", "Mounts": "{EMPTorpedo;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/emp3.png@\"\n" + "Textual_Description": "\"@upgrades/emp3.png@\"\n", + "shield_facets": "0" }, { "Key": "flak__upgrades", "Name": "flak", "Object_Type": "FIXME", "Mounts": "{Flak;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "flak_heavy__upgrades", "Name": "flak_heavy", "Object_Type": "FIXME", "Mounts": "{HeavyFlak;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "forest__planets", @@ -2801,7 +2842,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "forest_methane__planets", @@ -2824,21 +2866,24 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "franklin_pd__upgrades", "Name": "franklin_pd", "Object_Type": "FIXME", "Sub_Units": "{franklinpd;;;;;;;;;;90.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@These turrets were custom designed for the Franklin class diplomatic transport. Any hotshot who splurges on the Franklin should undoubtedly get these fine turrets to complement the exterior decor.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@These turrets were custom designed for the Franklin class diplomatic transport. Any hotshot who splurges on the Franklin should undoubtedly get these fine turrets to complement the exterior decor.\"\n", + "shield_facets": "0" }, { "Key": "friend_or_foe_ammo__upgrades", "Name": "friend_or_foe_ammo", "Object_Type": "FIXME", "Mounts": "{FriendOrFoe;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/fof.png@\"\n" + "Textual_Description": "\"@upgrades/fof.png@\"\n", + "shield_facets": "0" }, { "Key": "frigid_mud__planets", @@ -2861,7 +2906,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "gas_giant__planets", @@ -2884,7 +2930,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "gas_medium__planets", @@ -2907,7 +2954,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "gas_midget__planets", @@ -2930,14 +2978,16 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "grand_gauss__upgrades", "Name": "grand_gauss", "Object_Type": "FIXME", "Mounts": "{GrandGauss;16383;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/emp2.png@\"\n" + "Textual_Description": "\"@upgrades/emp2.png@\"\n", + "shield_facets": "0" }, { "Key": "green-nebula.nebula__neutral", @@ -2958,7 +3008,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "green-nebula__neutral", @@ -2984,49 +3035,56 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "hail_ammo__upgrades", "Name": "hail_ammo", "Object_Type": "FIXME", "Mounts": "{Hail;4;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "heatseeker_ammo__upgrades", "Name": "heatseeker_ammo", "Object_Type": "FIXME", "Mounts": "{HeatSeeker;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/heatseeker.png@\"\n" + "Textual_Description": "\"@upgrades/heatseeker.png@\"\n", + "shield_facets": "0" }, { "Key": "heavy_turret__upgrades", "Name": "heavy_turret", "Object_Type": "FIXME", "Sub_Units": "{turretheavy;;;;;;;;;;180.0}", - "Textual_Description": "\"@upgrades/turret_heavy.png@For when evasive maneuvers are too subtle a hint your tailgaters.\"\n" + "Textual_Description": "\"@upgrades/turret_heavy.png@For when evasive maneuvers are too subtle a hint your tailgaters.\"\n", + "shield_facets": "0" }, { "Key": "hellspawn__upgrades", "Name": "hellspawn", "Object_Type": "FIXME", "Mounts": "{Hellspawn;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "icepick__upgrades", "Name": "icepick", "Object_Type": "FIXME", "Mounts": "{icepick;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "image_recognition_ammo__upgrades", "Name": "image_recognition_ammo", "Object_Type": "FIXME", "Mounts": "{ImageRecognition;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/imrec.png@\"\n" + "Textual_Description": "\"@upgrades/imrec.png@\"\n", + "shield_facets": "0" }, { "Key": "industrial__planets", @@ -3050,7 +3108,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12.5;3.5;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;2;2}{starships/Confed/Heavy;1;;2;2}{starships/Confed/Light;1;;3;3}{starships/Confed/Medium;1;;2;2}{starships/Confed/Milspec;1.5;.5;1;1}{starships/Highborn/Heavy;1;;2;2}{starships/Merchant/Heavy;1;;2;2}{starships/Merchant/Light;1;;3;3}{starships/Merchant/Medium;1;;2;2}{starships/Regional_Guard/Heavy;1;;2;2}{starships/Regional_Guard/Light;1;;3;3}{starships/Regional_Guard/Medium;1;;2;2}{starships/Purist/Milspec;1.5;.5;1;1}{upgrades/Ammunition/Common;1;;1200;1300}{upgrades/Ammunition/Uncommon;1.2;.4;400;1300}{upgrades/Ammunition/Confed;1.2;.1;120;130}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;14;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;;20;10}{upgrades/Sensors/Confed;1;;10;5}{upgrades/Sensors/Common;1;;10;5}{upgrades/Sensors/Highborn;1;;5;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;;10;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;;10;5}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;;10;5}{upgrades/Weapons/Mount_Enhancements;1;;10;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;2;;1;1}{upgrades/Weapons/Mounted_Guns_Heavy;1;;10;5}{upgrades/Weapons/Mounted_Guns_Light;1;;10;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;10;5}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "j_class__planets", @@ -3075,13 +3134,15 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.2;4;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;2}{Contraband/Aera;1.55;.4;;}{Industrially_Manufactured_Goods/Agricultural;.9;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.1;7;3}{Industrially_Manufactured_Goods/Manufacturing;1;.1;;}{Industrially_Manufactured_Goods/Mining;.9;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.05;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;1;1}{Natural_Products/Food/Aera;1.9;.2;15;5}{Natural_Products/Life-forms;1.1;.1;;}{Natural_Products/Liquor;.5;.2;3;2}{Natural_Products/Renewable_Resources;.9;.1;;}{Raw_Materials/Gases;1;.1;;}{Raw_Materials/Hydrocarbons;.9;.2;;}{Raw_Materials/Industrial_Gems;.9;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;.9;.1;1;1}{Refined_Materials/Chemicals;1.1;.3;8;2}{Refined_Materials/Precious_Metals;.9;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;1.15;.3;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Refined_Materials/Synthetics;1;.3;8;2}{Specialty_Goods/Augmentation;1.1;.1;;}{Specialty_Goods/Entertainment;1.3;.2;12;7}{Specialty_Goods/Medical;.5;.2;;}{Specialty_Goods/Pharmaceutical;1.95;.2;;}{starships/Aera/Light;1;;4;4}{starships/Hunter/Light;1;;2;2}{upgrades/Ammunition/Common;3;.4;100;200}{upgrades/Ammunition/Aera;1.1;.2;400;450}{upgrades/Armor;1;.1;19;11}{upgrades/Capacitors/Standard;1;.1;18;17}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;6}{upgrades/Reactors/Standard;1;.1;18;8}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;7;1}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;25;6}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;22;6}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;2;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "javelin_ammo__upgrades", "Name": "javelin", "Object_Type": "FIXME", - "Mounts": "{Javelin;1;;;;;;;;;;;;;;1;1}" + "Mounts": "{Javelin;1;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "jump__planets", @@ -3103,7 +3164,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "k_class__planets", @@ -3128,81 +3190,93 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Contraband/Aera;.94;.15;12;40}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;12;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;17;5}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.6;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;5;2}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Food/Aera;1.5;.2;55;25}{Natural_Products/Life-forms;.8;.2;20;12}{Natural_Products/Liquor;.8;.2;30;12}{Natural_Products/Renewable_Resources;.8;.2;35;25}{Raw_Materials/Gases;.7;.2;70;25}{Raw_Materials/Hydrocarbons;.8;.2;28;25}{Raw_Materials/Industrial_Gems;1.2;.2;2;1}{Raw_Materials/Metals;1;.1;12;5}{Raw_Materials/Stone;.9;.1;16;15}{Refined_Materials/Alloys/Aera;.7;.1;;}{Refined_Materials/Chemicals;1.1;.3;8;2}{Refined_Materials/Precious_Metals;1;.1;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.2;.1;10;6}{Refined_Materials/Radioactive_Metals;.8;.1;2;1}{Refined_Materials/Synthetics;1.1;.3;8;2}{Research;13;2;;}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;.5;.1;15;3}{Specialty_Goods/Pharmaceutical;1.94;.1;15;3}{starships/Aera/Light;1;;12;5}{starships/Hunter/Light;1;;12;5}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;12;5}{upgrades/Ammunition/Common;3;.3;520;480}{upgrades/Ammunition/Aera;1.1;.2;220;219}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Confed;1;.1;-12;17}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "killer_bee_ammo__upgrades", "Name": "killer_bee_ammo", "Object_Type": "FIXME", - "Mounts": "{KillerBee;60;;;;;;;;;;;;;;1;1}" + "Mounts": "{KillerBee;60;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "kineticmissile__upgrades", "Name": "kineticmissile", "Object_Type": "FIXME", "Mounts": "{KineticMissile;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/kineticmissle.png@\"\n" + "Textual_Description": "\"@upgrades/kineticmissle.png@\"\n", + "shield_facets": "0" }, { "Key": "ktek_cap_beam__upgrades", "Name": "ktek_cap_beam", "Object_Type": "FIXME", "Mounts": "{ktekcapbeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/beam1.png@\"\n" + "Textual_Description": "\"@upgrades/beam1.png@\"\n", + "shield_facets": "0" }, { "Key": "laser__upgrades", "Name": "laser", "Object_Type": "FIXME", "Mounts": "{Laser;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@Though not a laser by any stretch of the imagination, due to its resemblance to the so called 'lasers' of classic games and movies of the previous millenium, the misnomer has stuck stronger than space rated epoxy. Cheap and utterly dependable, this and other similar low yield plasma weapons are ubiquitous in armed civilian populations.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@Though not a laser by any stretch of the imagination, due to its resemblance to the so called 'lasers' of classic games and movies of the previous millenium, the misnomer has stuck stronger than space rated epoxy. Cheap and utterly dependable, this and other similar low yield plasma weapons are ubiquitous in armed civilian populations.\"\n", + "shield_facets": "0" }, { "Key": "leech_ammo__upgrades", "Name": "leech_ammo", "Object_Type": "FIXME", "Mounts": "{Leech;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/leech.png@\"\n" + "Textual_Description": "\"@upgrades/leech.png@\"\n", + "shield_facets": "0" }, { "Key": "leech_gun__upgrades", "Name": "Leech Gun", "Object_Type": "FIXME", "Mounts": "{LeechGun;7;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "leech_gun_ammo__upgrades", "Name": "Leech ammo", "Object_Type": "FIXME", - "Mounts": "{LeechGun;1;;;;;;;;;;;;;;1;1}" + "Mounts": "{LeechGun;1;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "lr_beam__upgrades", "Name": "lr_beam", "Object_Type": "FIXME", - "Mounts": "{LR_Beam;;;;;;;;;;;;;;;1;1}" + "Mounts": "{LR_Beam;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "lr_disruptor_beam__upgrades", "Name": "lr_disruptor_beam", "Object_Type": "FIXME", "Mounts": "{LR_DisruptorBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "lr_pminus_beam__upgrades", "Name": "lr_pminus_beam", "Object_Type": "FIXME", "Mounts": "{LR_PminusBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "lr_pminus_beam_mkiv__upgrades", "Name": "lr_pminus_beam_mkiv", "Object_Type": "FIXME", "Mounts": "{LR_PminusBeamMKIV;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "m_class__planets", @@ -3227,7 +3301,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Contraband/Aera;.96;.15;12;16}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;12;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;17;5}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.6;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;5;2}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;.8;.2;20;12}{Natural_Products/Liquor;.8;.2;30;12}{Natural_Products/Renewable_Resources;.8;.2;35;25}{Raw_Materials/Gases;.7;.2;70;25}{Raw_Materials/Hydrocarbons;.8;.2;28;25}{Raw_Materials/Industrial_Gems;1.2;.2;2;1}{Raw_Materials/Metals;1;.1;12;5}{Raw_Materials/Stone;.9;.1;16;15}{Refined_Materials/Chemicals;1.2;.3;8;2}{Refined_Materials/Precious_Metals;1;.1;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.2;.1;10;6}{Refined_Materials/Radioactive_Metals;.8;.1;2;1}{Research;13;2;;}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;1.2;.1;15;3}{starships/Andolian/Medium;1;;12;5}{starships/Confed/Light;1;;12;5}{starships/Hunter/Light;1;;12;5}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;12;5}{starships/Regional_Guard/Light;1;;12;5}{upgrades/Ammunition/Common;1;.1;520;530}{upgrades/Ammunition/Uncommon;3;.5;200;280}{upgrades/Ammunition/Confed;1.5;.2;200;280}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;6}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Confed;1;.1;-12;17}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "mars__planets", @@ -3251,14 +3326,16 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.1;3;3}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.1;.1;3;3}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.8;.05;;}{Natural_Products/Liquor;1;.2;;}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;3;3}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1;.1;;}{Refined_Materials/Chemicals;1.1;.1;3;3}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.9;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;10;3;-30;50}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;1.1;.1;3;3}{starships/Andolian/Medium;1;;3;2}{starships/Confed/Light;1;;3;2}{starships/Hunter/Light;1;;3;2}{starships/Merchant/Light;1;;3;2}{starships/Regional_Guard/Light;1;;3;2}{upgrades/Ammunition;2;.6;1500;1700}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;5;2}{upgrades/Jump_Drives;1;.1;9;4}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;.95;.15;-5;17}{upgrades/Sensors/Common;1;.1;10;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;5;2}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "medium_turret__upgrades", "Name": "medium_turret", "Object_Type": "FIXME", "Sub_Units": "{turret_medium;;;;;;;;;;180.0}", - "Textual_Description": "\"@upgrades/turret_medium.png@It turns, it shoots, it slices. No, it does not dice, but it does come with a free fuzzy pair.\"\n" + "Textual_Description": "\"@upgrades/turret_medium.png@It turns, it shoots, it slices. No, it does not dice, but it does come with a free fuzzy pair.\"\n", + "shield_facets": "0" }, { "Key": "molten__planets", @@ -3281,7 +3358,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "moon__planets", @@ -3305,7 +3383,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.2;26;12}{Industrially_Manufactured_Goods/Construction;.7;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.7;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;12;4}{starships/Confed/Heavy;1;;3;2}{starships/Confed/Light;1;;24;5}{starships/Confed/Medium;1;;12;4}{starships/Highborn/Heavy;1;;3;2}{starships/Hunter/Heavy;1;;3;2}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;3}{starships/ISO/Heavy;1;;3;2}{starships/ISO/Medium;1;;36;8}{starships/Merchant/Heavy;1;;3;2}{starships/Merchant/Light;1;;24;5}{starships/Merchant/Light_Capship;1;;-24;30}{starships/Merchant/Medium;1;;12;4}{starships/Regional_Guard/Heavy;1;;3;2}{starships/Regional_Guard/Light;1;;24;5}{starships/Regional_Guard/Medium;1;;12;4}{upgrades/Ammunition;1;.1;560;570}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;3;1}{upgrades/Jump_Drives;1;.1;12;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;5;3}{upgrades/Sensors/Confed;1;.1;-8;10}{upgrades/Sensors/Common;1;.1;6;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;24;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;12;4}{upgrades/Weapons/Mount_Enhancements;1;.1;-24;30}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;3;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;24;6}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;12;5}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "n_class__planets", @@ -3330,7 +3409,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Contraband/Aera;1.15;.4;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Food/Aera;1.9;.1;5;2}{Natural_Products/Life-forms;1.2;.1;;}{Natural_Products/Liquor;.5;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;.9;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Alloys/Aera;1.1;.05;2;2}{Refined_Materials/Chemicals;1.05;.2;16;4}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12.5;3.5;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Aera/Heavy;1;;2;2}{starships/Aera/Light;1;;5;5}{starships/Aera/Milspec;1.5;.5;1;1}{upgrades/Ammunition/Aera;1.1;.2;500;540}{upgrades/Ammunition/Common;1.4;.6;100;140}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;14;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;;20;10}{upgrades/Sensors/Confed;1;;10;5}{upgrades/Sensors/Common;1;;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;;10;5}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;;10;5}{upgrades/Weapons/Mount_Enhancements;1;;10;5}{upgrades/Weapons/Mounted_Guns_Aera_Milspec;2;;1;1}{upgrades/Weapons/Mounted_Guns_Heavy;1;;10;5}{upgrades/Weapons/Mounted_Guns_Light;1;;10;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;10;5}{upgrades/Weapons/Turrets/Aera;1;.1;1;1}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "navpoint", @@ -3355,7 +3435,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "navpoint.blank", @@ -3375,7 +3456,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "navpoint.template", @@ -3405,7 +3487,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "nebula.bigger1.xmesh__neutral", @@ -3427,7 +3510,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "nebula.bigger2.xmesh__neutral", @@ -3449,7 +3533,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "nebula.bigger3.xmesh__neutral", @@ -3471,7 +3556,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "nebula.bigger4.xmesh__neutral", @@ -3493,7 +3579,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "nebula.nebula__neutral", @@ -3515,7 +3602,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "nebula__neutral", @@ -3542,7 +3630,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "nebula_veryhuge.nebula__neutral", @@ -3564,7 +3653,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "nebula_veryhuge__neutral", @@ -3591,7 +3681,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "newdetroit__planets", @@ -3615,7 +3706,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;12;4}{starships/Confed/Heavy;1;;3;2}{starships/Confed/Light;1;;24;5}{starships/Confed/Medium;1;;12;4}{starships/Highborn/Heavy;1;;3;2}{starships/Hunter/Heavy;1;;3;2}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;3}{starships/ISO/Heavy;1;;3;2}{starships/ISO/Medium;1;;36;8}{starships/Merchant/Heavy;1;;3;2}{starships/Merchant/Light;1;;24;5}{starships/Merchant/Light_Capship;1;;-24;30}{starships/Merchant/Medium;1;;12;4}{starships/Regional_Guard/Heavy;1;;3;2}{starships/Regional_Guard/Light;1;;24;5}{starships/Regional_Guard/Medium;1;;12;4}{upgrades/Ammunition/Common;.8;.2;1600;1700}{upgrades/Ammunition/Uncommon;1.8;.7;60;170}{upgrades/Ammunition/Confed;2.8;.2;90;110}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;3;1}{upgrades/Jump_Drives;1;.1;12;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;5;3}{upgrades/Sensors/Confed;1;.1;-8;10}{upgrades/Sensors/Common;1;.1;6;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;24;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;12;4}{upgrades/Weapons/Mount_Enhancements;1;.1;-24;30}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;3;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;24;6}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;12;5}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "ocean__planets", @@ -3640,7 +3732,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;1000;.100000000000023}{Consumer_and_Commercial_Goods/Electronics;1;.1;1000;.1}{Consumer_and_Commercial_Goods/Luxury;1;.1;10;.1}{Consumer_and_Commercial_Goods/Personal;1;.1;1000;.1}{Contraband/Aera;1;.1;10;.1}{Contraband/Confed;1;.1;10;.1}{Contraband/Rlaan;1;.1;10;.1}{Industrially_Manufactured_Goods/Agricultural;1;.1;10;.1}{Industrially_Manufactured_Goods/Construction;1;.1;10;.1}{Industrially_Manufactured_Goods/Recycled_Products;1;.1;10000;.1}{Industrially_Manufactured_Goods/Xenoforming;1;.1;10;.1}{Natural_Products/Food/Aera;1;.1;10000;.1}{Natural_Products/Food/Confed;1;.1;10000;.1}{Natural_Products/Food/Generic;1;.1;10000;.1}{Natural_Products/Food/Rlaan;1;.1;10000;.1}{Natural_Products/Life-forms;1;.1;1000;.1}{Natural_Products/Liquor/Confed;1;.1;100;.1}{Natural_Products/Liquor/Uln;1;.1;100;.1}{Natural_Products/Liquor;.9;.1;200;400}{Natural_Products/Plant_Products;1;.1;10;.1}{Natural_Products/Renewable_Resources;1;.1;10000;.1}{Raw_Materials/Gases;1;.1;100000;.1}{Raw_Materials/Hydrocarbons;1;.1;20000;.2}{Raw_Materials/Metals;6;.7;-100;300}{Raw_Materials/Ores;5;.4;-1000;2000}{Refined_Materials/Alloys/Aera;10;.3;-100;150}{Refined_Materials/Alloys/Confed;3;.1;100;45}{Refined_Materials/Alloys/Rlaan;2;.1;10;15}{Refined_Materials/Precious_Metals;3;.1;10;12}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;10;.1}{Refined_Materials/Radioactive_Metals;1;.1;100;.1}{Research;11;.4;-10;13}{Specialty_Goods/Augmentation;1;.1;-3;5}{Specialty_Goods/Entertainment;1;.2;100;34}{Specialty_Goods/Medical;1.25;.2;80;120}{Specialty_Goods/Pharmaceutical;1;.2;4;5}{starships/Andolian/Medium;1;;;5}{starships/Hunter/Light;1;;;5}{starships/Merchant/Light;1;;;5}{starships/Merchant/Medium;1;;;5}{starships/Regional_Guard/Light;1;;;5}{upgrades/Ammunition/Confed;1;.1;100;280}{upgrades/Ammunition/Common;1;.1;200;280}{upgrades/Ammunition/Uncommon;2;.1;60;180}{upgrades/Ammunition/Rlaan;6;.7;-10;28}{upgrades/Ammunition/Aera;13;.7;-10;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;10;5}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "ocean_ammonia__planets", @@ -3663,7 +3756,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "orange_star__planets", @@ -3685,41 +3779,47 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "particle_beam_lr__upgrades", "Name": "particle_beam_lr", "Object_Type": "FIXME", "Mounts": "{LR_ParticleBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "penetrator_gun__upgrades", "Name": "penetrator_gun", "Object_Type": "FIXME", "Mounts": "{Penetrator;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "penetrator_mkvi__upgrades", "Name": "penetrator_mkvi", "Object_Type": "FIXME", "Mounts": "{PenetratorMKVI;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "photon_capship__upgrades", "Name": "photon_capship", "Object_Type": "FIXME", "Mounts": "{capship_Photon;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "photon_swarm_ammo__upgrades", "Name": "photon_swarm", "Object_Type": "FIXME", - "Mounts": "{Photonswarm;50;;;;;;;;;;;;;;1;1}" + "Mounts": "{Photonswarm;50;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "pmiss", @@ -3761,13 +3861,15 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;8;;;;;}", + "shield_facets": "0", "accel": "4" }, { "Key": "porcupine_mine_ammo__upgrades", "Name": "porcupine_mine", "Object_Type": "FIXME", - "Mounts": "{PorcupineMine;1;;;;;;;;;;;;;;1;1}" + "Mounts": "{PorcupineMine;1;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "purple-nebula.nebula__neutral", @@ -3788,7 +3890,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "purple-nebula__neutral", @@ -3814,33 +3917,38 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "razor_gun__upgrades", "Name": "Razor", "Object_Type": "FIXME", "Mounts": "{Razor;500;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "razor_gun_ammo__upgrades", "Name": "Razor Warheads", "Object_Type": "FIXME", - "Mounts": "{Razor;50;;;;;;;;;;;;;;1;1}" + "Mounts": "{Razor;50;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "reaper_cannon__upgrades", "Name": "Reaper", "Object_Type": "FIXME", "Mounts": "{Reaper;1500;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "reaper_cannon_ammo__upgrades", "Name": "Reaper Warheads", "Object_Type": "FIXME", - "Mounts": "{Reaper;100;;;;;;;;;;;;;;1;1}" + "Mounts": "{Reaper;100;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "red-nebula.nebula__neutral", @@ -3861,7 +3969,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "red-nebula__neutral", @@ -3887,7 +3996,8 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1" + "Max_SPECDrive_Functionality": "1", + "shield_facets": "0" }, { "Key": "red_rocky__planets", @@ -3910,7 +4020,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "red_star__planets", @@ -3932,42 +4043,48 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "repulsor_beam__upgrades", "Name": "repulsor_beam", "Object_Type": "FIXME", "Mounts": "{Repulsor;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "rlaan_turret_mini__upgrades", "Name": "rlaan_turret_mini", "Object_Type": "FIXME", "Sub_Units": "{rlaanturretmini;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@While Rlaan ships tend to mount flash-shields capable of shrugging off most small arms fire, they still prefer the option of 'convincing' fighters to stop firing.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@While Rlaan ships tend to mount flash-shields capable of shrugging off most small arms fire, they still prefer the option of 'convincing' fighters to stop firing.\"\n", + "shield_facets": "0" }, { "Key": "rlaan_turret_pd__upgrades", "Name": "rlaan_turret_pd", "Object_Type": "FIXME", "Sub_Units": "{rlaanturretpd;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@The Rlaan are well known for their disdain of missiles, especially those fired at them.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@The Rlaan are well known for their disdain of missiles, especially those fired at them.\"\n", + "shield_facets": "0" }, { "Key": "rlr_laser_beam__upgrades", "Name": "rlr_laser_beam", "Object_Type": "FIXME", "Mounts": "{RLR_LaserBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "rlr_pminus_beam__upgrades", "Name": "rlr_pminus_beam", "Object_Type": "FIXME", "Mounts": "{RLR_PminusBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "rock__planets", @@ -3990,28 +4107,32 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "sanitizer__upgrades", "Name": "sanitizer", "Object_Type": "FIXME", "Mounts": "{Sanitizer;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "small_turret__upgrades", "Name": "small_turret", "Object_Type": "FIXME", "Sub_Units": "{turretsmall;;;;;;;;;;180.0}", - "Textual_Description": "\"@upgrades/turret_light.png@Given the armament commonly placed in such turrets, the small turret has become affectionately known as 'the machine that goes ping'.\"\n" + "Textual_Description": "\"@upgrades/turret_light.png@Given the armament commonly placed in such turrets, the small turret has become affectionately known as 'the machine that goes ping'.\"\n", + "shield_facets": "0" }, { "Key": "stormfire__upgrades", "Name": "stormfire", "Object_Type": "FIXME", "Mounts": "{Stormfire;1000;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "sun__planets", @@ -4033,20 +4154,23 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "swarm_ammo__upgrades", "Name": "swarm_ammo", "Object_Type": "FIXME", "Mounts": "{Swarm;10;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/swarm.png@\"\n" + "Textual_Description": "\"@upgrades/swarm.png@\"\n", + "shield_facets": "0" }, { "Key": "thermopylae__upgrades", "Name": "thermopylae", "Object_Type": "FIXME", - "Mounts": "{Thermopylae;1;;;;;;;;;;;;;;1;1}" + "Mounts": "{Thermopylae;1;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "tkirsa__planets", @@ -4071,14 +4195,16 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Contraband/Rlaan;1.15;.4;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;1.2;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Food/Rlaan;1.9;.1;5;2}{Natural_Products/Life-forms;1.2;.1;;}{Natural_Products/Liquor;.5;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;.9;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Alloys/Rlaan;1.1;.05;2;2}{Refined_Materials/Chemicals;1.05;.2;16;4}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12.5;3.5;;}{Specialty_Goods/Augmentation;1.3;.1;1;1}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Rlaan/Heavy;1;;4;4}{starships/Rlaan/Light;1;;3;3}{starships/Rlaan/Milspec;1.5;.5;1;1}{upgrades/Ammunition/Rlaan;1;.1;500;510}{upgrades/Ammunition/Common;2;.1;100;110}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;14;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;;20;10}{upgrades/Sensors/Common;1;;10;5}{upgrades/Sensors/Rlaan;1;.1;2;1}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;;10;5}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;;10;5}{upgrades/Weapons/Beam_Arrays_Rlaan_Milspec;1;;10;5}{upgrades/Weapons/Mount_Enhancements;1;;10;5}{upgrades/Weapons/Mounted_Guns_Heavy;1;;10;5}{upgrades/Weapons/Mounted_Guns_Light;1;;10;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;10;5}{upgrades/Weapons/Mounted_Guns_Rlaan_Milspec;2;;1;1}{upgrades/Weapons/Turrets/Rlaan;1;.1;1;1}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "torpedo_ammo__upgrades", "Name": "torpedo_ammo", "Object_Type": "FIXME", "Mounts": "{Torpedo;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/emp1.png@\"\n" + "Textual_Description": "\"@upgrades/emp1.png@\"\n", + "shield_facets": "0" }, { "Key": "toxic_disaster__planets", @@ -4101,28 +4227,32 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "tractor_beam__upgrades", "Name": "tractor_beam", "Object_Type": "FIXME", "Mounts": "{Tractor;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "tractor_capability__upgrades", "Name": "tractor_capability", "Object_Type": "FIXME", "Mounts": "{MOUNT_UPGRADE;;;special;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "tractor_heavy__upgrades", "Name": "tractor_heavy", "Object_Type": "FIXME", "Mounts": "{HeavyTractor;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@Animal magnetism is overrated. This is just over-engineered.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@Animal magnetism is overrated. This is just over-engineered.\"\n", + "shield_facets": "0" }, { "Key": "tundra__planets", @@ -4147,21 +4277,24 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Contraband/Rlaan;.94;.15;12;40}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;12;7}{Industrially_Manufactured_Goods/Construction;1.6;.1;17;5}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.6;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;5;2}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Food/Rlaan;1.5;.2;55;25}{Natural_Products/Life-forms;.8;.2;20;12}{Natural_Products/Liquor;.8;.2;30;12}{Natural_Products/Renewable_Resources;.8;.2;35;25}{Raw_Materials/Gases;.7;.2;70;25}{Raw_Materials/Hydrocarbons;.8;.2;28;25}{Raw_Materials/Industrial_Gems;1.2;.2;2;1}{Raw_Materials/Metals;1;.1;12;5}{Raw_Materials/Stone;.9;.1;16;15}{Refined_Materials/Alloys/Rlaan;.7;.1;;}{Refined_Materials/Chemicals;1.05;.3;16;4}{Refined_Materials/Precious_Metals;1;.1;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;.7;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;2;1}{Research;13;2;;}{Specialty_Goods/Augmentation;.87;.1;15;25}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;1.94;.1;15;3}{starships/ISO/Heavy;1;;;5}{starships/ISO/Medium;1;;16;10}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;3;5}{starships/Rlaan/Light;1;;12;14}{upgrades/Ammunition/Common;1;.1;100;180}{upgrades/Ammunition/Uncommon;2;.1;10;80}{upgrades/Ammunition/Rlaan;2;.1;40;50}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Confed;1;.1;-12;17}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "turret_pd__upgrades", "Name": "turret_pd", "Object_Type": "FIXME", "Sub_Units": "{turretpd;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@One is heavily advised to not play 'catch the missile' unless one mounts several of these.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@One is heavily advised to not play 'catch the missile' unless one mounts several of these.\"\n", + "shield_facets": "0" }, { "Key": "turret_pd_long__upgrades", "Name": "turret_pd_long", "Object_Type": "FIXME", "Sub_Units": "{turretpdlong;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@One of the most impressive applications of disruptor technology, this military rated point defense turret is the best of its kind.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@One of the most impressive applications of disruptor technology, this military rated point defense turret is the best of its kind.\"\n", + "shield_facets": "0" }, { "Key": "university__planets", @@ -4186,7 +4319,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.1;3;3}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.1;.1;3;3}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.8;.05;;}{Natural_Products/Liquor;1;.2;;}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;3;3}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1;.1;;}{Refined_Materials/Chemicals;1.1;.1;3;3}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.9;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;10;3;-30;50}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;1.1;.1;3;3}{starships/Andolian/Medium;1;;3;2}{starships/Confed/Light;1;;3;2}{starships/Hunter/Light;1;;3;2}{starships/Merchant/Light;1;;3;2}{starships/Regional_Guard/Light;1;;3;2}{upgrades/Ammunition;16;.9;150;280}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;5;2}{upgrades/Jump_Drives;1;.1;9;4}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;.95;.15;-5;17}{upgrades/Sensors/Common;1;.1;5;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;5;2}", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "white_star__planets", @@ -4208,7 +4342,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000" + "Upgrade_Storage_Volume": "100000000", + "shield_facets": "0" }, { "Key": "wormhole.neutral.stable", @@ -4217,10 +4352,6 @@ "Object_Type": "FIXME", "Unit_Scale": "3000", "Hull": "250000000", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", "Radar_Color": "1", "Radar_Range": "300000000", "Tracking_Cone": "5", @@ -4238,7 +4369,7 @@ "Max_SPECDrive_Functionality": "1", "Sub_Units": "{wormhole.stableswirlsaccessory;0;0;0;;;;;;;180.0}{wormhole.stableswirlsaccessory;0;0;0;;;-1;;;;180.0}", "Spec_Interdiction": "0.5", - "armor": "45000" + "shield_facets": "0" }, { "Key": "wormhole.neutral.unstable", @@ -4248,10 +4379,6 @@ "Unit_Scale": "800", "Mesh": "{cyl_unstable.bfxm;;}", "Hull": "250000000", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", "Radar_Color": "1", "Radar_Range": "300000000", "Tracking_Cone": "5", @@ -4269,7 +4396,7 @@ "Max_SPECDrive_Functionality": "1", "Sub_Units": "{wormhole.unstableswirlsaccessory;0;0;0;;;;;;;180.0}{wormhole.unstableswirlsaccessory;0;0;0;;;-1;;;;180.0}", "Spec_Interdiction": "0.5", - "armor": "45000" + "shield_facets": "0" }, { "Key": "wormhole.stable", @@ -4279,10 +4406,6 @@ "Unit_Scale": "3000", "Mesh": "{cyl_stable.bfxm;;}", "Hull": "250000000", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", "Radar_Color": "1", "Radar_Range": "300000000", "Tracking_Cone": "5", @@ -4300,7 +4423,7 @@ "Max_SPECDrive_Functionality": "1", "Sub_Units": "{wormhole.stableswirlsaccessory;0;0;0;;;;;;;180.0}{wormhole.stableswirlsaccessory;0;0;0;;;-1;;;;180.0}", "Spec_Interdiction": "0.5", - "armor": "45000" + "shield_facets": "0" }, { "Key": "wormhole.stableglownetsaccessory", @@ -4310,10 +4433,6 @@ "Unit_Scale": "6000", "Mesh": "{glow_net_stable.bfxm;;}", "Hull": "250000000", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", "Pitch_Governor": "40", "Radar_Color": "1", "Radar_Range": "300000000", @@ -4331,7 +4450,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Spec_Interdiction": "0.5", - "armor": "45000" + "shield_facets": "0" }, { "Key": "wormhole.stableswirlsaccessory", @@ -4342,10 +4461,6 @@ "Unit_Scale": "5000", "Mesh": "{wormhole_stable.bfxm;;}", "Hull": "250000000", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", "Roll_Governor": "100", "Radar_Color": "1", "Radar_Range": "300000000", @@ -4364,7 +4479,7 @@ "Max_SPECDrive_Functionality": "1", "Num_Animation_Stages": "1", "Spec_Interdiction": "0.5", - "armor": "45000" + "shield_facets": "0" }, { "Key": "wormhole.unstable", @@ -4374,10 +4489,6 @@ "Unit_Scale": "800", "Mesh": "{cyl_unstable.bfxm;;}", "Hull": "250000000", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", "Radar_Color": "1", "Radar_Range": "300000000", "Tracking_Cone": "5", @@ -4395,7 +4506,7 @@ "Max_SPECDrive_Functionality": "1", "Sub_Units": "{wormhole.unstableswirlsaccessory;0;0;0;;;;;;;180.0}{wormhole.unstableswirlsaccessory;0;0;0;;;-1;;;;180.0}", "Spec_Interdiction": "0.5", - "armor": "45000" + "shield_facets": "0" }, { "Key": "wormhole.unstableglownetsaccessory", @@ -4405,10 +4516,6 @@ "Unit_Scale": "800", "Mesh": "{glow_net_unstable.bfxm;;}", "Hull": "250000000", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", "Yaw_Governor": "35", "Pitch_Governor": "70", "Roll_Governor": "50", @@ -4428,7 +4535,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Spec_Interdiction": "0.5", - "armor": "45000" + "shield_facets": "0" }, { "Key": "wormhole.unstableswirlsaccessory", @@ -4438,10 +4545,6 @@ "Unit_Scale": "800", "Mesh": "{wormhole_unstable.bfxm;;}", "Hull": "250000000", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", "Roll_Governor": "300", "Radar_Color": "1", "Radar_Range": "300000000", @@ -4460,7 +4563,7 @@ "Max_SPECDrive_Functionality": "1", "Num_Animation_Stages": "1", "Spec_Interdiction": "0.5", - "armor": "45000" + "shield_facets": "0" }, { "Key": "asteroid0", @@ -4474,8 +4577,6 @@ "Mesh": "{roid2.bfxm;;}", "Mass": "2500", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4504,7 +4605,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4519,8 +4621,6 @@ "Mesh": "{roid2.bfxm;;}", "Mass": "2500", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4549,7 +4649,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4564,8 +4665,6 @@ "Mesh": "{roid2.bfxm;;}", "Mass": "2500", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4594,7 +4693,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4609,8 +4709,6 @@ "Mesh": "{roid2.bfxm;;}", "Mass": "2500", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4639,7 +4737,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4654,8 +4753,6 @@ "Mesh": "{roid2.bfxm;;}", "Mass": "2500", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4684,7 +4781,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4699,8 +4797,6 @@ "Mesh": "{roid2.bfxm;;}", "Mass": "2500", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4729,7 +4825,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4744,8 +4841,6 @@ "Mesh": "{roid2.bfxm;;}", "Mass": "2500", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4774,7 +4869,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4789,8 +4885,6 @@ "Mesh": "{roid2.bfxm;;}", "Mass": "2500", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4819,7 +4913,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4834,8 +4929,6 @@ "Mesh": "{smallroid9.bfxm;;}", "Mass": "250", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4864,7 +4957,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4879,8 +4973,6 @@ "Mesh": "{smallroid8.bfxm;;}", "Mass": "250", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4909,7 +5001,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4924,8 +5017,6 @@ "Mesh": "{smallroid2.bfxm;;}", "Mass": "250", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4954,7 +5045,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -4969,8 +5061,6 @@ "Mesh": "{smallroid3.bfxm;;}", "Mass": "250", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -4999,7 +5089,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -5014,8 +5105,6 @@ "Mesh": "{smallroid4.bfxm;;}", "Mass": "250", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -5044,7 +5133,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -5059,8 +5149,6 @@ "Mesh": "{smallroid5.bfxm;;}", "Mass": "250", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -5089,7 +5177,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -5104,8 +5193,6 @@ "Mesh": "{smallroid6.bfxm;;}", "Mass": "250", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -5134,7 +5221,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -5149,8 +5237,6 @@ "Mesh": "{smallroid7.bfxm;;}", "Mass": "250", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -5179,7 +5265,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -5225,6 +5312,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", + "shield_facets": "0", "accel": "3" }, { @@ -5239,12 +5327,6 @@ "Mass": "50", "Fuel_Capacity": "1", "Hull": "10000", - "Armor_Front_Top_Right": "10", - "Armor_Front_Bottom_Left": "10", - "Armor_Back_Top_Left": "10", - "Armor_Back_Bottom_Right": "10", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Radar_Color": "1", "Radar_Range": "4000", "Tracking_Cone": "5", @@ -5261,7 +5343,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}" + "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}", + "armor": "10.0", + "shield_facets": "0" }, { "Key": "generic_cargo__aera", @@ -5275,12 +5359,6 @@ "Mass": "50", "Fuel_Capacity": "1", "Hull": "10000", - "Armor_Front_Top_Right": "10", - "Armor_Front_Bottom_Left": "10", - "Armor_Back_Top_Left": "10", - "Armor_Back_Bottom_Right": "10", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Radar_Color": "1", "Radar_Range": "4000", "Tracking_Cone": "5", @@ -5297,7 +5375,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}" + "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}", + "armor": "10.0", + "shield_facets": "0" }, { "Key": "generic_cargo__rlaan", @@ -5311,12 +5391,6 @@ "Mass": "50", "Fuel_Capacity": "1", "Hull": "10000", - "Armor_Front_Top_Right": "10", - "Armor_Front_Bottom_Left": "10", - "Armor_Back_Top_Left": "10", - "Armor_Back_Bottom_Right": "10", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Radar_Color": "1", "Radar_Range": "4000", "Tracking_Cone": "5", @@ -5333,7 +5407,9 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}" + "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}", + "armor": "10.0", + "shield_facets": "0" }, { "Key": "iron_ore.cargo", @@ -5347,8 +5423,6 @@ "Mesh": "{smallroid.bfxm;;}", "Mass": "5", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -5375,7 +5449,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -5390,8 +5465,6 @@ "Mesh": "{smallroid.bfxm;;}", "Mass": "5", "Hull": "20", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Maneuver_Yaw": "10000000", @@ -5418,7 +5491,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "armor": "15", + "armor": "30.0", + "shield_facets": "0", "accel": "20000" }, { @@ -5434,14 +5508,6 @@ "Mass": "68", "Fuel_Capacity": "5.67", "Hull": "20", - "Armor_Front_Top_Right": "60", - "Armor_Front_Top_Left": "60", - "Armor_Front_Bottom_Right": "60", - "Armor_Front_Bottom_Left": "60", - "Armor_Back_Top_Right": "10", - "Armor_Back_Top_Left": "10", - "Armor_Back_Bottom_Right": "10", - "Armor_Back_Bottom_Left": "10", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Afterburner_Type": "1", @@ -5478,7 +5544,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-5.90000023841858;2.3;;;;;}", - "Explosion": "explosion_wave.ani" + "Explosion": "explosion_wave.ani", + "armor": "70.0", + "shield_facets": "0" }, { "Key": "cluster", @@ -5523,6 +5591,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", + "shield_facets": "0", "accel": "3" }, { @@ -5575,7 +5644,8 @@ "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-5.90000023841858;2.3;;;;;}", "Explosion": "explosion_wave.ani", - "armor": "50", + "armor": "100.0", + "shield_facets": "0", "accel": "109752" }, { @@ -5620,6 +5690,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", + "shield_facets": "0", "accel": "20" }, { @@ -5635,14 +5706,6 @@ "Mass": "2.5", "Fuel_Capacity": "0.21", "Hull": "5", - "Armor_Front_Top_Right": "50", - "Armor_Front_Top_Left": "50", - "Armor_Front_Bottom_Right": "50", - "Armor_Front_Bottom_Left": "50", - "Armor_Back_Top_Right": "5", - "Armor_Back_Top_Left": "5", - "Armor_Back_Bottom_Right": "5", - "Armor_Back_Bottom_Left": "5", "Primary_Capacitor": "100", "Reactor_Recharge": "10", "Afterburner_Type": "1", @@ -5675,6 +5738,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2.30000023841858;.8;;;;;}", + "armor": "55.0", + "shield_facets": "0", "accel": "200" }, { @@ -5689,8 +5754,6 @@ "Mass": "100", "Fuel_Capacity": "0", "Hull": "100", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Radar_Range": "10000", "Tracking_Cone": "5", "Max_Cone": "180", @@ -5705,7 +5768,8 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Spec_Interdiction": "0.75" + "Spec_Interdiction": "0.75", + "shield_facets": "0" }, { "Key": "asteroidsPriv__neutral", @@ -5744,7 +5808,8 @@ "Sub_Units": "{asteroid5;-219.188646699;434.550621455;-743.955856173;0;0;-1;1;0;0;180.0}{asteroid7;-317.04732344;-665.817091452;106.114107672;0;-1;0;0;0;-1;180.0}{asteroid4;-216.006100393;549.391759566;-389.285933031;0;-1;0;1;0;0;180.0}{asteroid6;505.667348311;677.683269184;186.214947799;0;0;1;-1;0;0;180.0}{asteroid0;312.434593174;-665.479084605;112.365007701;0;1;0;1;0;0;180.0}{asteroid6;-694.996516604;-82.452111981;-82.759001982;0;1;0;0;0;-1;180.0}{asteroid4;384.297524866;-422.704743284;-206.825766599;0;0;1;-1;0;0;180.0}{asteroid7;732.395900579;-462.292452737;-201.405196702;0;1;0;0;0;-1;180.0}{asteroid2;537.553880644;363.500140834;-426.065336974;0;0;-1;-1;0;0;180.0}{asteroid6;384.109440208;-207.871004029;202.381405574;0;0;1;0;1;0;180.0}{asteroid5;517.536645717;-335.966536222;69.2004056939;0;0;-1;0;-1;0;180.0}{asteroid7;-389.540204265;614.32047476;262.237155788;0;1;0;-1;0;0;180.0}{asteroid0;-560.124647914;-339.407295989;-519.243245984;1;0;0;0;0;-1;180.0}{asteroid1;-125.730750459;297.034235172;257.278834884;0;0;1;-1;0;0;180.0}{asteroid6;450.121421856;41.1136596505;-180.11431494;0;1;0;0;0;-1;180.0}{asteroid7;240.823151333;852.929500262;48.6730836707;1;0;0;0;1;0;180.0}{asteroid5;-241.184773653;837.206416497;-14.0405754957;0;0;1;1;0;0;180.0}{asteroid3;-33.3351963603;179.500204071;681.842409463;0;-1;0;0;0;-1;180.0}{asteroid5;-57.1867355467;348.640916221;478.307464407;0;0;1;-1;0;0;180.0}{asteroid5;511.690502515;-10.4195029382;700.289790193;0;0;1;1;0;0;180.0}{asteroid5;-374.84246787;-75.5443150581;810.421168381;0;0;-1;-1;0;0;180.0}{asteroid6;539.417891041;484.741731384;-484.399033473;-1;0;0;0;-1;0;180.0}{asteroid6;117.152049043;200.984199701;-402.806754525;-1;0;0;0;-1;0;180.0}{asteroid5;236.030462175;-408.540562855;-232.487748628;0;0;1;0;-1;0;180.0}{asteroid6;-509.34133356;212.07600682;-245.541097626;0;0;-1;-1;0;0;180.0}{asteroid1;833.856765996;-35.4934690168;-155.557717756;1;0;0;0;1;0;180.0}{asteroid4;281.122989448;620.437712609;-584.691422828;0;1;0;1;0;0;180.0}{asteroid3;26.6576377945;-254.138653747;712.489404754;0;0;-1;1;0;0;180.0}{asteroid1;-582.902014167;-232.044666878;67.9694240541;0;0;1;0;-1;0;180.0}{asteroid5;-539.756128145;49.9493416385;456.057503593;-1;0;0;0;0;1;180.0}{asteroid6;633.392871323;517.557113355;-110.543969925;0;0;1;-1;0;0;180.0}{asteroid2;-379.303017657;-177.814852987;-115.595839667;1;0;0;0;0;-1;180.0}{asteroid1;383.916348467;477.488449086;-354.322206344;-1;0;0;0;-1;0;180.0}{asteroid0;213.876757316;110.096864419;-648.398194501;0;0;1;1;0;0;180.0}{asteroid4;-281.590426893;816.498350357;-208.667008341;0;0;1;-1;0;0;180.0}{asteroid2;518.058204122;-156.5521677;-714.697231762;0;1;0;0;0;-1;180.0}{asteroid2;423.49810243;237.062632874;62.7776035259;0;1;0;0;0;1;180.0}{asteroid2;123.371115773;190.923348528;-269.980756544;0;0;-1;-1;0;0;180.0}{asteroid0;-443.401031736;-370.08366446;621.342081113;1;0;0;0;-1;0;180.0}{asteroid2;-277.323942571;-447.927447542;108.090514652;0;0;1;-1;0;0;180.0}", "Upgrade_Storage_Volume": "16", "Num_Chunks": "0", - "armor": "500", + "armor": "1000.0", + "shield_facets": "0", "accel": "20000" }, { @@ -5760,8 +5825,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "1", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", "Primary_Capacitor": "20000", "Reactor_Recharge": "1", "Jump_Drive_Present": "1", @@ -5796,6 +5859,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{Photon_MKIII;100;;medium autotracking;0;0;0;;;;;;;;;1;1}", + "shield_facets": "0", "accel": "5" }, { @@ -5842,6 +5906,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-4.1;1.2;;;;;}", + "shield_facets": "0", "accel": "87" }, { @@ -5887,6 +5952,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", + "shield_facets": "0", "accel": "2" }, { @@ -5933,6 +5999,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", + "shield_facets": "0", "accel": "311" }, { @@ -5975,6 +6042,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2.00000023841858;.6;;;;;}", + "shield_facets": "0", "accel": "44" }, { @@ -6021,6 +6089,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", + "shield_facets": "0", "accel": "342" }, { @@ -6066,6 +6135,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", + "shield_facets": "0", "accel": "5" }, { @@ -6080,8 +6150,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5500", "Reactor_Recharge": "1600", @@ -6106,8 +6174,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{RLR_laserbeam;;;capship-light autotracking;0;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "aeraturretpd", @@ -6121,8 +6190,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5500", "Reactor_Recharge": "160", @@ -6147,8 +6214,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{CS_UVRF_Laser;;;capship-light autotracking;0;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "franklinpd", @@ -6161,8 +6229,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "10", - "Shield_Front_Top_Right": "10", - "Shield_Back_Top_Left": "10", "Shield_Recharge": "4.33", "Primary_Capacitor": "715", "Reactor_Recharge": "200", @@ -6187,6 +6253,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{LR_Disruptorbeam;;;capship-light autotracking;0;0;1;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", + "shield": "10.0", "shield_facets": "2" }, { @@ -6202,8 +6269,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "10", - "Shield_Front_Top_Right": "50", - "Shield_Back_Top_Left": "50", "Shield_Recharge": "50", "Primary_Capacitor": "200", "Reactor_Recharge": "100", @@ -6237,8 +6302,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{rlaanturretmini;.01;0;0;0;1;0;1;0;0;180.0}{rlaanturretmini;-.01;0;0;0;-1;0;-1;0;0;180.0}", + "armor": "10.0", + "shield": "50.0", "shield_facets": "2", - "armor": "5", "accel": "150" }, { @@ -6253,8 +6319,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "30", "Primary_Capacitor": "750", "Reactor_Recharge": "250", @@ -6277,8 +6341,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{KtekBeam;;;light medium autotracking;0;0;2.25;;;0;0;1;0;-1;0;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "rlaanturretminigun", @@ -6292,8 +6357,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "750", "Reactor_Recharge": "250", @@ -6316,8 +6379,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{KtekBeam;;;light medium autotracking;0;2;2.25;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "rlaanturretpd", @@ -6331,8 +6395,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "30", "Primary_Capacitor": "750", "Reactor_Recharge": "250", @@ -6355,8 +6417,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{rlaanturretpdgun;;0;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "rlaanturretpdgun", @@ -6370,8 +6433,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "750", "Reactor_Recharge": "250", @@ -6394,8 +6455,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{KtekBeampd;;;light medium autotracking;0;2;2.25;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret_capship_pd_gun", @@ -6409,8 +6471,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5500", "Reactor_Recharge": "150", @@ -6435,8 +6495,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{HephaestusPointDefenseCannon;;;special Capship-Light Capship-Medium Capship-Heavy;0;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretflak", @@ -6449,8 +6510,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "150", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "300", "Shield_Recharge": "11.33", "Primary_Capacitor": "250", "Reactor_Recharge": "125", @@ -6475,8 +6534,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretflakgun;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "100" + "armor": "200.0", + "shield": "300.0", + "shield_facets": "2" }, { "Key": "turretflak_120", @@ -6489,8 +6549,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "150", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "300", "Shield_Recharge": "11.33", "Primary_Capacitor": "250", "Reactor_Recharge": "125", @@ -6515,8 +6573,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretflakgun;;1;;0;0.866;0.5;0;0;-1;60.0}", - "shield_facets": "2", - "armor": "100" + "armor": "200.0", + "shield": "300.0", + "shield_facets": "2" }, { "Key": "turretflak_90", @@ -6529,8 +6588,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "150", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "300", "Shield_Recharge": "11.33", "Primary_Capacitor": "250", "Reactor_Recharge": "125", @@ -6555,8 +6612,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretflakgun;;1;;0;0.707;0.707;0;0;-1;45.0}", - "shield_facets": "2", - "armor": "100" + "armor": "200.0", + "shield": "300.0", + "shield_facets": "2" }, { "Key": "turretflakgun", @@ -6569,8 +6627,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "150", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "300", "Shield_Recharge": "14.33", "Primary_Capacitor": "2250", "Reactor_Recharge": "125", @@ -6595,8 +6651,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{Flak;;;capship-light autotracking;-1;-0.325000;10.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{Flak;;;capship-light autotracking;1;-0.325000;10.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "100" + "armor": "200.0", + "shield": "300.0", + "shield_facets": "2" }, { "Key": "turretpd", @@ -6609,8 +6666,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1500", "Reactor_Recharge": "70", @@ -6635,8 +6690,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretpdgun;0;1;0;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretpdgun", @@ -6649,8 +6705,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1430", "Reactor_Recharge": "70", @@ -6675,8 +6729,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{HephaestusPointDefenseCannon;;;capship-light autotracking;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{HephaestusPointDefenseCannon;;;capship-light autotracking;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretpdlong", @@ -6689,8 +6744,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1500", "Reactor_Recharge": "70", @@ -6715,8 +6768,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretpdlonggun;0;1;0;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretpdlonggun", @@ -6729,8 +6783,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1430", "Reactor_Recharge": "400", @@ -6755,8 +6807,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{LR_Disruptorbeam;;;capship-light autotracking;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{LR_Disruptorbeam;;;capship-light autotracking;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret", @@ -6769,8 +6822,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "200", "Reactor_Recharge": "70", @@ -6795,8 +6846,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretgun;0;1;0;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret_120", @@ -6809,8 +6861,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "200", "Reactor_Recharge": "70", @@ -6835,8 +6885,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretgun;;1;;0;0.866;0.5;0;0;-1;60.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret_90", @@ -6849,8 +6900,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "200", "Reactor_Recharge": "70", @@ -6875,8 +6924,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretgun;;1;;0;0.707;0.707;0;0;-1;45.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret_medium", @@ -6890,8 +6940,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "60", - "Shield_Back_Top_Left": "60", "Shield_Recharge": "4.33", "Primary_Capacitor": "100", "Reactor_Recharge": "10", @@ -6916,8 +6964,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turret_medium_gun;;.1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "50" + "armor": "100.0", + "shield": "60.0", + "shield_facets": "2" }, { "Key": "turret_medium_gun", @@ -6931,8 +6980,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "50", "Reactor_Recharge": "30", @@ -6957,8 +7004,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{disruptor;;;Light Medium Heavy;.1875000;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{disruptor;;;Light Medium Heavy;-.1875000;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}{;;;special;0;-.4125000;.9000000;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretbeam", @@ -6971,8 +7019,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1500", "Reactor_Recharge": "70", @@ -6997,8 +7043,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretbeamgun;0;1;0;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretbeamgun", @@ -7011,8 +7058,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1430", "Reactor_Recharge": "70", @@ -7037,8 +7082,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{ParticleBeam;;;capship-light;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{ParticleBeam;;;capship-light;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretgun", @@ -7051,8 +7097,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "90", - "Shield_Front_Top_Right": "100", - "Shield_Back_Top_Left": "100", "Shield_Recharge": "6.33", "Primary_Capacitor": "5000", "Reactor_Recharge": "185", @@ -7077,8 +7121,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{LR_disruptor;;;heavy;1.875000;-0.125000;9.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{LR_disruptor;;;heavy;-1.875000;-0.125000;9.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "100.0", + "shield_facets": "2" }, { "Key": "turretgunsmall", @@ -7091,8 +7136,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "50", "Reactor_Recharge": "20", @@ -7117,8 +7160,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{Laser;;;Light Medium Heavy;.1875000;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{Laser;;;Light Medium Heavy;-.1875000;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretlauncher", @@ -7131,8 +7175,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -7155,8 +7197,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretlaunchergun;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turretlaunchergun", @@ -7169,8 +7212,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -7195,8 +7236,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{CapIFF;30;;light-capship-missle;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turretlauncherswarm", @@ -7209,8 +7251,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -7235,8 +7275,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretswarm;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turretsmall", @@ -7249,8 +7290,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "100", "Reactor_Recharge": "10", @@ -7275,8 +7314,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretgunsmall;;.1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretswarm", @@ -7289,8 +7329,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -7315,8 +7353,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{Hail;120;;special-missile;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turretLR_PminusBeam", @@ -7330,8 +7369,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5000", "Reactor_Recharge": "1000", @@ -7356,8 +7393,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretbeampgun;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret_capship_dreadnaughtblend", @@ -7395,9 +7433,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{kineticmissile;10;;heavy-capship-missile;0;0;0;;;;;;;;;1;1}", - "shield_facets": "4", - "armor": "200", - "shield_strength": "600" + "armor": "400.0", + "shield": "600.0", + "shield_facets": "4" }, { "Key": "turretbeampgun", @@ -7411,8 +7449,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "20000", "Reactor_Recharge": "2000", @@ -7437,8 +7473,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{RLR_PminusBeam;;;capship-massive;3.175000;-0.325000;18.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{RLR_PminusBeam;;;capship-massive;-3.175000;-0.325000;18.000000;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretcapmissile", @@ -7451,8 +7488,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -7477,8 +7512,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{CapshipMissile;6;;;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turretcapmissiledeep", @@ -7492,8 +7528,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -7518,8 +7552,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{CapshipMissile;60;;;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "400" + "armor": "800.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turretlaunchercapmissile", @@ -7532,8 +7567,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -7558,8 +7591,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretcapmissile;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "aeralaserturret", @@ -7573,8 +7607,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5500", "Reactor_Recharge": "160", @@ -7599,8 +7631,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{capship_photon;;;Capship-Light Capship-Medium Capship-Heavy;0;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "HiddenAsteroid", @@ -7627,7 +7660,8 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Dock": "{;-150;107;0.594800;300.000000;0}", - "armor": "4000" + "armor": "8000.0", + "shield_facets": "0" }, { "Key": "aeraturretLR_heavy", @@ -7640,8 +7674,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "15000", "Reactor_Recharge": "7000", @@ -7666,8 +7698,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{aeraturretLR_heavygun;0;1;0;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "aeraturretLR_heavygun", @@ -7680,8 +7713,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "14000", "Reactor_Recharge": "1400", @@ -7706,8 +7737,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{Whiplash;;;capship-massive;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{Whiplash;;;capship-massive;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "aeraturretadvtorp", @@ -7721,8 +7753,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5500", "Reactor_Recharge": "150", @@ -7747,8 +7777,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{advtorpedo;10;;Heavy-missile;0.1;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{advtorpedo;10;;Heavy-missile;-0.1;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "300" + "armor": "600.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "aeraturretcapshipgun", @@ -7762,8 +7793,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5500", "Reactor_Recharge": "160", @@ -7788,8 +7817,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{capship_photon;;;Capship-Light Capship-Medium Capship-Heavy;0;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "rlaanturret", @@ -7803,8 +7833,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "30", "Primary_Capacitor": "750", "Reactor_Recharge": "250", @@ -7827,8 +7855,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{rlaanturretgun;;0;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "rlaanturretgun", @@ -7842,8 +7871,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "750", "Reactor_Recharge": "250", @@ -7867,8 +7894,9 @@ "Max_SPECDrive_Functionality": "1", "Mounts": "{KtekCapBeam;;;capship-light capship-medium capship-heavy;0;2;2.25;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", "Upgrade_Storage_Volume": "16", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret_capship_dreadnaughtblend_guns", @@ -7882,8 +7910,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "40000", "Reactor_Recharge": "800", @@ -7908,8 +7934,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{hephaestuspointdefensecannon;;;special;-0.200000;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{hephaestuspointdefensecannon;;;special;-0.200000;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{hephaestuspointdefensecannon;;;special;-0.200000;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{CapshipDisruptor;;;capship-heavy;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{CapshipMissile;10;;heavy-capship-missile;0.200000;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{LR_Beam;;;capship-medium autotracking;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{LR_Beam;;;capship-medium autotracking;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turret_capship_gun", @@ -7923,8 +7950,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5500", "Reactor_Recharge": "150", @@ -7949,8 +7974,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{CapshipDisruptor;;;Capship-Light Capship-Medium Capship-Heavy;0;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{;;;special;0;-.4125000;.9000000;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret_capship_layered_defense", @@ -7963,8 +7989,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -7988,8 +8012,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turret_capship_layered_defense_guns;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turret_capship_layered_defense_guns", @@ -8002,8 +8027,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "20000", "Reactor_Recharge": "500", @@ -8028,8 +8051,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{hephaestuspointdefensecannon;;;special;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{capshipdisruptor;;;capship-heavy;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{LR_ParticleBeam;;;capship-medium autotracking;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turret_capship_light_particlebeamgun", @@ -8043,8 +8067,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "100", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "5500", "Reactor_Recharge": "150", @@ -8069,8 +8091,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{RelativisticParticleBeam;;;Capship-Light autotracking;0;-.0125000;.9000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turret_capship_torplauncher", @@ -8083,8 +8106,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -8109,8 +8130,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turret_capship_torplauncher_gun;;1;;0;1;0;0;0;-1;90.0}{turret_capship_pd_gun;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turret_capship_torplauncher_gun", @@ -8123,8 +8145,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "110", - "Shield_Front_Top_Right": "130", - "Shield_Back_Top_Left": "130", "Shield_Recharge": "9.33", "Primary_Capacitor": "10", "Reactor_Recharge": "10", @@ -8149,8 +8169,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{torpedo;15;;;0;-0.225000;22.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}", - "shield_facets": "2", - "armor": "40" + "armor": "80.0", + "shield": "130.0", + "shield_facets": "2" }, { "Key": "turretbeamheavy", @@ -8164,8 +8185,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "2000", "Reactor_Recharge": "100", @@ -8190,8 +8209,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretbeamheavygun;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretbeamheavygun", @@ -8205,8 +8225,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "2000", "Reactor_Recharge": "100", @@ -8231,8 +8249,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{LR_BeamHvy;;;capship-light capship-medium;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{LR_BeamHvy;;;capship-light capship-medium;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretgunheavy", @@ -8245,8 +8264,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "90", - "Shield_Front_Top_Right": "100", - "Shield_Back_Top_Left": "100", "Shield_Recharge": "6.33", "Primary_Capacitor": "1000", "Reactor_Recharge": "85", @@ -8271,8 +8288,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{anihilator;;;light-capship;2.175000;-0.225000;12.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{anihilator;;;light-capship;-2.175000;-0.225000;12.000000;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "30" + "armor": "60.0", + "shield": "100.0", + "shield_facets": "2" }, { "Key": "turretheavy", @@ -8285,8 +8303,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "50", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1000", "Reactor_Recharge": "85", @@ -8311,8 +8327,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretgunheavy;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "15" + "armor": "30.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretmain", @@ -8326,8 +8343,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "150", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "300", "Shield_Recharge": "11.33", "Primary_Capacitor": "150", "Reactor_Recharge": "75", @@ -8352,8 +8367,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretmaingun;0;1;0;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "100" + "armor": "200.0", + "shield": "300.0", + "shield_facets": "2" }, { "Key": "turretmaingun", @@ -8367,8 +8383,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "150", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "300", "Shield_Recharge": "14.33", "Primary_Capacitor": "600", "Reactor_Recharge": "300", @@ -8393,8 +8407,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{Capshipdisruptor;;;capship-light capship-medium;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{Capshipdisruptor;;;capship-light capship-medium;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "100" + "armor": "200.0", + "shield": "300.0", + "shield_facets": "2" }, { "Key": "turretmaingunheavy", @@ -8407,8 +8422,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "200", - "Shield_Front_Top_Right": "350", - "Shield_Back_Top_Left": "350", "Shield_Recharge": "18.33", "Primary_Capacitor": "300", "Reactor_Recharge": "100", @@ -8433,8 +8446,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{Vaporisator;;;capship-heavy;8.875000;-0.825000;85.000000;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{Vaporisator;;;capship-heavy;-8.875000;-0.825000;85.000000;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "150" + "armor": "300.0", + "shield": "350.0", + "shield_facets": "2" }, { "Key": "turretmainheavy", @@ -8447,8 +8461,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "200", - "Shield_Front_Top_Right": "350", - "Shield_Back_Top_Left": "350", "Shield_Recharge": "16.33", "Primary_Capacitor": "300", "Reactor_Recharge": "300", @@ -8473,8 +8485,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretmaingunheavy;;1;;0;1;0;0;0;-1;90.0}", - "shield_facets": "2", - "armor": "150" + "armor": "300.0", + "shield": "350.0", + "shield_facets": "2" }, { "Key": "turretpunisher", @@ -8488,8 +8501,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "500", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1500", "Reactor_Recharge": "70", @@ -8514,8 +8525,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretpunishergun;0;1;0;0;0.7071067;0.7071067;0;0;1;45.0000065784}", - "shield_facets": "2", - "armor": "150" + "armor": "300.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretpunishergun", @@ -8529,8 +8541,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "500", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "30000", "Reactor_Recharge": "3000", @@ -8555,8 +8565,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{discontinuity;;;capship-massive autotracking;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{discontinuity;;;capship-massive autotracking;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "150" + "armor": "300.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretxaser", @@ -8570,8 +8581,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "500", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "1500", "Reactor_Recharge": "70", @@ -8596,8 +8605,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{turretxasergun;0;1;0;0;1;0;0;0;-1;75}", - "shield_facets": "2", - "armor": "150" + "armor": "300.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "turretxasergun", @@ -8611,8 +8621,6 @@ "Mass": "1", "Fuel_Capacity": "0.08", "Hull": "500", - "Shield_Front_Top_Right": "30", - "Shield_Back_Top_Left": "30", "Shield_Recharge": "4.33", "Primary_Capacitor": "30000", "Reactor_Recharge": "3000", @@ -8637,8 +8645,9 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{CS_XR_Laser;;;capship-massive autotracking;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{CS_XR_Laser;;;capship-massive autotracking;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}{CS_XR_Laser;;;capship-massive autotracking;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{CS_XR_Laser;;;capship-massive autotracking;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}{CS_XR_Laser;;;capship-massive autotracking;2;.25;4.5;;;0.000000;0.000000;1.000000;0.022849;-0.999739;0.000000;1;1}{CS_XR_Laser;;;capship-massive autotracking;-2;.25;4.5;;;0.000000;0.000000;1.000000;0.032845;-0.999460;0.000000;1;1}", - "shield_facets": "2", - "armor": "150" + "armor": "300.0", + "shield": "30.0", + "shield_facets": "2" }, { "Key": "Agricultural_Station", @@ -8653,8 +8662,6 @@ "Mass": "1098842650", "Fuel_Capacity": "116570220.8", "Hull": "8750000", - "Shield_Front_Top_Right": "4000", - "Shield_Back_Top_Left": "4000", "Shield_Recharge": "100", "Primary_Capacitor": "18000", "Reactor_Recharge": "470", @@ -8679,8 +8686,9 @@ "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;.6;.2;25;12}{Natural_Products/Life-forms;.7;.1;;}{Natural_Products/Liquor;.9;.1;30;45}{Natural_Products/Renewable_Resources;.9;.1;50;49}{Natural_Products/Food;.4;.1;5000;4123}{upgrades/Ammunition/Common;2.5;.1;4500;5500}{upgrades/Jump_Drives;2;.1;24;12}{upgrades/Reactors/Standard;2;.1;45;22}{upgrades/Sensors/Common;2;.1;20;10}{upgrades/Shield_Systems/Standard_Dual_Shields;2;.1;40;15}{upgrades/Shield_Systems/Standard_Quad_Shields;2;.1;35;12}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "2", - "armor": "13000" + "armor": "26000.0", + "shield": "4000.0", + "shield_facets": "2" }, { "Key": "Agricultural_Station__aera", @@ -8695,8 +8703,6 @@ "Mass": "1098842650", "Fuel_Capacity": "116570220.8", "Hull": "8750000", - "Shield_Front_Top_Right": "4000", - "Shield_Back_Top_Left": "4000", "Shield_Recharge": "100", "Primary_Capacitor": "18000", "Reactor_Recharge": "470", @@ -8721,8 +8727,9 @@ "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;.6;.2;25;12}{Natural_Products/Life-forms;.7;.1;;}{Natural_Products/Liquor;.9;.1;30;45}{Natural_Products/Renewable_Resources;.9;.1;50;49}{Natural_Products/Food;.4;.1;5000;4123}{upgrades/Ammunition/Common;2.5;.1;4500;5500}{upgrades/Jump_Drives;2;.1;24;12}{upgrades/Reactors/Standard;2;.1;45;22}{upgrades/Sensors/Common;2;.1;20;10}{upgrades/Shield_Systems/Standard_Dual_Shields;2;.1;40;15}{upgrades/Shield_Systems/Standard_Quad_Shields;2;.1;35;12}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "2", - "armor": "13000" + "armor": "26000.0", + "shield": "4000.0", + "shield_facets": "2" }, { "Key": "Agricultural_Station__rlaan", @@ -8737,8 +8744,6 @@ "Mass": "1098842650", "Fuel_Capacity": "116570220.8", "Hull": "8750000", - "Shield_Front_Top_Right": "4000", - "Shield_Back_Top_Left": "4000", "Shield_Recharge": "100", "Primary_Capacitor": "18000", "Reactor_Recharge": "470", @@ -8763,8 +8768,9 @@ "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;.6;.2;25;12}{Natural_Products/Life-forms;.7;.1;;}{Natural_Products/Liquor;.9;.1;30;45}{Natural_Products/Renewable_Resources;.9;.1;50;49}{Natural_Products/Food;.4;.1;5000;4123}{upgrades/Ammunition/Common;2.5;.1;4500;5500}{upgrades/Jump_Drives;2;.1;24;12}{upgrades/Reactors/Standard;2;.1;45;22}{upgrades/Sensors/Common;2;.1;20;10}{upgrades/Shield_Systems/Standard_Dual_Shields;2;.1;40;15}{upgrades/Shield_Systems/Standard_Quad_Shields;2;.1;35;12}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "2", - "armor": "13000" + "armor": "26000.0", + "shield": "4000.0", + "shield_facets": "2" }, { "Key": "AsteroidFighterBase", @@ -8804,9 +8810,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;12;7}{Raw_Materials/Metals;.65;.2;24;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;15;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Confed/Milspec;1;;12;5}{starships/Purist/Milspec;1;;12;5}{upgrades/Ammunition/Common;1;.1;170;200}{upgrades/Ammunition/Confed;1;.1;170;200}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;12;5}{upgrades/Jump_Drives;1;.1;16;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Sensors/Confed;1;.1;12;5}{upgrades/Sensors/Highborn;.9;.3;5;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;2;1}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;12;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "6500" + "armor": "30000.0", + "shield": "6500.0", + "shield_facets": "4" }, { "Key": "AsteroidFighterBase__aera", @@ -8852,9 +8858,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;;4}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.2;;1}{Industrially_Manufactured_Goods/Electronics;1.1;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;;1}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;7}{Natural_Products/Food/Aera;1.9;.2;;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;.9;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;1.1;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys/Aera;1.05;.1;;2}{Refined_Materials/Chemicals;.98;.3;;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Refined_Materials/Synthetics;1;.3;;1}{Research;12;2;;1}{Specialty_Goods/Entertainment;1.325;.575;;2}{Specialty_Goods/Medical;1.1;.1;;3}{starships/Aera/Heavy;1;;;5}{starships/Aera/Light;1;;;17}{starships/Aera/Milspec;1;;;2}{starships/Hunter/Medium;1;;;5}{upgrades/Ammunition/Aera;1;.1;1000;1200}{upgrades/Armor;1;.1;10;12}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;;7}{upgrades/Experimental;1.4;.2;;}{upgrades/Jump_Drives;1;.1;4;7}{upgrades/Miscellaneous/Aera_Milspec;1;.1;;1}{upgrades/Overdrive;1;.1;3;12}{upgrades/Reactors/Standard;1;.1;10;22}{upgrades/Repair_Systems;1.1;.2;;7}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;10}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;8}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Aera_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets/Aera;1;.1;1;1}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "3000", - "shield_strength": "8000" + "armor": "6000.0", + "shield": "8000.0", + "shield_facets": "4" }, { "Key": "AsteroidFighterBase__rlaan", @@ -8894,9 +8900,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;12;7}{Raw_Materials/Metals;.65;.2;24;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;15;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Confed/Milspec;1;;12;5}{starships/Purist/Milspec;1;;12;5}{upgrades/Ammunition/Common;1;.1;170;200}{upgrades/Ammunition/Confed;1;.1;170;200}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;12;5}{upgrades/Jump_Drives;1;.1;16;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Sensors/Rlaan;1;.1;12;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;2;1}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;12;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "8000" + "armor": "30000.0", + "shield": "8000.0", + "shield_facets": "4" }, { "Key": "Asteroid_Refinery", @@ -8935,9 +8941,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Asteroid_Refinery__uln", @@ -8976,9 +8982,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Asteroid_Shipyard", @@ -9017,9 +9023,9 @@ "Cargo_Import": "{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Raw_Materials/Metals;.65;.2;42;15}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Commerce_Center", @@ -9034,8 +9040,6 @@ "Mass": "1398842650", "Fuel_Capacity": "116570220.8", "Hull": "21750000", - "Shield_Front_Top_Right": "4000", - "Shield_Back_Top_Left": "4000", "Shield_Recharge": "100", "Primary_Capacitor": "18000", "Reactor_Recharge": "470", @@ -9061,8 +9065,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;.8;.2;25;12}{Industrially_Manufactured_Goods/Agricultural;.8;.2;25;12}{Industrially_Manufactured_Goods/Construction;.8;.2;25;12}{Industrially_Manufactured_Goods/Electronics;.8;.2;25;12}{Industrially_Manufactured_Goods/Manufacturing;.8;.2;24;6}{Industrially_Manufactured_Goods/Mining;.8;.2;25;12}{Industrially_Manufactured_Goods/Power_Utilities;1;.1;8;6}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.1;.1;3;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;5;2}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Chemicals;1;.2;8;2}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Research;10;2;;}{Specialty_Goods/Entertainment;.8;.2;25;12}{Specialty_Goods/Medical;1.2;.1;15;3}{starships/Andolian/Medium;1;;12;5}{starships/Confed/Heavy;1;;6;3}{starships/Confed/Light;1;;6;3}{starships/Confed/Medium;1;;12;5}{starships/Highborn/Heavy;1;;6;3}{starships/Hunter/Heavy;1;;6;3}{starships/Hunter/Light;1;;6;3}{starships/Hunter/Medium;1;;12;5}{starships/Merchant/Heavy;1;;6;3}{starships/Merchant/Light;1;;6;3}{starships/Merchant/Medium;1;;12;5}{starships/Regional_Guard/Heavy;1;;6;3}{starships/Regional_Guard/Light;1;;6;3}{starships/Regional_Guard/Medium;1;;12;5}{upgrades/Ammunition/Common;1.5;.1;4500;5500}{upgrades/Ammunition/Uncommon;2.5;.4;500;5500}{upgrades/Ammunition/Confed;2.5;.2;50;60}{upgrades/Armor;1;.1;30;15}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;10;5}{upgrades/Jump_Drives;1;.1;24;12}{upgrades/Overdrive;1;.1;38;19}{upgrades/Reactors/Standard;1;.1;45;22}{upgrades/Repair_Systems;1;.1;15;7}{upgrades/Sensors/Confed;1;.1;5;2}{upgrades/Sensors/Common;1;.1;20;10}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;40;15}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;35;12}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;2;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;5;2}{upgrades/Weapons/Mount_Enhancements;1;.1;10;5}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;10;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "2", - "armor": "13000" + "armor": "26000.0", + "shield": "4000.0", + "shield_facets": "2" }, { "Key": "Commerce_Center__rlaan", @@ -9101,9 +9106,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Commerce_Center__uln", @@ -9142,9 +9147,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Diplomatic_Center", @@ -9184,9 +9189,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;.8;.2;25;12}{Industrially_Manufactured_Goods/Agricultural;.8;.2;25;12}{Industrially_Manufactured_Goods/Construction;.8;.2;25;12}{Industrially_Manufactured_Goods/Electronics;.8;.2;25;12}{Industrially_Manufactured_Goods/Manufacturing;.8;.2;24;6}{Industrially_Manufactured_Goods/Mining;.8;.2;25;12}{Industrially_Manufactured_Goods/Power_Utilities;1;.1;8;6}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.1;.1;3;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;5;2}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Chemicals;1;.2;8;2}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Research;10;2;;}{Specialty_Goods/Entertainment;.8;.2;25;12}{Specialty_Goods/Medical;1.2;.1;15;3}{starships/Andolian/Medium;1;;12;5}{starships/Confed/Heavy;1;;6;3}{starships/Confed/Light;1;;6;3}{starships/Confed/Medium;1;;12;5}{starships/Highborn/Heavy;1;;6;3}{starships/Hunter/Heavy;1;;6;3}{starships/Hunter/Light;1;;6;3}{starships/Hunter/Medium;1;;12;5}{starships/Merchant/Heavy;1;;6;3}{starships/Merchant/Light;1;;6;3}{starships/Merchant/Medium;1;;12;5}{starships/Regional_Guard/Heavy;1;;6;3}{starships/Regional_Guard/Light;1;;6;3}{starships/Regional_Guard/Medium;1;;12;5}{upgrades/Ammunition/Common;1.5;.1;4500;5500}{upgrades/Ammunition/Uncommon;2.5;.4;500;5500}{upgrades/Ammunition/Confed;2.5;.2;50;60}{upgrades/Armor;1;.1;30;15}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;10;5}{upgrades/Jump_Drives;1;.1;24;12}{upgrades/Overdrive;1;.1;38;19}{upgrades/Reactors/Standard;1;.1;45;22}{upgrades/Repair_Systems;1;.1;15;7}{upgrades/Sensors/Confed;1;.1;5;2}{upgrades/Sensors/Common;1;.1;20;10}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;40;15}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;35;12}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;2;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;5;2}{upgrades/Weapons/Mount_Enhancements;1;.1;10;5}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;10;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "13000", - "shield_strength": "4000" + "armor": "26000.0", + "shield": "4000.0", + "shield_facets": "4" }, { "Key": "Factory", @@ -9226,9 +9231,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.8;.3;38;12}{Consumer_and_Commercial_Goods/Electronics;.8;.3;25;7}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.2;2;2}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.2;25;8}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;35;10}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;10;7}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;1;2}{Natural_Products/Renewable_Resources;1.2;.2;5;5}{Raw_Materials/Gases;1.1;.1;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;1;.1;;}{Refined_Materials/Chemicals;1;.1;2;2}{Refined_Materials/Precious_Metals;1.2;.1;10;3}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.2;25;9}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Research;11.75;2.25;;}{Specialty_Goods/Entertainment;.8;.2;10;7}{Specialty_Goods/Medical;.8;.2;15;3}{starships/Andolian/Medium;1;;12;5}{starships/Confed/Light;1;;24;5}{starships/Confed/Medium;1;;12;5}{starships/Hunter/Heavy;1;;6;5}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;5}{starships/ISO/Medium;1;;36;10}{starships/Merchant/Heavy;1;;6;5}{starships/Merchant/Light;1;;24;5}{starships/Merchant/Medium;1;;12;5}{starships/Regional_Guard/Light;1;;24;5}{starships/Regional_Guard/Medium;1;;12;5}{upgrades/Ammunition/Common;1;.1;750;600}{upgrades/Ammunition/Uncommon;3;.6;-50;200}{upgrades/Ammunition/Confed;2;.1;60;75}{upgrades/Armor;1;.1;16;7}{upgrades/Capacitors/Standard;1;.1;14;25}{upgrades/ECM_Systems;1;.1;5;2}{upgrades/Jump_Drives;1;.1;10;4}{upgrades/Overdrive;1;.1;23;8}{upgrades/Reactors/Standard;1;.1;30;11}{upgrades/Repair_Systems;1;.1;8;4}{upgrades/Sensors/Common;1;.1;12;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;32;7}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;28;9}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;-2;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;12;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;6;2}{upgrades/Weapons/Mount_Enhancements;1;.1;12;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;6;2}{upgrades/Weapons/Mounted_Guns_Light;1;;24;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;12;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Factory__aera", @@ -9268,9 +9273,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.8;.3;38;12}{Consumer_and_Commercial_Goods/Electronics;.8;.3;25;7}{Contraband/Aera;1.2;.4;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.2;2;2}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.2;25;8}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;35;10}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;10;7}{Natural_Products/Food/Aera;1.9;.2;15;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;.8;.1;1;2}{Natural_Products/Renewable_Resources;1.2;.2;5;5}{Raw_Materials/Gases;1.1;.1;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;1;.1;;}{Refined_Materials/Alloys/Aera;1;.1;2;2}{Refined_Materials/Chemicals;1;.1;2;2}{Refined_Materials/Precious_Metals;1.2;.1;10;3}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.2;25;9}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Refined_Materials/Synthetics;.8;.1;2;2}{Research;11.75;2.25;;}{Specialty_Goods/Entertainment;1.2;.6;20;14}{Specialty_Goods/Medical;.8;.2;15;3}{Specialty_Goods/Pharmaceutical;1.6;.2;15;3}{starships/Aera/Heavy;1;;24;5}{starships/Aera/Light;1;;36;10}{starships/Hunter/Heavy;1;;6;5}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;5}{upgrades/Ammunition/Aera;1;.1;750;560}{upgrades/Armor;1;.1;16;7}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;5;2}{upgrades/Jump_Drives;1;.1;10;4}{upgrades/Overdrive;1;.1;23;8}{upgrades/Reactors/Standard;1;.1;30;11}{upgrades/Repair_Systems;1;.1;8;4}{upgrades/Sensors/Common;1;.1;12;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;32;7}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;28;9}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;-2;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;12;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;6;2}{upgrades/Weapons/Mount_Enhancements;1;.1;12;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;6;2}{upgrades/Weapons/Mounted_Guns_Light;1;;24;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;12;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "600", - "shield_strength": "1050" + "armor": "1200.0", + "shield": "1050.0", + "shield_facets": "4" }, { "Key": "Factory__rlaan", @@ -9316,9 +9321,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.8;.3;38;12}{Consumer_and_Commercial_Goods/Electronics;.8;.3;25;7}{Contraband/Rlaan;1.2;.4;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;1;.2;5;20}{Industrially_Manufactured_Goods/Electronics;1.1;.2;2;2}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.2;25;8}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;35;10}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;10;7}{Natural_Products/Food/Rlaan;1.9;.2;15;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;.8;.1;1;2}{Natural_Products/Renewable_Resources;1.2;.2;5;5}{Raw_Materials/Gases;1.1;.1;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;1;.1;;}{Refined_Materials/Alloys/Rlaan;1;.1;2;2}{Refined_Materials/Chemicals;.9;.2;4;4}{Refined_Materials/Precious_Metals;1.2;.1;10;3}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.2;25;9}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Research;11.75;2.25;;}{Specialty_Goods/Augmentation;.9;.2;10;15}{Specialty_Goods/Entertainment;1.2;.6;20;14}{Specialty_Goods/Medical;1.6;.2;15;3}{starships/Hunter/Heavy;1;;6;5}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;5}{starships/Rlaan/Heavy;1;;36;10}{starships/Rlaan/Light;1;;24;5}{upgrades/Ammunition/Rlaan;1;.1;750;560}{upgrades/Armor;1;.1;16;7}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;5;2}{upgrades/Jump_Drives;1;.1;10;4}{upgrades/Overdrive;1;.1;23;8}{upgrades/Reactors/Standard;1;.1;30;11}{upgrades/Repair_Systems;1;.1;8;4}{upgrades/Sensors/Common;1;.1;12;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;32;7}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;28;9}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;-2;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;12;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;6;2}{upgrades/Weapons/Mount_Enhancements;1;.1;12;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;6;2}{upgrades/Weapons/Mounted_Guns_Light;1;;24;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;12;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "3100", - "shield_strength": "500" + "armor": "6200.0", + "shield": "500.0", + "shield_facets": "4" }, { "Key": "Fighter_Barracks", @@ -9358,9 +9363,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;.7;.1;;}{Natural_Products/Liquor;.8;.1;;}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;;}{Raw_Materials/Metals;.65;.2;;}{Raw_Materials/Stone;.7;.1;;}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;;}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;;}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Confed/Heavy;1;;;6}{starships/Confed/Light;1;;;6}{starships/Confed/Medium;1;;;6}{starships/Confed/Milspec;1;;;6}{starships/Highborn/Heavy;1;;;6}{starships/Purist/Milspec;1;;;6}{upgrades/Ammunition/Confed;2;.1;370;700}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;16;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Sensors/Common;1;.1;12;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;4;4}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;2;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "4800" + "armor": "30000.0", + "shield": "4800.0", + "shield_facets": "4" }, { "Key": "Fighter_Barracks__aera", @@ -9406,9 +9411,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;;4}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.2;;1}{Industrially_Manufactured_Goods/Electronics;1.1;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;;1}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;7}{Natural_Products/Food/Aera;1.9;.2;;2}{Natural_Products/Life-forms;.4;.1;;}{Natural_Products/Liquor;.4;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;1.1;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys/Aera;1.07;.05;;2}{Refined_Materials/Chemicals;1;.3;;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Refined_Materials/Synthetics;1;.3;;1}{Research;12;2;;1}{Specialty_Goods/Entertainment;1.1;.2;;1}{Specialty_Goods/Medical;1.1;.1;;3}{starships/Aera/Heavy;1;;;5}{starships/Aera/Light;1;;;17}{starships/Aera/Milspec;1;;;2}{upgrades/Ammunition/Aera;3;.1;100;200}{upgrades/Armor;1;.1;10;12}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;;7}{upgrades/Experimental;1.4;.2;;}{upgrades/Jump_Drives;1;.1;4;7}{upgrades/Miscellaneous/Aera_Milspec;1;.1;;1}{upgrades/Overdrive;1;.1;3;10}{upgrades/Reactors/Standard;1;.1;10;24}{upgrades/Repair_Systems;1.1;.2;;7}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;10}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;8}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Aera_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets/Aera;1;.1;;2}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "3000", - "shield_strength": "8000" + "armor": "6000.0", + "shield": "8000.0", + "shield_facets": "4" }, { "Key": "Fighter_Barracks__rlaan", @@ -9447,9 +9452,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;;4}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.05;.1;;1}{Industrially_Manufactured_Goods/Electronics;1.1;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;;1}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;7}{Natural_Products/Food/Rlaan;1.9;.2;;2}{Natural_Products/Life-forms;.4;.1;;}{Natural_Products/Liquor;.4;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;1.1;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys/Rlaan;1.07;.05;;2}{Refined_Materials/Chemicals;1;.3;;2}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12;2;;1}{Specialty_Goods/Augmentation;1.1;.05;;1}{Specialty_Goods/Entertainment;1.1;.2;;1}{Specialty_Goods/Medical;1.95;.1;;3}{starships/Rlaan/Heavy;1;;;12}{starships/Rlaan/Light;1;;;10}{starships/Rlaan/Milspec;1;;;2}{upgrades/Ammunition/Rlaan;4;.1;500;200}{upgrades/Armor;1;.1;10;12}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;;7}{upgrades/Experimental;1.4;.2;;}{upgrades/Jump_Drives;1;.1;4;7}{upgrades/Overdrive;1;.1;3;12}{upgrades/Reactors/Standard;1;.1;10;22}{upgrades/Repair_Systems;1.1;.2;;7}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Rlaan;1;.1;-2;5}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;10}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;8}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Beam_Arrays_Rlaan_Milspec;1;.1;-2;5}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Mounted_Guns_Rlaan_Milspec;1;.1;;2}{upgrades/Weapons/Turrets/Rlaan;1;.1;1;1}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Gasmine", @@ -9488,9 +9493,9 @@ "Cargo_Import": "{Natural_Products/Liquor;3.1;.1;1;1}{Raw_Materials/Gases;.4;.1;7000;6500}{Raw_Materials/Hydrocarbons;.7;.2;;}{Refined_Materials/Chemicals;1.1;.2;3;2}{Specialty_Goods/Entertainment;4.2;.1;1;1}{Specialty_Goods/Medical;2.1;.1;5;3}{starships/Hunter/Light;1;;12;5}{starships/Regional_Guard/Light;1;;12;5}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Gasmine__aera", @@ -9529,9 +9534,9 @@ "Cargo_Import": "{Natural_Products/Liquor;3.1;.1;1;1}{Raw_Materials/Gases;.4;.1;7000;6500}{Raw_Materials/Hydrocarbons;.7;.2;;}{Refined_Materials/Chemicals;1.1;.2;3;2}{Specialty_Goods/Entertainment;4.2;.1;1;1}{Specialty_Goods/Medical;2.1;.1;5;3}{starships/Hunter/Light;1;;12;5}{starships/Regional_Guard/Light;1;;12;5}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Gasmine__rlaan", @@ -9570,9 +9575,9 @@ "Cargo_Import": "{Natural_Products/Liquor;3.1;.1;1;1}{Raw_Materials/Gases;.4;.1;7000;6500}{Raw_Materials/Hydrocarbons;.7;.2;;}{Refined_Materials/Chemicals;1.1;.2;3;2}{Specialty_Goods/Entertainment;4.2;.1;1;1}{Specialty_Goods/Medical;2.1;.1;5;3}{starships/Hunter/Light;1;;12;5}{starships/Regional_Guard/Light;1;;12;5}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Medical", @@ -9617,9 +9622,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.1;;}{Consumer_and_Commercial_Goods/Electronics;1;.1;5;2}{Industrially_Manufactured_Goods/Agricultural;.4;.1;;}{Industrially_Manufactured_Goods/Construction;.2;.1;;}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.6;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.7;.2;;}{Natural_Products/Liquor;1;.2;2;2}{Natural_Products/Renewable_Resources;.7;.2;;}{Raw_Materials/Gases;.7;.2;;}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.6;.1;;}{Refined_Materials/Chemicals;.8;.3;;}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;10.5;1.5;;2}{Specialty_Goods/Augmentation;1.12;.2;;}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;.8;.1;25;20}{Specialty_Goods/Pharmaceutical;1.4;.25;5;5}{starships/Merchant/Heavy;1;;12;5}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;12;5}{upgrades/Ammunition;8;.1;-52;70}{upgrades/Armor;1;.1;30;10}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;40;11}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;16;17}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "10000", - "shield_strength": "800" + "armor": "20000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "Medical__aera", @@ -9659,9 +9664,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.1;;}{Consumer_and_Commercial_Goods/Electronics;1;.1;5;2}{Industrially_Manufactured_Goods/Agricultural;.4;.1;;}{Industrially_Manufactured_Goods/Construction;.2;.1;;}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.6;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Food/Aera;2.15;.2;20;15}{Natural_Products/Life-forms;1;.2;;}{Natural_Products/Liquor;.4;.2;2;2}{Natural_Products/Renewable_Resources;.7;.2;;}{Raw_Materials/Gases;.7;.2;;}{Raw_Materials/Industrial_Gems;1.25;.2;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.6;.1;;}{Refined_Materials/Alloys/Aera;.85;.1;;}{Refined_Materials/Chemicals;.8;.3;;}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Refined_Materials/Synthetics;.75;.3;;}{Research;10.75;1.75;;4}{Specialty_Goods/Augmentation;1.2;.1;;}{Specialty_Goods/Entertainment;1.075;.675;4;2}{Specialty_Goods/Pharmaceutical;1.6;.1;25;20}{starships/Aera/Light;1;;12;5}{upgrades/Ammunition/Aera;4;.1;52;280}{upgrades/Armor;1;.1;30;10}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Miscellaneous/Aera_Milspec;1;.1;2;1}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;40;11}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;16;17}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "500", - "shield_strength": "800" + "armor": "1000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "Medical__rlaan", @@ -9700,9 +9705,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.1;;}{Consumer_and_Commercial_Goods/Electronics;1;.1;5;2}{Industrially_Manufactured_Goods/Agricultural;.4;.1;;}{Industrially_Manufactured_Goods/Construction;.85;.75;;}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.6;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Food/Rlaan;2.15;.2;20;15}{Natural_Products/Life-forms;1;.2;;}{Natural_Products/Liquor;.4;.2;2;2}{Natural_Products/Renewable_Resources;.7;.2;;}{Raw_Materials/Gases;.7;.2;;}{Raw_Materials/Industrial_Gems;1.25;.2;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.6;.1;;}{Refined_Materials/Alloys/Rlaan;.8;.5;;}{Refined_Materials/Chemicals;.8;.3;;}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Refined_Materials/Synthetics;.75;.3;;}{Research;9.75;2.75;;4}{Specialty_Goods/Augmentation;1.2;.2;;}{Specialty_Goods/Entertainment;1.075;.675;4;2}{Specialty_Goods/Medical;1.4;.1;;}{starships/Rlaan/Light;1;;12;5}{upgrades/Armor;1;.1;30;10}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;40;11}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;16;17}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "MiningBase", @@ -9742,9 +9747,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "MiningBase__aera", @@ -9784,9 +9789,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Contraband/Aera;1.25;.05;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Food/Aera;1.2;.1;5;3}{Natural_Products/Life-forms;.5;.1;2;2}{Natural_Products/Liquor;.5;.1;1;1}{Natural_Products/Renewable_Resources;.4;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Alloys/Aera;.7;.2;;}{Refined_Materials/Chemicals;1;.2;6;4}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;.95;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.3;.6;2;2}{Specialty_Goods/Medical;.4;.1;;}{Specialty_Goods/Pharmaceutical;2;.2;5;3}{starships/Aera/Light;1;;18;8}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;210;50}{upgrades/Ammunition/Aera;2;.4;40;48}{upgrades/Armor;1;.1;22;11}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;7;4}{upgrades/Overdrive;1;.1;6;11}{upgrades/Reactors/Standard;1;.1;22;10}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;32;10}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;26;8}{upgrades/Weapons/Beam_Arrays_Light;1;.1;6;3}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-2;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-12;15}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2250", - "shield_strength": "800" + "armor": "4500.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "MiningBase__pirates", @@ -9801,14 +9806,6 @@ "Mass": "6389748.5", "Fuel_Capacity": "532479.04", "Hull": "250000", - "Armor_Front_Top_Right": "2250", - "Armor_Front_Top_Left": "2250", - "Armor_Front_Bottom_Right": "2250", - "Armor_Front_Bottom_Left": "2250", - "Armor_Back_Top_Right": "4000", - "Armor_Back_Top_Left": "4000", - "Armor_Back_Bottom_Right": "4000", - "Armor_Back_Bottom_Left": "4000", "Shield_Recharge": "47", "Primary_Capacitor": "1020", "Reactor_Recharge": "300", @@ -9832,8 +9829,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;5;2}{Industrially_Manufactured_Goods/Recycled_Products;1;.1;;}{Natural_Products/Life-forms;1.2;.2;;}{Natural_Products/Liquor;1.2;.2;3;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.2;7;2}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Chemicals;1.1;.3;8;2}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.1;.1;;}{Specialty_Goods/Medical;1.2;.1;1;1}{starships/Aera/Light;1;;-75;81}{starships/Hunter/Light;1;;-25;26}{starships/Hunter/Medium;1;;-50;55}{starships/ISO/Medium;1;;-75;81}{starships/Luddite/Light;1;;12;5}{starships/Merchant/Light;1;;-25;26}{starships/Merchant/Medium;1;;-50;55}{starships/Pirate/Heavy;1;;-3;6}{starships/Pirate/Light;1;;12;6}{upgrades/Ammunition;6;.1;140;200}{upgrades/Armor;1;.1;12;6}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;6}{upgrades/Reactors/Standard;1;.1;22;11}{upgrades/Repair_Systems;1;.1;1;1}{upgrades/Sensors/Common;1;.1;12;4}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;24;10}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;22;6}{upgrades/Weapons/Beam_Arrays_Light;1;.1;12;6}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;3;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;6}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;3;1}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "shield_strength": "650" + "armor": "6250.0", + "shield": "650.0", + "shield_facets": "4" }, { "Key": "MiningBase__privateer", @@ -9848,16 +9846,6 @@ "Mass": "44508634", "Fuel_Capacity": "3709052.83", "Hull": "800000", - "Armor_Front_Top_Right": "2250", - "Armor_Front_Top_Left": "2250", - "Armor_Front_Bottom_Right": "2250", - "Armor_Front_Bottom_Left": "2250", - "Armor_Back_Top_Right": "4000", - "Armor_Back_Top_Left": "4000", - "Armor_Back_Bottom_Right": "4000", - "Armor_Back_Bottom_Left": "4000", - "Shield_Front_Top_Right": "400", - "Shield_Back_Top_Left": "400", "Shield_Recharge": "350", "Primary_Capacitor": "40000", "Reactor_Recharge": "300", @@ -9882,6 +9870,8 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Contraband/Rlaan;1.25;.05;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.6;.2;5;2}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Food/Rlaan;1.2;.1;5;3}{Natural_Products/Life-forms;.5;.1;2;2}{Natural_Products/Liquor;.5;.1;1;1}{Natural_Products/Renewable_Resources;.4;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Alloys/Rlaan;.7;.2;;}{Refined_Materials/Chemicals;1;.2;6;4}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;.95;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.3;.6;2;2}{Specialty_Goods/Medical;2;.2;5;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Rlaan/Heavy;1;;6;3}{starships/Rlaan/Light;1;;12;5}{upgrades/Ammunition/Common;1;.1;210;50}{upgrades/Ammunition/Rlaan;1.2;.1;20;28}{upgrades/Armor;1;.1;22;11}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;7;4}{upgrades/Overdrive;1;.1;6;11}{upgrades/Reactors/Standard;1;.1;12;5}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;32;10}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;26;8}{upgrades/Weapons/Beam_Arrays_Light;1;.1;6;3}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-2;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-12;15}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", + "armor": "6250.0", + "shield": "400.0", "shield_facets": "2" }, { @@ -9921,9 +9911,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Contraband/Rlaan;1.25;.05;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.6;.2;5;2}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Food/Rlaan;1.2;.1;5;3}{Natural_Products/Life-forms;.5;.1;2;2}{Natural_Products/Liquor;.5;.1;1;1}{Natural_Products/Renewable_Resources;.4;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Alloys/Rlaan;.7;.2;;}{Refined_Materials/Chemicals;1;.2;6;4}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;.95;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.3;.6;2;2}{Specialty_Goods/Medical;2;.2;5;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Rlaan/Heavy;1;;6;3}{starships/Rlaan/Light;1;;12;5}{upgrades/Ammunition/Common;1;.1;210;50}{upgrades/Ammunition/Rlaan;1.2;.1;20;28}{upgrades/Armor;1;.1;22;11}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;7;4}{upgrades/Overdrive;1;.1;6;11}{upgrades/Reactors/Standard;1;.1;12;5}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;32;10}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;26;8}{upgrades/Weapons/Beam_Arrays_Light;1;.1;6;3}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-2;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-12;15}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Outpost", @@ -9962,9 +9952,9 @@ "Cargo_Import": "{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2000", - "shield_strength": "3000" + "armor": "4000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Refinery", @@ -10005,9 +9995,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.8;.1;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;1;1}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.1;;}{Industrially_Manufactured_Goods/Electronics;.8;.1;;}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;.8;.2;45;17}{Natural_Products/Life-forms;.7;.1;;}{Natural_Products/Liquor;1.3;.1;3;2}{Natural_Products/Renewable_Resources;.9;.1;;}{Raw_Materials/Gases;1.1;.1;10;5}{Raw_Materials/Hydrocarbons;1.3;.3;4;2}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;1.2;.1;12;5}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Chemicals;.7;.2;28;25}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.2;;}{Refined_Materials/Radioactive_Metals;.8;.1;25;10}{Specialty_Goods/Entertainment;.9;.1;;}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;6}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;6}{starships/Hunter/Medium;1;;6;3}{starships/ISO/Medium;1;;18;9}{starships/Merchant/Light;1;;12;6}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;6}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;30;60}{upgrades/Armor;1;.1;12;6}{upgrades/Capacitors/Standard;1;.1;10;55}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;10;5}{upgrades/Overdrive;1;.1;5;3}{upgrades/Reactors/Standard;1;.1;6;3}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;26;8}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;1;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;6;3}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;2;1}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "14000", - "shield_strength": "8000" + "armor": "28000.0", + "shield": "8000.0", + "shield_facets": "4" }, { "Key": "Refinery__aera", @@ -10047,9 +10037,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.8;.1;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;1;1}{Contraband/Aera;1.0;.1;;}{Industrially_Manufactured_Goods/Agricultural;.6;.1;;}{Industrially_Manufactured_Goods/Construction;.6;.1;;}{Industrially_Manufactured_Goods/Electronics;.8;.1;;}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.6;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;.8;.2;45;17}{Natural_Products/Food/Aera;2.0;.1;10;2}{Natural_Products/Life-forms;.2;.1;;}{Natural_Products/Liquor;.2;.1;3;2}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;10;5}{Raw_Materials/Hydrocarbons;1.4;.3;4;2}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;1.2;.1;12;5}{Raw_Materials/Stone;.4;.1;;}{Refined_Materials/Alloys/Aera;.6;.15;38;12}{Refined_Materials/Chemicals;.7;.2;28;25}{Refined_Materials/Precious_Metals;.2;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.2;;}{Refined_Materials/Radioactive_Metals;.8;.1;25;10}{Refined_Materials/Synthetics;.5;.2;28;25}{Specialty_Goods/Entertainment;1.1;.5;;}{Specialty_Goods/Medical;.4;.1;5;3}{Specialty_Goods/Pharmaceutical;2;.1;5;3}{starships/Aera/Light;1;;18;9}{starships/Hunter/Light;1;;12;6}{starships/Hunter/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;30;60}{upgrades/Armor;1;.1;12;6}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;10;5}{upgrades/Overdrive;1;.1;5;3}{upgrades/Reactors/Standard;1;.1;6;3}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;26;8}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;1;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;6;3}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;2;1}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "4000", - "shield_strength": "800" + "armor": "8000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "Refinery__pirates", @@ -10089,9 +10079,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;5;2}{Industrially_Manufactured_Goods/Recycled_Products;.4;.1;;5}{Natural_Products/Life-forms;1.3;.2;;}{Natural_Products/Liquor;1.2;.2;3;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.2;7;2}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Chemicals;1.1;.3;8;2}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.3;.1;;}{Specialty_Goods/Medical;1.2;.1;1;1}{starships/Hunter/Heavy;1;;-25;26}{starships/ISO/Heavy;1;;-25;26}{starships/ISO/Medium;1;;-50;55}{starships/Merchant/Heavy;1;;-50;55}{starships/Pirate/Heavy;1;;-3;6}{starships/Pirate/Light;1;;12;6}{upgrades/Ammunition;6;.6;24;70}{upgrades/Armor;1;.1;12;6}{upgrades/Capacitors/Standard;1;.1;14;25}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;9;9}{upgrades/Reactors/Standard;1;.1;12;6}{upgrades/Repair_Systems;1;.1;1;1}{upgrades/Sensors/Common;1;.1;12;4}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;24;10}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;12;6}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;12;6}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "4000", - "shield_strength": "800" + "armor": "8000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "Refinery__rlaan", @@ -10106,8 +10096,6 @@ "Mass": "80000000", "Fuel_Capacity": "50", "Hull": "400000", - "Shield_Front_Top_Right": "400", - "Shield_Back_Top_Left": "400", "Shield_Recharge": "350", "Primary_Capacitor": "40000", "Reactor_Recharge": "500", @@ -10134,8 +10122,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.8;.1;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;1;1}{Contraband/Rlaan;1.0;.1;;}{Industrially_Manufactured_Goods/Agricultural;.6;.1;;}{Industrially_Manufactured_Goods/Construction;.6;.1;;}{Industrially_Manufactured_Goods/Electronics;.8;.1;;}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.6;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;.8;.2;45;17}{Natural_Products/Food/Rlaan;2.0;.1;10;2}{Natural_Products/Life-forms;.2;.1;;}{Natural_Products/Liquor;.2;.1;3;2}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;10;5}{Raw_Materials/Hydrocarbons;1.4;.3;4;2}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;1.2;.1;12;5}{Raw_Materials/Stone;.4;.1;;}{Refined_Materials/Alloys/Rlaan;.8;.4;48;32}{Refined_Materials/Chemicals;.6;.3;56;50}{Refined_Materials/Precious_Metals;.2;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.2;;}{Refined_Materials/Radioactive_Metals;.8;.1;25;10}{Specialty_Goods/Entertainment;1.1;.5;;}{Specialty_Goods/Medical;2;.1;5;3}{starships/Hunter/Light;1;;12;6}{starships/Hunter/Medium;1;;6;3}{starships/Rlaan/Heavy;1;;6;3}{starships/Rlaan/Light;1;;12;6}{upgrades/Ammunition/Common;1;.1;13;16}{upgrades/Armor;1;.1;12;6}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;10;5}{upgrades/Overdrive;1;.1;5;3}{upgrades/Reactors/Standard;1;.1;6;3}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;26;8}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;1;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;6;3}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;2;1}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "2", - "armor": "4000" + "armor": "8000.0", + "shield": "400.0", + "shield_facets": "2" }, { "Key": "Refinery__uln", @@ -10174,9 +10163,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Relay", @@ -10216,9 +10205,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.1;;}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;.7;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;.8;.1;2;2}{Natural_Products/Liquor;.9;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;;}{Raw_Materials/Metals;.65;.2;24;15}{Raw_Materials/Stone;.7;.1;;}{Refined_Materials/Chemicals;1.2;.3;3;2}{Refined_Materials/Precious_Metals;.65;.2;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.65;.2;;}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Confed/Light;1;;1;3}{upgrades/Ammunition/Common;1;.1;10;20}{upgrades/Armor;1;.1;22;10}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;12;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;2;4}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Sensors/Confed;1;.1;12;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;2;4}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;2;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "800" + "armor": "30000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "Relaysat", @@ -10254,9 +10243,9 @@ "Max_SPECDrive_Functionality": "1", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "800" + "armor": "30000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "Research", @@ -10295,9 +10284,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.25;.2;5;2}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.1;;}{Industrially_Manufactured_Goods/Electronics;1.2;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.5;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1;.1;3;3}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.8;.05;;}{Natural_Products/Liquor;.7;.2;;}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;3;3}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;1.2;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.5;.1;;}{Refined_Materials/Chemicals;.8;.1;3;3}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.7;.1;;}{Refined_Materials/Radioactive_Metals;1.2;.3;;}{Research;7.5;3;-80;155}{Specialty_Goods/Augmentation;1.2;.2;;}{Specialty_Goods/Entertainment;.5;.1;;}{Specialty_Goods/Medical;1.05;.1;3;3}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Experimental;.8;.1;-18;28}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-15;22}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "12800" + "armor": "30000.0", + "shield": "12800.0", + "shield_facets": "4" }, { "Key": "Research__aera", @@ -10338,9 +10327,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.25;.2;5;2}{Contraband/Aera;1.3;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.1;;}{Industrially_Manufactured_Goods/Electronics;1.2;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.5;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1;.1;3;3}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Food/Aera;2;.2;5;2}{Natural_Products/Life-forms;1.3;.2;;}{Natural_Products/Liquor;.4;.2;;}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;3;3}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;1.2;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.5;.1;;}{Refined_Materials/Alloys/Aera;1.05;.1;;}{Refined_Materials/Chemicals;.8;.1;3;3}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.7;.1;;}{Refined_Materials/Radioactive_Metals;1.2;.3;;}{Research;8.5;3;-80;155}{Specialty_Goods/Augmentation;1.2;.2;;2}{Specialty_Goods/Entertainment;.5;.1;;}{Specialty_Goods/Medical;.9;.1;3;3}{Specialty_Goods/Pharmaceutical;1.85;.1;3;3}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Experimental;.8;.1;-18;28}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-15;22}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "4000", - "shield_strength": "800" + "armor": "8000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "Shaper_Bio_Adaptation", @@ -10379,9 +10368,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Shipyard", @@ -10420,9 +10409,9 @@ "Cargo_Import": "{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2000", - "shield_strength": "3000" + "armor": "4000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Shipyard__aera", @@ -10461,9 +10450,9 @@ "Cargo_Import": "{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2000", - "shield_strength": "3000" + "armor": "4000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Shipyard__forsaken", @@ -10501,9 +10490,9 @@ "Cargo_Import": "{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2000", - "shield_strength": "3000" + "armor": "4000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Shipyard__rlaan", @@ -10542,9 +10531,9 @@ "Cargo_Import": "{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2000", - "shield_strength": "3000" + "armor": "4000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Starfortress", @@ -10590,9 +10579,9 @@ "Cargo": "{Pilot;Contraband;1040;0;.01;1;1;1;;0}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "16000", - "shield_strength": "3141592" + "armor": "32000.0", + "shield": "3141592.0", + "shield_facets": "4" }, { "Key": "Starfortress__aera", @@ -10634,9 +10623,9 @@ "Cargo": "{Pilot;Contraband;1000;0;.01;1;1;1;;0}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "4000", - "shield_strength": "246802" + "armor": "8000.0", + "shield": "246802.0", + "shield_facets": "4" }, { "Key": "Starfortress__rlaan", @@ -10676,9 +10665,9 @@ "Cargo": "{Pilot;Contraband;1200;0;.01;1;1;1;;0}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "Shipyard__forsaken.armature", @@ -10692,8 +10681,6 @@ "Mass": "100000", "Fuel_Capacity": "1", "Hull": "100000", - "Shield_Front_Top_Right": "300", - "Shield_Back_Top_Left": "300", "Shield_Recharge": "10", "Primary_Capacitor": "6000", "Reactor_Recharge": "60", @@ -10717,8 +10704,9 @@ "Cargo_Import": "{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "2", - "armor": "25" + "armor": "50.0", + "shield": "300.0", + "shield_facets": "2" }, { "Key": "agricultural_station", @@ -10733,8 +10721,6 @@ "Mass": "1098842650", "Fuel_Capacity": "116570220.8", "Hull": "8750000", - "Shield_Front_Top_Right": "4000", - "Shield_Back_Top_Left": "4000", "Shield_Recharge": "100", "Primary_Capacitor": "18000", "Reactor_Recharge": "470", @@ -10759,8 +10745,9 @@ "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;.6;.2;25;12}{Natural_Products/Life-forms;.7;.1;;}{Natural_Products/Liquor;.9;.1;30;45}{Natural_Products/Renewable_Resources;.9;.1;50;49}{Natural_Products/Food;.4;.1;5000;4123}{upgrades/Ammunition/Common;2.5;.1;4500;5500}{upgrades/Jump_Drives;2;.1;24;12}{upgrades/Reactors/Standard;2;.1;45;22}{upgrades/Sensors/Common;2;.1;20;10}{upgrades/Shield_Systems/Standard_Dual_Shields;2;.1;40;15}{upgrades/Shield_Systems/Standard_Quad_Shields;2;.1;35;12}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "2", - "armor": "13000" + "armor": "26000.0", + "shield": "4000.0", + "shield_facets": "2" }, { "Key": "asteroid_fighterbase", @@ -10797,9 +10784,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;12;5}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Advanced;1;.1;6;5}{upgrades/Sensors/Basic;1;.1;6;3}{upgrades/Sensors/Intermediate;1;.1;6;4}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "asteroid_refinery", @@ -10838,9 +10825,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "asteroid_shipyard", @@ -10879,9 +10866,9 @@ "Cargo_Import": "{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Raw_Materials/Metals;.65;.2;42;15}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "commerce_center", @@ -10896,8 +10883,6 @@ "Mass": "1398842650", "Fuel_Capacity": "116570220.8", "Hull": "21750000", - "Shield_Front_Top_Right": "4000", - "Shield_Back_Top_Left": "4000", "Shield_Recharge": "100", "Primary_Capacitor": "18000", "Reactor_Recharge": "470", @@ -10923,8 +10908,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;.8;.2;25;12}{Industrially_Manufactured_Goods/Agricultural;.8;.2;25;12}{Industrially_Manufactured_Goods/Construction;.8;.2;25;12}{Industrially_Manufactured_Goods/Electronics;.8;.2;25;12}{Industrially_Manufactured_Goods/Manufacturing;.8;.2;24;6}{Industrially_Manufactured_Goods/Mining;.8;.2;25;12}{Industrially_Manufactured_Goods/Power_Utilities;1;.1;8;6}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.1;.1;3;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;5;2}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Chemicals;1;.2;8;2}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Research;10;2;;}{Specialty_Goods/Entertainment;.8;.2;25;12}{Specialty_Goods/Medical;1.2;.1;15;3}{starships/Andolian/Medium;1;;12;5}{starships/Confed/Heavy;1;;6;3}{starships/Confed/Light;1;;6;3}{starships/Confed/Medium;1;;12;5}{starships/Highborn/Heavy;1;;6;3}{starships/Hunter/Heavy;1;;6;3}{starships/Hunter/Light;1;;6;3}{starships/Hunter/Medium;1;;12;5}{starships/Merchant/Heavy;1;;6;3}{starships/Merchant/Light;1;;6;3}{starships/Merchant/Medium;1;;12;5}{starships/Regional_Guard/Heavy;1;;6;3}{starships/Regional_Guard/Light;1;;6;3}{starships/Regional_Guard/Medium;1;;12;5}{upgrades/Ammunition/Common;1.5;.1;4500;5500}{upgrades/Ammunition/Uncommon;2.5;.4;500;5500}{upgrades/Ammunition/Confed;2.5;.2;50;60}{upgrades/Armor;1;.1;30;15}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;10;5}{upgrades/Jump_Drives;1;.1;24;12}{upgrades/Overdrive;1;.1;38;19}{upgrades/Reactors/Standard;1;.1;45;22}{upgrades/Repair_Systems;1;.1;15;7}{upgrades/Sensors/Confed;1;.1;5;2}{upgrades/Sensors/Common;1;.1;20;10}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;40;15}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;35;12}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;2;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;5;2}{upgrades/Weapons/Mount_Enhancements;1;.1;10;5}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;10;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "2", - "armor": "13000" + "armor": "26000.0", + "shield": "4000.0", + "shield_facets": "2" }, { "Key": "diplomatic_center", @@ -10964,9 +10950,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;.8;.2;25;12}{Industrially_Manufactured_Goods/Agricultural;.8;.2;25;12}{Industrially_Manufactured_Goods/Construction;.8;.2;25;12}{Industrially_Manufactured_Goods/Electronics;.8;.2;25;12}{Industrially_Manufactured_Goods/Manufacturing;.8;.2;24;6}{Industrially_Manufactured_Goods/Mining;.8;.2;25;12}{Industrially_Manufactured_Goods/Power_Utilities;1;.1;8;6}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.1;.1;3;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;5;2}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Chemicals;1;.2;8;2}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Research;10;2;;}{Specialty_Goods/Entertainment;.8;.2;25;12}{Specialty_Goods/Medical;1.2;.1;15;3}{starships/Andolian/Medium;1;;12;5}{starships/Confed/Heavy;1;;6;3}{starships/Confed/Light;1;;6;3}{starships/Confed/Medium;1;;12;5}{starships/Highborn/Heavy;1;;6;3}{starships/Hunter/Heavy;1;;6;3}{starships/Hunter/Light;1;;6;3}{starships/Hunter/Medium;1;;12;5}{starships/Merchant/Heavy;1;;6;3}{starships/Merchant/Light;1;;6;3}{starships/Merchant/Medium;1;;12;5}{starships/Regional_Guard/Heavy;1;;6;3}{starships/Regional_Guard/Light;1;;6;3}{starships/Regional_Guard/Medium;1;;12;5}{upgrades/Ammunition/Common;1.5;.1;4500;5500}{upgrades/Ammunition/Uncommon;2.5;.4;500;5500}{upgrades/Ammunition/Confed;2.5;.2;50;60}{upgrades/Armor;1;.1;30;15}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;10;5}{upgrades/Jump_Drives;1;.1;24;12}{upgrades/Overdrive;1;.1;38;19}{upgrades/Reactors/Standard;1;.1;45;22}{upgrades/Repair_Systems;1;.1;15;7}{upgrades/Sensors/Confed;1;.1;5;2}{upgrades/Sensors/Common;1;.1;20;10}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;40;15}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;35;12}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;2;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;5;2}{upgrades/Weapons/Mount_Enhancements;1;.1;10;5}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;20;10}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;10;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "13000", - "shield_strength": "4000" + "armor": "26000.0", + "shield": "4000.0", + "shield_facets": "4" }, { "Key": "drydock", @@ -11005,9 +10991,9 @@ "Cargo_Import": "{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2000", - "shield_strength": "3000" + "armor": "4000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "factory", @@ -11047,9 +11033,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.8;.3;38;12}{Consumer_and_Commercial_Goods/Electronics;.8;.3;25;7}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.2;2;2}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;5;3}{Industrially_Manufactured_Goods/Mining;.8;.2;25;8}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;35;10}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;10;7}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;1;2}{Natural_Products/Renewable_Resources;1.2;.2;5;5}{Raw_Materials/Gases;1.1;.1;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;1;.1;;}{Refined_Materials/Chemicals;1;.1;2;2}{Refined_Materials/Precious_Metals;1.2;.1;10;3}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.2;25;9}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Research;11.75;2.25;;}{Specialty_Goods/Entertainment;.8;.2;10;7}{Specialty_Goods/Medical;.8;.2;15;3}{starships/Andolian/Medium;1;;12;5}{starships/Confed/Light;1;;24;5}{starships/Confed/Medium;1;;12;5}{starships/Hunter/Heavy;1;;6;5}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;5}{starships/ISO/Medium;1;;36;10}{starships/Merchant/Heavy;1;;6;5}{starships/Merchant/Light;1;;24;5}{starships/Merchant/Medium;1;;12;5}{starships/Regional_Guard/Light;1;;24;5}{starships/Regional_Guard/Medium;1;;12;5}{upgrades/Ammunition/Common;1;.1;750;600}{upgrades/Ammunition/Uncommon;3;.6;-50;200}{upgrades/Ammunition/Confed;2;.1;60;75}{upgrades/Armor;1;.1;16;7}{upgrades/Capacitors/Standard;1;.1;14;25}{upgrades/ECM_Systems;1;.1;5;2}{upgrades/Jump_Drives;1;.1;10;4}{upgrades/Overdrive;1;.1;23;8}{upgrades/Reactors/Standard;1;.1;30;11}{upgrades/Repair_Systems;1;.1;8;4}{upgrades/Sensors/Common;1;.1;12;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;32;7}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;28;9}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;-2;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;12;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;6;2}{upgrades/Weapons/Mount_Enhancements;1;.1;12;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;6;2}{upgrades/Weapons/Mounted_Guns_Light;1;;24;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;12;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "fighter_barracks", @@ -11089,9 +11075,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;.7;.1;;}{Natural_Products/Liquor;.8;.1;;}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;;}{Raw_Materials/Metals;.65;.2;;}{Raw_Materials/Stone;.7;.1;;}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;;}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;;}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Confed/Heavy;1;;;6}{starships/Confed/Light;1;;;6}{starships/Confed/Medium;1;;;6}{starships/Confed/Milspec;1;;;6}{starships/Highborn/Heavy;1;;;6}{starships/Purist/Milspec;1;;;6}{upgrades/Ammunition/Confed;2;.1;370;700}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;16;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Sensors/Common;1;.1;12;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;4;4}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;2;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "4800" + "armor": "30000.0", + "shield": "4800.0", + "shield_facets": "4" }, { "Key": "gasmine", @@ -11130,9 +11116,9 @@ "Cargo_Import": "{Natural_Products/Liquor;3.1;.1;1;1}{Raw_Materials/Gases;.4;.1;7000;6500}{Raw_Materials/Hydrocarbons;.7;.2;;}{Refined_Materials/Chemicals;1.1;.2;3;2}{Specialty_Goods/Entertainment;4.2;.1;1;1}{Specialty_Goods/Medical;2.1;.1;5;3}{starships/Hunter/Light;1;;12;5}{starships/Regional_Guard/Light;1;;12;5}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "medical", @@ -11177,9 +11163,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.1;;}{Consumer_and_Commercial_Goods/Electronics;1;.1;5;2}{Industrially_Manufactured_Goods/Agricultural;.4;.1;;}{Industrially_Manufactured_Goods/Construction;.2;.1;;}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.6;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.7;.2;;}{Natural_Products/Liquor;1;.2;2;2}{Natural_Products/Renewable_Resources;.7;.2;;}{Raw_Materials/Gases;.7;.2;;}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.6;.1;;}{Refined_Materials/Chemicals;.8;.3;;}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;10.5;1.5;;2}{Specialty_Goods/Augmentation;1.12;.2;;}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;.8;.1;25;20}{Specialty_Goods/Pharmaceutical;1.4;.25;5;5}{starships/Merchant/Heavy;1;;12;5}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;12;5}{upgrades/Ammunition;8;.1;-52;70}{upgrades/Armor;1;.1;30;10}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;40;11}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;16;17}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "10000", - "shield_strength": "800" + "armor": "20000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "miningbase", @@ -11219,9 +11205,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "outpost", @@ -11260,9 +11246,9 @@ "Cargo_Import": "{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2000", - "shield_strength": "3000" + "armor": "4000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "refinery", @@ -11303,9 +11289,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.8;.1;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;1;1}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.1;;}{Industrially_Manufactured_Goods/Electronics;.8;.1;;}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;.8;.2;45;17}{Natural_Products/Life-forms;.7;.1;;}{Natural_Products/Liquor;1.3;.1;3;2}{Natural_Products/Renewable_Resources;.9;.1;;}{Raw_Materials/Gases;1.1;.1;10;5}{Raw_Materials/Hydrocarbons;1.3;.3;4;2}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;1.2;.1;12;5}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Chemicals;.7;.2;28;25}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.2;;}{Refined_Materials/Radioactive_Metals;.8;.1;25;10}{Specialty_Goods/Entertainment;.9;.1;;}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;6}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;6}{starships/Hunter/Medium;1;;6;3}{starships/ISO/Medium;1;;18;9}{starships/Merchant/Light;1;;12;6}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;6}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;30;60}{upgrades/Armor;1;.1;12;6}{upgrades/Capacitors/Standard;1;.1;10;55}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;10;5}{upgrades/Overdrive;1;.1;5;3}{upgrades/Reactors/Standard;1;.1;6;3}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;6;3}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;26;8}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;1;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;6;3}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;2;1}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "14000", - "shield_strength": "8000" + "armor": "28000.0", + "shield": "8000.0", + "shield_facets": "4" }, { "Key": "relay", @@ -11345,9 +11331,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.1;;}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;.7;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;.8;.1;2;2}{Natural_Products/Liquor;.9;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;;}{Raw_Materials/Metals;.65;.2;24;15}{Raw_Materials/Stone;.7;.1;;}{Refined_Materials/Chemicals;1.2;.3;3;2}{Refined_Materials/Precious_Metals;.65;.2;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.65;.2;;}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Confed/Light;1;;1;3}{upgrades/Ammunition/Common;1;.1;10;20}{upgrades/Armor;1;.1;22;10}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;12;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;2;4}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Sensors/Confed;1;.1;12;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;2;4}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;2;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "800" + "armor": "30000.0", + "shield": "800.0", + "shield_facets": "4" }, { "Key": "research", @@ -11386,9 +11372,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.25;.2;5;2}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.1;;}{Industrially_Manufactured_Goods/Electronics;1.2;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.5;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1;.1;3;3}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.8;.05;;}{Natural_Products/Liquor;.7;.2;;}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;3;3}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;1.2;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.5;.1;;}{Refined_Materials/Chemicals;.8;.1;3;3}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.7;.1;;}{Refined_Materials/Radioactive_Metals;1.2;.3;;}{Research;7.5;3;-80;155}{Specialty_Goods/Augmentation;1.2;.2;;}{Specialty_Goods/Entertainment;.5;.1;;}{Specialty_Goods/Medical;1.05;.1;3;3}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Experimental;.8;.1;-18;28}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-15;22}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "12800" + "armor": "30000.0", + "shield": "12800.0", + "shield_facets": "4" }, { "Key": "shipyard", @@ -11427,9 +11413,9 @@ "Cargo_Import": "{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "2000", - "shield_strength": "3000" + "armor": "4000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "star_fortress", @@ -11466,9 +11452,9 @@ "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.7;.2;;}{Consumer_and_Commercial_Goods/Electronics;.9;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.1;;}{Industrially_Manufactured_Goods/Construction;1.2;.1;1;1}{Industrially_Manufactured_Goods/Electronics;1.2;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.2;.2;;}{Industrially_Manufactured_Goods/Mining;1.3;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;.8;.1;;}{Industrially_Manufactured_Goods/Recycled_Products;1.1;.1;;}{Natural_Products/Life-forms;1;.1;2;2}{Natural_Products/Liquor;1.1;.1;1;1}{Natural_Products/Renewable_Resources;.7;.1;;}{Raw_Materials/Gases;1.2;.1;5;5}{Raw_Materials/Hydrocarbons;.7;.2;;}{Raw_Materials/Industrial_Gems;.7;.2;22;7}{Raw_Materials/Metals;.65;.2;42;15}{Raw_Materials/Stone;.7;.1;7;3}{Refined_Materials/Chemicals;1.1;.2;3;2}{Refined_Materials/Precious_Metals;.65;.2;22;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.05;.1;10;}{Refined_Materials/Radioactive_Metals;.65;.2;25;5}{Specialty_Goods/Entertainment;1.2;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;12;5}{starships/Andolian/Medium;1;;6;3}{starships/Confed/Light;1;;12;5}{starships/Confed/Medium;1;;6;3}{starships/Hunter/Light;1;;12;5}{starships/Hunter/Medium;1;;6;3}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;6;3}{starships/Regional_Guard/Light;1;;12;5}{starships/Regional_Guard/Medium;1;;6;3}{upgrades/Ammunition/Common;1;.1;100;280}{upgrades/Ammunition/Uncommon;3;.4;-10;280}{upgrades/Ammunition/Confed;2;.2;20;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;4}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-1;4}{upgrades/Sensors/Advanced;1;.1;6;5}{upgrades/Sensors/Basic;1;.1;6;3}{upgrades/Sensors/Intermediate;1;.1;6;4}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", "Upgrade_Storage_Volume": "1000000", "Spec_Interdiction": "0.75", - "shield_facets": "4", - "armor": "15000", - "shield_strength": "3000" + "armor": "30000.0", + "shield": "3000.0", + "shield_facets": "4" }, { "Key": "mult_shady_moregunrecharge__upgrades", @@ -11476,7 +11462,8 @@ "Object_Type": "Upgrade_Improvement", "Textual_Description": "\"@upgrades/circuit1.png@Trades energy capacity for recharge rate\"\n", "Primary_Capacitor": "0.8", - "Reactor_Recharge": "1.2" + "Reactor_Recharge": "1.2", + "shield_facets": "0" }, { "Key": "mult_shady_moreshieldrecharge__upgrades", @@ -11484,7 +11471,8 @@ "Object_Type": "Upgrade_Improvement", "Textual_Description": "\"@upgrades/mult_shield_regenerator.png@Increases ship mass, increases shield recharge\"\n", "Mass": "1.1", - "Shield_Recharge": "1.2" + "Shield_Recharge": "1.2", + "shield_facets": "0" }, { "Key": "mult_shady_moreshields__upgrades", @@ -11492,8 +11480,7 @@ "Object_Type": "Upgrade_Improvement", "Textual_Description": "\"@cargo/cargo_hud.png@Trades main hull for shield capacity\"\n", "Hull": "0.9", - "Shield_Front_Top_Right": "1.1", - "Shield_Back_Top_Left": "1.1", + "shield": "1.0", "shield_facets": "2" }, { @@ -11501,11 +11488,10 @@ "Name": "Engine Safety Override", "Object_Type": "Upgrade_Improvement", "Textual_Description": "\"@cargo/cargo_hud.png@Trades side armor for increased thrust\"\n", - "Armor_Back_Top_Left": "0.5", - "Armor_Back_Bottom_Left": "0.5", "Afterburner_Accel": "1.2", "Forward_Accel": "1.2", - "Retro_Accel": "1.2" + "Retro_Accel": "1.2", + "shield_facets": "0" }, { "Key": "mult_shady_moreturning__upgrades", @@ -11517,14 +11503,16 @@ "Maneuver_Roll": "1.2", "Yaw_Governor": "1.2", "Pitch_Governor": "1.2", - "Roll_Governor": "1.2" + "Roll_Governor": "1.2", + "shield_facets": "0" }, { "Key": "mult_shady_moreupgrade__upgrades", "Name": "More Upgrade Volume", "Object_Type": "Upgrade_Improvement", "Textual_Description": "\"@cargo/cargo_hud.png@Trades cargo space for upgrade room\"\n", - "Hold_Volume": "-50" + "Hold_Volume": "-50", + "shield_facets": "0" }, { "Key": "hud_repair__upgrades", @@ -11532,14 +11520,16 @@ "Object_Type": "Upgrade_Repair", "Hud_Functionality": "1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1", "Max_Hud_Functionality": "1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1", - "Textual_Description": "\"@upgrades/circuit2.png@Given that any craft of sufficient size and many smaller craft(produced by particular factions), have no physical viewports for their pilots, and that no pilot could fly without the nav cues overlayed by the HUD, the ability to do in-flight repair of damaged HUD systems is nearly vital.\"\n" + "Textual_Description": "\"@upgrades/circuit2.png@Given that any craft of sufficient size and many smaller craft(produced by particular factions), have no physical viewports for their pilots, and that no pilot could fly without the nav cues overlayed by the HUD, the ability to do in-flight repair of damaged HUD systems is nearly vital.\"\n", + "shield_facets": "0" }, { "Key": "add_cargo_expansion__upgrades", "Name": "Cargo Expansion", "Object_Type": "Upgrade_Replacement", "Textual_Description": "Trades upgrade space and support systems for cargo volume", - "Hold_Volume": "12" + "Hold_Volume": "12", + "shield_facets": "0" }, { "Key": "autotracking__upgrades", @@ -11547,7 +11537,8 @@ "Object_Type": "Upgrade_Replacement", "Mass": "0.5", "Mounts": "{MOUNT_UPGRADE;;;autotracking;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@While all mounted weapons have inherent auto-tracking capabilities, these defaults are limited in civilian mounts. A full-powered military auto-tracker like this greatly enhances weapon accuracy.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@While all mounted weapons have inherent auto-tracking capabilities, these defaults are limited in civilian mounts. A full-powered military auto-tracker like this greatly enhances weapon accuracy.\"\n", + "shield_facets": "0" }, { "Key": "ecm_package01__upgrades", @@ -11557,7 +11548,8 @@ "ECM_Rating": "1", "ECM_Resist": "0.1", "Ecm_Drain": "5", - "Textual_Description": "\"@upgrades/ecm1.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n" + "Textual_Description": "\"@upgrades/ecm1.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n", + "shield_facets": "0" }, { "Key": "ecm_package02__upgrades", @@ -11567,7 +11559,8 @@ "ECM_Rating": "2", "ECM_Resist": "0.2", "Ecm_Drain": "8", - "Textual_Description": "\"@upgrades/ecm2.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n" + "Textual_Description": "\"@upgrades/ecm2.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n", + "shield_facets": "0" }, { "Key": "ecm_package03__upgrades", @@ -11577,7 +11570,8 @@ "ECM_Rating": "3", "ECM_Resist": "0.3", "Ecm_Drain": "12", - "Textual_Description": "\"@upgrades/ecm3.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n" + "Textual_Description": "\"@upgrades/ecm3.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n", + "shield_facets": "0" }, { "Key": "hawkeye1__upgrades", @@ -11589,7 +11583,8 @@ "Tracking_Cone": "6", "Max_Cone": "180", "Lock_Cone": "30", - "Textual_Description": "\"@upgrades/hawkeye_zx16.png@\"\n" + "Textual_Description": "\"@upgrades/hawkeye_zx16.png@\"\n", + "shield_facets": "0" }, { "Key": "hawkeye2__upgrades", @@ -11601,7 +11596,8 @@ "Tracking_Cone": "7", "Max_Cone": "180", "Lock_Cone": "40", - "Textual_Description": "\"@upgrades/hawkeye_zx50.png@\"\n" + "Textual_Description": "\"@upgrades/hawkeye_zx50.png@\"\n", + "shield_facets": "0" }, { "Key": "hawkeye3__upgrades", @@ -11614,7 +11610,8 @@ "Tracking_Cone": "9", "Max_Cone": "180", "Lock_Cone": "45", - "Textual_Description": "\"@upgrades/hawkeye_zx86.png@\"\n" + "Textual_Description": "\"@upgrades/hawkeye_zx86.png@\"\n", + "shield_facets": "0" }, { "Key": "hawkeye4__upgrades", @@ -11626,35 +11623,40 @@ "Radar_Range": "300000000", "Tracking_Cone": "9", "Max_Cone": "180", - "Lock_Cone": "45" + "Lock_Cone": "45", + "shield_facets": "0" }, { "Key": "passenger_quarters_01__upgrades", "Name": "Cryochamber", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/passenger_cryo_chamber.png@All the life-support a frozen passenger needs to survive the journey in a depressurized cargo hold. Provides life-support and space for 1 passenger.\"\n", - "Mass": "0.5" + "Mass": "0.5", + "shield_facets": "0" }, { "Key": "passenger_quarters_02__upgrades", "Name": "Steerage Class", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/passenger_steerage_class.png@Part of the cargo hold is just equiped with an additional life-support for whatever kind of atmosphere is needed for the merry guests standing there or sitting on the floor. Provides life-support and space for up to 4 passengers.\"\n", - "Mass": "0.8" + "Mass": "0.8", + "shield_facets": "0" }, { "Key": "passenger_quarters_03__upgrades", "Name": "Economy Class", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/passenger_economy_class.png@Life-support and even seats for the dear customer. Provides life-support and space for up to 4 passengers.\"\n", - "Mass": "1" + "Mass": "1", + "shield_facets": "0" }, { "Key": "passenger_quarters_04__upgrades", "Name": "Comfort Class", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/passenger_comfort_class.png@Life-support, seat and even bunk-beds provide a level of comfort the captain would like to have. Provides life-support and space for up to 2 passengers.\"\n", - "Mass": "1.2" + "Mass": "1.2", + "shield_facets": "0" }, { "Key": "repair_droid01__upgrades", @@ -11662,7 +11664,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "1" + "Repair_Droid": "1", + "shield_facets": "0" }, { "Key": "repair_droid02__upgrades", @@ -11670,7 +11673,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "2" + "Repair_Droid": "2", + "shield_facets": "0" }, { "Key": "repair_droid03__upgrades", @@ -11678,7 +11682,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "3" + "Repair_Droid": "3", + "shield_facets": "0" }, { "Key": "repair_droid04__upgrades", @@ -11686,7 +11691,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "4" + "Repair_Droid": "4", + "shield_facets": "0" }, { "Key": "repair_droid05__upgrades", @@ -11694,7 +11700,8 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "5" + "Repair_Droid": "5", + "shield_facets": "0" }, { "Key": "skyscope1__upgrades", @@ -11705,7 +11712,8 @@ "Tracking_Cone": "4", "Max_Cone": "180", "Lock_Cone": "25", - "Textual_Description": "\"@upgrades/skyscope_alpha.png@\"\n" + "Textual_Description": "\"@upgrades/skyscope_alpha.png@\"\n", + "shield_facets": "0" }, { "Key": "skyscope2__upgrades", @@ -11716,7 +11724,8 @@ "Tracking_Cone": "5", "Max_Cone": "180", "Lock_Cone": "30", - "Textual_Description": "\"@upgrades/skyscope_alphaplus.png@\"\n" + "Textual_Description": "\"@upgrades/skyscope_alphaplus.png@\"\n", + "shield_facets": "0" }, { "Key": "skyscope3__upgrades", @@ -11728,7 +11737,8 @@ "Tracking_Cone": "8", "Max_Cone": "180", "Lock_Cone": "35", - "Textual_Description": "\"@upgrades/skyscope_beta.png@\"\n" + "Textual_Description": "\"@upgrades/skyscope_beta.png@\"\n", + "shield_facets": "0" }, { "Key": "starscanner1__upgrades", @@ -11740,7 +11750,8 @@ "Tracking_Cone": "3", "Max_Cone": "180", "Lock_Cone": "40", - "Textual_Description": "\"@upgrades/starscanner_2530.png@\"\n" + "Textual_Description": "\"@upgrades/starscanner_2530.png@\"\n", + "shield_facets": "0" }, { "Key": "starscanner2__upgrades", @@ -11752,7 +11763,8 @@ "Tracking_Cone": "6", "Max_Cone": "180", "Lock_Cone": "42", - "Textual_Description": "\"@upgrades/starscanner_2545.png@\"\n" + "Textual_Description": "\"@upgrades/starscanner_2545.png@\"\n", + "shield_facets": "0" }, { "Key": "starscanner3__upgrades", @@ -11765,7 +11777,8 @@ "Tracking_Cone": "10", "Max_Cone": "180", "Lock_Cone": "45", - "Textual_Description": "\"@upgrades/starscanner_2600.png@\"\n" + "Textual_Description": "\"@upgrades/starscanner_2600.png@\"\n", + "shield_facets": "0" }, { "Key": "starscanner4__upgrades", @@ -11777,7 +11790,8 @@ "Radar_Range": "120000000", "Tracking_Cone": "10", "Max_Cone": "180", - "Lock_Cone": "45" + "Lock_Cone": "45", + "shield_facets": "0" }, { "Key": "surveyor1__upgrades", @@ -11789,7 +11803,8 @@ "Radar_Range": "50000000", "Tracking_Cone": "6", "Max_Cone": "180", - "Lock_Cone": "40" + "Lock_Cone": "40", + "shield_facets": "0" }, { "Key": "surveyor2__upgrades", @@ -11801,7 +11816,8 @@ "Radar_Range": "100000000", "Tracking_Cone": "10", "Max_Cone": "180", - "Lock_Cone": "45" + "Lock_Cone": "45", + "shield_facets": "0" }, { "Key": "rlaantracker1__upgrades", @@ -11812,7 +11828,8 @@ "Radar_Range": "300000000", "Tracking_Cone": "12", "Max_Cone": "180", - "Lock_Cone": "50" + "Lock_Cone": "50", + "shield_facets": "0" }, { "Key": "Clydesdale__merchant_guild", @@ -11871,9 +11888,9 @@ "Dock": "{;0;-55;120;40;0}{;0;-30;0;30;0}", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;.9;.2;1;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;1;4}{Contraband;;;;}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;.8;.2;;3}{Industrially_Manufactured_Goods/Electronics;.8;.2;;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;1;3}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;3;4}{Industrially_Manufactured_Goods/Recycled_Products;.78;.2;10;15}{Natural_Products/Food;1.2;.2;5;2}{Natural_Products/Life-forms;.9;.1;;}{Natural_Products/Liquor;1.05;.1;;1}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;1;1}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;.8;.1;;}{Refined_Materials/Alloys;1.1;.1;;2}{Refined_Materials/Chemicals;1.1;.3;1;1}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.8;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.1;.2;;4}{Specialty_Goods/Medical;1.1;.1;;3}{starships/Confed/Heavy;1;;-2;5}{starships/Confed/Light;1;;;3}{starships/Confed/Medium;1;;-3;9}{starships/Confed/Milspec;1;;-3;5}{starships/Regional_Guard/Heavy;1;;-2;3}{starships/Regional_Guard/Light;1;;;2}{starships/Regional_Guard/Medium;1;;;2}{upgrades/Ammunition/Common;1;.1;500;250}{upgrades/Ammunition/Uncommon;2;.7;230;500}{upgrades/Ammunition/Confed;3;.1;80;50}{upgrades/Armor;1;.1;;5}{upgrades/Capacitors/Standard;1;.1;2;10}{upgrades/ECM_Systems;1;.1;;5}{upgrades/Experimental;1.4;.2;-20;23}{upgrades/Jump_Drives;1;.1;;5}{upgrades/Overdrive;1;.1;;5}{upgrades/Reactors/Standard;1;;;17}{upgrades/Repair_Systems;1.1;.2;;5}{upgrades/Sensors/Confed;1;.1;;1}{upgrades/Sensors/Common;1;;;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;;;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;-2;5}{upgrades/SPEC_Capacitors;1;.1;4;2}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;1}{upgrades/Weapons/Beam_Arrays_Light;1;;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;1;.1;;2}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;3}{upgrades/Weapons/Mounted_Guns_Light;1;;;10}{upgrades/Weapons/Mounted_Guns_Medium;1;;;5}{upgrades/Weapons/Turrets;1;.1;1;1}", "Upgrade_Storage_Volume": "100000", + "armor": "56000.0", + "shield": "20000.0", "shield_facets": "4", - "armor": "28000", - "shield_strength": "20000", "accel": "10000000" }, { @@ -11931,6 +11948,7 @@ "Dock": "{;-3.47;3.47;-20.13;2.21;0}{;-4.91;-0.0;-20.13;2.21;0}{;-3.47;-3.47;-20.13;2.21;0}{;0.0;-4.91;-20.13;2.21;0}{;3.47;-3.47;-20.13;2.21;0}{;4.91;-0.0;-20.13;2.21;0}{;3.47;3.47;-20.13;2.21;0}{;0.0;4.91;-20.13;2.21;0}", "Cargo_Import": "{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Specialty_Goods/Medical;1.2;.1;;3}", "Upgrade_Storage_Volume": "600", + "shield_facets": "0", "accel": "5000000" }, { @@ -11946,8 +11964,6 @@ "Mass": "25", "Fuel_Capacity": "2", "Hull": "60", - "Shield_Front_Top_Right": "50", - "Shield_Back_Top_Left": "50", "Shield_Recharge": "15", "Warp_Capacitor": "25", "Primary_Capacitor": "200", @@ -11986,8 +12002,9 @@ "Light": "{supernova.bmp.bfxm;4.97838;5.31369;-12.347302;13;;;;;}{supernova.bmp.bfxm;-4.97823;5.31369;-12.347297;13;;;;;}", "Mounts": "{Arc_Device;;;Light Medium;21.89495;-6.265625;15.019003;;;;;;;;;1;1}{Arc_Device;;;Light Medium;-21.89495;-6.265625;15.019003;;;;;;;;;1;1}{Crippler;;;Light Medium Special;0;19.2408;20.111703;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "1", + "armor": "50.0", + "shield": "50.0", "shield_facets": "2", - "armor": "25", "accel": "3000" }, { @@ -12003,8 +12020,6 @@ "Mass": "72", "Fuel_Capacity": "3.46", "Hull": "400", - "Shield_Front_Top_Right": "125", - "Shield_Back_Top_Left": "125", "Shield_Recharge": "25", "Warp_Capacitor": "250", "Primary_Capacitor": "125", @@ -12042,1625 +12057,2010 @@ "Prohibited_Upgrades": "upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;1.302201;-0.152592;-6.2;2;;;;;}{supernova.bmp.bfxm;-1.302201;-0.152592;-6.2;2;;;;;}{supernova.bmp.bfxm;1.732082;-0.151008;-6.2;2;;;;;}{supernova.bmp.bfxm;-1.732082;-0.151008;-6.2;2;;;;;}{supernova.bmp.bfxm;2.863410;-0.146839;-6.2;2;;;;;}{supernova.bmp.bfxm;-2.863410;-0.146839;-6.2;2;;;;;}{supernova.bmp.bfxm;2.353267;-0.148718;-6.2;2;;;;;}{supernova.bmp.bfxm;-2.353267;-0.148718;-6.2;2;;;;;}{supernova.bmp.bfxm;0.506365;-0.78629;-5.229958;2;;;;;}{supernova.bmp.bfxm;-0.506365;-0.78629;-5.229958;2;;;;;}{supernova.bmp.bfxm;0.230966;0.46835;-5.2848989;2;;;;;}{supernova.bmp.bfxm;-0.230966;0.46835;-5.2848989;2;;;;;}", "Upgrade_Storage_Volume": "225", + "armor": "50.0", + "shield": "125.0", "shield_facets": "2", - "armor": "25", "accel": "5000" }, { "Key": "CS_UVRF_Laser__upgrades", "Name": "Capital Scale Rapid Fire UV Laser", "Object_Type": "Weapon", - "Mounts": "{CS_UVRF_Laser;;;;;;;;;;;;;;;1;1}" + "Mounts": "{CS_UVRF_Laser;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "CS_UV_Laser__upgrades", "Name": "Capital Scale UV Laser", "Object_Type": "Weapon", - "Mounts": "{CS_UV_Laser;;;;;;;;;;;;;;;1;1}" + "Mounts": "{CS_UV_Laser;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "CS_XRRF_Laser__upgrades", "Name": "Rapid Fire XASER", "Object_Type": "Weapon", - "Mounts": "{CS_XRRF_Laser;;;;;;;;;;;;;;;1;1}" + "Mounts": "{CS_XRRF_Laser;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "CS_XR_Laser__upgrades", "Name": "XASER", "Object_Type": "Weapon", - "Mounts": "{CS_XR_Laser;;;;;;;;;;;;;;;1;1}" + "Mounts": "{CS_XR_Laser;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Disruptor_Beam__upgrades", "Name": "Disruptor Beam", "Object_Type": "Weapon", "Mounts": "{DisruptorBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "Disruptor__upgrades", "Name": "Disruptor Cannon", "Object_Type": "Weapon", "Mounts": "{Disruptor;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "Dissonance__upgrades", "Name": "Dissonance", "Object_Type": "Weapon", - "Mounts": "{Dissonance;;;;;;;;;;;;;;;1;1}" + "Mounts": "{Dissonance;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "FS_IRRF_Laser__upgrades", "Name": "Rapid Fire IR Laser", "Object_Type": "Weapon", - "Mounts": "{FS_IRRF_Laser;;;;;;;;;;;;;;;1;1}" + "Mounts": "{FS_IRRF_Laser;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "FS_IR_Laser__upgrades", "Name": "IR Laser", "Object_Type": "Weapon", - "Mounts": "{FS_IR_Laser;;;;;;;;;;;;;;;1;1}" + "Mounts": "{FS_IR_Laser;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "FS_MWRF_Laser__upgrades", "Name": "Rapid Fire Microwave Laser", "Object_Type": "Weapon", - "Mounts": "{FS_MWRF_Laser;;;;;;;;;;;;;;;1;1}" + "Mounts": "{FS_MWRF_Laser;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "FS_MW_Laser__upgrades", "Name": "Microwave Laser", "Object_Type": "Weapon", - "Mounts": "{FS_MW_Laser;;;;;;;;;;;;;;;1;1}" + "Mounts": "{FS_MW_Laser;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Heavy_Ion_Beam__upgrades", "Name": "Heavy Ion Beam", "Object_Type": "Weapon", - "Mounts": "{HeavyIonBeam;;;;;;;;;;;;;;;1;1}" + "Mounts": "{HeavyIonBeam;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Hephaestus_Mini__upgrades", "Name": "Hephaestus Cannon", "Object_Type": "Weapon", "Mounts": "{Hephaestus-mini;15000;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "Hephaestus_Mini_ammo__upgrades", "Name": "Hephaestus Shells", "Object_Type": "Weapon", - "Mounts": "{Hephaestus-mini;1000;;;;;;;;;;;;;;1;1}" + "Mounts": "{Hephaestus-mini;1000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Hephaestus_Point_Defense__upgrades", "Name": "Hephaestus PD", "Object_Type": "Weapon", "Mounts": "{HephaestusPointDefenseCannon;25000;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "Hephaestus_Point_Defense_ammo__upgrades", "Name": "Hephaestus PD Ammo", "Object_Type": "Weapon", - "Mounts": "{HephaestusPointDefenseCannon;1000;;;;;;;;;;;;;;1;1}" + "Mounts": "{HephaestusPointDefenseCannon;1000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Ion_Beam__upgrades", "Name": "Light Ion Beam", "Object_Type": "Weapon", "Mounts": "{IonBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/medium.png@\"\n" + "Textual_Description": "\"@upgrades/medium.png@\"\n", + "shield_facets": "0" }, { "Key": "Ion_Burster__upgrades", "Name": "Ion Burster", "Object_Type": "Weapon", - "Mounts": "{IonBurster;10000;;;;;;;;;;;;;;1;1}" + "Mounts": "{IonBurster;10000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Ion_Burster_ammo__upgrades", "Name": "Ion Burster ammo", "Object_Type": "Weapon", - "Mounts": "{IonBurster;2000;;;;;;;;;;;;;;1;1}" + "Mounts": "{IonBurster;2000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Jackhammer__upgrades", "Name": "Jackhammer", "Object_Type": "Weapon", - "Mounts": "{Jackhammer;600;;;;;;;;;;;;;;1;1}" + "Mounts": "{Jackhammer;600;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Jackhammer_ammo__upgrades", "Name": "Replacement Jackhammer Coolant", "Object_Type": "Weapon", - "Mounts": "{Jackhammer;10;;;;;;;;;;;;;;1;1}" + "Mounts": "{Jackhammer;10;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Ktek_Beam_PD__upgrades", "Name": "Ktek Point Defense Beam", "Object_Type": "Weapon", "Mounts": "{KtekBeampd;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/beam1.png@\"\n" + "Textual_Description": "\"@upgrades/beam1.png@\"\n", + "shield_facets": "0" }, { "Key": "Ktek_Beam__upgrades", "Name": "Ktek Beam", "Object_Type": "Weapon", "Mounts": "{KtekBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/beam1.png@\"\n" + "Textual_Description": "\"@upgrades/beam1.png@\"\n", + "shield_facets": "0" }, { "Key": "Ktek_Gun__upgrades", "Name": "Ktek Gun", "Object_Type": "Weapon", "Mounts": "{Ktek;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "Ktek_Mini_Grav-thumper__upgrades", "Name": "Miniature Grav-thumper", "Object_Type": "Weapon", - "Mounts": "{MiniGravThumper;8;;;;;;;;;;;;;;1;1}" + "Mounts": "{MiniGravThumper;8;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Ktek_Mini_Grav-thumper_ammo__upgrades", "Name": "Miniature Grav-thumper ammo", "Object_Type": "Weapon", - "Mounts": "{MiniGravThumper;1;;;;;;;;;;;;;;1;1}" + "Mounts": "{MiniGravThumper;1;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "LR_Disruptor_Beam__upgrades", "Name": "Long Range Disruptor Beam", "Object_Type": "Weapon", - "Mounts": "{LR_DisruptorBeam;;;;;;;;;;;;;;;1;1}" + "Mounts": "{LR_DisruptorBeam;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "LR_Disruptor__upgrades", "Name": "Long Range Disruptor", "Object_Type": "Weapon", - "Mounts": "{LR_Disruptor;;;;;;;;;;;;;;;1;1}" + "Mounts": "{LR_Disruptor;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Micro_Driver__upgrades", "Name": "Micro Driver", "Object_Type": "Weapon", - "Mounts": "{MicroDriver;5000;;;;;;;;;;;;;;1;1}" + "Mounts": "{MicroDriver;5000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Micro_Driver_ammo__upgrades", "Name": "Micro Driver Ammo", "Object_Type": "Weapon", - "Mounts": "{MicroDriver;1000;;;;;;;;;;;;;;1;1}" + "Mounts": "{MicroDriver;1000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Mini_Driver__upgrades", "Name": "Mini Driver", "Object_Type": "Weapon", - "Mounts": "{MiniDriver;2000;;;;;;;;;;;;;;1;1}" + "Mounts": "{MiniDriver;2000;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Mini_Driver_ammo__upgrades", "Name": "Mini Driver Ammo", "Object_Type": "Weapon", - "Mounts": "{MiniDriver;200;;;;;;;;;;;;;;1;1}" + "Mounts": "{MiniDriver;200;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Particle_Beam__upgrades", "Name": "Particle Beam", "Object_Type": "Weapon", "Mounts": "{ParticleBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "Pugilist__upgrades", "Name": "Pugilist", "Object_Type": "Weapon", - "Mounts": "{Pugilist;;;;;;;;;;;;;;;1;1}" + "Mounts": "{Pugilist;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Relativistic_Particle_Beam__upgrades", "Name": "Relativistic Particle Beam", "Object_Type": "Weapon", - "Mounts": "{RelativisticParticleBeam;;;;;;;;;;;;;;;1;1}" + "Mounts": "{RelativisticParticleBeam;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "Shield_Breaker__upgrades", "Name": "Shield Breaker", "Object_Type": "Weapon", - "Mounts": "{ShieldBreaker;;;;;;;;;;;;;;;1;1}" + "Mounts": "{ShieldBreaker;;;;;;;;;;;;;;;1;1}", + "shield_facets": "0" }, { "Key": "", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "Key", - "Textual_Description": "string\n" + "Textual_Description": "string\n", + "shield_facets": "0" }, { "Key": "admonisher.old", - "Textual_Description": "\"Purist light assault craft\"\n" + "Textual_Description": "\"Purist light assault craft\"\n", + "shield_facets": "0" }, { "Key": "aelar", - "Textual_Description": "\"Aeran escort/superiority fighter\"\n" + "Textual_Description": "\"Aeran escort/superiority fighter\"\n", + "shield_facets": "0" }, { "Key": "aelar.blank", - "Textual_Description": "\"Aeran escort/superiority fighter\"\n" + "Textual_Description": "\"Aeran escort/superiority fighter\"\n", + "shield_facets": "0" }, { "Key": "aeon", - "Textual_Description": "\"Aeran interceptor\"\n" + "Textual_Description": "\"Aeran interceptor\"\n", + "shield_facets": "0" }, { "Key": "aeon.blank", - "Textual_Description": "\"Aeran interceptor\"\n" + "Textual_Description": "\"Aeran interceptor\"\n", + "shield_facets": "0" }, { "Key": "aevant", - "Textual_Description": "\"Aeran assault craft (fighter bomber)\"\n" + "Textual_Description": "\"Aeran assault craft (fighter bomber)\"\n", + "shield_facets": "0" }, { "Key": "aevant.blank", - "Textual_Description": "\"Aeran assault craft (fighter bomber)\"\n" + "Textual_Description": "\"Aeran assault craft (fighter bomber)\"\n", + "shield_facets": "0" }, { "Key": "corvette", - "Textual_Description": "\"The Thales class has the distinction of being the oldest military vessel in service that was originally designed for military use.\"\n" + "Textual_Description": "\"The Thales class has the distinction of being the oldest military vessel in service that was originally designed for military use.\"\n", + "shield_facets": "0" }, { "Key": "corvette__pirates", - "Textual_Description": "\"Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.\"\n" + "Textual_Description": "\"Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.\"\n", + "shield_facets": "0" }, { "Key": "corvette__pirates.blank", - "Textual_Description": "\"Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.\"\n" + "Textual_Description": "\"Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.\"\n", + "shield_facets": "0" }, { "Key": "corvette.blank", - "Textual_Description": "\"The Thales class has the distinction of being the oldest military vessel in service that was originally designed for military use.\"\n" + "Textual_Description": "\"The Thales class has the distinction of being the oldest military vessel in service that was originally designed for military use.\"\n", + "shield_facets": "0" }, { "Key": "huldra", - "Textual_Description": "\"Rlaan destroyer. Generally seen escorting larger capital vessels.\"\n" + "Textual_Description": "\"Rlaan destroyer. Generally seen escorting larger capital vessels.\"\n", + "shield_facets": "0" }, { "Key": "huldra.blank", - "Textual_Description": "\"Rlaan destroyer. Generally seen escorting larger capital vessels.\"\n" + "Textual_Description": "\"Rlaan destroyer. Generally seen escorting larger capital vessels.\"\n", + "shield_facets": "0" }, { "Key": "idun", - "Textual_Description": "\"The Rlaan Shizu is in many ways similar to its Confederate counterpart, the Schroedinger, meant more for reconaissance and scouting patrols than heavy combat. Nonetheless, its twin gun mountings allow it to mount a basic defense, should it come under attack.\"\n" + "Textual_Description": "\"The Rlaan Shizu is in many ways similar to its Confederate counterpart, the Schroedinger, meant more for reconaissance and scouting patrols than heavy combat. Nonetheless, its twin gun mountings allow it to mount a basic defense, should it come under attack.\"\n", + "shield_facets": "0" }, { "Key": "idun.blank", - "Textual_Description": "\"The Rlaan Shizu is in many ways similar to its Confederate counterpart, the Schroedinger, meant more for reconaissance and scouting patrols than heavy combat. Nonetheless, its twin gun mountings allow it to mount a basic defense, should it come under attack.\"\n" + "Textual_Description": "\"The Rlaan Shizu is in many ways similar to its Confederate counterpart, the Schroedinger, meant more for reconaissance and scouting patrols than heavy combat. Nonetheless, its twin gun mountings allow it to mount a basic defense, should it come under attack.\"\n", + "shield_facets": "0" }, { "Key": "lodur", - "Textual_Description": "\"Rlaan cruiser\"\n" + "Textual_Description": "\"Rlaan cruiser\"\n", + "shield_facets": "0" }, { "Key": "lodur.blank", - "Textual_Description": "\"Rlaan cruiser\"\n" + "Textual_Description": "\"Rlaan cruiser\"\n", + "shield_facets": "0" }, { "Key": "thrud", - "Textual_Description": "\"Rlaan mass production fighter\"\n" + "Textual_Description": "\"Rlaan mass production fighter\"\n", + "shield_facets": "0" }, { "Key": "thrud.blank", - "Textual_Description": "\"Rlaan mass production fighter\"\n" + "Textual_Description": "\"Rlaan mass production fighter\"\n", + "shield_facets": "0" }, { "Key": "vark", - "Textual_Description": "\"A venerable Aeran destroyer, the Agasicles is designed far more for screening efforts than for capital engagements, but is nimble for a ship its size and dangerous in close quarters.\"\n" + "Textual_Description": "\"A venerable Aeran destroyer, the Agasicles is designed far more for screening efforts than for capital engagements, but is nimble for a ship its size and dangerous in close quarters.\"\n", + "shield_facets": "0" }, { "Key": "vark.blank", - "Textual_Description": "\"A venerable Aeran destroyer, the Agasicles is designed far more for screening efforts than for capital engagements, but is nimble for a ship its size and dangerous in close quarters.\"\n" + "Textual_Description": "\"A venerable Aeran destroyer, the Agasicles is designed far more for screening efforts than for capital engagements, but is nimble for a ship its size and dangerous in close quarters.\"\n", + "shield_facets": "0" }, { "Key": "vidar", - "Textual_Description": "\"Rlaan mass production assault craft\"\n" + "Textual_Description": "\"Rlaan mass production assault craft\"\n", + "shield_facets": "0" }, { "Key": "vidar.blank", - "Textual_Description": "\"Rlaan mass production assault craft\"\n" + "Textual_Description": "\"Rlaan mass production assault craft\"\n", + "shield_facets": "0" }, { "Key": "vitik", - "Textual_Description": "\"A carrier built on a scale of paranoid grandeur, this Aeran vessel is as much mobile base as anything else, packing sufficient supplies for prolonged engagements with contested supply lines.\"\n" + "Textual_Description": "\"A carrier built on a scale of paranoid grandeur, this Aeran vessel is as much mobile base as anything else, packing sufficient supplies for prolonged engagements with contested supply lines.\"\n", + "shield_facets": "0" }, { "Key": "vitik.blank", - "Textual_Description": "\"A carrier built on a scale of paranoid grandeur, this Aeran vessel is as much mobile base as anything else, packing sufficient supplies for prolonged engagements with contested supply lines.\"\n" + "Textual_Description": "\"A carrier built on a scale of paranoid grandeur, this Aeran vessel is as much mobile base as anything else, packing sufficient supplies for prolonged engagements with contested supply lines.\"\n", + "shield_facets": "0" }, { "Key": "yavok", - "Textual_Description": "\"The Dreadnaught of the modern day, these Aeran battleships pack so many innovations and so much firepower into a single vessel that it is unfair to categorize it with other battlecruisers or battleships.\"\n" + "Textual_Description": "\"The Dreadnaught of the modern day, these Aeran battleships pack so many innovations and so much firepower into a single vessel that it is unfair to categorize it with other battlecruisers or battleships.\"\n", + "shield_facets": "0" }, { "Key": "yavok.blank", - "Textual_Description": "\"The Dreadnaught of the modern day, these Aeran battleships pack so many innovations and so much firepower into a single vessel that it is unfair to categorize it with other battlecruisers or battleships.\"\n" + "Textual_Description": "\"The Dreadnaught of the modern day, these Aeran battleships pack so many innovations and so much firepower into a single vessel that it is unfair to categorize it with other battlecruisers or battleships.\"\n", + "shield_facets": "0" }, { "Key": "yrilan", - "Textual_Description": "\"Aeran cruiser, of venerable tenure of service.\"\n" + "Textual_Description": "\"Aeran cruiser, of venerable tenure of service.\"\n", + "shield_facets": "0" }, { "Key": "yrilan.blank", - "Textual_Description": "\"Aeran cruiser, of venerable tenure of service.\"\n" + "Textual_Description": "\"Aeran cruiser, of venerable tenure of service.\"\n", + "shield_facets": "0" }, { "Key": "spec_capacitor01__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", + "shield_facets": "0" }, { "Key": "spec_capacitor02__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", + "shield_facets": "0" }, { "Key": "spec_capacitor03__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", + "shield_facets": "0" }, { "Key": "spec_capacitor04__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", + "shield_facets": "0" }, { "Key": "spec_capacitor05__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", + "shield_facets": "0" }, { "Key": "cargo_expansion__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@Trades upgrade space and support systems for cargo volume\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@Trades upgrade space and support systems for cargo volume\"\n", + "shield_facets": "0" }, { "Key": "laser01__upgrades", - "Textual_Description": "\"@upgrades/light.png@\"\n" + "Textual_Description": "\"@upgrades/light.png@\"\n", + "shield_facets": "0" }, { "Key": "laser02__upgrades", - "Textual_Description": "\"@upgrades/light.png@\"\n" + "Textual_Description": "\"@upgrades/light.png@\"\n", + "shield_facets": "0" }, { "Key": "laser03__upgrades", - "Textual_Description": "\"@upgrades/light.png@\"\n" + "Textual_Description": "\"@upgrades/light.png@\"\n", + "shield_facets": "0" }, { "Key": "laser04__upgrades", - "Textual_Description": "\"@upgrades/light.png@\"\n" + "Textual_Description": "\"@upgrades/light.png@\"\n", + "shield_facets": "0" }, { "Key": "meson01__upgrades", - "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n" + "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "meson02__upgrades", - "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n" + "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "meson03__upgrades", - "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n" + "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "meson04__upgrades", - "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n" + "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "plasma01__upgrades", - "Textual_Description": "\"@upgrades/heavy.png@\"\n" + "Textual_Description": "\"@upgrades/heavy.png@\"\n", + "shield_facets": "0" }, { "Key": "plasma02__upgrades", - "Textual_Description": "\"@upgrades/heavy.png@\"\n" + "Textual_Description": "\"@upgrades/heavy.png@\"\n", + "shield_facets": "0" }, { "Key": "plasma03__upgrades", - "Textual_Description": "\"@upgrades/heavy.png@\"\n" + "Textual_Description": "\"@upgrades/heavy.png@\"\n", + "shield_facets": "0" }, { "Key": "plasma04__upgrades", - "Textual_Description": "\"@upgrades/heavy.png@\"\n" + "Textual_Description": "\"@upgrades/heavy.png@\"\n", + "shield_facets": "0" }, { "Key": "disruptor01__upgrades", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "disruptor02__upgrades", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "disruptor03__upgrades", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "disruptor04__upgrades", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", + "shield_facets": "0" }, { "Key": "photon01__upgrades", - "Textual_Description": "\"@upgrades/beam2.png@\"\n" + "Textual_Description": "\"@upgrades/beam2.png@\"\n", + "shield_facets": "0" }, { "Key": "photon02__upgrades", - "Textual_Description": "\"@upgrades/beam2.png@\"\n" + "Textual_Description": "\"@upgrades/beam2.png@\"\n", + "shield_facets": "0" }, { "Key": "photon03__upgrades", - "Textual_Description": "\"@upgrades/beam3.png@\"\n" + "Textual_Description": "\"@upgrades/beam3.png@\"\n", + "shield_facets": "0" }, { "Key": "photon04__upgrades", - "Textual_Description": "\"@upgrades/beam3.png@\"\n" + "Textual_Description": "\"@upgrades/beam3.png@\"\n", + "shield_facets": "0" }, { "Key": "MiniGravThumper_ammo__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "fusion_heavy__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "lr_laser_beam__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "disruptor_cannon__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "fusion_gun__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "ion__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "ion_beam_heavy__upgrades", - "Textual_Description": "\"@upgrades/medium.png@\"\n" + "Textual_Description": "\"@upgrades/medium.png@\"\n", + "shield_facets": "0" }, { "Key": "laser_beam__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "mass_driver__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@Long before the dawn of modern man, it was known to various hominids that hurling a blunt object was a reasonable way to deliver damage from a distance. Fittingly enough, the worlds of the Purist faction are among the chief manufacturers of mass drivers.\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@Long before the dawn of modern man, it was known to various hominids that hurling a blunt object was a reasonable way to deliver damage from a distance. Fittingly enough, the worlds of the Purist faction are among the chief manufacturers of mass drivers.\"\n", + "shield_facets": "0" }, { "Key": "meson_blaster__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "neutron_gun__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "particle_cannon__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "photon_gun__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "plasma_gun__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", + "shield_facets": "0" }, { "Key": "antimatter__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "capship_disruptor__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "gauss_ammo__upgrades", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "hadouken__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "javelin__upgrades", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "killer_bee_ammo__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "killerbee_ammo__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "lr_beam__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "mace__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "maul_ammo__upgrades", - "Textual_Description": "\"@upgrades/maul.png@\"\n" + "Textual_Description": "\"@upgrades/maul.png@\"\n", + "shield_facets": "0" }, { "Key": "photon_swarm__upgrades", - "Textual_Description": "\"@upgrades/missile.png@\"\n" + "Textual_Description": "\"@upgrades/missile.png@\"\n", + "shield_facets": "0" }, { "Key": "porcupine_mine__upgrades", - "Textual_Description": "\"@upgrades/porcupine_mine.png@\"\n" + "Textual_Description": "\"@upgrades/porcupine_mine.png@\"\n", + "shield_facets": "0" }, { "Key": "thermopylae__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "pmiss\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "carribean__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "deimos__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "desert__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "Dirt__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "earth__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "ganymede__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "industrial__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "j_class__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "jump__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "k_class__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "Lava__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "m_class__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "mars__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "moon__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "n_class__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "newdetroit__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "ocean__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "Snow__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "tkirsa__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "tundra__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "university__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "starfortressinner__rlaan", - "Textual_Description": "\"WRITEME\"\n" + "Textual_Description": "\"WRITEME\"\n", + "shield_facets": "0" }, { "Key": "starfortressouter__rlaan", - "Textual_Description": "\"WRITEME\"\n" + "Textual_Description": "\"WRITEME\"\n", + "shield_facets": "0" }, { "Key": "orange_star__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "red_star__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "sun__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "white_star__planets\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "aera_mil_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "aera_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "confed_mil_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "confed_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "iso_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "pirate_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "rlaan_mil_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "rlaan_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "standard_missions__upgrades\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "contraband\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "contraband.blank\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "contraband.template\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "contraband__aera\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "contraband__confed\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "contraband__luddites\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "contraband__rlaan\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "navpoint\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "navpoint.blank\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "navpoint.template\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "landscape\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "landscape.template\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "ABelt__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AField__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AFieldBase__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AFieldBaseSparse__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AFieldBaseThin__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AFieldJump__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AFieldJumpSparse__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AFieldJumpThin__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AFieldSparse__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "AFieldThin__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "asteroids__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "asteroids1600gap__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "asteroids200gap__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "asteroids400gap__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "asteroids800gap__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "green-nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "green-nebula.nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "HiddenAsteroid__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "nebula_veryhuge__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "nebula_veryhuge.nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "nebula.bigger1.xmesh__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "nebula.bigger2.xmesh__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "nebula.bigger3.xmesh__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "nebula.bigger4.xmesh__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "nebula.nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "purple-nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "purple-nebula.nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "red-nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "red-nebula.nebula__neutral\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "wormhole.neutral.stable\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "wormhole.stable\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "wormhole.stableglownetsaccessory\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "wormhole.unstable\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "wormhole.unstableglownetsaccessory\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "wormhole.unstableswirlsaccessory\"", - "Textual_Description": "\n" + "Textual_Description": "\n", + "shield_facets": "0" }, { "Key": "First_Class_Passenger", - "Textual_Description": "\"@cargo/cargo-hud.png@If you are taking first class passengers around, they had better have all the amenities one expects.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@If you are taking first class passengers around, they had better have all the amenities one expects.\"\n", + "shield_facets": "0" }, { "Key": "Business_Class_Passenger", - "Textual_Description": "\"@cargo/cargo-hud.png@With a laptop and a wide rear, the business class passenger enjoys some of the room of the first class passenger.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@With a laptop and a wide rear, the business class passenger enjoys some of the room of the first class passenger.\"\n", + "shield_facets": "0" }, { "Key": "AI_Cores", - "Textual_Description": "\"@cargo/ai_cores.png@Because if they have to ride with the cargo, they start calling you Dave.\"\n" + "Textual_Description": "\"@cargo/ai_cores.png@Because if they have to ride with the cargo, they start calling you Dave.\"\n", + "shield_facets": "0" }, { "Key": "Frozen_Colonist", - "Textual_Description": "\"@cargo/frozen_colonist.png@Polite, space-efficient, doesn't try to back-seat pilot, doesn't care how long it takes to get there. Unfortunately, being technically, if only temporarily, deceased - not much for conversation.\"\n" + "Textual_Description": "\"@cargo/frozen_colonist.png@Polite, space-efficient, doesn't try to back-seat pilot, doesn't care how long it takes to get there. Unfortunately, being technically, if only temporarily, deceased - not much for conversation.\"\n", + "shield_facets": "0" }, { "Key": "Hitchhiker", - "Textual_Description": "\"@cargo/steerage_class@Always brings a towel of his/her own\"\n" + "Textual_Description": "\"@cargo/steerage_class@Always brings a towel of his/her own\"\n", + "shield_facets": "0" }, { "Key": "Standard_Mealpacks", - "Textual_Description": "\"@cargo/standard_mealpacks.png@Food! Glorious food! Hot TVP and Soymilk!\"\n" + "Textual_Description": "\"@cargo/standard_mealpacks.png@Food! Glorious food! Hot TVP and Soymilk!\"\n", + "shield_facets": "0" }, { "Key": "Luxury_Foods", - "Textual_Description": "\"@cargo/luxury_mealpacks.png@Containing such rarities as actual game meat and imported specialty products, these bundles of luxury items are primarily purchased only by upscale hotels and restaurants.\"\n" + "Textual_Description": "\"@cargo/luxury_mealpacks.png@Containing such rarities as actual game meat and imported specialty products, these bundles of luxury items are primarily purchased only by upscale hotels and restaurants.\"\n", + "shield_facets": "0" }, { "Key": "Filtered_Water", - "Textual_Description": "\"@cargo/fresh_water.png@While no colony world settled by Humans or Aera is without substantial natural water supplies, mining bases and orbital stations are always in need of re-supply.\"\n" + "Textual_Description": "\"@cargo/fresh_water.png@While no colony world settled by Humans or Aera is without substantial natural water supplies, mining bases and orbital stations are always in need of re-supply.\"\n", + "shield_facets": "0" }, { "Key": "Aera_Ration", - "Textual_Description": "\"@cargo/cargo-hud.png@Containing utilitarian dehydrated meal bars with jerky for dessert, the Aera ration is human edible, but prolonged human consumption will result in eventual sickness and death due to alkaloid content.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Containing utilitarian dehydrated meal bars with jerky for dessert, the Aera ration is human edible, but prolonged human consumption will result in eventual sickness and death due to alkaloid content.\"\n", + "shield_facets": "0" }, { "Key": "Jhurlon", - "Textual_Description": "\"@cargo/jhurlon.png@A native of the Bzbr world, the Jhurlon most closely resembles a boulder sized land dwelling abalone. While well protected against native predators, modern technology has made cutting through their shell somewhat easier.\"\n" + "Textual_Description": "\"@cargo/jhurlon.png@A native of the Bzbr world, the Jhurlon most closely resembles a boulder sized land dwelling abalone. While well protected against native predators, modern technology has made cutting through their shell somewhat easier.\"\n", + "shield_facets": "0" }, { "Key": "Salted_Thok", - "Textual_Description": "\"@cargo/salted_thok.png@Though the Aera destroyed their jungle forests, the seas fared better, and continue to produce this tasty fish-like creature.\"\n" + "Textual_Description": "\"@cargo/salted_thok.png@Though the Aera destroyed their jungle forests, the seas fared better, and continue to produce this tasty fish-like creature.\"\n", + "shield_facets": "0" }, { "Key": "Rlaan_Nutripack", - "Textual_Description": "\"@cargo/cargo-hud.png@Containing a protein brick, carb glop and fizzy drinks, even the Rlaan find something to be desired in the aesthetic.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Containing a protein brick, carb glop and fizzy drinks, even the Rlaan find something to be desired in the aesthetic.\"\n", + "shield_facets": "0" }, { "Key": "Rlaan_Luxury_Nutripack", - "Textual_Description": "\"@cargo/cargo-hud.png@Featuring the Rlaan equivalent of haggis served with the Rlaan equivalent of lutefisk, one can only conjecture that the Rlaan are not to be trusted with the culinary decisions of other species.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Featuring the Rlaan equivalent of haggis served with the Rlaan equivalent of lutefisk, one can only conjecture that the Rlaan are not to be trusted with the culinary decisions of other species.\"\n", + "shield_facets": "0" }, { "Key": "Rlaan_Generic_Nutripack", - "Textual_Description": "\"@cargo/cargo-hud.png@Consisting primarily of amonia solutions and gels stored at temperatures such that the ammonia is liquid, opening one of these packages is usually a fatal experience for an unprepared human.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Consisting primarily of amonia solutions and gels stored at temperatures such that the ammonia is liquid, opening one of these packages is usually a fatal experience for an unprepared human.\"\n", + "shield_facets": "0" }, { "Key": "Coffee", - "Textual_Description": "\"@cargo/coffee.png@Generation upon generation of addicts have made the production of coffee one of the largest industries in known space.\"\n" + "Textual_Description": "\"@cargo/coffee.png@Generation upon generation of addicts have made the production of coffee one of the largest industries in known space.\"\n", + "shield_facets": "0" }, { "Key": "Animal_Products", - "Textual_Description": "\"@cargo/animal_products.png@Typically diary, eggs, caviar and other products of various animal internal organs, they remain a food source of high nutritional value for all species, and some diners derive a twisted pleasure from eating foods originating from such a source.\"\n" + "Textual_Description": "\"@cargo/animal_products.png@Typically diary, eggs, caviar and other products of various animal internal organs, they remain a food source of high nutritional value for all species, and some diners derive a twisted pleasure from eating foods originating from such a source.\"\n", + "shield_facets": "0" }, { "Key": "Grains", - "Textual_Description": "\"@cargo/grains.png@The edible grass seeds, grains, and the carbohydrates garnered from them, are a pillar of an omnivorous diet. When fermented properly, they become the pillars of a liquid diet.\"\n" + "Textual_Description": "\"@cargo/grains.png@The edible grass seeds, grains, and the carbohydrates garnered from them, are a pillar of an omnivorous diet. When fermented properly, they become the pillars of a liquid diet.\"\n", + "shield_facets": "0" }, { "Key": "Seafood", - "Textual_Description": "\"@cargo/seafood.png@The only common meats not vat-grown, fish, or the local equivalent, if edible, are the mainstays of agro-planet diets.\"\n" + "Textual_Description": "\"@cargo/seafood.png@The only common meats not vat-grown, fish, or the local equivalent, if edible, are the mainstays of agro-planet diets.\"\n", + "shield_facets": "0" }, { "Key": "Meats", - "Textual_Description": "\"@cargo/animal_meat.png@As range animals are too resource intensive, nearly all meat is vat grown.\"\n" + "Textual_Description": "\"@cargo/animal_meat.png@As range animals are too resource intensive, nearly all meat is vat grown.\"\n", + "shield_facets": "0" }, { "Key": "Produce", - "Textual_Description": "\"@cargo/produce.png@While space facilities grow an algae sludge for basic food use, it makes a lousy salad.\"\n" + "Textual_Description": "\"@cargo/produce.png@While space facilities grow an algae sludge for basic food use, it makes a lousy salad.\"\n", + "shield_facets": "0" }, { "Key": "Malt_Beverages", - "Textual_Description": "\"@cargo/cargo-hud.png@Beer! (It's what's for dinner.)\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Beer! (It's what's for dinner.)\"\n", + "shield_facets": "0" }, { "Key": "Specialty_Wines", - "Textual_Description": "\"@cargo/arkturian_wines.png@Finely crafted wines from carefully cultivated vinyards. Unlike the cheap wines from farm planets devoted to wine production, every bottle contains liquid craftsmanship and the potential for culinary exploration.\"\n" + "Textual_Description": "\"@cargo/arkturian_wines.png@Finely crafted wines from carefully cultivated vinyards. Unlike the cheap wines from farm planets devoted to wine production, every bottle contains liquid craftsmanship and the potential for culinary exploration.\"\n", + "shield_facets": "0" }, { "Key": "Bulk_Wines", - "Textual_Description": "\"@cargo/wine.png@Long the purvey of French snobs competing with Californian snobs, wine making is now the purvey of French snobs from several planets competing with Californian snobs from several planets. Red wine is differentiated from white wine in that it tastes progressively more and worse the cheaper the wine gets. White wine is differentiated from red wine in that as the wine gets cheaper, it begins to taste more like the water it appears to be.\"\n" + "Textual_Description": "\"@cargo/wine.png@Long the purvey of French snobs competing with Californian snobs, wine making is now the purvey of French snobs from several planets competing with Californian snobs from several planets. Red wine is differentiated from white wine in that it tastes progressively more and worse the cheaper the wine gets. White wine is differentiated from red wine in that as the wine gets cheaper, it begins to taste more like the water it appears to be.\"\n", + "shield_facets": "0" }, { "Key": "Spirits", - "Textual_Description": "\"@cargo/spirits.png@Spirits are those liquors of sufficiently indeterminate make and origin that one can at best say they were produced in the spirit of being potable.\"\n" + "Textual_Description": "\"@cargo/spirits.png@Spirits are those liquors of sufficiently indeterminate make and origin that one can at best say they were produced in the spirit of being potable.\"\n", + "shield_facets": "0" }, { "Key": "Brandy", - "Textual_Description": "\"@cargo/cargo-hud.png@Fermented fruit, distilled into liver quaking perfection. Notably, after humans expanded offworld, people stopped caring as much as to whether their brandy came from the Cognac region...\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Fermented fruit, distilled into liver quaking perfection. Notably, after humans expanded offworld, people stopped caring as much as to whether their brandy came from the Cognac region...\"\n", + "shield_facets": "0" }, { "Key": "Space_Grog", - "Textual_Description": "\"@cargo/space_grog.png@Unprofessionally distilled fermented sugar product. Because candy is dandy, but liquor is quicker ... and the local rot-gut is even cheaper.\"\n" + "Textual_Description": "\"@cargo/space_grog.png@Unprofessionally distilled fermented sugar product. Because candy is dandy, but liquor is quicker ... and the local rot-gut is even cheaper.\"\n", + "shield_facets": "0" }, { "Key": "Tripezian_Premium", - "Textual_Description": "\"@cargo/tripezian_premium.png@Taste the flavour of the Frontier! Tripezian Ale is the product of fermented tripezian berries, an alien fruit lethal when eaten, but whose fermented juices have an intense and exotic flavour. Tripezian berries are produced on only a few worlds, andin limited quantities. This makes Tripezian Ale one of the most expensive and sought after beverages in all of known space.\"\n" + "Textual_Description": "\"@cargo/tripezian_premium.png@Taste the flavour of the Frontier! Tripezian Ale is the product of fermented tripezian berries, an alien fruit lethal when eaten, but whose fermented juices have an intense and exotic flavour. Tripezian berries are produced on only a few worlds, andin limited quantities. This makes Tripezian Ale one of the most expensive and sought after beverages in all of known space.\"\n", + "shield_facets": "0" }, { "Key": "Sarakan_Tears", - "Textual_Description": "\"@cargo/sarakan_tears.png@Distilled from the sap of the Sarak bush, this spirit defines the old adage 'Whatever doesn't kill you, will numb the mouth, burn the throat, upset the stomach, tear you a new one, and leave you with a nice rosey outlook towards the universe!\"\n" + "Textual_Description": "\"@cargo/sarakan_tears.png@Distilled from the sap of the Sarak bush, this spirit defines the old adage 'Whatever doesn't kill you, will numb the mouth, burn the throat, upset the stomach, tear you a new one, and leave you with a nice rosey outlook towards the universe!\"\n", + "shield_facets": "0" }, { "Key": "Cotton", - "Textual_Description": "\"@cargo/cotton.png@Long used as a fabric in clothing, textiles and home furnishings, cotton remains remains in demand despite the numerous syynthetic alternatives.\"\n" + "Textual_Description": "\"@cargo/cotton.png@Long used as a fabric in clothing, textiles and home furnishings, cotton remains remains in demand despite the numerous syynthetic alternatives.\"\n", + "shield_facets": "0" }, { "Key": "Incense", - "Textual_Description": "\"@cargo/incense.png@Consisting of compressed fragrant plantlife, oils and the occasional recreational drug, incense is used for both religious purposes, and by the mass market for relaxation.\"\n" + "Textual_Description": "\"@cargo/incense.png@Consisting of compressed fragrant plantlife, oils and the occasional recreational drug, incense is used for both religious purposes, and by the mass market for relaxation.\"\n", + "shield_facets": "0" }, { "Key": "Bonsai", - "Textual_Description": "\"@cargo/bonsai.png@The ancient art of Bonsai (crudely: Tree Pruning) creates easily transportable plant shapes of all exotic shape and bent. In high demand for their aesthetic appearance, they are often used to complete landscaped visual surrounds. A secondary use is their calming effect while caring for your Bonsai.\"\n" + "Textual_Description": "\"@cargo/bonsai.png@The ancient art of Bonsai (crudely: Tree Pruning) creates easily transportable plant shapes of all exotic shape and bent. In high demand for their aesthetic appearance, they are often used to complete landscaped visual surrounds. A secondary use is their calming effect while caring for your Bonsai.\"\n", + "shield_facets": "0" }, { "Key": "Khaisalantimin_F62", - "Textual_Description": "\"@cargo/khaisalantimin_F62.png@Produced by a genetically engineered hybrid of Terran and Xeno flora, the F62 variant of the extract of the seeds of the Khaisal plant induces a prolonged state of euphoria in humans. While the extract is not intrinsically toxic and withdrawl is remarkably mild, problems arise due to rapidly increasing tolerance and lost productivity due to usage.\"\n" + "Textual_Description": "\"@cargo/khaisalantimin_F62.png@Produced by a genetically engineered hybrid of Terran and Xeno flora, the F62 variant of the extract of the seeds of the Khaisal plant induces a prolonged state of euphoria in humans. While the extract is not intrinsically toxic and withdrawl is remarkably mild, problems arise due to rapidly increasing tolerance and lost productivity due to usage.\"\n", + "shield_facets": "0" }, { "Key": "Tobacco", - "Textual_Description": "\"@cargo/cargo-hud.png@The tobacco plant, native to Terra, is the source of the pesticide Nicotine. Tobacco leaves, when cured and burned, release the addictive pesticide, along with numerous carcinogens. So far, no species other than humanity has been stupid enough to use the addictive pesticide recreationally.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@The tobacco plant, native to Terra, is the source of the pesticide Nicotine. Tobacco leaves, when cured and burned, release the addictive pesticide, along with numerous carcinogens. So far, no species other than humanity has been stupid enough to use the addictive pesticide recreationally.\"\n", + "shield_facets": "0" }, { "Key": "Water", - "Textual_Description": "\"@cargo/heavy_water.png@Also known as the universal solvent, water is a useful substance, even to those species that do not require it biologically.\"\n" + "Textual_Description": "\"@cargo/heavy_water.png@Also known as the universal solvent, water is a useful substance, even to those species that do not require it biologically.\"\n", + "shield_facets": "0" }, { "Key": "Rubber", - "Textual_Description": "\"@cargo/rubber.png@An elastic substance that is obtained by coagulating the milky juice of various tropical plants, prepared as sheets then dried and cut. Basic uses include preventing 18-21 years of child support payments.\"\n" + "Textual_Description": "\"@cargo/rubber.png@An elastic substance that is obtained by coagulating the milky juice of various tropical plants, prepared as sheets then dried and cut. Basic uses include preventing 18-21 years of child support payments.\"\n", + "shield_facets": "0" }, { "Key": "Livestock", - "Textual_Description": "\"@cargo/erotica.png@Without goats and sheep, the world of good cheese would be greatly crippled.\"\n" + "Textual_Description": "\"@cargo/erotica.png@Without goats and sheep, the world of good cheese would be greatly crippled.\"\n", + "shield_facets": "0" }, { "Key": "Lumber", - "Textual_Description": "\"@cargo/lumber.png@While wood is no longer as common a building material for structural aspects, it remains an aesthetic desired by many residents of paved industrial worlds.\"\n" + "Textual_Description": "\"@cargo/lumber.png@While wood is no longer as common a building material for structural aspects, it remains an aesthetic desired by many residents of paved industrial worlds.\"\n", + "shield_facets": "0" }, { "Key": "Iron_Ore", - "Textual_Description": "\"@cargo/base.png@Iron has been vital in the histories of all of the spacefaring races. The prime variance is the ratio of cast iron cookware to iron and steel killingware.\"\n" + "Textual_Description": "\"@cargo/base.png@Iron has been vital in the histories of all of the spacefaring races. The prime variance is the ratio of cast iron cookware to iron and steel killingware.\"\n", + "shield_facets": "0" }, { "Key": "Nickel_Ore", - "Textual_Description": "\"@cargo/base.png@Useful as an anti-corrosive coating, nickel is often mined in bulk from nickel-iron asteroids.\"\n" + "Textual_Description": "\"@cargo/base.png@Useful as an anti-corrosive coating, nickel is often mined in bulk from nickel-iron asteroids.\"\n", + "shield_facets": "0" }, { "Key": "Tin_Ore", - "Textual_Description": "\"@cargo/base.png@Absent tin, the interstellar sardine trade would flounder.\"\n" + "Textual_Description": "\"@cargo/base.png@Absent tin, the interstellar sardine trade would flounder.\"\n", + "shield_facets": "0" }, { "Key": "Tungsten_Ore", - "Textual_Description": "\"@cargo/base.png@Due to its exceptional melting temperature and continued tensile strength at high temperatures, tungsten is a vital part of the spacefaring industry.\"\n" + "Textual_Description": "\"@cargo/base.png@Due to its exceptional melting temperature and continued tensile strength at high temperatures, tungsten is a vital part of the spacefaring industry.\"\n", + "shield_facets": "0" }, { "Key": "Alkali_Metals", - "Textual_Description": "\"@cargo/base.png@Caution: Do not clean with water.\"\n" + "Textual_Description": "\"@cargo/base.png@Caution: Do not clean with water.\"\n", + "shield_facets": "0" }, { "Key": "Gold", - "Textual_Description": "\"@cargo/precious.png@An exceptionally ductile metal, gold has long been used for the manufacture of useless, albeit pretty, constructions. It's conductive properties have, over the last millenium, given it roles in more useful applications.\"\n" + "Textual_Description": "\"@cargo/precious.png@An exceptionally ductile metal, gold has long been used for the manufacture of useless, albeit pretty, constructions. It's conductive properties have, over the last millenium, given it roles in more useful applications.\"\n", + "shield_facets": "0" }, { "Key": "Anti_Corrosives", - "Textual_Description": "\"@cargo/cargo-hud.png@Exemplified by such metals as Platinum ,prized for its luster and resistance to corrosion, the rarity of these metals leads to their value.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Exemplified by such metals as Platinum ,prized for its luster and resistance to corrosion, the rarity of these metals leads to their value.\"\n", + "shield_facets": "0" }, { "Key": "Rare_Earth", - "Textual_Description": "\"@cargo/cargo-hud.png@Dense rare earth metals for alloy use such as Osmium and Irridium.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Dense rare earth metals for alloy use such as Osmium and Irridium.\"\n", + "shield_facets": "0" }, { "Key": "Isometal", - "Textual_Description": "\"@cargo/isometal.png@The generic term for any metal or alloy which has been strengthened via a slow thermal reduction cycle, it is also the brand name for one company's iridium, steel, and titanium alloy. \"\n" + "Textual_Description": "\"@cargo/isometal.png@The generic term for any metal or alloy which has been strengthened via a slow thermal reduction cycle, it is also the brand name for one company's iridium, steel, and titanium alloy. \"\n", + "shield_facets": "0" }, { "Key": "Plasteel", - "Textual_Description": "\"@cargo/cargo-hud.png@More carbon than steel, this substance consists of steel reinforced by countless carbon nanotubes.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@More carbon than steel, this substance consists of steel reinforced by countless carbon nanotubes.\"\n", + "shield_facets": "0" }, { "Key": "Steel", - "Textual_Description": "\"@cargo/steel.png@Although it has been surpassed in performance, when it comes to cost-performance, steel is always a contender, especially on less developed worlds.\"\n" + "Textual_Description": "\"@cargo/steel.png@Although it has been surpassed in performance, when it comes to cost-performance, steel is always a contender, especially on less developed worlds.\"\n", + "shield_facets": "0" }, { "Key": "Polysteel", - "Textual_Description": "\"@cargo/cargo-hud.png@An intricate filadough-like sandwich of metals and ceramics glued together by carbon polymers.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@An intricate filadough-like sandwich of metals and ceramics glued together by carbon polymers.\"\n", + "shield_facets": "0" }, { "Key": "Tritanium", - "Textual_Description": "\"@cargo/tritanium.png@An alloy formed of titanium, osmium, and iridium.\"\n" + "Textual_Description": "\"@cargo/tritanium.png@An alloy formed of titanium, osmium, and iridium.\"\n", + "shield_facets": "0" }, { "Key": "Duranium", - "Textual_Description": "\"@cargo/cargo-hud.png@Sacrificing increased mass for increased protection, massive slabs of depleted uranium are mixed with osmium and encased in an ablative coating of tantalum carbide.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Sacrificing increased mass for increased protection, massive slabs of depleted uranium are mixed with osmium and encased in an ablative coating of tantalum carbide.\"\n", + "shield_facets": "0" }, { "Key": "Obsidisteel", - "Textual_Description": "\"@cargo/obsidisteel.png@A combination of metals and silicate oxides, this dark, hard substance is prized for its use in the art world.\"\n" + "Textual_Description": "\"@cargo/obsidisteel.png@A combination of metals and silicate oxides, this dark, hard substance is prized for its use in the art world.\"\n", + "shield_facets": "0" }, { "Key": "Carbonium", - "Textual_Description": "\"@cargo/carbonium.png@A mix of tungsten and tantalum, into which have been introduced carbons (from a biological source), it is used in certain high temperature applications.\"\n" + "Textual_Description": "\"@cargo/carbonium.png@A mix of tungsten and tantalum, into which have been introduced carbons (from a biological source), it is used in certain high temperature applications.\"\n", + "shield_facets": "0" }, { "Key": "Radium", - "Textual_Description": "\"@cargo/radioactives.png@A wonderful ingredient for glowing paints.\"\n" + "Textual_Description": "\"@cargo/radioactives.png@A wonderful ingredient for glowing paints.\"\n", + "shield_facets": "0" }, { "Key": "Thorium", - "Textual_Description": "\"@cargo/radioactives.png@An exceptionally common source of nuclear power, it is also known for the exceptional melting points of its oxide.\"\n" + "Textual_Description": "\"@cargo/radioactives.png@An exceptionally common source of nuclear power, it is also known for the exceptional melting points of its oxide.\"\n", + "shield_facets": "0" }, { "Key": "Uranium", - "Textual_Description": "\"@cargo/radioactives.png@A rather common radioactive used primarily in fission piles. The depleted isotopes are used in kinetic impact weapons.\"\n" + "Textual_Description": "\"@cargo/radioactives.png@A rather common radioactive used primarily in fission piles. The depleted isotopes are used in kinetic impact weapons.\"\n", + "shield_facets": "0" }, { "Key": "Diamonds", - "Textual_Description": "\"@cargo/cargo-hud.png@Exceptionally hard, and useful for many industrial purposes, these carbon lattice crystals have long been loved for their gleaming appearance. Even though the differences are no longer perceptable between manufactured and natural diamonds, there are still those willing to pay more for those hewn from the rock.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Exceptionally hard, and useful for many industrial purposes, these carbon lattice crystals have long been loved for their gleaming appearance. Even though the differences are no longer perceptable between manufactured and natural diamonds, there are still those willing to pay more for those hewn from the rock.\"\n", + "shield_facets": "0" }, { "Key": "Emeralds", - "Textual_Description": "\"@cargo/cargo-hud.png@A translucent green variety of beryl. Perfect for creating that Oz look.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A translucent green variety of beryl. Perfect for creating that Oz look.\"\n", + "shield_facets": "0" }, { "Key": "Rubies", - "Textual_Description": "\"@cargo/cargo-hud.png@Red translucent variety of corundum. Work well on shoes.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Red translucent variety of corundum. Work well on shoes.\"\n", + "shield_facets": "0" }, { "Key": "Corundum_Crystals", - "Textual_Description": "\"@cargo/cargo-hud.png@A hard aluminum oxide, the common forms of which are used as abrasives.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A hard aluminum oxide, the common forms of which are used as abrasives.\"\n", + "shield_facets": "0" }, { "Key": "Dilithium_Crystals", - "Textual_Description": "\"@cargo/cargo-hud.png@Dilithium telluride, while not particularly impressive, is always a desired item among the religious fanatics of the trekkie religion.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Dilithium telluride, while not particularly impressive, is always a desired item among the religious fanatics of the trekkie religion.\"\n", + "shield_facets": "0" }, { "Key": "Quartz_Crystals", - "Textual_Description": "\"@cargo/cargo-hud.png@A useful component of cheap oscillators and cheap art.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A useful component of cheap oscillators and cheap art.\"\n", + "shield_facets": "0" }, { "Key": "Trilithium_Crystals", - "Textual_Description": "\"@cargo/cargo-hud.png@Prized possessions of the trekkie religion, the crystals (trilithium nitride) have precious little actual value.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Prized possessions of the trekkie religion, the crystals (trilithium nitride) have precious little actual value.\"\n", + "shield_facets": "0" }, { "Key": "Construction_Stone", - "Textual_Description": "\"@cargo/construction_stone.png@Cheap. Dense. Low-Tech. Gets the job done anyway.\"\n" + "Textual_Description": "\"@cargo/construction_stone.png@Cheap. Dense. Low-Tech. Gets the job done anyway.\"\n", + "shield_facets": "0" }, { "Key": "Natural_Sculptures", - "Textual_Description": "\"@cargo/natural_sculptures.png@Originally considered waste, stone that has been carved by nature is now considered both decoration and art. Large slabs are used as wall decoration, while small pieces are used in artwork, or are works of art themselves.\"\n" + "Textual_Description": "\"@cargo/natural_sculptures.png@Originally considered waste, stone that has been carved by nature is now considered both decoration and art. Large slabs are used as wall decoration, while small pieces are used in artwork, or are works of art themselves.\"\n", + "shield_facets": "0" }, { "Key": "Jade", - "Textual_Description": "\"@cargo/cargo-hud.png@Greenish. Somewhat expensive. Very retro.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Greenish. Somewhat expensive. Very retro.\"\n", + "shield_facets": "0" }, { "Key": "Marble", - "Textual_Description": "\"@cargo/cargo-hud.png@A prized material for ancient sculptors and interior designers, marble still finds itself a prized material of sculptors and interior designers.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A prized material for ancient sculptors and interior designers, marble still finds itself a prized material of sculptors and interior designers.\"\n", + "shield_facets": "0" }, { "Key": "Natural_Gas", - "Textual_Description": "\"@cargo/natural_gas.png@A combustible mixture of gases, usable as both a fuel and a raw material in production. A secondary source of such gas is the by-product of animal bio-waste.\"\n" + "Textual_Description": "\"@cargo/natural_gas.png@A combustible mixture of gases, usable as both a fuel and a raw material in production. A secondary source of such gas is the by-product of animal bio-waste.\"\n", + "shield_facets": "0" }, { "Key": "Coal", - "Textual_Description": "\"@cargo/hydrocarbons.png@Ancient dead compressed carbon-life. Solid form.\"\n" + "Textual_Description": "\"@cargo/hydrocarbons.png@Ancient dead compressed carbon-life. Solid form.\"\n", + "shield_facets": "0" }, { "Key": "Oil", - "Textual_Description": "\"@cargo/cargo-hud.png@Liquid lipids of various origin.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Liquid lipids of various origin.\"\n", + "shield_facets": "0" }, { "Key": "Petroleum", - "Textual_Description": "\"@cargo/cargo-hud.png@Ancient dead carbon-life. Liquid form.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Ancient dead carbon-life. Liquid form.\"\n", + "shield_facets": "0" }, { "Key": "Butane", - "Textual_Description": "\"@cargo/cargo-hud.png@Because sometimes, with all the technology around you, what you really want is a Zippo.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Because sometimes, with all the technology around you, what you really want is a Zippo.\"\n", + "shield_facets": "0" }, { "Key": "Diesel", - "Textual_Description": "\"@cargo/petrochems.png@On planets where resupply is expensive, diesel is an efficient, if polluting, fuel of choice.\"\n" + "Textual_Description": "\"@cargo/petrochems.png@On planets where resupply is expensive, diesel is an efficient, if polluting, fuel of choice.\"\n", + "shield_facets": "0" }, { "Key": "Deut-Deut_Fusion_Fuel", - "Textual_Description": "\"@cargo/nuclear_pods.png@Refined from heavy water, nearly pure deuterium is a cheap and abundant, if somewhat difficult to store and transport, source of energy.\"\n" + "Textual_Description": "\"@cargo/nuclear_pods.png@Refined from heavy water, nearly pure deuterium is a cheap and abundant, if somewhat difficult to store and transport, source of energy.\"\n", + "shield_facets": "0" }, { "Key": "Baakgah", - "Textual_Description": "\"@cargo/cargo-hud.png@A fuel cell material that releases hydrogen in an easily controlled manner.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A fuel cell material that releases hydrogen in an easily controlled manner.\"\n", + "shield_facets": "0" }, { "Key": "AntiMatter_Pack", - "Textual_Description": "\"@cargo/cargo-hud.png@Antimatter is held in an ionic lattice at low temperature. Energy is then drawn from the slow interaction between the antimatter and its surroundings.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Antimatter is held in an ionic lattice at low temperature. Energy is then drawn from the slow interaction between the antimatter and its surroundings.\"\n", + "shield_facets": "0" }, { "Key": "Biopower_Pack", - "Textual_Description": "\"@cargo/cargo-hud.png@While its output is minimal, its efficiency is phenomenal. Living hydrogen emitting fuel cells, biopower packs are a key component of all Rlaan life-support systems.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While its output is minimal, its efficiency is phenomenal. Living hydrogen emitting fuel cells, biopower packs are a key component of all Rlaan life-support systems.\"\n", + "shield_facets": "0" }, { "Key": "Chitty-chitty-boom-boom", - "Textual_Description": "\"@cargo/cargo-hud.png@An incredibly large, incredibly complex, and incredibly unstable hydrocarbon, CCBB is used in applications where fusion reactors are too large, antimatter cells are too expensive, and fission reactors are impractical. This tends to limit its use to power-tools and personal transport units.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@An incredibly large, incredibly complex, and incredibly unstable hydrocarbon, CCBB is used in applications where fusion reactors are too large, antimatter cells are too expensive, and fission reactors are impractical. This tends to limit its use to power-tools and personal transport units.\"\n", + "shield_facets": "0" }, { "Key": "Compressed_Oxygen-Nitrogen_Atmosphere", - "Textual_Description": "\"@cargo/atmospheric_gases.png@Breathable - and not even in that sort of LA meets Mexico city sort of way.\"\n" + "Textual_Description": "\"@cargo/atmospheric_gases.png@Breathable - and not even in that sort of LA meets Mexico city sort of way.\"\n", + "shield_facets": "0" }, { "Key": "Compressed_Methane-Breather_Atmosphere", - "Textual_Description": "\"@cargo/atmospheric_gases.png@Breathable - and not even in that sort of Aantlbzztkbzbrr meets Bzeentkbrraantl sort of way.\"\n" + "Textual_Description": "\"@cargo/atmospheric_gases.png@Breathable - and not even in that sort of Aantlbzztkbzbrr meets Bzeentkbrraantl sort of way.\"\n", + "shield_facets": "0" }, { "Key": "Noble_Gases", - "Textual_Description": "\"@cargo/noble_gases.png@Otherwise known as the inert gases. Commonly used in refining, medical applications, general manufacturing as well as nuclear energy production and laser weapon production and research.\"\n" + "Textual_Description": "\"@cargo/noble_gases.png@Otherwise known as the inert gases. Commonly used in refining, medical applications, general manufacturing as well as nuclear energy production and laser weapon production and research.\"\n", + "shield_facets": "0" }, { "Key": "Halogen_Gases", - "Textual_Description": "\"@cargo/halogen_gases.png@Caustic gasses - great for docking lights!\"\n" + "Textual_Description": "\"@cargo/halogen_gases.png@Caustic gasses - great for docking lights!\"\n", + "shield_facets": "0" }, { "Key": "Recycled_Electronics", - "Textual_Description": "\"@cargo/cargo-hud.png@Especially prized by the collectors of the arcane, though also prized by cheapskates, the garbage of the modern day is still valuable in its obsolescence.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Especially prized by the collectors of the arcane, though also prized by cheapskates, the garbage of the modern day is still valuable in its obsolescence.\"\n", + "shield_facets": "0" }, { "Key": "Recycled_Metals", - "Textual_Description": "\"@cargo/cargo-hud.png@That which can be readily melted can be readily re-made.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@That which can be readily melted can be readily re-made.\"\n", + "shield_facets": "0" }, { "Key": "Recycled_Oil", - "Textual_Description": "\"@cargo/cargo-hud.png@Given the prodigious use of hydrocarbons by sentient life, it is useful to reuse when possible.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Given the prodigious use of hydrocarbons by sentient life, it is useful to reuse when possible.\"\n", + "shield_facets": "0" }, { "Key": "Recycled_Plastics", - "Textual_Description": "\"@cargo/cargo-hud.png@As nearly all human civilian products rely on hydrocarbon polymers, were there not a massive recycling program, humanity would have drowned under its own refuse.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@As nearly all human civilian products rely on hydrocarbon polymers, were there not a massive recycling program, humanity would have drowned under its own refuse.\"\n", + "shield_facets": "0" }, { "Key": "Gears", - "Textual_Description": "\"@cargo/cargo-hud.png@There is no such thing as too much torque.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@There is no such thing as too much torque.\"\n", + "shield_facets": "0" }, { "Key": "Lubricants", - "Textual_Description": "\"@cargo/cargo-hud.png@Much to the dismay of all mechanical systems, friction cannot be overcome. Much to the delight of all users of mechanical systems, great advances have been made in mitigating friction's undesired effects.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Much to the dismay of all mechanical systems, friction cannot be overcome. Much to the delight of all users of mechanical systems, great advances have been made in mitigating friction's undesired effects.\"\n", + "shield_facets": "0" }, { "Key": "Spare_Parts", - "Textual_Description": "\"@cargo/cargo-hud.png@While the mean time to failure of solid-state components tends to be measured in decades, this does not tend to account for the type and degree of abuse that consumers will pile on their belongings.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While the mean time to failure of solid-state components tends to be measured in decades, this does not tend to account for the type and degree of abuse that consumers will pile on their belongings.\"\n", + "shield_facets": "0" }, { "Key": "Aerospace_Ground_Equipment", - "Textual_Description": "\"@cargo/cargo-hud.png@While only small to medium sized craft are capable of planetary landing, the abuse taken by a spaceport due to dropships and other forms of cargo delivery requires that an elaborate array of maintenance equipment, spare parts, and freight loaders must be kept on hand at all times.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While only small to medium sized craft are capable of planetary landing, the abuse taken by a spaceport due to dropships and other forms of cargo delivery requires that an elaborate array of maintenance equipment, spare parts, and freight loaders must be kept on hand at all times.\"\n", + "shield_facets": "0" }, { "Key": "Aerospace_Repair_Equipment", - "Textual_Description": "\"@cargo/cargo-hud.png@The special materials used in aerospace construction require special equipment for repair and maintenance. Given the dire frequencies of pirate attacks and other sources of damage, this equipment is in high demand.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@The special materials used in aerospace construction require special equipment for repair and maintenance. Given the dire frequencies of pirate attacks and other sources of damage, this equipment is in high demand.\"\n", + "shield_facets": "0" }, { "Key": "Atmospheric_Scrubbers", - "Textual_Description": "\"@cargo/cargo-hud.png@Atmostpheric scrubbers consist of a series of screens, containers and filters to remove toxic wastes from an artificial atmosphere. As few if any spaceborn craft have an effective contained ecology, they require such artifical means of providing a sustained breathable atmosphere.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Atmostpheric scrubbers consist of a series of screens, containers and filters to remove toxic wastes from an artificial atmosphere. As few if any spaceborn craft have an effective contained ecology, they require such artifical means of providing a sustained breathable atmosphere.\"\n", + "shield_facets": "0" }, { "Key": "Welding_Supplies", - "Textual_Description": "\"@cargo/cargo-hud.png@Though few know what their true purpose is, there always seem to be govenment projects in every colony that primarily consist of tearing up infrastructure and welding big metal plates over the holes until some second agency comes by a few years later to replace whatever was ripped out. There's also the whole starship construction buisness, but one wonders which is the bigger market.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Though few know what their true purpose is, there always seem to be govenment projects in every colony that primarily consist of tearing up infrastructure and welding big metal plates over the holes until some second agency comes by a few years later to replace whatever was ripped out. There's also the whole starship construction buisness, but one wonders which is the bigger market.\"\n", + "shield_facets": "0" }, { "Key": "Self_Contained_Hydroponics", - "Textual_Description": "\"@cargo/cargo-hud.png@With the dawn of space travel, hydroponics wasn't just for growing herbs in your closet anymore.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@With the dawn of space travel, hydroponics wasn't just for growing herbs in your closet anymore.\"\n", + "shield_facets": "0" }, { "Key": "Bulk_Seeds", - "Textual_Description": "\"@cargo/cargo-hud.png@Even if mono-culture is the name of the game, and automation of farms is nearly total, all non-native crops must still be brought in through interstellar shipping, and most agricultural colonies tend to lack the genetic research facilities to produce their own variants.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Even if mono-culture is the name of the game, and automation of farms is nearly total, all non-native crops must still be brought in through interstellar shipping, and most agricultural colonies tend to lack the genetic research facilities to produce their own variants.\"\n", + "shield_facets": "0" }, { "Key": "Herbicides", - "Textual_Description": "\"@cargo/cargo-hud.png@Many planets have species that make kudzu look like a houseplant. These planets therefore also have markets full of colonists looking for some practical defoliants.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Many planets have species that make kudzu look like a houseplant. These planets therefore also have markets full of colonists looking for some practical defoliants.\"\n", + "shield_facets": "0" }, { "Key": "Hydroponic_Supplies", - "Textual_Description": "\"@cargo/cargo-hud.png@Growing plants in a liquid solution offers flexibility in placement relative to soil planting. Especially useful in environments that do not actually have soil.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Growing plants in a liquid solution offers flexibility in placement relative to soil planting. Especially useful in environments that do not actually have soil.\"\n", + "shield_facets": "0" }, { "Key": "Pesticides", - "Textual_Description": "\"@cargo/cargo-hud.png@No matter where one goes, it seems that every world capable of supporting life supports at least one species that is exceptionally annoying to whatever civilization attempts to colonize it. The age-old solution to this problem is to kill said species. Admittedly, doing so in a fashion that doesn't manage to hurt the colonists is still a subject of intense research. However, any pesticide producer will proudly claim that having a few babies born with the wrong number of legs is surely a small price to pay for not having disfiguring holes in all of the world's crops.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@No matter where one goes, it seems that every world capable of supporting life supports at least one species that is exceptionally annoying to whatever civilization attempts to colonize it. The age-old solution to this problem is to kill said species. Admittedly, doing so in a fashion that doesn't manage to hurt the colonists is still a subject of intense research. However, any pesticide producer will proudly claim that having a few babies born with the wrong number of legs is surely a small price to pay for not having disfiguring holes in all of the world's crops.\"\n", + "shield_facets": "0" }, { "Key": "Synthetic_Fertilizer", - "Textual_Description": "\"@cargo/cargo-hud.png@When synthetic fertilizer became not only better, but cheaper and less smelly than those based on manure, few regretted switching over.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@When synthetic fertilizer became not only better, but cheaper and less smelly than those based on manure, few regretted switching over.\"\n", + "shield_facets": "0" }, { "Key": "Engineered_Seeds", - "Textual_Description": "\"@cargo/cargo-hud.png@Genetically enhanced cropseed developed to remain fertile in some particular form of hostile soil, and to render the native lifeforms of that planet more edible. Luddite terrorists still protest the use of such products, despite the inability of many existing populations to otherwise feed themselves.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Genetically enhanced cropseed developed to remain fertile in some particular form of hostile soil, and to render the native lifeforms of that planet more edible. Luddite terrorists still protest the use of such products, despite the inability of many existing populations to otherwise feed themselves.\"\n", + "shield_facets": "0" }, { "Key": "Boring_Droids", - "Textual_Description": "\"@cargo/boring_droids.png@Construction of mine shafts has never been so easy. Just let a few of these know where you want the tunnels, and come back a few days later to find huge mounds of debris a delightfully polished passageway.\"\n" + "Textual_Description": "\"@cargo/boring_droids.png@Construction of mine shafts has never been so easy. Just let a few of these know where you want the tunnels, and come back a few days later to find huge mounds of debris a delightfully polished passageway.\"\n", + "shield_facets": "0" }, { "Key": "Laser_Drills", - "Textual_Description": "\"@cargo/cargo-hud.png@While the precise nature of the cuts produced by this drill add to its usefulness, it is fact that lasers never get dull or snagged on dense ore deposits that has caused the laser drill to replace all other competitors.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While the precise nature of the cuts produced by this drill add to its usefulness, it is fact that lasers never get dull or snagged on dense ore deposits that has caused the laser drill to replace all other competitors.\"\n", + "shield_facets": "0" }, { "Key": "Light_Alls", - "Textual_Description": "\"@cargo/cargo-hud.png@There are few things more terrifying to an asteroid miner than the classic scene from the holovid movie 'The Dark Rock', wherein a group of asteroid miners' standard light droid loses power, and they are attacked by a hideous alien awoken by their mining. While no voracious aliens have ever actually been found in an asteroid mine, reality has never been been a particularly key component of marketing strategy.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@There are few things more terrifying to an asteroid miner than the classic scene from the holovid movie 'The Dark Rock', wherein a group of asteroid miners' standard light droid loses power, and they are attacked by a hideous alien awoken by their mining. While no voracious aliens have ever actually been found in an asteroid mine, reality has never been been a particularly key component of marketing strategy.\"\n", + "shield_facets": "0" }, { "Key": "Utility_Vehicles", - "Textual_Description": "\"@cargo/cargo-hud.png@The ability to lift large masses and manipulate them dextrously in three dimensions is essential for construction and lacking in all known sentient beings. These machines make up for the shortcomings of biology.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@The ability to lift large masses and manipulate them dextrously in three dimensions is essential for construction and lacking in all known sentient beings. These machines make up for the shortcomings of biology.\"\n", + "shield_facets": "0" }, { "Key": "PreFab_Buildings", - "Textual_Description": "\"@cargo/cargo-hud.png@Unless one is absurdly wealthy, one lives in a building made out of modular components just like these.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Unless one is absurdly wealthy, one lives in a building made out of modular components just like these.\"\n", + "shield_facets": "0" }, { "Key": "Landscaping_Equipment", - "Textual_Description": "\"@cargo/cargo-hud.png@For when that hill is blocking your view, you want to recreate your garden surrounds in the latest style, or just want to cover up that unsightly nuclear waste dump.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@For when that hill is blocking your view, you want to recreate your garden surrounds in the latest style, or just want to cover up that unsightly nuclear waste dump.\"\n", + "shield_facets": "0" }, { "Key": "BioApplicator", - "Textual_Description": "\"@cargo/cargo-hud.png@Essentially a vat full of genetically engineered bacteria with some valves and a spray nozzle, this device is used to create and apply the complex proteins that the Rlaan use as a basic construction material. When the goop sprayed out of the nozzle reacts with the methane atmosphere present on nearly all Rlaan worlds, the proteins produced by the bacteria denature into the desired solid form.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Essentially a vat full of genetically engineered bacteria with some valves and a spray nozzle, this device is used to create and apply the complex proteins that the Rlaan use as a basic construction material. When the goop sprayed out of the nozzle reacts with the methane atmosphere present on nearly all Rlaan worlds, the proteins produced by the bacteria denature into the desired solid form.\"\n", + "shield_facets": "0" }, { "Key": "BioRemodeler", - "Textual_Description": "\"@cargo/cargo-hud.png@This device applies a set of enzymes that sufficiently liquify the organics used in most Rlaan construction so that they can be altered.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@This device applies a set of enzymes that sufficiently liquify the organics used in most Rlaan construction so that they can be altered.\"\n", + "shield_facets": "0" }, { "Key": "First_Aid_Kits", - "Textual_Description": "\"@cargo/cargo-hud.png@While the contents have changed countless times, these kits can be found in every public transport and in every overprotective mother's travel bags.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While the contents have changed countless times, these kits can be found in every public transport and in every overprotective mother's travel bags.\"\n", + "shield_facets": "0" }, { "Key": "Aera_First_Aid_Kit", - "Textual_Description": "\"@cargo/cargo-hud.png@Given their somewhat similar chemical makeup, the Aera First-Aid kit contains many items similar or analogous to those found in a Human kit. Of noteworthy exception, however, is the standard issue in all Aera packs of a suicide pill marked with a lable that translates to 'For use in conjunction with eventually terminal trauma.'\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Given their somewhat similar chemical makeup, the Aera First-Aid kit contains many items similar or analogous to those found in a Human kit. Of noteworthy exception, however, is the standard issue in all Aera packs of a suicide pill marked with a lable that translates to 'For use in conjunction with eventually terminal trauma.'\"\n", + "shield_facets": "0" }, { "Key": "Pseudotherms", - "Textual_Description": "\"@cargo/cargo-hud.png@The Aera originated on a warm world, and are subject to episodes of reduced functionality if caught unprepared in a frigid environment. These coveralls are packed with shielded isotopes and spectral converters that are guaranteed to warm an Aera back up to body temperature within a few minutes.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@The Aera originated on a warm world, and are subject to episodes of reduced functionality if caught unprepared in a frigid environment. These coveralls are packed with shielded isotopes and spectral converters that are guaranteed to warm an Aera back up to body temperature within a few minutes.\"\n", + "shield_facets": "0" }, { "Key": "DNA_Resequencer", - "Textual_Description": "\"@cargo/cargo-hud.png@This portable device can take any DNA sample and transcribe it into the more familiar Rlaan analogs so that it may be more conveniently analyzed.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@This portable device can take any DNA sample and transcribe it into the more familiar Rlaan analogs so that it may be more conveniently analyzed.\"\n", + "shield_facets": "0" }, { "Key": "Rlaan_Cellular_Regrowth_Accelerant", - "Textual_Description": "\"@cargo/cargo-hud.png@A gel pack of complex organic muck that when applied to the site of an injury, will greatly increase the rate of a Rlaan's healing process.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A gel pack of complex organic muck that when applied to the site of an injury, will greatly increase the rate of a Rlaan's healing process.\"\n", + "shield_facets": "0" }, { "Key": "Cryogenic_Supplies", - "Textual_Description": "\"@cargo/cryogenic_pods.png@For the last thousand years humans have been freezing themselves (or their heads) in the hope that they will one day be revived. While the oddsmakers on New Vegas tend to see the survival rate ever breaking fifty/fifty as too close to call one way or the other, it is clear that our ability to freeze things has advanced rather more rapidly than our ability to defrost them.\"\n" + "Textual_Description": "\"@cargo/cryogenic_pods.png@For the last thousand years humans have been freezing themselves (or their heads) in the hope that they will one day be revived. While the oddsmakers on New Vegas tend to see the survival rate ever breaking fifty/fifty as too close to call one way or the other, it is clear that our ability to freeze things has advanced rather more rapidly than our ability to defrost them.\"\n", + "shield_facets": "0" }, { "Key": "Regen_Tank", - "Textual_Description": "\"@cargo/regen_tank.png@With advances in cellular research, the medical establishment has been able to restore lost or damaged cellular material. They have not, however, figured out how to stop the replacement part from itching the entire time it's growing back...\"\n" + "Textual_Description": "\"@cargo/regen_tank.png@With advances in cellular research, the medical establishment has been able to restore lost or damaged cellular material. They have not, however, figured out how to stop the replacement part from itching the entire time it's growing back...\"\n", + "shield_facets": "0" }, { "Key": "Syringes", - "Textual_Description": "\"@cargo/vaccines.png@Although no longer necessary for most rational purposes, certain segments of the medical community seem to still gain some perverse pleasure from jamming large hollow needles into their fellow beings.\"\n" + "Textual_Description": "\"@cargo/vaccines.png@Although no longer necessary for most rational purposes, certain segments of the medical community seem to still gain some perverse pleasure from jamming large hollow needles into their fellow beings.\"\n", + "shield_facets": "0" }, { "Key": "Vaccines", - "Textual_Description": "\"@cargo/vaccines.png@With interstellar trade and war, the risk of infection from dangerous diseases and biological weapons requires vaccinations against every conceivable threat.\"\n" + "Textual_Description": "\"@cargo/vaccines.png@With interstellar trade and war, the risk of infection from dangerous diseases and biological weapons requires vaccinations against every conceivable threat.\"\n", + "shield_facets": "0" }, { "Key": "Altered_Strains", - "Textual_Description": "\"@cargo/cargo-hud.png@While the Rlaan are masters of genetic manipulation, the Aera are decided amateurs, and are behind most of humanity in this area of research. In particular, they have only recently taken measures to artificially expand the gene pool of their own species.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While the Rlaan are masters of genetic manipulation, the Aera are decided amateurs, and are behind most of humanity in this area of research. In particular, they have only recently taken measures to artificially expand the gene pool of their own species.\"\n", + "shield_facets": "0" }, { "Key": "Implant_tolerance_enhancements", - "Textual_Description": "\"@cargo/cargo-hud.png@Although tending to be more physically gifted than the other dominant species, the Aera suffer from high rejection rates of mechanical implants due to their overzealous immune systems.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Although tending to be more physically gifted than the other dominant species, the Aera suffer from high rejection rates of mechanical implants due to their overzealous immune systems.\"\n", + "shield_facets": "0" }, { "Key": "Bio_Adapters", - "Textual_Description": "\"@cargo/cargo-hud.png@The Rlaan are more skilled than any other known species at the production of altered organisms, but are still working on perfecting organo-mechanical interface units. One tends to believe success at the first has hindered funding towards the second.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@The Rlaan are more skilled than any other known species at the production of altered organisms, but are still working on perfecting organo-mechanical interface units. One tends to believe success at the first has hindered funding towards the second.\"\n", + "shield_facets": "0" }, { "Key": "Bio_Splicers", - "Textual_Description": "\"@cargo/cargo-hud.png@Hand-held retro-viral incubation and insertion device. Testing still in the Beta stage - namely, not on Rlaan\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Hand-held retro-viral incubation and insertion device. Testing still in the Beta stage - namely, not on Rlaan\"\n", + "shield_facets": "0" }, { "Key": "Surgical_Techniques", - "Textual_Description": "\"@cargo/surgical_techniques.png@The medical establishements of all species can appreciate the development of any techniques that are more discussed by surgeons than by lawyers.\"\n" + "Textual_Description": "\"@cargo/surgical_techniques.png@The medical establishements of all species can appreciate the development of any techniques that are more discussed by surgeons than by lawyers.\"\n", + "shield_facets": "0" }, { "Key": "Engineered_Bacteria", - "Textual_Description": "\"@cargo/engineered_bacteria.png@Engineered bacteria have been used for over a millenia - but the set of tasks gets bigger every year.\"\n" + "Textual_Description": "\"@cargo/engineered_bacteria.png@Engineered bacteria have been used for over a millenia - but the set of tasks gets bigger every year.\"\n", + "shield_facets": "0" }, { "Key": "Synthetic_Limbs", - "Textual_Description": "\"@cargo/cargo-hud.png@Fully functional synthetic limbs are old hat. Cheap fully functional synthetic limbs that are far better than the originals and indistinguishable from their native organic counterparts are far more interesting things.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Fully functional synthetic limbs are old hat. Cheap fully functional synthetic limbs that are far better than the originals and indistinguishable from their native organic counterparts are far more interesting things.\"\n", + "shield_facets": "0" }, { "Key": "Experimental_Drugs", - "Textual_Description": "\"@cargo/experimental_drugs.png@When a Lilipution Lime-leech is lunching on your liver, you don't care if or what the drugs were tested on.\"\n" + "Textual_Description": "\"@cargo/experimental_drugs.png@When a Lilipution Lime-leech is lunching on your liver, you don't care if or what the drugs were tested on.\"\n", + "shield_facets": "0" }, { "Key": "Nano_Constructors", - "Textual_Description": "\"@cargo/cargo-hud.png@While the devices themselves, due to the Nano-plague, are decidedly macro-scale, they are capable of constructing nearly anything with atomic precision.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While the devices themselves, due to the Nano-plague, are decidedly macro-scale, they are capable of constructing nearly anything with atomic precision.\"\n", + "shield_facets": "0" }, { "Key": "Self_Repairing_Metal", - "Textual_Description": "\"@cargo/cargo-hud.png@By embedding sensor nets and electrical delivery systems, sheets of metal can be produced that will compensate for any cracking or deformation by selectively heating portions of themselves with exceptional precision.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@By embedding sensor nets and electrical delivery systems, sheets of metal can be produced that will compensate for any cracking or deformation by selectively heating portions of themselves with exceptional precision.\"\n", + "shield_facets": "0" }, { "Key": "Automated_Factories", - "Textual_Description": "\"@cargo/cargo-hud.png@As expensive as AI cores are, sets of orbiting factories tend to be even more expensive. The trick, and gist of many a grant proposal, is to figure out how to convince an AI to do something as boring as operate a holovid factory...\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@As expensive as AI cores are, sets of orbiting factories tend to be even more expensive. The trick, and gist of many a grant proposal, is to figure out how to convince an AI to do something as boring as operate a holovid factory...\"\n", + "shield_facets": "0" }, { "Key": "Atmospheric_Rejuvinator", - "Textual_Description": "\"@cargo/cargo-hud.png@Whether it be because of overindustrialization or innate unpleasantness, if a planetary atmosphere is not to one's liking, deploying a few million of these (or a few dozen for a domed community)can do wonders.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Whether it be because of overindustrialization or innate unpleasantness, if a planetary atmosphere is not to one's liking, deploying a few million of these (or a few dozen for a domed community)can do wonders.\"\n", + "shield_facets": "0" }, { "Key": "Ozone_Healer", - "Textual_Description": "\"@cargo/ozone_replacement.png@Many electronic devices naturally produce ozone. However, as most of these devices tend to be grounded, they do not contribute to the accretion of an ozone layer at high altitude. A recently arrived at solution: move lots of electronic devices out to the ozone layer on high efficiency flying platforms. These are the platforms.\"\n" + "Textual_Description": "\"@cargo/ozone_replacement.png@Many electronic devices naturally produce ozone. However, as most of these devices tend to be grounded, they do not contribute to the accretion of an ozone layer at high altitude. A recently arrived at solution: move lots of electronic devices out to the ozone layer on high efficiency flying platforms. These are the platforms.\"\n", + "shield_facets": "0" }, { "Key": "Forest_Regenerator", - "Textual_Description": "\"@cargo/forest_regenerators.png@While many civilized races, with the notable exception of the Aera, would love to see their ancestral forests of old regrown, nearly all are uninclined to do much work towards this goal. Therefore, some effort has been made into producing autonomous forest tending units that can oversee the regrowth of an ecosystem without anyone having to get their manipulator appendages dirty.\"\n" + "Textual_Description": "\"@cargo/forest_regenerators.png@While many civilized races, with the notable exception of the Aera, would love to see their ancestral forests of old regrown, nearly all are uninclined to do much work towards this goal. Therefore, some effort has been made into producing autonomous forest tending units that can oversee the regrowth of an ecosystem without anyone having to get their manipulator appendages dirty.\"\n", + "shield_facets": "0" }, { "Key": "(Xeno)forming_Units", - "Textual_Description": "\"@cargo/terraforming_units.png@For humans, terraformers, for every other species, something else - for the targeted planet underneath them, truly an alien transformation. Incorporating atmospheric processing, development of a viable biosphere, and creation of potable liquids, xenoforming units are automated monstrocities that can be landed on a hostile planet surface. Given enough time, any airless desert of sufficient size can be made into a golf-course and a strip mall.\"\n" + "Textual_Description": "\"@cargo/terraforming_units.png@For humans, terraformers, for every other species, something else - for the targeted planet underneath them, truly an alien transformation. Incorporating atmospheric processing, development of a viable biosphere, and creation of potable liquids, xenoforming units are automated monstrocities that can be landed on a hostile planet surface. Given enough time, any airless desert of sufficient size can be made into a golf-course and a strip mall.\"\n", + "shield_facets": "0" }, { "Key": "Quantum_Deductor", - "Textual_Description": "\"@cargo/quantum_deductor.png@The ever so polite name for the class of devices used to attack quantum cryptosystems.\"\n" + "Textual_Description": "\"@cargo/quantum_deductor.png@The ever so polite name for the class of devices used to attack quantum cryptosystems.\"\n", + "shield_facets": "0" }, { "Key": "Virtual_Tunneling_Terminal", - "Textual_Description": "\"@cargo/cargo-hud.png@A device used for viewing and traversing the internals of macro-scale objects via tunneling effects.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A device used for viewing and traversing the internals of macro-scale objects via tunneling effects.\"\n", + "shield_facets": "0" }, { "Key": "Quantum_Computers", - "Textual_Description": "\"@cargo/quantum_processor.png@Featuring massive parallelism and minute feature size, a top of the line number cruncher can analyze more useless facts about its user in a second than most users desire to know in a lifetime.\"\n" + "Textual_Description": "\"@cargo/quantum_processor.png@Featuring massive parallelism and minute feature size, a top of the line number cruncher can analyze more useless facts about its user in a second than most users desire to know in a lifetime.\"\n", + "shield_facets": "0" }, { "Key": "Consoles", - "Textual_Description": "\"@cargo/cargo-hud.png@Of the many interfaces between organics and machines, species specific variants of the Nazduc console produced on various Unadorned worlds remain among the most popular.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Of the many interfaces between organics and machines, species specific variants of the Nazduc console produced on various Unadorned worlds remain among the most popular.\"\n", + "shield_facets": "0" }, { "Key": "Microprocessors", - "Textual_Description": "\"@cargo/cargo-hud.png@A vital component of every consumer product since the dawn of ubiquitous computing, microprocessors, though individually near worthless, are in exceptional demand as bulk products.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A vital component of every consumer product since the dawn of ubiquitous computing, microprocessors, though individually near worthless, are in exceptional demand as bulk products.\"\n", + "shield_facets": "0" }, { "Key": "Protocol_Droids", - "Textual_Description": "\"@cargo/cargo-hud.png@Trained in the nuances of interspecies relations, these machines are valued accessories for both diplomats and far ranging merchants - provided they can figure out how to make the damned things shut up when not in use.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Trained in the nuances of interspecies relations, these machines are valued accessories for both diplomats and far ranging merchants - provided they can figure out how to make the damned things shut up when not in use.\"\n", + "shield_facets": "0" }, { "Key": "Robotic_Laborers", - "Textual_Description": "\"@cargo/robot_workers.png@Tireless laborers that will attempt to do nearly anything you can convey to them as their task. Unfortunately, in order to keep costs down, their ability to understand exactly what it is you were trying to convey is somewhat limited. NOTE: Certain aberrations with this particular model have been noticed in conjunction with the request 'lend me a hand'. Please refrain from issuing this command.\"\n" + "Textual_Description": "\"@cargo/robot_workers.png@Tireless laborers that will attempt to do nearly anything you can convey to them as their task. Unfortunately, in order to keep costs down, their ability to understand exactly what it is you were trying to convey is somewhat limited. NOTE: Certain aberrations with this particular model have been noticed in conjunction with the request 'lend me a hand'. Please refrain from issuing this command.\"\n", + "shield_facets": "0" }, { "Key": "Enhanced_Limbs", - "Textual_Description": "\"@cargo/enhanced_limbs.png@When the limbs of a sentient being are just not up to the job, fiber enhancements, neuro drivers and bone reinforcing increases function by several orders of magnitude.\"\n" + "Textual_Description": "\"@cargo/enhanced_limbs.png@When the limbs of a sentient being are just not up to the job, fiber enhancements, neuro drivers and bone reinforcing increases function by several orders of magnitude.\"\n", + "shield_facets": "0" }, { "Key": "Enhanced_Organs", - "Textual_Description": "\"@cargo/enhanced_organs.png@Sometimes genecrafting alone cannot provide the benefits desired.\"\n" + "Textual_Description": "\"@cargo/enhanced_organs.png@Sometimes genecrafting alone cannot provide the benefits desired.\"\n", + "shield_facets": "0" }, { "Key": "Artificial_Limbs", - "Textual_Description": "\"@cargo/artificial_limbs.png@We have the technology - we can rebuild him.\"\n" + "Textual_Description": "\"@cargo/artificial_limbs.png@We have the technology - we can rebuild him.\"\n", + "shield_facets": "0" }, { "Key": "Cyborg_Construction_Workers", - "Textual_Description": "\"@cargo/cargo-hud.png@While, in most cultures, granted a set of rights nearly indistinguishable from normal organics, due to the bulky, less than aesthetically pleasing attachments most construction cyborgs are equipped with, transportation regulations welcome their being shipped in cargo holds.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While, in most cultures, granted a set of rights nearly indistinguishable from normal organics, due to the bulky, less than aesthetically pleasing attachments most construction cyborgs are equipped with, transportation regulations welcome their being shipped in cargo holds.\"\n", + "shield_facets": "0" }, { "Key": "Cyborg_Defenders", - "Textual_Description": "\"@cargo/cyborg_mercs.png@The modern day equivalent to the private security officers of old, these cyborgs tend to be somewhat more cost effective, if somewhat less pleasant to stand next to. So they ride in the cargo hold instead...\"\n" + "Textual_Description": "\"@cargo/cyborg_mercs.png@The modern day equivalent to the private security officers of old, these cyborgs tend to be somewhat more cost effective, if somewhat less pleasant to stand next to. So they ride in the cargo hold instead...\"\n", + "shield_facets": "0" }, { "Key": "Pleasure_Borgs", - "Textual_Description": "\"@cargo/pleasure_borgs.png@Pleasure cyborgs, differentiated from pleasure bots by having real skin and systems to keep said skin alive, are sufficiently non-sapient that they may be freely bought and sold. That being said, they still don't like being shoved into the closet every time grandma comes to visit.\"\n" + "Textual_Description": "\"@cargo/pleasure_borgs.png@Pleasure cyborgs, differentiated from pleasure bots by having real skin and systems to keep said skin alive, are sufficiently non-sapient that they may be freely bought and sold. That being said, they still don't like being shoved into the closet every time grandma comes to visit.\"\n", + "shield_facets": "0" }, { "Key": "PAI_Wetware", - "Textual_Description": "\"@cargo/pai_wetware.png@Pseudo-Artificial Intelligence. PAIs are wet-ware embedded in hardware - genetically engineered brain-in-boxes that distribute the tasks of thinking between the organic and inorganic components. Commercial PAIs are almost universally designed as idiot-savant systems, capable of limited self-motivation and direction, easy to manipulate, but capable of extraordinary problem solving power for the problems they were designed for and trained to assault. PAIs tend to be able to present more natural user interfaces than the expert systems they compete with, tending to be at least vaguely self-aware, and much more responsive to and on emotional levels. In particular, niche market and custom built models are limited only by legislation requiring that entities surpassing a specified set of standardized metrics cannot be considered property, and must be registered as either custom children or custom dependent employees. While the difference is clear for low end models, standards aside, most will agree that the line between a high-end PAI and a designer cyborg human is exceptionally blurry.\"\n" + "Textual_Description": "\"@cargo/pai_wetware.png@Pseudo-Artificial Intelligence. PAIs are wet-ware embedded in hardware - genetically engineered brain-in-boxes that distribute the tasks of thinking between the organic and inorganic components. Commercial PAIs are almost universally designed as idiot-savant systems, capable of limited self-motivation and direction, easy to manipulate, but capable of extraordinary problem solving power for the problems they were designed for and trained to assault. PAIs tend to be able to present more natural user interfaces than the expert systems they compete with, tending to be at least vaguely self-aware, and much more responsive to and on emotional levels. In particular, niche market and custom built models are limited only by legislation requiring that entities surpassing a specified set of standardized metrics cannot be considered property, and must be registered as either custom children or custom dependent employees. While the difference is clear for low end models, standards aside, most will agree that the line between a high-end PAI and a designer cyborg human is exceptionally blurry.\"\n", + "shield_facets": "0" }, { "Key": "Neural_Interface", - "Textual_Description": "\"@cargo/cargo-hud.png@The true pulse of an Andolian is not the calm beating of her heart, but the rampaging datastream of her mind.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@The true pulse of an Andolian is not the calm beating of her heart, but the rampaging datastream of her mind.\"\n", + "shield_facets": "0" }, { "Key": "Jewelry", - "Textual_Description": "\"@cargo/jewelry.png@All but entirely useless, except as art or in dating simulations. Still, there will always be a demand for items suitable for decadent expenditure.\"\n" + "Textual_Description": "\"@cargo/jewelry.png@All but entirely useless, except as art or in dating simulations. Still, there will always be a demand for items suitable for decadent expenditure.\"\n", + "shield_facets": "0" }, { "Key": "Carpets", - "Textual_Description": "\"@cargo/cargo-hud.png@Carpets, albeit of far less dust loving varieties, have made their way into space primarily because large slabs of metal are cold to walk on.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Carpets, albeit of far less dust loving varieties, have made their way into space primarily because large slabs of metal are cold to walk on.\"\n", + "shield_facets": "0" }, { "Key": "Furniture", - "Textual_Description": "\"@cargo/cargo-hud.png@No matter what their size or shape, all corporeal beings need something to park their butt-equivalent on.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@No matter what their size or shape, all corporeal beings need something to park their butt-equivalent on.\"\n", + "shield_facets": "0" }, { "Key": "Home_Appliances", - "Textual_Description": "\"@cargo/cargo-hud.png@From the esoteric hover-masseuse to the ubiquitous InstaNuker, these are the champions of eternal consumerism.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@From the esoteric hover-masseuse to the ubiquitous InstaNuker, these are the champions of eternal consumerism.\"\n", + "shield_facets": "0" }, { "Key": "Hygiene_Supplies", - "Textual_Description": "\"@cargo/personal_hygienics.png@As advanced as the sentient races have become, they have not escaped the need for a good scrubbing up every once and a while. Cremes and balms promise to use the latest advances in nanoscale chemical transport to remove wrinkles and provide superior skin tone, anti-esthers seek out and destroy unpleasant scent particles, and orifice specific probes prevent awkward mucus excretions.\"\n" + "Textual_Description": "\"@cargo/personal_hygienics.png@As advanced as the sentient races have become, they have not escaped the need for a good scrubbing up every once and a while. Cremes and balms promise to use the latest advances in nanoscale chemical transport to remove wrinkles and provide superior skin tone, anti-esthers seek out and destroy unpleasant scent particles, and orifice specific probes prevent awkward mucus excretions.\"\n", + "shield_facets": "0" }, { "Key": "Janitorial_Supplies", - "Textual_Description": "\"@cargo/cargo-hud.png@While most developed worlds are moving away from using living janitors, the need for chemical cleansers and means to apply them has not changed.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While most developed worlds are moving away from using living janitors, the need for chemical cleansers and means to apply them has not changed.\"\n", + "shield_facets": "0" }, { "Key": "Textiles", - "Textual_Description": "\"@cargo/cargo-hud.png@No matter how far technology has advanced, there will always be those who desire to the freedom to make their own kilt.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@No matter how far technology has advanced, there will always be those who desire to the freedom to make their own kilt.\"\n", + "shield_facets": "0" }, { "Key": "Clothing", - "Textual_Description": "\"@cargo/clothing.png@Despite the proselytizing efforts of the adherents of the Trekie religion, the unitard never did catch on. Clothing in all manner of make and manufacture can be found in most any region of inhabited space.\"\n" + "Textual_Description": "\"@cargo/clothing.png@Despite the proselytizing efforts of the adherents of the Trekie religion, the unitard never did catch on. Clothing in all manner of make and manufacture can be found in most any region of inhabited space.\"\n", + "shield_facets": "0" }, { "Key": "Robot_Servants", - "Textual_Description": "\"@cargo/robot_servants.png@Having the abilities of a simple-minded bodyservant and portable data storage unit, these machines are valued accessories for those too poor or too ethical to use human servants.\"\n" + "Textual_Description": "\"@cargo/robot_servants.png@Having the abilities of a simple-minded bodyservant and portable data storage unit, these machines are valued accessories for those too poor or too ethical to use human servants.\"\n", + "shield_facets": "0" }, { "Key": "Personal_Transport", - "Textual_Description": "\"@cargo/personal_transport.png@Despite the best efforts of government to encourage people to do so, they still tend not to take public transit or transport-pool.\"\n" + "Textual_Description": "\"@cargo/personal_transport.png@Despite the best efforts of government to encourage people to do so, they still tend not to take public transit or transport-pool.\"\n", + "shield_facets": "0" }, { "Key": "IntaTouch", - "Textual_Description": "\"@cargo/cargo-hud.png@A tactile simulator that reminds provides an Aera with relaxing sensations.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A tactile simulator that reminds provides an Aera with relaxing sensations.\"\n", + "shield_facets": "0" }, { "Key": "VirtuArea", - "Textual_Description": "\"@cargo/cargo-hud.png@A wall hanging that projects the illusion of open space.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A wall hanging that projects the illusion of open space.\"\n", + "shield_facets": "0" }, { "Key": "Books", - "Textual_Description": "\"@cargo/cargo-hud.png@While the manner of its conveyance has gone through countless alterations over untold millenia, few things compare to a well crafted tale.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@While the manner of its conveyance has gone through countless alterations over untold millenia, few things compare to a well crafted tale.\"\n", + "shield_facets": "0" }, { "Key": "Games", - "Textual_Description": "\"@cargo/games.png@Providing near endless possibility for gameplay and maximizing entertainment return, interactive computer games are a market fueled by the hard labors of underfunded dreamers. Despite their lack of fiscal resources they still manage to produce high quality products and garner wide fan bases. These fan bases could theoretically provide support for the poor, downtrodden programmers and content providers, but strangely they never seem to.\"\n" + "Textual_Description": "\"@cargo/games.png@Providing near endless possibility for gameplay and maximizing entertainment return, interactive computer games are a market fueled by the hard labors of underfunded dreamers. Despite their lack of fiscal resources they still manage to produce high quality products and garner wide fan bases. These fan bases could theoretically provide support for the poor, downtrodden programmers and content providers, but strangely they never seem to.\"\n", + "shield_facets": "0" }, { "Key": "Holo_Vids", - "Textual_Description": "\"@cargo/holovids.png@Mindless entertainment for the masses. Especially popular among those with no noticeable social life. This year's top seller on the Confederation frontier: 'Who's your Dgn?: Interspecies Fantasies XXIV'. And, as always, the top seller in High Born space: 'Birth of a Nation II.'\"\n" + "Textual_Description": "\"@cargo/holovids.png@Mindless entertainment for the masses. Especially popular among those with no noticeable social life. This year's top seller on the Confederation frontier: 'Who's your Dgn?: Interspecies Fantasies XXIV'. And, as always, the top seller in High Born space: 'Birth of a Nation II.'\"\n", + "shield_facets": "0" }, { "Key": "Rare_Artwork", - "Textual_Description": "\"@cargo/rare_artwork.png@Wonderfully handcrafted with near-forgotton techniques and wonderously copied with exceptionally well known ones. 'Dogs playing poker', 'Rlaan plays it by trust', and replicas of mid 21st century CE Terran plastic food storage units are among the more popular items of this type.\"\n" + "Textual_Description": "\"@cargo/rare_artwork.png@Wonderfully handcrafted with near-forgotton techniques and wonderously copied with exceptionally well known ones. 'Dogs playing poker', 'Rlaan plays it by trust', and replicas of mid 21st century CE Terran plastic food storage units are among the more popular items of this type.\"\n", + "shield_facets": "0" }, { "Key": "Erotica", - "Textual_Description": "\"@cargo/erotica.png@If you have to ask, this terminal judges you too young to be told.\"\n" + "Textual_Description": "\"@cargo/erotica.png@If you have to ask, this terminal judges you too young to be told.\"\n", + "shield_facets": "0" }, { "Key": "Resistant_biologics", - "Textual_Description": "\"@cargo/resistant_biologics.png@While of potential legitimate use for research, these pathogens are deemed too dangerous to transport, if only because someone willing to use them might intercept them.\"\n" + "Textual_Description": "\"@cargo/resistant_biologics.png@While of potential legitimate use for research, these pathogens are deemed too dangerous to transport, if only because someone willing to use them might intercept them.\"\n", + "shield_facets": "0" }, { "Key": "Illegal_Weapons", - "Textual_Description": "\"@cargo/hp_weapons.png@While it may seem odd, given the loose nature of the laws governing what armaments may be placed on civilian ships, certain weapons, such as thermonuclear mortars, hunter-killer drones, and Anchadaen wrestling worms, are not allowed to be carried around by the civilians of any known political entity deserving of the title. This does not prevent groups and individuals from desiring the aquisition of such devices.\"\n" + "Textual_Description": "\"@cargo/hp_weapons.png@While it may seem odd, given the loose nature of the laws governing what armaments may be placed on civilian ships, certain weapons, such as thermonuclear mortars, hunter-killer drones, and Anchadaen wrestling worms, are not allowed to be carried around by the civilians of any known political entity deserving of the title. This does not prevent groups and individuals from desiring the aquisition of such devices.\"\n", + "shield_facets": "0" }, { "Key": "Pilot", - "Textual_Description": "\"@cargo/cargo-hud.png@Much as you may hate the pilot of the ship that attempted to destroy yours, destroying that pilot's ship does not grant one, under interstellar law, the right to sell said pilot into slavery. That being said, many have been known to justify such actions by claiming it to be an entirely proper form of remuneration. [Note to editors: Do not change name as the code relies on Pilot]\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Much as you may hate the pilot of the ship that attempted to destroy yours, destroying that pilot's ship does not grant one, under interstellar law, the right to sell said pilot into slavery. That being said, many have been known to justify such actions by claiming it to be an entirely proper form of remuneration. [Note to editors: Do not change name as the code relies on Pilot]\"\n", + "shield_facets": "0" }, { "Key": "Slaves", - "Textual_Description": "\"@cargo/cargo-hud.png@Illegal due to fears of interspecies domination, among a plethora of other reasons, economic inefficiencies looming largest of all.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Illegal due to fears of interspecies domination, among a plethora of other reasons, economic inefficiencies looming largest of all.\"\n", + "shield_facets": "0" }, { "Key": "Clones", - "Textual_Description": "\"@cargo/cargo-hud.png@It is illegal to transport clones as mass cargo. Each clone must book individual passage at cabin rate on a certified civilian transport. Exceptions may be granted for clones under the age of gestation.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@It is illegal to transport clones as mass cargo. Each clone must book individual passage at cabin rate on a certified civilian transport. Exceptions may be granted for clones under the age of gestation.\"\n", + "shield_facets": "0" }, { "Key": "ISO_Propaganda", - "Textual_Description": "\"@cargo/cargo-hud.png@A fair portion of it's true a fair portion of the time, but all of it's illegal all of the time.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A fair portion of it's true a fair portion of the time, but all of it's illegal all of the time.\"\n", + "shield_facets": "0" }, { "Key": "ISO_Party_Member", - "Textual_Description": "\"@cargo/iso_member.png@Anyone in Confederation space willing to openly declare their membership in the ISO either has great fortitude or suffers from great idiocy. The same however, must be said of those willing to transport them through said space.\"\n" + "Textual_Description": "\"@cargo/iso_member.png@Anyone in Confederation space willing to openly declare their membership in the ISO either has great fortitude or suffers from great idiocy. The same however, must be said of those willing to transport them through said space.\"\n", + "shield_facets": "0" }, { "Key": "Socialist_Worker_Journal", - "Textual_Description": "\"@cargo/swj.png@The Socialist Worker Journal is a bi-monthly electronic publication believed to have its origins on Berkeley in the Trotsky system. The SWJ highlights the importance of advancing socialism, and features artwork and music produced by workers, for workers. This product has been officially deemed 'unworthy for use even in the task of wiping one's rear.'\"\n" + "Textual_Description": "\"@cargo/swj.png@The Socialist Worker Journal is a bi-monthly electronic publication believed to have its origins on Berkeley in the Trotsky system. The SWJ highlights the importance of advancing socialism, and features artwork and music produced by workers, for workers. This product has been officially deemed 'unworthy for use even in the task of wiping one's rear.'\"\n", + "shield_facets": "0" }, { "Key": "Luddite_Religious_Tracts", - "Textual_Description": "\"@cargo/luddite_tracts.png@Carrying ISO propaganda will get one arrested. Carrying luddite propaganda, outside of the more sympathetic Purist regions, is likely to get one summarily shot.\"\n" + "Textual_Description": "\"@cargo/luddite_tracts.png@Carrying ISO propaganda will get one arrested. Carrying luddite propaganda, outside of the more sympathetic Purist regions, is likely to get one summarily shot.\"\n", + "shield_facets": "0" }, { "Key": "Escaped_Political_Prisoners", - "Textual_Description": "\"@cargo/political_prisoners.png@Are you now, or have you ever been, a member of the ISO?\"\n" + "Textual_Description": "\"@cargo/political_prisoners.png@Are you now, or have you ever been, a member of the ISO?\"\n", + "shield_facets": "0" }, { "Key": "Overeager_Immigrants", - "Textual_Description": "\"@cargo/cargo-hud.png@With the passing of the Confederation's so called 'Enough is Enough' legislation, it is illegal to transport individuals whose stated purpose is to settle on a planet deemed to have already reached its maximum desired population. While many decried the legislative package as both idiotic and unenforceable and hearings on the act dragged on for years, the coalition of Purists, High Born, Shapers, and various minor factions prevailed over the opposition of the Andolians and the Merchants, with the Unadorned not deigning to participate in the discussion.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@With the passing of the Confederation's so called 'Enough is Enough' legislation, it is illegal to transport individuals whose stated purpose is to settle on a planet deemed to have already reached its maximum desired population. While many decried the legislative package as both idiotic and unenforceable and hearings on the act dragged on for years, the coalition of Purists, High Born, Shapers, and various minor factions prevailed over the opposition of the Andolians and the Merchants, with the Unadorned not deigning to participate in the discussion.\"\n", + "shield_facets": "0" }, { "Key": "ICBINF", - "Textual_Description": "\"@cargo/cargo-hud.png@Originally designed as a cheap, renewable, and environmentally friendly refrigerant, it was found to induce exceptionally terminal cancers in Rlaan.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Originally designed as a cheap, renewable, and environmentally friendly refrigerant, it was found to induce exceptionally terminal cancers in Rlaan.\"\n", + "shield_facets": "0" }, { "Key": "Zhollus", - "Textual_Description": "\"@cargo/cargo-hud.png@A plant-like lifeform that, while exceptionally tasty to a Rlaan, is exceptionally devastating to a Rlaan friendly ecosystem.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@A plant-like lifeform that, while exceptionally tasty to a Rlaan, is exceptionally devastating to a Rlaan friendly ecosystem.\"\n", + "shield_facets": "0" }, { "Key": "RetrifiedSalt", - "Textual_Description": "\"@cargo/cargo-hud.png@Salted crematory remains. Illegal in Aera space due to the combination of a cultural disdain for such and an unwillingness to remove an ancient law from the books.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Salted crematory remains. Illegal in Aera space due to the combination of a cultural disdain for such and an unwillingness to remove an ancient law from the books.\"\n", + "shield_facets": "0" }, { "Key": "AeraNerveStimuli", - "Textual_Description": "\"@cargo/cargo-hud.png@Ever watched an Aera spasm in something that looks like a cross between an epileptic fit and an orgasm? Give them some of this and sit back. Way back. Preferably behind a barrier, because when the Aera in question starts to go into withdrawl induced fits of berserker rage, you might live to tell the tale.\"\n" + "Textual_Description": "\"@cargo/cargo-hud.png@Ever watched an Aera spasm in something that looks like a cross between an epileptic fit and an orgasm? Give them some of this and sit back. Way back. Preferably behind a barrier, because when the Aera in question starts to go into withdrawl induced fits of berserker rage, you might live to tell the tale.\"\n", + "shield_facets": "0" } -] +] \ No newline at end of file diff --git a/units/units_old.json b/units/units_old.json index 74c048eb..68ba4159 100644 --- a/units/units_old.json +++ b/units/units_old.json @@ -6324,24 +6324,6 @@ "Use_BSP": "0", "Use_Rapid": "0", "Hull": "250000000", - "Armor_Front_Top_Right": "45000", - "Armor_Front_Top_Left": "45000", - "Armor_Front_Bottom_Right": "45000", - "Armor_Front_Bottom_Left": "45000", - "Armor_Back_Top_Right": "45000", - "Armor_Back_Top_Left": "45000", - "Armor_Back_Bottom_Right": "45000", - "Armor_Back_Bottom_Left": "45000", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", - "Shield_Recharge": "0", - "Shield_Leak": "0", "Jump_Drive_Present": "FALSE", "Afterburner_Type": "0", "Maneuver_Yaw": "0", @@ -6384,24 +6366,6 @@ "Use_BSP": "0", "Use_Rapid": "0", "Hull": "250000000", - "Armor_Front_Top_Right": "45000", - "Armor_Front_Top_Left": "45000", - "Armor_Front_Bottom_Right": "45000", - "Armor_Front_Bottom_Left": "45000", - "Armor_Back_Top_Right": "45000", - "Armor_Back_Top_Left": "45000", - "Armor_Back_Bottom_Right": "45000", - "Armor_Back_Bottom_Left": "45000", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", - "Shield_Recharge": "0", - "Shield_Leak": "0", "Jump_Drive_Present": "FALSE", "Afterburner_Type": "0", "Maneuver_Yaw": "0", @@ -6444,24 +6408,6 @@ "Use_BSP": "0", "Use_Rapid": "0", "Hull": "250000000", - "Armor_Front_Top_Right": "45000", - "Armor_Front_Top_Left": "45000", - "Armor_Front_Bottom_Right": "45000", - "Armor_Front_Bottom_Left": "45000", - "Armor_Back_Top_Right": "45000", - "Armor_Back_Top_Left": "45000", - "Armor_Back_Bottom_Right": "45000", - "Armor_Back_Bottom_Left": "45000", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", - "Shield_Recharge": "0", - "Shield_Leak": "0", "Jump_Drive_Present": "FALSE", "Afterburner_Type": "0", "Maneuver_Yaw": "0", @@ -6502,24 +6448,6 @@ "Unit_Scale": "6000", "Mesh": "{glow_net_stable.bfxm;;}", "Hull": "250000000", - "Armor_Front_Top_Right": "45000", - "Armor_Front_Top_Left": "45000", - "Armor_Front_Bottom_Right": "45000", - "Armor_Front_Bottom_Left": "45000", - "Armor_Back_Top_Right": "45000", - "Armor_Back_Top_Left": "45000", - "Armor_Back_Bottom_Right": "45000", - "Armor_Back_Bottom_Left": "45000", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", - "Shield_Recharge": "0", - "Shield_Leak": "0", "Jump_Drive_Present": "FALSE", "Afterburner_Type": "0", "Maneuver_Yaw": "0", @@ -6563,24 +6491,6 @@ "Unit_Scale": "5000", "Mesh": "{wormhole_stable.bfxm;;}", "Hull": "250000000", - "Armor_Front_Top_Right": "45000", - "Armor_Front_Top_Left": "45000", - "Armor_Front_Bottom_Right": "45000", - "Armor_Front_Bottom_Left": "45000", - "Armor_Back_Top_Right": "45000", - "Armor_Back_Top_Left": "45000", - "Armor_Back_Bottom_Right": "45000", - "Armor_Back_Bottom_Left": "45000", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", - "Shield_Recharge": "0", - "Shield_Leak": "0", "Jump_Drive_Present": "FALSE", "Afterburner_Type": "0", "Maneuver_Yaw": "0", @@ -6625,24 +6535,6 @@ "Use_BSP": "0", "Use_Rapid": "0", "Hull": "250000000", - "Armor_Front_Top_Right": "45000", - "Armor_Front_Top_Left": "45000", - "Armor_Front_Bottom_Right": "45000", - "Armor_Front_Bottom_Left": "45000", - "Armor_Back_Top_Right": "45000", - "Armor_Back_Top_Left": "45000", - "Armor_Back_Bottom_Right": "45000", - "Armor_Back_Bottom_Left": "45000", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", - "Shield_Recharge": "0", - "Shield_Leak": "0", "Jump_Drive_Present": "FALSE", "Afterburner_Type": "0", "Maneuver_Yaw": "0", @@ -6683,24 +6575,6 @@ "Unit_Scale": "800", "Mesh": "{glow_net_unstable.bfxm;;}", "Hull": "250000000", - "Armor_Front_Top_Right": "45000", - "Armor_Front_Top_Left": "45000", - "Armor_Front_Bottom_Right": "45000", - "Armor_Front_Bottom_Left": "45000", - "Armor_Back_Top_Right": "45000", - "Armor_Back_Top_Left": "45000", - "Armor_Back_Bottom_Right": "45000", - "Armor_Back_Bottom_Left": "45000", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", - "Shield_Recharge": "0", - "Shield_Leak": "0", "Jump_Drive_Present": "FALSE", "Afterburner_Type": "0", "Maneuver_Yaw": "0", @@ -6743,24 +6617,6 @@ "Unit_Scale": "800", "Mesh": "{wormhole_unstable.bfxm;;}", "Hull": "250000000", - "Armor_Front_Top_Right": "45000", - "Armor_Front_Top_Left": "45000", - "Armor_Front_Bottom_Right": "45000", - "Armor_Front_Bottom_Left": "45000", - "Armor_Back_Top_Right": "45000", - "Armor_Back_Top_Left": "45000", - "Armor_Back_Bottom_Right": "45000", - "Armor_Back_Bottom_Left": "45000", - "Shield_Front_Top_Right": "0", - "Shield_Back_Top_Left": "0", - "Shield_Front_Bottom_Right": "0", - "Shield_Front_Bottom_Left": "0", - "Shield_Back_Top_Right": "0", - "Shield_Front_Top_Left": "0", - "Shield_Back_Bottom_Right": "0", - "Shield_Back_Bottom_Left": "0", - "Shield_Recharge": "0", - "Shield_Leak": "0", "Jump_Drive_Present": "FALSE", "Afterburner_Type": "0", "Maneuver_Yaw": "0", @@ -21095,7 +20951,7 @@ "Armor_Back_Top_Left": "1", "Armor_Back_Bottom_Right": "1", "Armor_Back_Bottom_Left": "1", - "Shield_Front_Top_Right": "1", + "Shield_Front_Top_Right": "0", "Shield_Back_Top_Left": "0", "Shield_Front_Bottom_Right": "0", "Shield_Front_Bottom_Left": "0", From c36bfc3a2de427ba2f341ceee46df042a2d837b5 Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Sun, 2 Feb 2025 10:51:28 +0200 Subject: [PATCH 2/7] Remove 0 shield facets Add Afterburner_Upgrade to units_old - prevent overwriting and recreating bug. Make Llama.begin damaged on start again. --- units/minimize_parts.py | 6 +- units/ships.json | 67 +- units/units.json | 1957 +++++++++++++-------------------------- units/units_old.json | 20 +- 4 files changed, 660 insertions(+), 1390 deletions(-) diff --git a/units/minimize_parts.py b/units/minimize_parts.py index e045d63b..5e4e1aeb 100644 --- a/units/minimize_parts.py +++ b/units/minimize_parts.py @@ -63,9 +63,7 @@ def delete_ship_by_key(key, units): if unit[KEY] == key: units.remove(unit) return - - - + # Convert old armor/shield to new format def force_minimize_shield_and_armor(unit, new_keys, old_keys, min_key): @@ -121,7 +119,7 @@ def force_minimize_shield_and_armor(unit, new_keys, old_keys, min_key): del(unit[old_key]) # Add shield facets - if new_keys[0].startswith('shield'): + if 'shield' in unit or 'shield_front' in unit: unit['shield_facets'] = str(facets) diff --git a/units/ships.json b/units/ships.json index 3db855ba..25ed62d5 100644 --- a/units/ships.json +++ b/units/ships.json @@ -46,8 +46,7 @@ "Light": "{supernova.bmp.bfxm;-0.249996;0.00000e+0;-1.83758;1.5;;;;;}{supernova.bmp.bfxm;0.250004;0.00000e+0;-1.83758;1.5;;;;;}", "Mounts": "{;;;LIGHT SPECIAL;-4.07186e-6;-0.150000;1.99709;;;-1.06144e-5;0.00000e+0;2.00000;0.00000e+0;1.00000;0.00000e+0;1;1}", "Upgrade_Storage_Volume": "16", - "armor": "6.0", - "shield_facets": "0" + "armor": "6.0" }, "units": [ { @@ -121,7 +120,6 @@ "Mounts": "{;;3;Light medium autotracking;6;-2.75;-4.75;;;;;;;;;1;1}{;;3;Light medium autotracking;-6;-2.75;-4.75;;;;;;;;;1;1}{;;3;Light medium autotracking;6;4.75;-4.75;;;;;;;;;1;1}{;;3;Light medium autotracking;-6;4.75;-4.75;;;;;;;;;1;1}{;;;heavy autotracking;0;-3;3;;;;;;;;;1;1}{;;21;light-missile;6.082913;-.368988;0.747223;;;;;;;;;1;1}{;;21;light-missile;-6.157103;-.379586;1.100964;;;;;;;;;1;1}{;;300;Light-missile medium-missile heavy-missile;6.045031;-3.217878;0.973509;;;;;;;;;1;1}{;;300;Light-missile medium-missile heavy-missile;-6.022359;-3.201684;0.913285;;;;;;;;;1;1}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "900", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -222,7 +220,6 @@ "Light": "{supernova.bmp.bfxm;0;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;0.6;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;-0.6;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;1.2;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;-1.2;0;-4.4;1.2;;;;;}{supernova.bmp.bfxm;1.8;0;-4.3;1.2;;;;;}{supernova.bmp.bfxm;-1.8;0;-4.3;1.2;;;;;}{supernova.bmp.bfxm;5;0.275;-2;2;;;;;}{supernova.bmp.bfxm;4;0.275;-2;2;;;;;}{supernova.bmp.bfxm;-5;0.275;-2;2;;;;;}{supernova.bmp.bfxm;-4;0.275;-2;2;;;;;}{supernova.bmp.bfxm;8.75;0.275;-2.75;2;;;;;}{supernova.bmp.bfxm;9.75;0.275;-2.75;2;;;;;}{supernova.bmp.bfxm;-9.75;0.275;-2.75;2;;;;;}{supernova.bmp.bfxm;-8.75;0.275;-2.75;2;;;;;}", "Mounts": "{;8;800;heavy-missile;1;-2;7;;;;;;;;;1;1}{;8;800;heavy-missile;-1;-2;7;;;;;;;;;1;1}{;8;800;heavy-missile;1;-2;-1;;;;;;;;;1;1}{;8;800;heavy-missile;-1;-2;-1;;;;;;;;;1;1}{;;;light autotracking;12.5;0.1;0;;;;;;;;;1;1}{;;;light autotracking;-12.5;0.1;0;;;;;;;;;1;1}{;;;light autotracking;12.5;-0.1;0;;;;;;;;;1;1}{;;;light autotracking;-12.5;-0.1;0;;;;;;;;;1;1}{;;;light medium autotracking;-2;0;12;;;;;;;;;1;1}{;;;light medium autotracking;2;-0;12;;;;;;;;;1;1}{;;;capship-light;-0.1;-2;13;;;;;;;;;1;1}{;;;capship-light;0.1;-2;13;;;;;;;;;1;1}{;5;80;light-missile medium-missile;4.1;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;3.9;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;-4.1;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;-3.9;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;8.1;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;7.9;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;-8.1;0;-3;;;;;;;;;1;1}{;5;80;light-missile medium-missile;-7.9;0;-3;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "25000", - "shield_facets": "0", "accel": "60000" }, "units": [ @@ -324,7 +321,6 @@ "Light": "{supernova.bmp.bfxm;0;0.75;-7.5;4;;;;;}{supernova.bmp.bfxm;0;-2;0.3;1;;;;;}{supernova.bmp.bfxm;0.5;-2;0.3;1;;;;;}{supernova.bmp.bfxm;-0.5;-2;0.3;1;;;;;}{supernova.bmp.bfxm;0.25;-2;0.3;1;;;;;}{supernova.bmp.bfxm;-0.25;-2;0.3;1;;;;;}{supernova.bmp.bfxm;0;-1.6;-1.35;1;;;;;}{supernova.bmp.bfxm;0.4;-1.6;-1.35;1;;;;;}{supernova.bmp.bfxm;-0.4;-1.6;-1.35;1;;;;;}{supernova.bmp.bfxm;0.2;-1.6;-1.35;1;;;;;}{supernova.bmp.bfxm;-0.2;-1.6;-1.35;1;;;;;}", "Mounts": "{;;800;light-missile medium-missile special-missile;2.1;0.75;0;;;;;;;;;1;1}{;;800;light-missile medium-missile special-missile;-2;0.75;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "4500", - "shield_facets": "0", "accel": "8000" }, "units": [ @@ -395,7 +391,6 @@ "Light": "{supernova.bmp.bfxm;4;1.05;-15.5;13;;;;;}{supernova.bmp.bfxm;-4;1.05;-15.5;13;;;;;}{supernova.bmp.bfxm;3.75;-.75;-17;18;;;;;}{supernova.bmp.bfxm;-3.75;-.75;-17;18;;;;;}{supernova.bmp.bfxm;3.5;-3.75;-15.8;8;;;;;}{supernova.bmp.bfxm;-3.5;-3.75;-15.8;8;;;;;}{supernova.bmp.bfxm;5.25;-3.75;-15.8;8;;;;;}{supernova.bmp.bfxm;-5.25;-3.75;-15.8;8;;;;;}{supernova.bmp.bfxm;5.25;-5.1;-15.8;8;;;;;}{supernova.bmp.bfxm;-5.25;-5.1;-15.8;8;;;;;}{supernova.bmp.bfxm;3.5;-5.1;-15.8;8;;;;;}{supernova.bmp.bfxm;-3.5;-5.1;-15.8;8;;;;;}", "Mounts": "{;;3;Light Medium Heavy;1;-5.86;11.5;;;;;;;;;1;1}{;;3;Light Medium Heavy;-1;-5.86;11.5;;;;;;;;;1;1}{;;3;Light Medium Heavy;1;-8;11.5;;;;;;;;;1;1}{;;3;Light Medium Heavy;-1;-8;11.5;;;;;;;;;1;1}{;;3;Light;.65;3.75;7;;;;;;;;;1;1}{;;3;Light;-.65;3.75;7;;;;;;;;;1;1}{;;8;special-missile;4;-3.75;.2;;;;;;;;;1;1}{;;8;special-missile;-4;-3.75;.2;;;;;;;;;1;1}{;;200;heavy-missile;-5.000000;-.9000000;-3.000000;;;;;;;;;1;1}{;;200;heavy-missile;5.000000;-.9000000;-3.000000;;;;;;;;;1;1}{;;16;light-missile medium-missile;3.000000;-.9000000;-1.000000;;;;;;;;;1;1}{;;16;light-missile medium-missile;-3.000000;-.9000000;-1.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "2500", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -534,7 +529,6 @@ "Mounts": "{;;;Light Medium Heavy autotracking;-9;-.25;-.75;;;;;;;;;1;1}{;;;Light Medium Heavy autotracking;9;-.25;-.75;;;;;;;;;1;1}{;;;Light;-4.5;-.6;12.25;;;;;;;;;1;1}{;;;Light;4.5;-.6;12.25;;;;;;;;;1;1}{;;200;special-missile;0;-0.5;0;;;;;;;;;1;1}", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "1500", - "shield_facets": "0", "accel": "12000" }, "units": [ @@ -945,7 +939,6 @@ "Dock": "{;0;-100;-220;80;0}", "Upgrade_Storage_Volume": "100000", "armor": "24000.0", - "shield_facets": "0", "accel": "950000000" }, "units": [ @@ -1385,7 +1378,6 @@ "Dock": "{;0;4;-10;7;0}", "Upgrade_Storage_Volume": "100000", "armor": "19750.0", - "shield_facets": "0", "accel": "10000000" }, "units": [ @@ -1447,7 +1439,6 @@ "Dock": "{;0;-45;-120;30;0}", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "600", - "shield_facets": "0", "accel": "550000000" }, "units": [ @@ -1513,7 +1504,6 @@ "Mounts": "{;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{;;;capship-heavy SPECIAL;-0.025;-0.073;2.75;;;;;;;;;1;1}{tractor;;; SPECIAL autotracking;0;0;-1;;;0;-0.17;0.98;0;1;0;1;1}", "Dock": "{;0;-0.3;-0.7;0.3;0}", "Upgrade_Storage_Volume": "600", - "shield_facets": "0", "accel": "800000" }, "units": [ @@ -1706,7 +1696,6 @@ "Light": "{supernova.bmp.bfxm;4.5;1.8;-13.85;5;;;;;}{supernova.bmp.bfxm;5.1;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;3.95;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;-4.5;1.8;-13.85;5;;;;;}{supernova.bmp.bfxm;-5.1;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;-3.95;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;4.5;.35;-13.85;12;;;;;}{supernova.bmp.bfxm;-4.5;.35;-13.85;12;;;;;}{supernova.bmp.bfxm;6.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;5.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;4.5;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-6.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-5.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-4.5;-4.8;-12.3;4;;;;;}", "Mounts": "{;;;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;300;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "1400", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -1900,7 +1889,6 @@ "Light": "{supernova.bmp.bfxm;4.5;1.8;-13.85;5;;;;;}{supernova.bmp.bfxm;5.1;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;3.95;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;-4.5;1.8;-13.85;5;;;;;}{supernova.bmp.bfxm;-5.1;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;-3.95;2.75;-13.85;5;;;;;}{supernova.bmp.bfxm;4.5;.35;-13.85;12;;;;;}{supernova.bmp.bfxm;-4.5;.35;-13.85;12;;;;;}{supernova.bmp.bfxm;6.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;5.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;4.5;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-6.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-5.45;-4.8;-12.3;4;;;;;}{supernova.bmp.bfxm;-4.5;-4.8;-12.3;4;;;;;}", "Mounts": "{;;;Light Medium Heavy;2.35;6;10.3;;;;;;;;;1;1}{;;;Light Medium Heavy;-2.35;6;10.3;;;;;;;;;1;1}{;;;Light Medium Heavy;-1.75;-10.5;9.5;;;;;;;;;1;1}{;;;Light Medium Heavy;1.75;-10.5;9.5;;;;;;;;;1;1}{;;;Light;8.1;-3.5;-1.65;;;;;;;;;1;1}{;;;Light;-8.1;-3.5;-1.65;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;-0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;48;Light-Missile Medium-Missile;0.300000;-0.100000;0.000000;;;;;;;;;1;1}{;;100;Heavy-Missile;-0.000000;0.000000;0.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "1200", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -1964,7 +1952,6 @@ "Light": "{thrust1.bfxm;0;.5;-7.5;8;;;;;}{thrust1.bfxm;1.3;0;-7.5;10;;;;;}{thrust1.bfxm;-1.3;0;-7.5;10;;;;;}{thrust1.bfxm;.4;-.3;-7;4;;;;;}{thrust1.bfxm;-.4;-.3;-7;4;;;;;}", "Mounts": "{;;;Light Autotrack;1.75;1.5;-1;;;;;;;;;1;1}{;;;Light Autotrack;-1.75;1.5;-1;;;;;;;;;1;1}{;;;Light Medium;3.5;0;3.125;;;;;;;;;1;1}{;;;Light Medium;-3.5;0;3.125;;;;;;;;;1;1}{;4;48;light-missile medium-missile;-2.500000;-0.200000;-2.00000;;;;;;;;;1;1}{;4;48;light-missile medium-missile;2.500000;-0.200000;-2.00000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "400", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -2095,7 +2082,6 @@ "Mounts": "{;;;light medium autotracking;8;-3;10.85;;;;;;;;;1;1}{;;;light medium autotracking;-8;-3;10.85;;;;;;;;;1;1}{;;;light medium autotracking;6;-2.9;10.5;;;;;;;;;1;1}{;;;light medium autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{;;;light medium autotracking;9;-1.65;-1;;;;;;;;;1;1}{;;;light medium autotracking;-9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;8;-3;10.85;;;;;;;;;1;1}{;27;27;special-missile autotracking;-8;-3;10.85;;;;;;;;;1;1}{;27;27;special-missile autotracking;6;-2.9;10.5;;;;;;;;;1;1}{;27;27;special-missile autotracking;-6;-2.9;10.5;;;;;;;;;1;1}{;27;27;special-missile autotracking;9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;-9;-1.65;-1;;;;;;;;;1;1}{;27;27;special-missile autotracking;3.6;-1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;-3.6;-1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;3.6;1.6;1.2;;;;;;;;;1;1}{;27;27;special-missile autotracking;-3.6;1.6;1.2;;;;;;;;;1;1}{;3;9;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{;3;9;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}{;6;30;medium-missile autotracking;3.6;-1.6;1.200000;;;;;;;;;1;1}{;6;30;medium-missile autotracking;-3.6;-1.6;1.200000;;;;;;;;;1;1}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "600", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -2292,7 +2278,6 @@ "Light": "{supernova.bmp.bfxm;-0.506007;2.40000e-2;-5.16000;.6;;;;;}{supernova.bmp.bfxm;9.59928e-2;3.20000e-2;-3.67200;.6;;;;;}", "Mounts": "{;;;Light;-2.75800;-0.682000;0.628000;;;;;;;;;1;1}{;;;Light;3.94800;-1.03200;1.21200;;;;;;;;;1;1}{;;;Medium;-4.40000e-2;1.22800;-0.508000;;;;;;;;;1;1}{;;;Medium;-0.320000;-0.352000;4.16400;;;;;;;;;1;1}{;20;5;special-missile;-3.00944e-2;0.757442;-1.86303;;;;;;;;;1;1}{;1;100;Light-missile medium-missile heavy-missile;1.65074;-0.522844;1.34526e-3;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "275", - "shield_facets": "0", "accel": "3000" }, "units": [ @@ -2410,7 +2395,6 @@ "Light": "{supernova.bmp.bfxm;0.158000;2.80064e-2;-4.83800;1;;;;;}{supernova.bmp.bfxm;0.786000;3.40064e-2;-4.83800;1;;;;;}", "Mounts": "{;;;Light;-0.598000;3.19962e-2;2.87600;;;;;;;;;1;1}{;;;Light Medium Heavy;0.270000;-0.418006;3.63600;;;;;;;;;1;1}{;5;80;Light-missile Medium-missile;-1.50600;-0.154000;-1.83200;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "120", - "shield_facets": "0", "accel": "3000" }, "units": [ @@ -2529,7 +2513,6 @@ "Light": "{supernova.bmp.bfxm;0;0;-6.36800;4;;;;;}", "Mounts": "{;4;1;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}{;;;Light Medium Heavy Special;3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}{;;;Light Medium Heavy Special;-3.1;-0.13;2.35;;;0;0;1;0;1;0;1;1}", "Upgrade_Storage_Volume": "125", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -2682,7 +2665,6 @@ "Light": "{supernova.bmp.bfxm;0.086;-0.269;-14.620000;2.000000;;;;;}", "Mounts": "{;;;Light;3.76500;0.15400;19.31000;;;;;;;;;1;1}{;;;Light;2.80800;0.15400;19.98000;;;;;;;;;1;1}{;;;Light;3.76500;-0.15400;19.31000;;;;;;;;;1;1}{;;;Light;2.80800;-0.15400;19.98000;;;;;;;;;1;1}{;1;100;heavy-missile;-12;0;6.5;;;;;;;;;1;1}{;1;16;medium-missile;-12;0.05;6.55;;;;;;;;;1;1}{;1;16;medium-missile;-12;-0.05;6.55;;;;;;;;;1;1}{;1;16;medium-missile;-12;-0.05;6.45;;;;;;;;;1;1}{;1;16;medium-missile;-12;0.05;6.45;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "325", - "shield_facets": "0", "accel": "2000" }, "units": [ @@ -2819,7 +2801,6 @@ "Light": "{supernova.bmp.bfxm;-43.740699;-14.15585;-74.549662;20;;;;;}{supernova.bmp.bfxm;-35.702901;-14.15585;-74.549662;20;;;;;}{supernova.bmp.bfxm;35.702901;-14.15585;-74.549662;20;;;;;}{supernova.bmp.bfxm;43.740699;-14.15585;-74.549662;20;;;;;}", "Mounts": "{;;;Light Special;-12.6;-16.5;4;;;;;;;;;1;1}{;;;Light Special;12.6;-16.5;4;;;;;;;;;1;1}{;;;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{;;;Light;12.5;-1.5;-1;;;;;;;;;1;1}{;1;16;Special;0;-.23;4;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "450", - "shield_facets": "0", "accel": "2000" }, "units": [ @@ -2945,7 +2926,6 @@ "Light": "{supernova.bmp.bfxm;-3.35;1.125;-9.25;8;;;;;}{supernova.bmp.bfxm;3.35;1.125;-9.25;8;;;;;}{supernova.bmp.bfxm;-3.5;.125;-9.25;3;;;;;}{supernova.bmp.bfxm;3.5;.125;-9.25;3;;;;;}{supernova.bmp.bfxm;-3;.25;-9.25;3;;;;;}{supernova.bmp.bfxm;3;.25;-9.25;3;;;;;}{supernova.bmp.bfxm;-3.35;-.3;-9.25;3;;;;;}{supernova.bmp.bfxm;3.35;-.3;-9.25;3;;;;;}{supernova.bmp.bfxm;-2.9;-.16;-9.25;3;;;;;}{supernova.bmp.bfxm;2.9;-.16;-9.25;3;;;;;}", "Mounts": "{;;;light medium;-0.6;-2.8;7;;;;;;;;;1;1}{;;;light medium;0.6;-2.8;7;;;;;;;;;1;1}{;;;medium heavy;-2;-0.16;11;;;;;;;;;1;1}{;;;medium heavy;2;-0.16;11;;;;;;;;;1;1}{;4;1;light-missile medium-missile;4.470487;-0.182350;-1.094219;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-4.512798;-0.183760;-1.121801;;;;;;;;;1;1}{;4;1;light-missile medium-missile;3.470487;-0.182350;-1.094219;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-3.512798;-0.183760;-1.121801;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "725", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -3052,7 +3032,6 @@ "Light": "{thrust1.bfxm;-0.0;-0.533517;-4.4708;5;;;;;}", "Mounts": "{;;;Light Medium;-0.876000;-0.140000;-0.732000;;;;;;;;;1;1}{;;;Light Medium;0.886000;-0.140000;-0.732000;;;;;;;;;1;1}{;1;32;light-missile;-0.276000;-0.182000;0.00000e+0;;;;;;;;;1;1}{;1;32;light-missile;0.278000;-0.182000;0.00000e+0;;;;;;;;;1;1}{;4;1;Special Special-Missile;-0.582000;-0.182000;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "40", - "shield_facets": "0", "accel": "700" }, "units": [ @@ -3128,7 +3107,6 @@ "Light": "{supernova.bmp.bfxm;-0.5973;0.48082;-7.39491;4;;;;;}{supernova.bmp.bfxm;0.5973;0.48082;-7.39491;4;;;;;}{supernova.bmp.bfxm;2.0167;0.00188;-7.39491;4;;;;;}{supernova.bmp.bfxm;-2.0167;0.00188;-7.39491;4;;;;;}{supernova.bmp.bfxm;0.61947;-0.49032;-7.39491;4;;;;;}{supernova.bmp.bfxm;-0.61947;-0.49032;-7.39491;4;;;;;}", "Mounts": "{FS_MWRF_Laser;;;Medium;0;-2.8;5.5;.2;.2;;;;;;;1;1}{FS_MWRF_Laser;;;Medium;0;3;7.75;.2;.2;;;;;;;1;1}{Hail;100;25;special special-missile medium-missile;0;0;6.5;;;;;;;;;1;1}{Hail;100;25;special special-missile medium-missile;0;0;6.5;;;;;;;;;1;1}{Hail;100;25;special special-missile medium-missile;0;0;6.5;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "125", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -3188,7 +3166,6 @@ "Light": "{supernova.bmp.bfxm;1.500000;0.700000;-8.000000;2.750000;;;;;}{supernova.bmp.bfxm;-1.500000;0.700000;-8.000000;2.750000;;;;;}", "Mounts": "{;;;light;0.800000;-0.600000;8.000000;;;;;;;;;1;1}{;;;light;-0.800000;-0.600000;8.000000;;;;;;;;;1;1}{;;;light;-0.000000;-0.400000;8.200000;;;;;;;;;1;1}{;25;7;Special Special-Missile;2.000000;0.800000;-4.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;-2.000000;0.800000;-4.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{;25;7;Special Special-Missile;-1.000000;-1.400000;-1.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "125", - "shield_facets": "0", "accel": "2000" }, "units": [ @@ -3331,8 +3308,7 @@ "data": { "Key": "Seaxbane__upgrades", "Object_Type": "FIXME", - "Mounts": "{Seaxbane;1;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Seaxbane;1;;;;;;;;;;;;;;1;1}" } } ] @@ -3428,7 +3404,6 @@ "Light": "{supernova.bmp.bfxm;0.058558;0.326294;-1.977969;1.780003;;;;;}{supernova.bmp.bfxm;-1.347379;0.958650;-3.000000;0.40000;;;;;}{supernova.bmp.bfxm;1.347379;0.958650;-3.000000;0.40000;;;;;}{supernova.bmp.bfxm;0.863464;-1.003810;-3.000000;0.40000;;;;;}{supernova.bmp.bfxm;-0.863464;-1.003810;-3.000000;0.40000;;;;;}", "Mounts": "{;2;32;Light-missile Medium-missile;-1.056411;-1.226957;3.200000;;;;;;;;;1;1}{;2;32;Light-missile Medium-missile;1.056411;-1.226957;3.200000;;;;;;;;;1;1}{;;;Light medium;0;0.1;3;;;;;;;;;1;1}{;2;32;light-missile medium-missile Special;-1.629525;1.044771;3.200000;;;;;;;;;1;1}{;2;32;light-missile medium-missile Special;1.629525;1.044771;3.200000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "250", - "shield_facets": "0", "accel": "2000" }, "units": [ @@ -3568,7 +3543,6 @@ "Light": "{supernova.bmp.bfxm;7.861;-2.5;2.6;11;;;;;}{supernova.bmp.bfxm;-7.861;-2.5;2.6;11;;;;;}{supernova.bmp.bfxm;7.661;-3.9;4.206;8;;;;;}{supernova.bmp.bfxm;-7.661;-3.9;4.206;8;;;;;}", "Mounts": "{;;;light autotracking;-34.575;0.55;29.427;;;;;;;;;1;1}{;;;light autotracking;-34.575;-4.244;29.427;;;;;;;;;1;1}{;;;light autotracking;-23.535;0.55;33.618;;;;;;;;;1;1}{;;;light autotracking;-23.535;-4.244;33.618;;;;;;;;;1;1}{;;;light autotracking;23.535;0.55;33.618;;;;;;;;;1;1}{;;;light autotracking;23.535;-4.244;33.618;;;;;;;;;1;1}{;;;light autotracking;34.575;0.55;29.427;;;;;;;;;1;1}{;;;light autotracking;34.575;-4.244;29.427;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "680", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -3652,7 +3626,6 @@ "Mounts": "{;;;Light Medium Heavy;-7.5;-1;0;;;;;;;;;1;1}{;;;Light Medium Heavy;7.5;-1;0;;;;;;;;;1;1}{;;;Light Medium Heavy;-.75;-6;3.25;;;;;;;;;1;1}{;;;Light Medium Heavy;.75;-6;3.25;;;;;;;;;1;1}", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "200", - "shield_facets": "0", "accel": "12000" }, "units": [ @@ -3763,7 +3736,6 @@ "Light": "{supernova.bmp.bfxm;0.00000e+0;8.60000e-2;-3.90200;.5;;;;;}{supernova.bmp.bfxm;-0.386000;8.60000e-2;-3.90200;.5;;;;;}{supernova.bmp.bfxm;0.386000;8.60000e-2;-3.90200;.5;;;;;}", "Mounts": "{;;;special heavy;-2.24600;-0.412000;-0.328000;;;;;;;;;1;1}{;;;special heavy;2.24600;-0.422000;-0.328000;;;;;;;;;1;1}{;;;light medium;-0.382000;-5.80000e-2;3.26400;;;;;;;;;1;1}{;;;light medium;0.380000;-5.80000e-2;3.26400;;;;;;;;;1;1}{;2;6;light-missile medium-missile;-0.898000;-0.108000;-1.29000;;;;;;;;;1;1}{;2;6;light-missile medium-missile;0.904000;-0.108000;-1.29000;;;;;;;;;1;1}{;2;6;light-missile medium-missile;-0.152000;-1.80000e-2;2.67800;;;;;;;;;1;1}{;2;6;light-missile medium-missile;0.158000;-1.80000e-2;2.67800;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "100", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -3881,7 +3853,6 @@ "Light": "{supernova.bmp.bfxm;1.55;-2.2;-3;4;;;;;}{supernova.bmp.bfxm;-1.55;-2.2;-3;4;;;;;}", "Mounts": "{;;;Light;4.3;0.5;7;;;;;;;;;1;1}{;;;Light;-4.3;0.5;7;;;;;;;;;1;1}{;;;Light;3.8;0.5;7;;;;;;;;;1;1}{;;;Light;-3.8;0.5;7.;;;;;;;;;1;1}{;3;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "75", - "shield_facets": "0", "accel": "1000" }, "units": [ @@ -3960,7 +3931,6 @@ "Light": "{supernova.bmp.bfxm;0;-.328;-9.75;8;;;;;}{supernova.bmp.bfxm;0.25;-1.1;-9.75;5;;;;;}{supernova.bmp.bfxm;-0.25;-1.1;-9.75;5;;;;;}", "Mounts": "{;;;Light;1.4;0;.5;.2;.2;;;;;;;1;1}{;;;Light;-1.4;0;.5;.2;.2;;;;;;;1;1}{;;;Light Medium;0;-2.5;10.25;.2;.2;;;;;;;1;1}{;;;Light;0;-2.8;10.25;.2;.2;;;;;;;1;1}{;4;1;special special-missile medium-missile;1.95;.45;-.75;;;;;;;;;1;1}{;4;1;Special special-missile medium-missile;-1.95;.45;-.75;;;;;;;;;1;1}{;4;1;light-missile medium-missile;1.95;.81;-.75;;;;;;;;;1;1}{;4;1;light-missile medium-missile;-1.95;.81;-.75;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "225", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -4195,7 +4165,6 @@ "Mounts": "{;;;light medium autotracking;5.600000;-1.600000;3.200000;;;;;;;;;1;1}{;;;light medium autotracking;-5.600000;-1.600000;3.200000;;;;;;;;;1;1}{;;;light medium autotracking;.5;-1.65;8;;;;;;;;;1;1}{;;;light medium autotracking;-.5;-1.65;8;;;;;;;;;1;1}{;200;100;special-missile autotracking;3.600000;-1.600000;1.200000;;;;;;;;;1;1}{;200;100;special-missile autotracking;-3.600000;-1.600000;1.200000;;;;;;;;;1;1}", "Explosion": "explosion_aera.ani", "Upgrade_Storage_Volume": "225", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -4339,7 +4308,6 @@ "Light": "{supernova.bmp.bfxm;2.8;2.8;-5;7;;;;;}{supernova.bmp.bfxm;-2.8;2.8;-5;7;;;;;}{supernova.bmp.bfxm;4;2.335;-5;7;;;;;}{supernova.bmp.bfxm;-4;2.335;-5;7;;;;;}", "Mounts": "{;;;light medium;0.95;-2.635;12.000000;;;;;;;;;1;1}{;;;light medium;-0.95;-2.635;12.000000;;;;;;;;;1;1}{;125;32;Special Special-Missile;2.641;-.705;10;;;;;;;;;1;1}{;125;32;Special Special-Missile;-2.641;-.705;10;;;;;;;;;1;1}{;125;32;Special Special-Missile;1.355;-.705;10;;;;;;;;;1;1}{;125;32;Special Special-Missile;-1.355;-.705;10;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}{;1;16;Medium-Missile Light-Missile;-2.5000000;-1.400000;-2.000000;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "230", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -4508,7 +4476,6 @@ "Light": "{supernova.bmp.bfxm;0;-.5;-5.5;10;;;;;}", "Mounts": "{;;;Light Autotracking;0;3;.5;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "325", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -4628,7 +4595,6 @@ "Mounts": "{;;;Light Medium;-4.125;-4.4;0;;;;;;;;;1;1}{;;;Light Medium;4.125;-4.4;0;;;;;;;;;1;1}", "Explosion": "explosion_rlaan.ani", "Upgrade_Storage_Volume": "450", - "shield_facets": "0", "accel": "12000" }, "units": [ @@ -4762,7 +4728,6 @@ "Dock": "{;30;0;-37;30;0}{;-30;0;-37;30;0}", "Upgrade_Storage_Volume": "600", "Spec_Interdiction": "-8", - "shield_facets": "0", "accel": "10000" }, "units": [ @@ -4918,7 +4883,6 @@ "Mounts": "{;;;Light Medium;-12.6;-16.5;4;;;;;;;;;1;1}{;;;Light Medium;12.6;-16.5;4;;;;;;;;;1;1}{;;;Light;-12.5;-1.5;-1;;;;;;;;;1;1}{;;;Light;12.5;-1.5;-1;;;;;;;;;1;1}{;1;16;Special light-missile;0;-.23;4;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "325", "Spec_Interdiction": "-2", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -4992,7 +4956,6 @@ "Mounts": "{;;;special;11.5;-2.5;24;;;;;;;;;1;1}{;;;special;-11.5;-2.5;24;;;;;;;;;1;1}{;;;Light Medium;11.5;-4.5;23;;;;;;;;;1;1}{;;;Light Medium;-11.5;-4.5;23;;;;;;;;;1;1}{;8;24;light-missile medium-missile;-5.3;7;12;;;;;;;;;1;1}{;8;24;light-missile medium-missile;5.3;7;12;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "600", "Spec_Interdiction": "-5", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -5182,7 +5145,6 @@ "Dock": "{;0;-0.85;1.5;0.5;0}", "Upgrade_Storage_Volume": "360", "armor": "2.0", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -5233,7 +5195,6 @@ "Mounts": "{;;;;64;51;11.8091;;;;;;;;;1;1}{;;;;-64;51;11.8091;;;;;;;;;1;1}{;;;Special autotracking;212;-50;65;;;;;;;;;1;1}{;;;Special autotracking;-212;-50;65;;;;;;;;;1;1}{;;;Special;0;-35;95;;;;;;;;;1;1}{;;;Special;-0;-35;95;;;;;;;;;1;1}{;;;Special;0;-35;95;;;;;;;;;1;1}{;;;Special;-0;-35;95;;;;;;;;;1;1}{;;;Special;0;-35;95;;;;;;;;;1;1}{;;;Special;0;-35;95;;;;;;;;;1;1}", "Dock": "{;0;-4.7;6;25;0}", "Upgrade_Storage_Volume": "1800", - "shield_facets": "0", "accel": "10000" }, "units": [ @@ -5346,7 +5307,6 @@ "Hold_Volume": "25", "Prohibited_Upgrades": "upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Upgrade_Storage_Volume": "225", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -5420,7 +5380,6 @@ "Light": "{supernova.bmp.bfxm;0.00000e+0;2.40000e-2;-1.03600;.5;;;;;}{supernova.bmp.bfxm;-0.298000;2.40000e-2;-1.03600;.5;;;;;}{supernova.bmp.bfxm;0.290000;2.40000e-2;-1.03600;.5;;;;;}", "Mounts": "{;;;Light Medium;-1.45600;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;;;Light Medium;1.45800;-2.00000e-2;-0.396000;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;1;90;Special-missile Heavy-missile;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;5.00000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;special;-4.20000e-2;-0.102000;2.91600;;;;;;;;;1;1}{;;;Light Medium ;0.160000;-0.102000;2.42200;;;;;;;;;1;1}{;;;Light Medium;-0.132000;-0.102000;2.42200;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "300", - "shield_facets": "0", "accel": "10000" }, "units": [ @@ -5562,7 +5521,6 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;160;0;-400;800;;;;;}{supernova.bmp.bfxm;-160;0;-400;800;;;;;}", "Upgrade_Storage_Volume": "300", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -5641,7 +5599,6 @@ "Prohibited_Upgrades": "upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;5.25;-0.55;-12.75;6;;;;;}{supernova.bmp.bfxm;-5.25;-0.55;-12.75;6;;;;;}", "Upgrade_Storage_Volume": "225", - "shield_facets": "0", "accel": "5000" }, "units": [ @@ -5704,7 +5661,6 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;0;1;-5.15;2;;;;;}{supernova.bmp.bfxm;1;1.2;-5.175;3;;;;;}{supernova.bmp.bfxm;-1;1.2;-5.175;3;;;;;}{supernova.bmp.bfxm;3;-1.8;-4.15;1;;;;;}{supernova.bmp.bfxm;-3;-1.8;-4.15;1;;;;;}{supernova.bmp.bfxm;2.7;-1.95;-4.15;1;;;;;}{supernova.bmp.bfxm;-2.7;-1.95;-4.15;1;;;;;}", "Upgrade_Storage_Volume": "250", - "shield_facets": "0", "accel": "10000" }, "units": [ @@ -5780,7 +5736,6 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;1.9;1.5;-4.9;4;;;;;}{supernova.bmp.bfxm;-1.8;1.5;-4.9;4;;;;;}{supernova.bmp.bfxm;1.9;-0.5;-4;4;;;;;}{supernova.bmp.bfxm;-1.9;-0.5;-4;4;;;;;}", "Upgrade_Storage_Volume": "250", - "shield_facets": "0", "accel": "10000" }, "units": [ @@ -5841,7 +5796,6 @@ "Light": "{supernova.bmp.bfxm;0.00000e+0;0.350000;-2.09200;2;;;;;}{supernova.bmp.bfxm;1.31600;-6.00000e-3;-1.82200;2;;;;;}{supernova.bmp.bfxm;-1.32800;-6.00000e-3;-1.82200;2;;;;;}{supernova.bmp.bfxm;1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.454;0.094;2.327;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.454;0.094;2.327;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}{supernova.bmp.bfxm;-1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}", "Mounts": "{;;;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{;;;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{;;;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{;;;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;0;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Upgrade_Storage_Volume": "360", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -5868,12 +5822,12 @@ "Use_Rapid": "1", "Mass": "250", "Shield_Recharge": "8", - "Warp_Capacitor": "325", + "Warp_Capacitor": "325/400", "Primary_Capacitor": "200", - "Reactor_Recharge": "30", + "Reactor_Recharge": "30/44", "Outsystem_Jump_Cost": "200", - "Afterburner_Speed_Governor": "120", - "Default_Speed_Governor": "120", + "Afterburner_Speed_Governor": "120/125", + "Default_Speed_Governor": "120/125", "Radar_Range": "300000000", "Tracking_Cone": "4", "Max_Cone": "180", @@ -5964,7 +5918,6 @@ "Light": "{supernova.bmp.bfxm;0;0.8;-5.5;5;;;;;}", "Dock": "{;0;-4.7;6;25;0}", "Upgrade_Storage_Volume": "200", - "shield_facets": "0", "accel": "22000" }, "units": [ @@ -6072,7 +6025,6 @@ "Dock": "{;0;-0.85;1.5;0.5;0}", "Upgrade_Storage_Volume": "360", "armor": "2.0", - "shield_facets": "0", "accel": "4000" }, "units": [ @@ -6406,7 +6358,6 @@ "Dock": "{0;95;0;25;50;0}{0;-95;0;25;50;0}", "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Natural_Products/Food;.7;.2;;30}{Specialty_Goods/Medical;1.2;.1;;3}", "Upgrade_Storage_Volume": "600", - "shield_facets": "0", "accel": "50000" }, "units": [ @@ -6523,7 +6474,6 @@ "Mounts": "{;;;special autotracking;-4.5;3;32.5;;;;;;;;;1;1}{;;;special autotracking;4.5;3;32.5;;;;;;;;;1;1}{;;;light medium Heavy autotracking;-0;2;30;;;;;;;;;1;1}{;15;45;Medium-missile light-missile;6.5;3;12.5;;;;;;;;;1;1}{;15;45;Medium-missile light-missile;-6.5;3;12.5;;;;;;;;;1;1}{;8;72;special-missile Medium-missile;0;3;2.5;;;;;;;;;1;1}", "Dock": "{;30;0;-37;30;0}{;-30;0;-37;30;0}", "Upgrade_Storage_Volume": "600", - "shield_facets": "0", "accel": "50000" }, "units": [ @@ -6666,7 +6616,6 @@ "Light": "{supernova.bmp.bfxm;60;90;-370;22;;;;;}{supernova.bmp.bfxm;-60;90;-370;22;;;;;}{supernova.bmp.bfxm;130;-60;-370;22;;;;;}{supernova.bmp.bfxm;0;-60;-370;22;;;;;}{supernova.bmp.bfxm;-130;-60;-370;22;;;;;}", "Dock": "{;0;-24;477;100;0}{;0;58;504;10;0}", "Upgrade_Storage_Volume": "600", - "shield_facets": "0", "accel": "5000000" }, "units": [ @@ -6752,8 +6701,7 @@ "Prohibited_Upgrades": "mult_shady_moreupgrade:1;mult_shady_morethrust:1;mult_shady_moreshields:1;mult_shady_moregunrecharge:1;mult_shady_moreshieldrecharge:1;mult_shady_moreturning:1;upgrades/Overdrive:1;upgrades/Capacitors:1;upgrades/Reactors:1;upgrades/Armor:1;upgrades/Sensors:1;upgrades/Shield_Systems:1;upgrades/Passenger_Quarters:1;upgrades/Repair_Systems:1;upgrades/ECM_Systems:1", "Light": "{supernova.bmp.bfxm;0;0;-6.36800;4;;;;;}", "Mounts": "{;8;24;light-missile medium-missile heavy-missile;0;-.13;2;;;;;;;;;1;1}", - "Upgrade_Storage_Volume": "125", - "shield_facets": "0" + "Upgrade_Storage_Volume": "125" }, "units": [ { @@ -6959,7 +6907,6 @@ "Dock": "{;0;-125;330;60;0}", "Cargo_Import": "{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Natural_Products/Food;.7;.2;;30}{Specialty_Goods/Medical;1.2;.1;;3}", "Upgrade_Storage_Volume": "600", - "shield_facets": "0", "accel": "5000000" }, "units": [ diff --git a/units/units.json b/units/units.json index f19c0beb..05f9d7d2 100644 --- a/units/units.json +++ b/units/units.json @@ -6,8 +6,7 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/plasteel.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "100.0", - "shield_facets": "0" + "armor": "100.0" }, { "Key": "armor02__upgrades", @@ -16,8 +15,7 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/isometal.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "200.0", - "shield_facets": "0" + "armor": "200.0" }, { "Key": "armor03__upgrades", @@ -26,8 +24,7 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/hull_patches.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "300.0", - "shield_facets": "0" + "armor": "300.0" }, { "Key": "armor04__upgrades", @@ -36,8 +33,7 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/tritanium.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "400.0", - "shield_facets": "0" + "armor": "400.0" }, { "Key": "armor05__upgrades", @@ -46,8 +42,7 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/carbonium.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "500.0", - "shield_facets": "0" + "armor": "500.0" }, { "Key": "armor06__upgrades", @@ -56,8 +51,7 @@ "Upgrade_Type": "Armor", "Textual_Description": "\"@cargo/duranium.png@Armor takes up no upgrade volume, but does add to the mass of your ship, affecting maneuverability\"\n", "Mass": "10", - "armor": "600.0", - "shield_facets": "0" + "armor": "600.0" }, { "Key": "dualshield01__upgrades", @@ -426,8 +420,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "15", - "shield_facets": "0" + "Reactor_Recharge": "15" }, { "Key": "reactor02__upgrades", @@ -436,8 +429,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "30", - "shield_facets": "0" + "Reactor_Recharge": "30" }, { "Key": "reactor03__upgrades", @@ -446,8 +438,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "44", - "shield_facets": "0" + "Reactor_Recharge": "44" }, { "Key": "reactor04__upgrades", @@ -456,8 +447,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "57", - "shield_facets": "0" + "Reactor_Recharge": "57" }, { "Key": "reactor05__upgrades", @@ -466,8 +456,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_light.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "69", - "shield_facets": "0" + "Reactor_Recharge": "69" }, { "Key": "reactor06__upgrades", @@ -476,8 +465,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "80", - "shield_facets": "0" + "Reactor_Recharge": "80" }, { "Key": "reactor07__upgrades", @@ -486,8 +474,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "90", - "shield_facets": "0" + "Reactor_Recharge": "90" }, { "Key": "reactor08__upgrades", @@ -496,8 +483,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "99", - "shield_facets": "0" + "Reactor_Recharge": "99" }, { "Key": "reactor09__upgrades", @@ -506,8 +492,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "108", - "shield_facets": "0" + "Reactor_Recharge": "108" }, { "Key": "reactor10__upgrades", @@ -516,8 +501,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_medium.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "115", - "shield_facets": "0" + "Reactor_Recharge": "115" }, { "Key": "reactor11__upgrades", @@ -526,8 +510,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "120", - "shield_facets": "0" + "Reactor_Recharge": "120" }, { "Key": "reactor12__upgrades", @@ -536,8 +519,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "125", - "shield_facets": "0" + "Reactor_Recharge": "125" }, { "Key": "reactor13__upgrades", @@ -546,8 +528,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "130", - "shield_facets": "0" + "Reactor_Recharge": "130" }, { "Key": "reactor14__upgrades", @@ -556,8 +537,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "140", - "shield_facets": "0" + "Reactor_Recharge": "140" }, { "Key": "reactor15__upgrades", @@ -566,8 +546,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/reactor_heavy.png@Energy production\"\n", "Mass": "10", - "Reactor_Recharge": "145", - "shield_facets": "0" + "Reactor_Recharge": "145" }, { "Key": "add_spec_capacitor01__upgrades", @@ -576,8 +555,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "200", - "shield_facets": "0" + "Warp_Capacitor": "200" }, { "Key": "add_spec_capacitor02__upgrades", @@ -585,8 +563,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "400", - "shield_facets": "0" + "Warp_Capacitor": "400" }, { "Key": "add_spec_capacitor03__upgrades", @@ -595,8 +572,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "800", - "shield_facets": "0" + "Warp_Capacitor": "800" }, { "Key": "add_spec_capacitor04__upgrades", @@ -605,8 +581,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "2000", - "shield_facets": "0" + "Warp_Capacitor": "2000" }, { "Key": "add_spec_capacitor05__upgrades", @@ -615,8 +590,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "Capacitor for storing energy for FTL travel", "Mass": "1", - "Warp_Capacitor": "3000", - "shield_facets": "0" + "Warp_Capacitor": "3000" }, { "Key": "capacitor01__upgrades", @@ -625,8 +599,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "100", - "shield_facets": "0" + "Primary_Capacitor": "100" }, { "Key": "capacitor02__upgrades", @@ -635,8 +608,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "200", - "shield_facets": "0" + "Primary_Capacitor": "200" }, { "Key": "capacitor03__upgrades", @@ -645,8 +617,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "300", - "shield_facets": "0" + "Primary_Capacitor": "300" }, { "Key": "capacitor04__upgrades", @@ -655,8 +626,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor2.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "400", - "shield_facets": "0" + "Primary_Capacitor": "400" }, { "Key": "capacitor05__upgrades", @@ -665,8 +635,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor2.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "500", - "shield_facets": "0" + "Primary_Capacitor": "500" }, { "Key": "capacitor06__upgrades", @@ -675,8 +644,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor2.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "600", - "shield_facets": "0" + "Primary_Capacitor": "600" }, { "Key": "capacitor07__upgrades", @@ -685,8 +653,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor3.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "700", - "shield_facets": "0" + "Primary_Capacitor": "700" }, { "Key": "capacitor08__upgrades", @@ -695,8 +662,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor3.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "800", - "shield_facets": "0" + "Primary_Capacitor": "800" }, { "Key": "capacitor09__upgrades", @@ -705,8 +671,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor3.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "900", - "shield_facets": "0" + "Primary_Capacitor": "900" }, { "Key": "capacitor10__upgrades", @@ -715,8 +680,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor4.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1000", - "shield_facets": "0" + "Primary_Capacitor": "1000" }, { "Key": "capacitor11__upgrades", @@ -725,8 +689,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor4.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1100", - "shield_facets": "0" + "Primary_Capacitor": "1100" }, { "Key": "capacitor12__upgrades", @@ -735,8 +698,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor4.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1200", - "shield_facets": "0" + "Primary_Capacitor": "1200" }, { "Key": "capacitor13__upgrades", @@ -745,8 +707,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor5.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1300", - "shield_facets": "0" + "Primary_Capacitor": "1300" }, { "Key": "capacitor14__upgrades", @@ -755,8 +716,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor5.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1400", - "shield_facets": "0" + "Primary_Capacitor": "1400" }, { "Key": "capacitor15__upgrades", @@ -765,8 +725,7 @@ "Object_Type": "Upgrade_Additive", "Textual_Description": "\"@upgrades/capacitor5.png@Energy storage\"\n", "Mass": "1", - "Primary_Capacitor": "1500", - "shield_facets": "0" + "Primary_Capacitor": "1500" }, { "Key": "cloaking_device__upgrades", @@ -779,8 +738,7 @@ "Cloak_Min": "0.8", "Cloak_Rate": "0.1", "Cloak_Energy": "1", - "Textual_Description": "\"@cargo/cargo_hud.png@This device uses gravity manipulation technology. A powerful gravitational lens distorts a massive region around the vessel, bending signals emitted by active sensors around the ship and out at seeming random angles and locations. This makes it very easy to know that a ship mounting a cloaking device is present, but very hard to figure out what class of ship, where it's headed, and where exactly it is.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@This device uses gravity manipulation technology. A powerful gravitational lens distorts a massive region around the vessel, bending signals emitted by active sensors around the ship and out at seeming random angles and locations. This makes it very easy to know that a ship mounting a cloaking device is present, but very hard to figure out what class of ship, where it's headed, and where exactly it is.\"\n" }, { "Key": "jump_drive__upgrades", @@ -789,86 +747,79 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/jump_drive.png@Jump drive for traveling between stars\"\n", "Mass": "10", - "Jump_Drive_Present": "1", - "shield_facets": "0" + "Jump_Drive_Present": "1" }, { "Key": "mult_overdrive01__upgrades", "Name": "Overdrive I", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1", "Afterburner_Accel": "1.8", - "Afterburner_Speed_Governor": "1.6", - "shield_facets": "0" + "Afterburner_Speed_Governor": "1.6" }, { "Key": "mult_overdrive02__upgrades", "Name": "Overdrive II", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1.2", "Afterburner_Accel": "1.9", - "Afterburner_Speed_Governor": "1.7", - "shield_facets": "0" + "Afterburner_Speed_Governor": "1.7" }, { "Key": "mult_overdrive03__upgrades", "Name": "Overdrive III", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1.4", "Afterburner_Accel": "2", - "Afterburner_Speed_Governor": "1.8", - "shield_facets": "0" + "Afterburner_Speed_Governor": "1.8" }, { "Key": "mult_overdrive04__upgrades", "Name": "Overdrive IV", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1.6", "Afterburner_Accel": "2.1", - "Afterburner_Speed_Governor": "1.9", - "shield_facets": "0" + "Afterburner_Speed_Governor": "1.9" }, { "Key": "mult_overdrive05__upgrades", "Name": "Overdrive V", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "1.8", "Afterburner_Accel": "2.2", - "Afterburner_Speed_Governor": "2", - "shield_facets": "0" + "Afterburner_Speed_Governor": "2" }, { "Key": "mult_overdrive06__upgrades", "Name": "Overdrive VI", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", "Afterburner_Type": "1", "Afterburner_Usage_Cost": "2", "Afterburner_Accel": "2.3", - "Afterburner_Speed_Governor": "2.1", - "shield_facets": "0" + "Afterburner_Speed_Governor": "2.1" }, { "Key": "Admonisher_Milspec_Package__upgrades", @@ -909,7 +860,6 @@ "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor04;;}{quadshield08;;}{add_spec_capacitor03;;}{capacitor07;;}{reactor10;;}{jump_drive;;}{starscanner2;;}{ecm_package02;;}", "armor": "2.0", - "shield_facets": "0", "accel": "4000" }, { @@ -1256,7 +1206,6 @@ "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor01;;}{quadshield02;;}{add_spec_capacitor01;;}{capacitor02;;}{reactor03;;}{skyscope2;;}", "armor": "2.0", - "shield_facets": "0", "accel": "10000" }, { @@ -1298,7 +1247,6 @@ "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor03;;}{quadshield05;;}{add_spec_capacitor03;;}{capacitor04;;}{reactor05;;}{jump_drive;;}{skyscope3;;}{ecm_package01;;}", "armor": "2.0", - "shield_facets": "0", "accel": "5000" }, { @@ -1339,7 +1287,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "armor": "2.0", - "shield_facets": "0", "accel": "10000" }, { @@ -1381,7 +1328,6 @@ "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor03;;}{dualshield04;;}{add_spec_capacitor02;;}{capacitor03;;}{reactor04;;}{jump_drive;;}{starscanner2;;}{ecm_package01;;}", "armor": "2.0", - "shield_facets": "0", "accel": "5000" }, { @@ -1470,7 +1416,6 @@ "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor04;;}{quadshield07;;}{add_spec_capacitor03;;}{capacitor06;;}{reactor06;;}{jump_drive;;}{starscanner3;;}{ecm_package02;;}", "armor": "2.0", - "shield_facets": "0", "accel": "5000" }, { @@ -1605,7 +1550,6 @@ "Max_SPECDrive_Functionality": "1", "Upgrades": "{armor06;;}{quadshield10;;}{add_spec_capacitor04;;}{capacitor09;;}{reactor07;;}{jump_drive;;}{hawkeye2;;}{ecm_package03;;}", "armor": "2.0", - "shield_facets": "0", "accel": "4000" }, { @@ -1867,14 +1811,12 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "upgrading_dummy_unit__upgrades", "Name": "Upgrading Dummy Unit", - "Object_Type": "DUMMY", - "shield_facets": "0" + "Object_Type": "DUMMY" }, { "Key": "ABelt__neutral", @@ -1901,8 +1843,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}" }, { "Key": "AFieldBaseSparse__neutral", @@ -1929,8 +1870,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" }, { "Key": "AFieldBaseThin__neutral", @@ -1957,8 +1897,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" }, { "Key": "AFieldBase__neutral", @@ -1985,8 +1924,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}" }, { "Key": "AFieldJumpSparse__neutral", @@ -2013,8 +1951,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" }, { "Key": "AFieldJumpThin__neutral", @@ -2041,8 +1978,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" }, { "Key": "AFieldJump__neutral", @@ -2069,8 +2005,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}" }, { "Key": "AFieldSparse__neutral", @@ -2097,8 +2032,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" }, { "Key": "AFieldThin__neutral", @@ -2125,8 +2059,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;1;0;1;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;-1;0;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;938.0;-938.0;-938.0;0;0;1;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;-1;0;0;0;-1;180.0}{asteroidsPriv;0.0;-1518.0;580.0;1;0;0;0;1;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;1;0;1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;0;1;0;-1;0;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;1;-1;0;0;180.0}" }, { "Key": "AField__neutral", @@ -2153,15 +2086,13 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}", - "shield_facets": "0" + "Sub_Units": "{asteroidsPriv;938.0;938.0;938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;580.0;0.0;1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-1518.0;-580.0;0.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;-938.0;938.0;-938.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;-580.0;0;1;0;0;0;1;180.0}{asteroidsPriv;-1518.0;580.0;0.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;938.0;0;1;0;0;0;-1;180.0}{asteroidsPriv;-938.0;938.0;938.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;938.0;0;0;1;1;0;0;180.0}{asteroidsPriv;938.0;-938.0;-938.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;580.0;0.0;-1518.0;0;0;-1;-1;0;0;180.0}{asteroidsPriv;-938.0;-938.0;-938.0;0;0;-1;1;0;0;180.0}{asteroidsPriv;0.0;-1518.0;580.0;0;0;1;-1;0;0;180.0}{asteroidsPriv;0.0;1518.0;-580.0;1;0;0;0;-1;0;180.0}{asteroidsPriv;-580.0;0.0;1518.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;1518.0;-580.0;0.0;0;-1;0;-1;0;0;180.0}{asteroidsPriv;-580.0;0.0;-1518.0;1;0;0;0;1;0;180.0}{asteroidsPriv;938.0;938.0;-938.0;0;1;0;0;0;1;180.0}{asteroidsPriv;0.0;1518.0;580.0;0;0;-1;0;-1;0;180.0}{asteroidsPriv;0.0;-678.8;1098.4;0;-1;0;0;0;1;180.0}{asteroidsPriv;-678.8;1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-678.8;-1098.4;0.0;-1;0;0;0;1;0;180.0}{asteroidsPriv;-1098.4;0.0;-678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;993.5;-145.0;-848.5;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;1098.4;0;1;0;1;0;0;180.0}{asteroidsPriv;1098.4;0.0;678.8;0;0;-1;-1;0;0;180.0}{asteroidsPriv;0.0;-678.8;-1098.4;1;0;0;0;-1;0;180.0}{asteroidsPriv;0.0;678.8;-1098.4;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;-1098.4;0.0;-1;0;0;0;-1;0;180.0}{asteroidsPriv;-1098.4;0.0;678.8;0;-1;0;1;0;0;180.0}{asteroidsPriv;678.8;1098.4;0.0;0;0;-1;0;-1;0;180.0}" }, { "Key": "Arc_Device__upgrades", "Name": "Arc Device", "Object_Type": "FIXME", - "Mounts": "{Arc_Device;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Arc_Device;;;;;;;;;;;;;;;1;1}" }, { "Key": "Dirt__planets", @@ -2186,8 +2117,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;12;4}{starships/Confed/Heavy;1;;3;2}{starships/Confed/Light;1;;24;5}{starships/Confed/Medium;1;;12;4}{starships/Highborn/Heavy;1;;3;2}{starships/Hunter/Heavy;1;;3;2}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;3}{starships/ISO/Heavy;1;;3;2}{starships/ISO/Medium;1;;36;8}{starships/Merchant/Heavy;1;;3;2}{starships/Merchant/Light;1;;24;5}{starships/Merchant/Light_Capship;1;;-24;30}{starships/Merchant/Medium;1;;12;4}{starships/Regional_Guard/Heavy;1;;3;2}{starships/Regional_Guard/Light;1;;24;5}{starships/Regional_Guard/Medium;1;;12;4}{upgrades/Ammunition/Common;1;.1;160;40}{upgrades/Ammunition/Uncommon;3;.9;60;140}{upgrades/Ammunition/Confed;2;.3;20;30}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;3;1}{upgrades/Jump_Drives;1;.1;12;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;5;3}{upgrades/Sensors/Confed;1;.1;-8;10}{upgrades/Sensors/Common;1;.1;6;2}{upgrades/Sensors/Highborn;1;.1;-8;10}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;24;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;12;4}{upgrades/Weapons/Mount_Enhancements;1;.1;-24;30}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;3;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;24;6}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;12;5}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "HiddenAsteroid__neutral", @@ -2214,8 +2144,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Dock": "{;-150;107;0.594800;300.000000;0}", - "armor": "8000.0", - "shield_facets": "0" + "armor": "8000.0" }, { "Key": "Lava__planets", @@ -2240,57 +2169,49 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Specialty_Goods/Augmentation;1.3;.1;1;1}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "Photon_MK_III__upgrades", "Name": "Photon MK III", "Object_Type": "FIXME", - "Mounts": "{Photon_MKIII;5000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Photon_MKIII;5000;;;;;;;;;;;;;;1;1}" }, { "Key": "Photon_MK_III_ammo__upgrades", "Name": "Photon MK III Warheads", "Object_Type": "FIXME", - "Mounts": "{Photon_MKIII;500;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Photon_MKIII;500;;;;;;;;;;;;;;1;1}" }, { "Key": "Photon_MK_II__upgrades", "Name": "Photon MK II", "Object_Type": "FIXME", - "Mounts": "{Photon_MKII;3000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Photon_MKII;3000;;;;;;;;;;;;;;1;1}" }, { "Key": "Photon_MK_II_ammo__upgrades", "Name": "Photon MK II Warheads", "Object_Type": "FIXME", - "Mounts": "{Photon_MKII;200;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Photon_MKII;200;;;;;;;;;;;;;;1;1}" }, { "Key": "Photon_MK_I__upgrades", "Name": "Photon MK I", "Object_Type": "FIXME", - "Mounts": "{Photon_MKI;3000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Photon_MKI;3000;;;;;;;;;;;;;;1;1}" }, { "Key": "Photon_MK_I_ammo__upgrades", "Name": "Photon MK I Warheads", "Object_Type": "FIXME", - "Mounts": "{Photon_MKI;200;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Photon_MKI;200;;;;;;;;;;;;;;1;1}" }, { "Key": "Plasma_Plume__upgrades", "Name": "Plasma Plume", "Object_Type": "FIXME", - "Mounts": "{PlasmaPlume;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{PlasmaPlume;;;;;;;;;;;;;;;1;1}" }, { "Key": "Snow__planets", @@ -2315,47 +2236,41 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1.15;.1;;}{Industrially_Manufactured_Goods/Agricultural;.5;.2;;}{Industrially_Manufactured_Goods/Construction;1.35;.4;10;15}{Industrially_Manufactured_Goods/Electronics;1.3;.2;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.05;.1;3;5}{Industrially_Manufactured_Goods/Mining;.7;.2;;}{Industrially_Manufactured_Goods/Power_Utilities;1.1;.2;3;5}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.2;.2;;}{Natural_Products/Renewable_Resources;.8;.2;;}{Raw_Materials/Gases;1;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;.8;.2;;}{Raw_Materials/Metals;.7;.1;;}{Raw_Materials/Stone;.9;.1;5;10}{Refined_Materials/Chemicals;1.25;.2;5;10}{Refined_Materials/Precious_Metals;.8;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;.7;.1;;}{Refined_Materials/Radioactive_Metals;.7;.1;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.2;.1;5;3}{starships/Hunter/Heavy;1;;;2}{starships/Hunter/Light;1;;;5}{starships/Hunter/Medium;1;;;3}{starships/ISO/Heavy;1;;;2}{starships/ISO/Medium;1;;;8}{starships/Merchant/Heavy;1;;-2;3}{starships/Merchant/Light;1;;;5}{starships/Merchant/Light_Capship;1;;-22;26}{starships/Merchant/Medium;1;;-1;4}{upgrades/Ammunition;7;.8;10;120}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;;1}{upgrades/Jump_Drives;1;.1;4;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-3;5}{upgrades/Sensors/Confed;1;.1;-8;10}{upgrades/Sensors/Common;1;.1;10;15}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;;2}{upgrades/Weapons/Mount_Enhancements;1;.1;-24;25}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;;2}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "advtorpedo_ammo__upgrades", "Name": "advtorpedo_ammo", "Object_Type": "FIXME", "Mounts": "{AdvTorpedo;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "aera_turret_pd__upgrades", "Name": "aera_turret_pd", "Object_Type": "FIXME", "Sub_Units": "{aeraturretpd;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@Using low yield pulse lasers, the aera have made simple and effective anti-missile turrets.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@Using low yield pulse lasers, the aera have made simple and effective anti-missile turrets.\"\n" }, { "Key": "anihilator_gun__upgrades", "Name": "anihilator_gun", "Object_Type": "FIXME", "Mounts": "{Anihilator;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "antimatter__upgrades", "Name": "antimatter", "Object_Type": "FIXME", - "Mounts": "{Antimatter;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Antimatter;;;;;;;;;;;;;;;1;1}" }, { "Key": "antimatter_gun__upgrades", "Name": "antimatter_gun", "Object_Type": "FIXME", "Mounts": "{Antimatter;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "asteroids1600gap__neutral", @@ -2377,8 +2292,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "asteroids200gap__neutral", @@ -2400,8 +2314,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "asteroids400gap__neutral", @@ -2423,8 +2336,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "asteroids800gap__neutral", @@ -2446,8 +2358,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "asteroids__neutral", @@ -2473,86 +2384,75 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "beam_heavy_lr__upgrades", "Name": "beam_heavy_lr", "Object_Type": "FIXME", "Mounts": "{LR_BeamHvy;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "beam_turret__upgrades", "Name": "beam_turret", "Object_Type": "FIXME", "Sub_Units": "{turretbeam;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@Specially designed for the energy and heat dissipation requirements of beam weapons, this turret has everything you need to mount a pair of them.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@Specially designed for the energy and heat dissipation requirements of beam weapons, this turret has everything you need to mount a pair of them.\"\n" }, { "Key": "breeze_ammo__upgrades", "Name": "breeze_ammo", "Object_Type": "FIXME", "Mounts": "{Breeze;5;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "cap_iff__upgrades", "Name": "cap_iff", "Object_Type": "FIXME", "Mounts": "{CAPIFF;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/capiff.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/capiff.png@\"\n" }, { "Key": "capcluster_ammo__upgrades", "Name": "capcluster_ammo", "Object_Type": "FIXME", "Mounts": "{CapCluster;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "capiff_ammo__upgrades", "Name": "capiff_ammo", "Object_Type": "FIXME", "Mounts": "{CapIFF;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/capiff.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/capiff.png@\"\n" }, { "Key": "capship_disruptor__upgrades", "Name": "capship_disruptor", "Object_Type": "FIXME", - "Mounts": "{CapshipDisruptor;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{CapshipDisruptor;;;;;;;;;;;;;;;1;1}" }, { "Key": "capship_turret__upgrades", "Name": "capship_turret", "Object_Type": "FIXME", "Sub_Units": "{turret;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@When hunting for bear, hover softly, and carry a big stick\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@When hunting for bear, hover softly, and carry a big stick\"\n" }, { "Key": "capship_turret_heavy__upgrades", "Name": "capship_turret_heavy", "Object_Type": "FIXME", "Sub_Units": "{turretheavy;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@If your vessel can mount this, this can mount whatever you want.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@If your vessel can mount this, this can mount whatever you want.\"\n" }, { "Key": "capshipmissile_ammo__upgrades", "Name": "Capship_Missile_ammo", "Object_Type": "FIXME", - "Mounts": "{CapshipMissile;1;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{CapshipMissile;1;;;;;;;;;;;;;;1;1}" }, { "Key": "carribean__planets", @@ -2577,16 +2477,14 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.2;4;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;2}{Industrially_Manufactured_Goods/Agricultural;.9;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.1;7;3}{Industrially_Manufactured_Goods/Electronics;1.1;.1;2;1}{Industrially_Manufactured_Goods/Manufacturing;1;.1;;}{Industrially_Manufactured_Goods/Mining;.9;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.1;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;1;1}{Natural_Products/Life-forms;1.3;.1;;}{Natural_Products/Liquor;1.2;.2;3;2}{Natural_Products/Renewable_Resources;.9;.1;;}{Raw_Materials/Gases;1;.1;;}{Raw_Materials/Hydrocarbons;.9;.2;;}{Raw_Materials/Industrial_Gems;.9;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;.9;.1;1;1}{Refined_Materials/Chemicals;1.2;.3;8;2}{Refined_Materials/Precious_Metals;.9;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;1.1;.3;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1.3;.2;12;7}{Specialty_Goods/Medical;1.2;.2;;}{starships/Andolian/Medium;1;;3;2}{starships/Confed/Light;1;;4;4}{starships/Hunter/Light;1;;2;2}{starships/Merchant/Light;1;;8;5}{starships/Merchant/Medium;1;;-2;5}{starships/Regional_Guard/Light;1;;3;2}{upgrades/Ammunition/Common;1;.1;600;700}{upgrades/Ammunition/Uncommon;2;.7;200;800}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;7;1}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;2;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "cluster_ammo__upgrades", "Name": "cluster_ammo", "Object_Type": "FIXME", "Mounts": "{Cluster;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/cluster.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/cluster.png@\"\n" }, { "Key": "contraband", @@ -2603,8 +2501,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "contraband.blank", @@ -2621,8 +2518,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "contraband.template", @@ -2640,8 +2536,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "16", - "shield_facets": "0" + "Upgrade_Storage_Volume": "16" }, { "Key": "contraband__aera", @@ -2660,8 +2555,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Contraband/Aera;;;1;}", - "Upgrade_Storage_Volume": "16", - "shield_facets": "0" + "Upgrade_Storage_Volume": "16" }, { "Key": "contraband__confed", @@ -2679,8 +2573,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Cargo_Import": "{Contraband/Confed;;;1;}", - "shield_facets": "0" + "Cargo_Import": "{Contraband/Confed;;;1;}" }, { "Key": "contraband__luddites", @@ -2698,8 +2591,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Cargo_Import": "{Contraband/Luddite;;;1;}", - "shield_facets": "0" + "Cargo_Import": "{Contraband/Luddite;;;1;}" }, { "Key": "contraband__rlaan", @@ -2718,16 +2610,14 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Contraband/Rlaan;;;1;}", - "Upgrade_Storage_Volume": "16", - "shield_facets": "0" + "Upgrade_Storage_Volume": "16" }, { "Key": "crippler__upgrades", "Name": "Crippler", "Object_Type": "FIXME", "Mounts": "{Crippler;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "desert__planets", @@ -2752,24 +2642,21 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.2;4;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;2}{Contraband/Rlaan;1.55;.4;;}{Industrially_Manufactured_Goods/Agricultural;.9;.1;;}{Industrially_Manufactured_Goods/Construction;1.5;.1;7;3}{Industrially_Manufactured_Goods/Manufacturing;1;.1;;}{Industrially_Manufactured_Goods/Mining;.9;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.05;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;1;1}{Natural_Products/Food/Rlaan;1.9;.2;15;5}{Natural_Products/Life-forms;1.1;.1;;}{Natural_Products/Liquor;.5;.2;3;2}{Natural_Products/Renewable_Resources;.9;.1;;}{Raw_Materials/Gases;1;.1;;}{Raw_Materials/Hydrocarbons;.9;.2;;}{Raw_Materials/Industrial_Gems;.9;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;.9;.1;1;1}{Refined_Materials/Chemicals;1.05;.35;16;4}{Refined_Materials/Precious_Metals;.9;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;1.15;.3;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Augmentation;1.2;.1;;}{Specialty_Goods/Entertainment;1.3;.2;12;7}{Specialty_Goods/Medical;1.225;.925;;}{starships/Hunter/Light;1;;2;2}{starships/Rlaan/Light;1;;4;4}{upgrades/Ammunition/Common;1;.1;220;60}{upgrades/Ammunition/Uncommon;5;.9;60;160}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;7;1}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;2;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "discontinuity__upgrades", "Name": "discontinuity", "Object_Type": "FIXME", "Mounts": "{Discontinuity;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "dumbfire_ammo__upgrades", "Name": "dumbfire_ammo", "Object_Type": "FIXME", "Mounts": "{Dumbfire;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/dumbfire.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/dumbfire.png@\"\n" }, { "Key": "earth__planets", @@ -2794,32 +2681,28 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12.5;3.5;;}{Specialty_Goods/Augmentation;1.25;.1;;}{Specialty_Goods/Entertainment;.9;.1;20;20}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;2;2}{starships/Confed/Heavy;1;;2;2}{starships/Confed/Light;1;;3;3}{starships/Confed/Medium;1;;2;2}{starships/Confed/Milspec;1.5;.5;1;1}{starships/Highborn/Heavy;1;;2;2}{starships/Merchant/Heavy;1;;2;2}{starships/Merchant/Light;1;;3;3}{starships/Merchant/Medium;1;;2;2}{starships/Regional_Guard/Heavy;1;;2;2}{starships/Regional_Guard/Light;1;;3;3}{starships/Regional_Guard/Medium;1;;2;2}{starships/Purist/Milspec;1.5;.5;1;1}{upgrades/Ammunition;1;;2500;5000}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;14;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;;20;10}{upgrades/Sensors/Confed;1;;10;5}{upgrades/Sensors/Common;1;;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;;10;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;;10;5}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;;10;5}{upgrades/Weapons/Mount_Enhancements;1;;10;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;2;;1;1}{upgrades/Weapons/Mounted_Guns_Heavy;1;;10;5}{upgrades/Weapons/Mounted_Guns_Light;1;;10;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;10;5}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "emp_torpedo_ammo__upgrades", "Name": "emp_torpedo_ammo", "Object_Type": "FIXME", "Mounts": "{EMPTorpedo;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/emp3.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/emp3.png@\"\n" }, { "Key": "flak__upgrades", "Name": "flak", "Object_Type": "FIXME", "Mounts": "{Flak;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "flak_heavy__upgrades", "Name": "flak_heavy", "Object_Type": "FIXME", "Mounts": "{HeavyFlak;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "forest__planets", @@ -2842,8 +2725,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "forest_methane__planets", @@ -2866,24 +2748,21 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "franklin_pd__upgrades", "Name": "franklin_pd", "Object_Type": "FIXME", "Sub_Units": "{franklinpd;;;;;;;;;;90.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@These turrets were custom designed for the Franklin class diplomatic transport. Any hotshot who splurges on the Franklin should undoubtedly get these fine turrets to complement the exterior decor.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@These turrets were custom designed for the Franklin class diplomatic transport. Any hotshot who splurges on the Franklin should undoubtedly get these fine turrets to complement the exterior decor.\"\n" }, { "Key": "friend_or_foe_ammo__upgrades", "Name": "friend_or_foe_ammo", "Object_Type": "FIXME", "Mounts": "{FriendOrFoe;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/fof.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/fof.png@\"\n" }, { "Key": "frigid_mud__planets", @@ -2906,8 +2785,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "gas_giant__planets", @@ -2930,8 +2808,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "gas_medium__planets", @@ -2954,8 +2831,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "gas_midget__planets", @@ -2978,16 +2854,14 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "grand_gauss__upgrades", "Name": "grand_gauss", "Object_Type": "FIXME", "Mounts": "{GrandGauss;16383;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/emp2.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/emp2.png@\"\n" }, { "Key": "green-nebula.nebula__neutral", @@ -3008,8 +2882,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "green-nebula__neutral", @@ -3035,56 +2908,49 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "hail_ammo__upgrades", "Name": "hail_ammo", "Object_Type": "FIXME", "Mounts": "{Hail;4;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "heatseeker_ammo__upgrades", "Name": "heatseeker_ammo", "Object_Type": "FIXME", "Mounts": "{HeatSeeker;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/heatseeker.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/heatseeker.png@\"\n" }, { "Key": "heavy_turret__upgrades", "Name": "heavy_turret", "Object_Type": "FIXME", "Sub_Units": "{turretheavy;;;;;;;;;;180.0}", - "Textual_Description": "\"@upgrades/turret_heavy.png@For when evasive maneuvers are too subtle a hint your tailgaters.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/turret_heavy.png@For when evasive maneuvers are too subtle a hint your tailgaters.\"\n" }, { "Key": "hellspawn__upgrades", "Name": "hellspawn", "Object_Type": "FIXME", "Mounts": "{Hellspawn;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "icepick__upgrades", "Name": "icepick", "Object_Type": "FIXME", "Mounts": "{icepick;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "image_recognition_ammo__upgrades", "Name": "image_recognition_ammo", "Object_Type": "FIXME", "Mounts": "{ImageRecognition;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/imrec.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/imrec.png@\"\n" }, { "Key": "industrial__planets", @@ -3108,8 +2974,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12.5;3.5;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;2;2}{starships/Confed/Heavy;1;;2;2}{starships/Confed/Light;1;;3;3}{starships/Confed/Medium;1;;2;2}{starships/Confed/Milspec;1.5;.5;1;1}{starships/Highborn/Heavy;1;;2;2}{starships/Merchant/Heavy;1;;2;2}{starships/Merchant/Light;1;;3;3}{starships/Merchant/Medium;1;;2;2}{starships/Regional_Guard/Heavy;1;;2;2}{starships/Regional_Guard/Light;1;;3;3}{starships/Regional_Guard/Medium;1;;2;2}{starships/Purist/Milspec;1.5;.5;1;1}{upgrades/Ammunition/Common;1;;1200;1300}{upgrades/Ammunition/Uncommon;1.2;.4;400;1300}{upgrades/Ammunition/Confed;1.2;.1;120;130}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;14;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;;20;10}{upgrades/Sensors/Confed;1;;10;5}{upgrades/Sensors/Common;1;;10;5}{upgrades/Sensors/Highborn;1;;5;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Confed_Milspec;1;;10;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;;10;5}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;;10;5}{upgrades/Weapons/Mount_Enhancements;1;;10;5}{upgrades/Weapons/Mounted_Guns_Confed_Milspec;2;;1;1}{upgrades/Weapons/Mounted_Guns_Heavy;1;;10;5}{upgrades/Weapons/Mounted_Guns_Light;1;;10;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;10;5}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "j_class__planets", @@ -3134,15 +2999,13 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.2;.2;4;2}{Consumer_and_Commercial_Goods/Electronics;1.2;.2;5;2}{Contraband/Aera;1.55;.4;;}{Industrially_Manufactured_Goods/Agricultural;.9;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.1;7;3}{Industrially_Manufactured_Goods/Manufacturing;1;.1;;}{Industrially_Manufactured_Goods/Mining;.9;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.05;.1;3;1}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;1;1}{Natural_Products/Food/Aera;1.9;.2;15;5}{Natural_Products/Life-forms;1.1;.1;;}{Natural_Products/Liquor;.5;.2;3;2}{Natural_Products/Renewable_Resources;.9;.1;;}{Raw_Materials/Gases;1;.1;;}{Raw_Materials/Hydrocarbons;.9;.2;;}{Raw_Materials/Industrial_Gems;.9;.1;;}{Raw_Materials/Metals;.9;.1;;}{Raw_Materials/Stone;.9;.1;1;1}{Refined_Materials/Chemicals;1.1;.3;8;2}{Refined_Materials/Precious_Metals;.9;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;1.15;.3;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Refined_Materials/Synthetics;1;.3;8;2}{Specialty_Goods/Augmentation;1.1;.1;;}{Specialty_Goods/Entertainment;1.3;.2;12;7}{Specialty_Goods/Medical;.5;.2;;}{Specialty_Goods/Pharmaceutical;1.95;.2;;}{starships/Aera/Light;1;;4;4}{starships/Hunter/Light;1;;2;2}{upgrades/Ammunition/Common;3;.4;100;200}{upgrades/Ammunition/Aera;1.1;.2;400;450}{upgrades/Armor;1;.1;19;11}{upgrades/Capacitors/Standard;1;.1;18;17}{upgrades/ECM_Systems;1;.1;2;1}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;6}{upgrades/Reactors/Standard;1;.1;18;8}{upgrades/Repair_Systems;1;.1;2;1}{upgrades/Sensors/Common;1;.1;7;1}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;25;6}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;22;6}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;2;1}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;5}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "javelin_ammo__upgrades", "Name": "javelin", "Object_Type": "FIXME", - "Mounts": "{Javelin;1;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Javelin;1;;;;;;;;;;;;;;1;1}" }, { "Key": "jump__planets", @@ -3164,8 +3027,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "k_class__planets", @@ -3190,93 +3052,81 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Contraband/Aera;.94;.15;12;40}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;12;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;17;5}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.6;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;5;2}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Food/Aera;1.5;.2;55;25}{Natural_Products/Life-forms;.8;.2;20;12}{Natural_Products/Liquor;.8;.2;30;12}{Natural_Products/Renewable_Resources;.8;.2;35;25}{Raw_Materials/Gases;.7;.2;70;25}{Raw_Materials/Hydrocarbons;.8;.2;28;25}{Raw_Materials/Industrial_Gems;1.2;.2;2;1}{Raw_Materials/Metals;1;.1;12;5}{Raw_Materials/Stone;.9;.1;16;15}{Refined_Materials/Alloys/Aera;.7;.1;;}{Refined_Materials/Chemicals;1.1;.3;8;2}{Refined_Materials/Precious_Metals;1;.1;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.2;.1;10;6}{Refined_Materials/Radioactive_Metals;.8;.1;2;1}{Refined_Materials/Synthetics;1.1;.3;8;2}{Research;13;2;;}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;.5;.1;15;3}{Specialty_Goods/Pharmaceutical;1.94;.1;15;3}{starships/Aera/Light;1;;12;5}{starships/Hunter/Light;1;;12;5}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;12;5}{upgrades/Ammunition/Common;3;.3;520;480}{upgrades/Ammunition/Aera;1.1;.2;220;219}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Confed;1;.1;-12;17}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "killer_bee_ammo__upgrades", "Name": "killer_bee_ammo", "Object_Type": "FIXME", - "Mounts": "{KillerBee;60;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{KillerBee;60;;;;;;;;;;;;;;1;1}" }, { "Key": "kineticmissile__upgrades", "Name": "kineticmissile", "Object_Type": "FIXME", "Mounts": "{KineticMissile;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/kineticmissle.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/kineticmissle.png@\"\n" }, { "Key": "ktek_cap_beam__upgrades", "Name": "ktek_cap_beam", "Object_Type": "FIXME", "Mounts": "{ktekcapbeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/beam1.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/beam1.png@\"\n" }, { "Key": "laser__upgrades", "Name": "laser", "Object_Type": "FIXME", "Mounts": "{Laser;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@Though not a laser by any stretch of the imagination, due to its resemblance to the so called 'lasers' of classic games and movies of the previous millenium, the misnomer has stuck stronger than space rated epoxy. Cheap and utterly dependable, this and other similar low yield plasma weapons are ubiquitous in armed civilian populations.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@Though not a laser by any stretch of the imagination, due to its resemblance to the so called 'lasers' of classic games and movies of the previous millenium, the misnomer has stuck stronger than space rated epoxy. Cheap and utterly dependable, this and other similar low yield plasma weapons are ubiquitous in armed civilian populations.\"\n" }, { "Key": "leech_ammo__upgrades", "Name": "leech_ammo", "Object_Type": "FIXME", "Mounts": "{Leech;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/leech.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/leech.png@\"\n" }, { "Key": "leech_gun__upgrades", "Name": "Leech Gun", "Object_Type": "FIXME", "Mounts": "{LeechGun;7;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "leech_gun_ammo__upgrades", "Name": "Leech ammo", "Object_Type": "FIXME", - "Mounts": "{LeechGun;1;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{LeechGun;1;;;;;;;;;;;;;;1;1}" }, { "Key": "lr_beam__upgrades", "Name": "lr_beam", "Object_Type": "FIXME", - "Mounts": "{LR_Beam;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{LR_Beam;;;;;;;;;;;;;;;1;1}" }, { "Key": "lr_disruptor_beam__upgrades", "Name": "lr_disruptor_beam", "Object_Type": "FIXME", "Mounts": "{LR_DisruptorBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "lr_pminus_beam__upgrades", "Name": "lr_pminus_beam", "Object_Type": "FIXME", "Mounts": "{LR_PminusBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "lr_pminus_beam_mkiv__upgrades", "Name": "lr_pminus_beam_mkiv", "Object_Type": "FIXME", "Mounts": "{LR_PminusBeamMKIV;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "m_class__planets", @@ -3301,8 +3151,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Contraband/Aera;.96;.15;12;16}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;12;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;17;5}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.6;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;5;2}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;.8;.2;20;12}{Natural_Products/Liquor;.8;.2;30;12}{Natural_Products/Renewable_Resources;.8;.2;35;25}{Raw_Materials/Gases;.7;.2;70;25}{Raw_Materials/Hydrocarbons;.8;.2;28;25}{Raw_Materials/Industrial_Gems;1.2;.2;2;1}{Raw_Materials/Metals;1;.1;12;5}{Raw_Materials/Stone;.9;.1;16;15}{Refined_Materials/Chemicals;1.2;.3;8;2}{Refined_Materials/Precious_Metals;1;.1;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1.2;.1;10;6}{Refined_Materials/Radioactive_Metals;.8;.1;2;1}{Research;13;2;;}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;1.2;.1;15;3}{starships/Andolian/Medium;1;;12;5}{starships/Confed/Light;1;;12;5}{starships/Hunter/Light;1;;12;5}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;12;5}{starships/Regional_Guard/Light;1;;12;5}{upgrades/Ammunition/Common;1;.1;520;530}{upgrades/Ammunition/Uncommon;3;.5;200;280}{upgrades/Ammunition/Confed;1.5;.2;200;280}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;6;6}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Confed;1;.1;-12;17}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "mars__planets", @@ -3326,16 +3175,14 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.1;3;3}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.1;.1;3;3}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.8;.05;;}{Natural_Products/Liquor;1;.2;;}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;3;3}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1;.1;;}{Refined_Materials/Chemicals;1.1;.1;3;3}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.9;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;10;3;-30;50}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;1.1;.1;3;3}{starships/Andolian/Medium;1;;3;2}{starships/Confed/Light;1;;3;2}{starships/Hunter/Light;1;;3;2}{starships/Merchant/Light;1;;3;2}{starships/Regional_Guard/Light;1;;3;2}{upgrades/Ammunition;2;.6;1500;1700}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;5;2}{upgrades/Jump_Drives;1;.1;9;4}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;.95;.15;-5;17}{upgrades/Sensors/Common;1;.1;10;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;5;2}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "medium_turret__upgrades", "Name": "medium_turret", "Object_Type": "FIXME", "Sub_Units": "{turret_medium;;;;;;;;;;180.0}", - "Textual_Description": "\"@upgrades/turret_medium.png@It turns, it shoots, it slices. No, it does not dice, but it does come with a free fuzzy pair.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/turret_medium.png@It turns, it shoots, it slices. No, it does not dice, but it does come with a free fuzzy pair.\"\n" }, { "Key": "molten__planets", @@ -3358,8 +3205,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "moon__planets", @@ -3383,8 +3229,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.7;.2;26;12}{Industrially_Manufactured_Goods/Construction;.7;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.7;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;12;4}{starships/Confed/Heavy;1;;3;2}{starships/Confed/Light;1;;24;5}{starships/Confed/Medium;1;;12;4}{starships/Highborn/Heavy;1;;3;2}{starships/Hunter/Heavy;1;;3;2}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;3}{starships/ISO/Heavy;1;;3;2}{starships/ISO/Medium;1;;36;8}{starships/Merchant/Heavy;1;;3;2}{starships/Merchant/Light;1;;24;5}{starships/Merchant/Light_Capship;1;;-24;30}{starships/Merchant/Medium;1;;12;4}{starships/Regional_Guard/Heavy;1;;3;2}{starships/Regional_Guard/Light;1;;24;5}{starships/Regional_Guard/Medium;1;;12;4}{upgrades/Ammunition;1;.1;560;570}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;3;1}{upgrades/Jump_Drives;1;.1;12;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;5;3}{upgrades/Sensors/Confed;1;.1;-8;10}{upgrades/Sensors/Common;1;.1;6;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;24;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;12;4}{upgrades/Weapons/Mount_Enhancements;1;.1;-24;30}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;3;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;24;6}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;12;5}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "n_class__planets", @@ -3409,8 +3254,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Contraband/Aera;1.15;.4;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Food/Aera;1.9;.1;5;2}{Natural_Products/Life-forms;1.2;.1;;}{Natural_Products/Liquor;.5;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;.9;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Alloys/Aera;1.1;.05;2;2}{Refined_Materials/Chemicals;1.05;.2;16;4}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12.5;3.5;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Aera/Heavy;1;;2;2}{starships/Aera/Light;1;;5;5}{starships/Aera/Milspec;1.5;.5;1;1}{upgrades/Ammunition/Aera;1.1;.2;500;540}{upgrades/Ammunition/Common;1.4;.6;100;140}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;14;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;;20;10}{upgrades/Sensors/Confed;1;;10;5}{upgrades/Sensors/Common;1;;10;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;;10;5}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;;10;5}{upgrades/Weapons/Mount_Enhancements;1;;10;5}{upgrades/Weapons/Mounted_Guns_Aera_Milspec;2;;1;1}{upgrades/Weapons/Mounted_Guns_Heavy;1;;10;5}{upgrades/Weapons/Mounted_Guns_Light;1;;10;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;10;5}{upgrades/Weapons/Turrets/Aera;1;.1;1;1}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "navpoint", @@ -3435,8 +3279,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "navpoint.blank", @@ -3456,8 +3299,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "navpoint.template", @@ -3487,8 +3329,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "nebula.bigger1.xmesh__neutral", @@ -3510,8 +3351,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "nebula.bigger2.xmesh__neutral", @@ -3533,8 +3373,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "nebula.bigger3.xmesh__neutral", @@ -3556,8 +3395,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "nebula.bigger4.xmesh__neutral", @@ -3579,8 +3417,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "nebula.nebula__neutral", @@ -3602,8 +3439,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "nebula__neutral", @@ -3630,8 +3466,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "nebula_veryhuge.nebula__neutral", @@ -3653,8 +3488,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "nebula_veryhuge__neutral", @@ -3681,8 +3515,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "newdetroit__planets", @@ -3706,8 +3539,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;.8;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Life-forms;1;.1;;}{Natural_Products/Liquor;1.3;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;1.2;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Chemicals;1.2;.2;8;2}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Andolian/Medium;1;;12;4}{starships/Confed/Heavy;1;;3;2}{starships/Confed/Light;1;;24;5}{starships/Confed/Medium;1;;12;4}{starships/Highborn/Heavy;1;;3;2}{starships/Hunter/Heavy;1;;3;2}{starships/Hunter/Light;1;;24;5}{starships/Hunter/Medium;1;;12;3}{starships/ISO/Heavy;1;;3;2}{starships/ISO/Medium;1;;36;8}{starships/Merchant/Heavy;1;;3;2}{starships/Merchant/Light;1;;24;5}{starships/Merchant/Light_Capship;1;;-24;30}{starships/Merchant/Medium;1;;12;4}{starships/Regional_Guard/Heavy;1;;3;2}{starships/Regional_Guard/Light;1;;24;5}{starships/Regional_Guard/Medium;1;;12;4}{upgrades/Ammunition/Common;.8;.2;1600;1700}{upgrades/Ammunition/Uncommon;1.8;.7;60;170}{upgrades/Ammunition/Confed;2.8;.2;90;110}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;3;1}{upgrades/Jump_Drives;1;.1;12;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;5;3}{upgrades/Sensors/Confed;1;.1;-8;10}{upgrades/Sensors/Common;1;.1;6;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;.1;3;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;24;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;12;4}{upgrades/Weapons/Mount_Enhancements;1;.1;-24;30}{upgrades/Weapons/Mounted_Guns_Heavy;1;.1;3;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;24;6}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;12;5}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "ocean__planets", @@ -3732,8 +3564,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;1000;.100000000000023}{Consumer_and_Commercial_Goods/Electronics;1;.1;1000;.1}{Consumer_and_Commercial_Goods/Luxury;1;.1;10;.1}{Consumer_and_Commercial_Goods/Personal;1;.1;1000;.1}{Contraband/Aera;1;.1;10;.1}{Contraband/Confed;1;.1;10;.1}{Contraband/Rlaan;1;.1;10;.1}{Industrially_Manufactured_Goods/Agricultural;1;.1;10;.1}{Industrially_Manufactured_Goods/Construction;1;.1;10;.1}{Industrially_Manufactured_Goods/Recycled_Products;1;.1;10000;.1}{Industrially_Manufactured_Goods/Xenoforming;1;.1;10;.1}{Natural_Products/Food/Aera;1;.1;10000;.1}{Natural_Products/Food/Confed;1;.1;10000;.1}{Natural_Products/Food/Generic;1;.1;10000;.1}{Natural_Products/Food/Rlaan;1;.1;10000;.1}{Natural_Products/Life-forms;1;.1;1000;.1}{Natural_Products/Liquor/Confed;1;.1;100;.1}{Natural_Products/Liquor/Uln;1;.1;100;.1}{Natural_Products/Liquor;.9;.1;200;400}{Natural_Products/Plant_Products;1;.1;10;.1}{Natural_Products/Renewable_Resources;1;.1;10000;.1}{Raw_Materials/Gases;1;.1;100000;.1}{Raw_Materials/Hydrocarbons;1;.1;20000;.2}{Raw_Materials/Metals;6;.7;-100;300}{Raw_Materials/Ores;5;.4;-1000;2000}{Refined_Materials/Alloys/Aera;10;.3;-100;150}{Refined_Materials/Alloys/Confed;3;.1;100;45}{Refined_Materials/Alloys/Rlaan;2;.1;10;15}{Refined_Materials/Precious_Metals;3;.1;10;12}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;10;.1}{Refined_Materials/Radioactive_Metals;1;.1;100;.1}{Research;11;.4;-10;13}{Specialty_Goods/Augmentation;1;.1;-3;5}{Specialty_Goods/Entertainment;1;.2;100;34}{Specialty_Goods/Medical;1.25;.2;80;120}{Specialty_Goods/Pharmaceutical;1;.2;4;5}{starships/Andolian/Medium;1;;;5}{starships/Hunter/Light;1;;;5}{starships/Merchant/Light;1;;;5}{starships/Merchant/Medium;1;;;5}{starships/Regional_Guard/Light;1;;;5}{upgrades/Ammunition/Confed;1;.1;100;280}{upgrades/Ammunition/Common;1;.1;200;280}{upgrades/Ammunition/Uncommon;2;.1;60;180}{upgrades/Ammunition/Rlaan;6;.7;-10;28}{upgrades/Ammunition/Aera;13;.7;-10;28}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Cargo;1;.1;2;1}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;4;2}{upgrades/Overdrive;1;.1;3;2}{upgrades/Passenger_Quarters;1;.1;10;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Sensors/Confed;1;.1;6;5}{upgrades/Sensors/Common;1;.1;10;5}{upgrades/Shady_Mechanic;1;.1;-2;5}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/SPEC_Capacitors;1;.1;6;2}{upgrades/Weapons/Beam_Arrays_Light;1;.1;;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;;3}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "ocean_ammonia__planets", @@ -3756,8 +3587,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "orange_star__planets", @@ -3779,47 +3609,41 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "particle_beam_lr__upgrades", "Name": "particle_beam_lr", "Object_Type": "FIXME", "Mounts": "{LR_ParticleBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "penetrator_gun__upgrades", "Name": "penetrator_gun", "Object_Type": "FIXME", "Mounts": "{Penetrator;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "penetrator_mkvi__upgrades", "Name": "penetrator_mkvi", "Object_Type": "FIXME", "Mounts": "{PenetratorMKVI;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "photon_capship__upgrades", "Name": "photon_capship", "Object_Type": "FIXME", "Mounts": "{capship_Photon;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "photon_swarm_ammo__upgrades", "Name": "photon_swarm", "Object_Type": "FIXME", - "Mounts": "{Photonswarm;50;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Photonswarm;50;;;;;;;;;;;;;;1;1}" }, { "Key": "pmiss", @@ -3861,15 +3685,13 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;8;;;;;}", - "shield_facets": "0", "accel": "4" }, { "Key": "porcupine_mine_ammo__upgrades", "Name": "porcupine_mine", "Object_Type": "FIXME", - "Mounts": "{PorcupineMine;1;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{PorcupineMine;1;;;;;;;;;;;;;;1;1}" }, { "Key": "purple-nebula.nebula__neutral", @@ -3890,8 +3712,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "purple-nebula__neutral", @@ -3917,38 +3738,33 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "razor_gun__upgrades", "Name": "Razor", "Object_Type": "FIXME", "Mounts": "{Razor;500;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" }, { "Key": "razor_gun_ammo__upgrades", "Name": "Razor Warheads", "Object_Type": "FIXME", - "Mounts": "{Razor;50;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Razor;50;;;;;;;;;;;;;;1;1}" }, { "Key": "reaper_cannon__upgrades", "Name": "Reaper", "Object_Type": "FIXME", "Mounts": "{Reaper;1500;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "reaper_cannon_ammo__upgrades", "Name": "Reaper Warheads", "Object_Type": "FIXME", - "Mounts": "{Reaper;100;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Reaper;100;;;;;;;;;;;;;;1;1}" }, { "Key": "red-nebula.nebula__neutral", @@ -3969,8 +3785,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "red-nebula__neutral", @@ -3996,8 +3811,7 @@ "FireControl_Functionality": "1", "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", - "Max_SPECDrive_Functionality": "1", - "shield_facets": "0" + "Max_SPECDrive_Functionality": "1" }, { "Key": "red_rocky__planets", @@ -4020,8 +3834,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "red_star__planets", @@ -4043,48 +3856,42 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "repulsor_beam__upgrades", "Name": "repulsor_beam", "Object_Type": "FIXME", "Mounts": "{Repulsor;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "rlaan_turret_mini__upgrades", "Name": "rlaan_turret_mini", "Object_Type": "FIXME", "Sub_Units": "{rlaanturretmini;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@While Rlaan ships tend to mount flash-shields capable of shrugging off most small arms fire, they still prefer the option of 'convincing' fighters to stop firing.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@While Rlaan ships tend to mount flash-shields capable of shrugging off most small arms fire, they still prefer the option of 'convincing' fighters to stop firing.\"\n" }, { "Key": "rlaan_turret_pd__upgrades", "Name": "rlaan_turret_pd", "Object_Type": "FIXME", "Sub_Units": "{rlaanturretpd;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@The Rlaan are well known for their disdain of missiles, especially those fired at them.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@The Rlaan are well known for their disdain of missiles, especially those fired at them.\"\n" }, { "Key": "rlr_laser_beam__upgrades", "Name": "rlr_laser_beam", "Object_Type": "FIXME", "Mounts": "{RLR_LaserBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "rlr_pminus_beam__upgrades", "Name": "rlr_pminus_beam", "Object_Type": "FIXME", "Mounts": "{RLR_PminusBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "rock__planets", @@ -4107,32 +3914,28 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "sanitizer__upgrades", "Name": "sanitizer", "Object_Type": "FIXME", "Mounts": "{Sanitizer;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "small_turret__upgrades", "Name": "small_turret", "Object_Type": "FIXME", "Sub_Units": "{turretsmall;;;;;;;;;;180.0}", - "Textual_Description": "\"@upgrades/turret_light.png@Given the armament commonly placed in such turrets, the small turret has become affectionately known as 'the machine that goes ping'.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/turret_light.png@Given the armament commonly placed in such turrets, the small turret has become affectionately known as 'the machine that goes ping'.\"\n" }, { "Key": "stormfire__upgrades", "Name": "stormfire", "Object_Type": "FIXME", "Mounts": "{Stormfire;1000;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "sun__planets", @@ -4154,23 +3957,20 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "swarm_ammo__upgrades", "Name": "swarm_ammo", "Object_Type": "FIXME", "Mounts": "{Swarm;10;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/swarm.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/swarm.png@\"\n" }, { "Key": "thermopylae__upgrades", "Name": "thermopylae", "Object_Type": "FIXME", - "Mounts": "{Thermopylae;1;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Thermopylae;1;;;;;;;;;;;;;;1;1}" }, { "Key": "tkirsa__planets", @@ -4195,16 +3995,14 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1;.1;2;2}{Consumer_and_Commercial_Goods/Electronics;1;.1;;}{Contraband/Rlaan;1.15;.4;;}{Industrially_Manufactured_Goods/Agricultural;.8;.2;26;12}{Industrially_Manufactured_Goods/Construction;1.2;.2;17;5}{Industrially_Manufactured_Goods/Electronics;1.1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.8;.2;25;15}{Industrially_Manufactured_Goods/Power_Utilities;.8;.2;35;12}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Food/Rlaan;1.9;.1;5;2}{Natural_Products/Life-forms;1.2;.1;;}{Natural_Products/Liquor;.5;.2;;}{Natural_Products/Renewable_Resources;1.1;.2;15;5}{Raw_Materials/Gases;.9;.2;10;5}{Raw_Materials/Hydrocarbons;.8;.2;;}{Raw_Materials/Industrial_Gems;1.2;.2;12;3}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1.2;.2;16;15}{Refined_Materials/Alloys/Rlaan;1.1;.05;2;2}{Refined_Materials/Chemicals;1.05;.2;16;4}{Refined_Materials/Precious_Metals;1.1;.2;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;1;.1;1;1}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;12.5;3.5;;}{Specialty_Goods/Augmentation;1.3;.1;1;1}{Specialty_Goods/Entertainment;1;.1;1;1}{Specialty_Goods/Medical;1.1;.1;5;3}{starships/Rlaan/Heavy;1;;4;4}{starships/Rlaan/Light;1;;3;3}{starships/Rlaan/Milspec;1.5;.5;1;1}{upgrades/Ammunition/Rlaan;1;.1;500;510}{upgrades/Ammunition/Common;2;.1;100;110}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/Jump_Drives;1;.1;14;7}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;;20;10}{upgrades/Sensors/Common;1;;10;5}{upgrades/Sensors/Rlaan;1;.1;2;1}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Heavy;1;;10;5}{upgrades/Weapons/Beam_Arrays_Light;1;;10;5}{upgrades/Weapons/Beam_Arrays_Medium;1;;10;5}{upgrades/Weapons/Beam_Arrays_Rlaan_Milspec;1;;10;5}{upgrades/Weapons/Mount_Enhancements;1;;10;5}{upgrades/Weapons/Mounted_Guns_Heavy;1;;10;5}{upgrades/Weapons/Mounted_Guns_Light;1;;10;5}{upgrades/Weapons/Mounted_Guns_Medium;1;;10;5}{upgrades/Weapons/Mounted_Guns_Rlaan_Milspec;2;;1;1}{upgrades/Weapons/Turrets/Rlaan;1;.1;1;1}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "torpedo_ammo__upgrades", "Name": "torpedo_ammo", "Object_Type": "FIXME", "Mounts": "{Torpedo;1;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/emp1.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/emp1.png@\"\n" }, { "Key": "toxic_disaster__planets", @@ -4227,32 +4025,28 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "tractor_beam__upgrades", "Name": "tractor_beam", "Object_Type": "FIXME", "Mounts": "{Tractor;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "tractor_capability__upgrades", "Name": "tractor_capability", "Object_Type": "FIXME", "Mounts": "{MOUNT_UPGRADE;;;special;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "tractor_heavy__upgrades", "Name": "tractor_heavy", "Object_Type": "FIXME", "Mounts": "{HeavyTractor;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@Animal magnetism is overrated. This is just over-engineered.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@Animal magnetism is overrated. This is just over-engineered.\"\n" }, { "Key": "tundra__planets", @@ -4277,24 +4071,21 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Contraband/Rlaan;.94;.15;12;40}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;12;7}{Industrially_Manufactured_Goods/Construction;1.6;.1;17;5}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;10;4}{Industrially_Manufactured_Goods/Mining;.6;.1;1;1}{Industrially_Manufactured_Goods/Power_Utilities;1.2;.1;5;2}{Industrially_Manufactured_Goods/Recycled_Products;1.2;.1;10;7}{Natural_Products/Food/Rlaan;1.5;.2;55;25}{Natural_Products/Life-forms;.8;.2;20;12}{Natural_Products/Liquor;.8;.2;30;12}{Natural_Products/Renewable_Resources;.8;.2;35;25}{Raw_Materials/Gases;.7;.2;70;25}{Raw_Materials/Hydrocarbons;.8;.2;28;25}{Raw_Materials/Industrial_Gems;1.2;.2;2;1}{Raw_Materials/Metals;1;.1;12;5}{Raw_Materials/Stone;.9;.1;16;15}{Refined_Materials/Alloys/Rlaan;.7;.1;;}{Refined_Materials/Chemicals;1.05;.3;16;4}{Refined_Materials/Precious_Metals;1;.1;12;5}{Refined_Materials/Purified_and_Enhanced_Materials;.7;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;2;1}{Research;13;2;;}{Specialty_Goods/Augmentation;.87;.1;15;25}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;1.94;.1;15;3}{starships/ISO/Heavy;1;;;5}{starships/ISO/Medium;1;;16;10}{starships/Merchant/Light;1;;12;5}{starships/Merchant/Medium;1;;3;5}{starships/Rlaan/Light;1;;12;14}{upgrades/Ammunition/Common;1;.1;100;180}{upgrades/Ammunition/Uncommon;2;.1;10;80}{upgrades/Ammunition/Rlaan;2;.1;40;50}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;6;3}{upgrades/Jump_Drives;1;.1;6;3}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;1;.1;-2;4}{upgrades/Sensors/Confed;1;.1;-12;17}{upgrades/Sensors/Common;1;.1;20;6}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;3;5}{upgrades/Weapons/Beam_Arrays_Medium;1;.1;-3;5}{upgrades/Weapons/Mount_Enhancements;1;.1;-50;51}{upgrades/Weapons/Mounted_Guns_Light;1;.1;12;4}{upgrades/Weapons/Mounted_Guns_Medium;1;.1;6;3}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "turret_pd__upgrades", "Name": "turret_pd", "Object_Type": "FIXME", "Sub_Units": "{turretpd;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@One is heavily advised to not play 'catch the missile' unless one mounts several of these.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@One is heavily advised to not play 'catch the missile' unless one mounts several of these.\"\n" }, { "Key": "turret_pd_long__upgrades", "Name": "turret_pd_long", "Object_Type": "FIXME", "Sub_Units": "{turretpdlong;;;;;;;;;;180.0}", - "Textual_Description": "\"@cargo/cargo_hud.png@One of the most impressive applications of disruptor technology, this military rated point defense turret is the best of its kind.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@One of the most impressive applications of disruptor technology, this military rated point defense turret is the best of its kind.\"\n" }, { "Key": "university__planets", @@ -4319,8 +4110,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;4;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;5;2}{Industrially_Manufactured_Goods/Agricultural;.8;.1;;}{Industrially_Manufactured_Goods/Construction;1.1;.1;3;3}{Industrially_Manufactured_Goods/Electronics;1;.1;1;1}{Industrially_Manufactured_Goods/Manufacturing;.8;.1;;}{Industrially_Manufactured_Goods/Mining;.8;.1;;}{Industrially_Manufactured_Goods/Power_Utilities;1.1;.1;3;3}{Industrially_Manufactured_Goods/Recycled_Products;.8;.1;;}{Natural_Products/Life-forms;.8;.05;;}{Natural_Products/Liquor;1;.2;;}{Natural_Products/Renewable_Resources;.8;.1;;}{Raw_Materials/Gases;1.1;.1;3;3}{Raw_Materials/Hydrocarbons;.8;.1;;}{Raw_Materials/Industrial_Gems;.8;.1;;}{Raw_Materials/Metals;.8;.1;;}{Raw_Materials/Stone;1;.1;;}{Refined_Materials/Chemicals;1.1;.1;3;3}{Refined_Materials/Precious_Metals;.8;.1;;}{Refined_Materials/Purified_and_Enhanced_Materials;.9;.1;;}{Refined_Materials/Radioactive_Metals;.8;.1;;}{Research;10;3;-30;50}{Specialty_Goods/Entertainment;1;.1;2;1}{Specialty_Goods/Medical;1.1;.1;3;3}{starships/Andolian/Medium;1;;3;2}{starships/Confed/Light;1;;3;2}{starships/Hunter/Light;1;;3;2}{starships/Merchant/Light;1;;3;2}{starships/Regional_Guard/Light;1;;3;2}{upgrades/Ammunition;16;.9;150;280}{upgrades/Armor;1;.1;10;5}{upgrades/Capacitors/Standard;1;.1;10;5}{upgrades/ECM_Systems;1;.1;5;2}{upgrades/Jump_Drives;1;.1;9;4}{upgrades/Overdrive;1;.1;3;2}{upgrades/Reactors/Standard;1;.1;10;5}{upgrades/Repair_Systems;.95;.15;-5;17}{upgrades/Sensors/Common;1;.1;5;2}{upgrades/Shield_Systems/Standard_Dual_Shields;1;.1;20;5}{upgrades/Shield_Systems/Standard_Quad_Shields;1;.1;20;5}{upgrades/Weapons/Beam_Arrays_Light;1;.1;5;2}{upgrades/Weapons/Mounted_Guns_Light;1;.1;5;2}", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "white_star__planets", @@ -4342,8 +4132,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Upgrade_Storage_Volume": "100000000", - "shield_facets": "0" + "Upgrade_Storage_Volume": "100000000" }, { "Key": "wormhole.neutral.stable", @@ -4368,8 +4157,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{wormhole.stableswirlsaccessory;0;0;0;;;;;;;180.0}{wormhole.stableswirlsaccessory;0;0;0;;;-1;;;;180.0}", - "Spec_Interdiction": "0.5", - "shield_facets": "0" + "Spec_Interdiction": "0.5" }, { "Key": "wormhole.neutral.unstable", @@ -4395,8 +4183,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{wormhole.unstableswirlsaccessory;0;0;0;;;;;;;180.0}{wormhole.unstableswirlsaccessory;0;0;0;;;-1;;;;180.0}", - "Spec_Interdiction": "0.5", - "shield_facets": "0" + "Spec_Interdiction": "0.5" }, { "Key": "wormhole.stable", @@ -4422,8 +4209,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{wormhole.stableswirlsaccessory;0;0;0;;;;;;;180.0}{wormhole.stableswirlsaccessory;0;0;0;;;-1;;;;180.0}", - "Spec_Interdiction": "0.5", - "shield_facets": "0" + "Spec_Interdiction": "0.5" }, { "Key": "wormhole.stableglownetsaccessory", @@ -4449,8 +4235,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Spec_Interdiction": "0.5", - "shield_facets": "0" + "Spec_Interdiction": "0.5" }, { "Key": "wormhole.stableswirlsaccessory", @@ -4478,8 +4263,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Num_Animation_Stages": "1", - "Spec_Interdiction": "0.5", - "shield_facets": "0" + "Spec_Interdiction": "0.5" }, { "Key": "wormhole.unstable", @@ -4505,8 +4289,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Sub_Units": "{wormhole.unstableswirlsaccessory;0;0;0;;;;;;;180.0}{wormhole.unstableswirlsaccessory;0;0;0;;;-1;;;;180.0}", - "Spec_Interdiction": "0.5", - "shield_facets": "0" + "Spec_Interdiction": "0.5" }, { "Key": "wormhole.unstableglownetsaccessory", @@ -4534,8 +4317,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Spec_Interdiction": "0.5", - "shield_facets": "0" + "Spec_Interdiction": "0.5" }, { "Key": "wormhole.unstableswirlsaccessory", @@ -4562,8 +4344,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Num_Animation_Stages": "1", - "Spec_Interdiction": "0.5", - "shield_facets": "0" + "Spec_Interdiction": "0.5" }, { "Key": "asteroid0", @@ -4606,7 +4387,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -4650,7 +4430,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -4694,7 +4473,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -4738,7 +4516,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -4782,7 +4559,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -4826,7 +4602,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -4870,7 +4645,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -4914,7 +4688,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Fragments;;;50;50}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -4958,7 +4731,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5002,7 +4774,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5046,7 +4817,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5090,7 +4860,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5134,7 +4903,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5178,7 +4946,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5222,7 +4989,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5266,7 +5032,6 @@ "Max_SPECDrive_Functionality": "1", "Cargo": "{Iron_Ore;Raw_Materials/Ores;0;4;1;2;1;1;;0}{Tungsten_Ore;Raw_Materials/Ores;0;1;1;2;1;1;;0}", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5312,7 +5077,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", - "shield_facets": "0", "accel": "3" }, { @@ -5344,8 +5108,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}", - "armor": "10.0", - "shield_facets": "0" + "armor": "10.0" }, { "Key": "generic_cargo__aera", @@ -5376,8 +5139,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}", - "armor": "10.0", - "shield_facets": "0" + "armor": "10.0" }, { "Key": "generic_cargo__rlaan", @@ -5408,8 +5170,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Cargo_Import": "{Consumer_and_Commercial_Goods/Domestic;1.1;.1;;2}{Consumer_and_Commercial_Goods/Electronics;1.1;.1;;2}{Industrially_Manufactured_Goods/Agricultural;1.2;.1;;7}{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Electronics;1;.1;;1}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Industrially_Manufactured_Goods/Mining;.6;.1;;1}{Natural_Products/Life-forms;.8;.2;;2}{Natural_Products/Renewable_Resources;.8;.2;;5}{Raw_Materials/Gases;.7;.2;;2}{Raw_Materials/Hydrocarbons;.8;.2;;2}{Refined_Materials/Chemicals;1.2;.3;;2}{Specialty_Goods/Entertainment;1;.1;;1}{Specialty_Goods/Medical;1.2;.1;;3}", - "armor": "10.0", - "shield_facets": "0" + "armor": "10.0" }, { "Key": "iron_ore.cargo", @@ -5450,7 +5211,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5492,7 +5252,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "armor": "30.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5545,8 +5304,7 @@ "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-5.90000023841858;2.3;;;;;}", "Explosion": "explosion_wave.ani", - "armor": "70.0", - "shield_facets": "0" + "armor": "70.0" }, { "Key": "cluster", @@ -5591,7 +5349,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", - "shield_facets": "0", "accel": "3" }, { @@ -5645,7 +5402,6 @@ "Light": "{supernova.bmp.bfxm;0;0;-5.90000023841858;2.3;;;;;}", "Explosion": "explosion_wave.ani", "armor": "100.0", - "shield_facets": "0", "accel": "109752" }, { @@ -5690,7 +5446,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", - "shield_facets": "0", "accel": "20" }, { @@ -5739,7 +5494,6 @@ "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2.30000023841858;.8;;;;;}", "armor": "55.0", - "shield_facets": "0", "accel": "200" }, { @@ -5768,8 +5522,7 @@ "Max_FireControl_Functionality": "1", "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", - "Spec_Interdiction": "0.75", - "shield_facets": "0" + "Spec_Interdiction": "0.75" }, { "Key": "asteroidsPriv__neutral", @@ -5809,7 +5562,6 @@ "Upgrade_Storage_Volume": "16", "Num_Chunks": "0", "armor": "1000.0", - "shield_facets": "0", "accel": "20000" }, { @@ -5859,7 +5611,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Mounts": "{Photon_MKIII;100;;medium autotracking;0;0;0;;;;;;;;;1;1}", - "shield_facets": "0", "accel": "5" }, { @@ -5906,7 +5657,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-4.1;1.2;;;;;}", - "shield_facets": "0", "accel": "87" }, { @@ -5952,7 +5702,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", - "shield_facets": "0", "accel": "2" }, { @@ -5999,7 +5748,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", - "shield_facets": "0", "accel": "311" }, { @@ -6042,7 +5790,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2.00000023841858;.6;;;;;}", - "shield_facets": "0", "accel": "44" }, { @@ -6089,7 +5836,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", - "shield_facets": "0", "accel": "342" }, { @@ -6135,7 +5881,6 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Light": "{supernova.bmp.bfxm;0;0;-2;.6;;;;;}", - "shield_facets": "0", "accel": "5" }, { @@ -7660,8 +7405,7 @@ "SPECDrive_Functionality": "1", "Max_SPECDrive_Functionality": "1", "Dock": "{;-150;107;0.594800;300.000000;0}", - "armor": "8000.0", - "shield_facets": "0" + "armor": "8000.0" }, { "Key": "aeraturretLR_heavy", @@ -11462,8 +11206,7 @@ "Object_Type": "Upgrade_Improvement", "Textual_Description": "\"@upgrades/circuit1.png@Trades energy capacity for recharge rate\"\n", "Primary_Capacitor": "0.8", - "Reactor_Recharge": "1.2", - "shield_facets": "0" + "Reactor_Recharge": "1.2" }, { "Key": "mult_shady_moreshieldrecharge__upgrades", @@ -11471,8 +11214,7 @@ "Object_Type": "Upgrade_Improvement", "Textual_Description": "\"@upgrades/mult_shield_regenerator.png@Increases ship mass, increases shield recharge\"\n", "Mass": "1.1", - "Shield_Recharge": "1.2", - "shield_facets": "0" + "Shield_Recharge": "1.2" }, { "Key": "mult_shady_moreshields__upgrades", @@ -11490,8 +11232,7 @@ "Textual_Description": "\"@cargo/cargo_hud.png@Trades side armor for increased thrust\"\n", "Afterburner_Accel": "1.2", "Forward_Accel": "1.2", - "Retro_Accel": "1.2", - "shield_facets": "0" + "Retro_Accel": "1.2" }, { "Key": "mult_shady_moreturning__upgrades", @@ -11503,16 +11244,14 @@ "Maneuver_Roll": "1.2", "Yaw_Governor": "1.2", "Pitch_Governor": "1.2", - "Roll_Governor": "1.2", - "shield_facets": "0" + "Roll_Governor": "1.2" }, { "Key": "mult_shady_moreupgrade__upgrades", "Name": "More Upgrade Volume", "Object_Type": "Upgrade_Improvement", "Textual_Description": "\"@cargo/cargo_hud.png@Trades cargo space for upgrade room\"\n", - "Hold_Volume": "-50", - "shield_facets": "0" + "Hold_Volume": "-50" }, { "Key": "hud_repair__upgrades", @@ -11520,16 +11259,14 @@ "Object_Type": "Upgrade_Repair", "Hud_Functionality": "1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1", "Max_Hud_Functionality": "1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1", - "Textual_Description": "\"@upgrades/circuit2.png@Given that any craft of sufficient size and many smaller craft(produced by particular factions), have no physical viewports for their pilots, and that no pilot could fly without the nav cues overlayed by the HUD, the ability to do in-flight repair of damaged HUD systems is nearly vital.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/circuit2.png@Given that any craft of sufficient size and many smaller craft(produced by particular factions), have no physical viewports for their pilots, and that no pilot could fly without the nav cues overlayed by the HUD, the ability to do in-flight repair of damaged HUD systems is nearly vital.\"\n" }, { "Key": "add_cargo_expansion__upgrades", "Name": "Cargo Expansion", "Object_Type": "Upgrade_Replacement", "Textual_Description": "Trades upgrade space and support systems for cargo volume", - "Hold_Volume": "12", - "shield_facets": "0" + "Hold_Volume": "12" }, { "Key": "autotracking__upgrades", @@ -11537,8 +11274,7 @@ "Object_Type": "Upgrade_Replacement", "Mass": "0.5", "Mounts": "{MOUNT_UPGRADE;;;autotracking;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@While all mounted weapons have inherent auto-tracking capabilities, these defaults are limited in civilian mounts. A full-powered military auto-tracker like this greatly enhances weapon accuracy.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@While all mounted weapons have inherent auto-tracking capabilities, these defaults are limited in civilian mounts. A full-powered military auto-tracker like this greatly enhances weapon accuracy.\"\n" }, { "Key": "ecm_package01__upgrades", @@ -11548,8 +11284,7 @@ "ECM_Rating": "1", "ECM_Resist": "0.1", "Ecm_Drain": "5", - "Textual_Description": "\"@upgrades/ecm1.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/ecm1.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n" }, { "Key": "ecm_package02__upgrades", @@ -11559,8 +11294,7 @@ "ECM_Rating": "2", "ECM_Resist": "0.2", "Ecm_Drain": "8", - "Textual_Description": "\"@upgrades/ecm2.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/ecm2.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n" }, { "Key": "ecm_package03__upgrades", @@ -11570,8 +11304,7 @@ "ECM_Rating": "3", "ECM_Resist": "0.3", "Ecm_Drain": "12", - "Textual_Description": "\"@upgrades/ecm3.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/ecm3.png@Electronic CounterMeasures\\ ECM refers to a broad spectrum of techniques designed to defeat or spoof enemy sensors and communications.\"\n" }, { "Key": "hawkeye1__upgrades", @@ -11583,8 +11316,7 @@ "Tracking_Cone": "6", "Max_Cone": "180", "Lock_Cone": "30", - "Textual_Description": "\"@upgrades/hawkeye_zx16.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/hawkeye_zx16.png@\"\n" }, { "Key": "hawkeye2__upgrades", @@ -11596,8 +11328,7 @@ "Tracking_Cone": "7", "Max_Cone": "180", "Lock_Cone": "40", - "Textual_Description": "\"@upgrades/hawkeye_zx50.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/hawkeye_zx50.png@\"\n" }, { "Key": "hawkeye3__upgrades", @@ -11610,8 +11341,7 @@ "Tracking_Cone": "9", "Max_Cone": "180", "Lock_Cone": "45", - "Textual_Description": "\"@upgrades/hawkeye_zx86.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/hawkeye_zx86.png@\"\n" }, { "Key": "hawkeye4__upgrades", @@ -11623,40 +11353,35 @@ "Radar_Range": "300000000", "Tracking_Cone": "9", "Max_Cone": "180", - "Lock_Cone": "45", - "shield_facets": "0" + "Lock_Cone": "45" }, { "Key": "passenger_quarters_01__upgrades", "Name": "Cryochamber", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/passenger_cryo_chamber.png@All the life-support a frozen passenger needs to survive the journey in a depressurized cargo hold. Provides life-support and space for 1 passenger.\"\n", - "Mass": "0.5", - "shield_facets": "0" + "Mass": "0.5" }, { "Key": "passenger_quarters_02__upgrades", "Name": "Steerage Class", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/passenger_steerage_class.png@Part of the cargo hold is just equiped with an additional life-support for whatever kind of atmosphere is needed for the merry guests standing there or sitting on the floor. Provides life-support and space for up to 4 passengers.\"\n", - "Mass": "0.8", - "shield_facets": "0" + "Mass": "0.8" }, { "Key": "passenger_quarters_03__upgrades", "Name": "Economy Class", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/passenger_economy_class.png@Life-support and even seats for the dear customer. Provides life-support and space for up to 4 passengers.\"\n", - "Mass": "1", - "shield_facets": "0" + "Mass": "1" }, { "Key": "passenger_quarters_04__upgrades", "Name": "Comfort Class", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/passenger_comfort_class.png@Life-support, seat and even bunk-beds provide a level of comfort the captain would like to have. Provides life-support and space for up to 2 passengers.\"\n", - "Mass": "1.2", - "shield_facets": "0" + "Mass": "1.2" }, { "Key": "repair_droid01__upgrades", @@ -11664,8 +11389,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "1", - "shield_facets": "0" + "Repair_Droid": "1" }, { "Key": "repair_droid02__upgrades", @@ -11673,8 +11397,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "2", - "shield_facets": "0" + "Repair_Droid": "2" }, { "Key": "repair_droid03__upgrades", @@ -11682,8 +11405,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "3", - "shield_facets": "0" + "Repair_Droid": "3" }, { "Key": "repair_droid04__upgrades", @@ -11691,8 +11413,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "4", - "shield_facets": "0" + "Repair_Droid": "4" }, { "Key": "repair_droid05__upgrades", @@ -11700,8 +11421,7 @@ "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@cargo/cargo_hud.png@Repairs ship upgrades in-flight\"\n", "Mass": "1", - "Repair_Droid": "5", - "shield_facets": "0" + "Repair_Droid": "5" }, { "Key": "skyscope1__upgrades", @@ -11712,8 +11432,7 @@ "Tracking_Cone": "4", "Max_Cone": "180", "Lock_Cone": "25", - "Textual_Description": "\"@upgrades/skyscope_alpha.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/skyscope_alpha.png@\"\n" }, { "Key": "skyscope2__upgrades", @@ -11724,8 +11443,7 @@ "Tracking_Cone": "5", "Max_Cone": "180", "Lock_Cone": "30", - "Textual_Description": "\"@upgrades/skyscope_alphaplus.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/skyscope_alphaplus.png@\"\n" }, { "Key": "skyscope3__upgrades", @@ -11737,8 +11455,7 @@ "Tracking_Cone": "8", "Max_Cone": "180", "Lock_Cone": "35", - "Textual_Description": "\"@upgrades/skyscope_beta.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/skyscope_beta.png@\"\n" }, { "Key": "starscanner1__upgrades", @@ -11750,8 +11467,7 @@ "Tracking_Cone": "3", "Max_Cone": "180", "Lock_Cone": "40", - "Textual_Description": "\"@upgrades/starscanner_2530.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/starscanner_2530.png@\"\n" }, { "Key": "starscanner2__upgrades", @@ -11763,8 +11479,7 @@ "Tracking_Cone": "6", "Max_Cone": "180", "Lock_Cone": "42", - "Textual_Description": "\"@upgrades/starscanner_2545.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/starscanner_2545.png@\"\n" }, { "Key": "starscanner3__upgrades", @@ -11777,8 +11492,7 @@ "Tracking_Cone": "10", "Max_Cone": "180", "Lock_Cone": "45", - "Textual_Description": "\"@upgrades/starscanner_2600.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/starscanner_2600.png@\"\n" }, { "Key": "starscanner4__upgrades", @@ -11790,8 +11504,7 @@ "Radar_Range": "120000000", "Tracking_Cone": "10", "Max_Cone": "180", - "Lock_Cone": "45", - "shield_facets": "0" + "Lock_Cone": "45" }, { "Key": "surveyor1__upgrades", @@ -11803,8 +11516,7 @@ "Radar_Range": "50000000", "Tracking_Cone": "6", "Max_Cone": "180", - "Lock_Cone": "40", - "shield_facets": "0" + "Lock_Cone": "40" }, { "Key": "surveyor2__upgrades", @@ -11816,8 +11528,7 @@ "Radar_Range": "100000000", "Tracking_Cone": "10", "Max_Cone": "180", - "Lock_Cone": "45", - "shield_facets": "0" + "Lock_Cone": "45" }, { "Key": "rlaantracker1__upgrades", @@ -11828,8 +11539,7 @@ "Radar_Range": "300000000", "Tracking_Cone": "12", "Max_Cone": "180", - "Lock_Cone": "50", - "shield_facets": "0" + "Lock_Cone": "50" }, { "Key": "Clydesdale__merchant_guild", @@ -11948,7 +11658,6 @@ "Dock": "{;-3.47;3.47;-20.13;2.21;0}{;-4.91;-0.0;-20.13;2.21;0}{;-3.47;-3.47;-20.13;2.21;0}{;0.0;-4.91;-20.13;2.21;0}{;3.47;-3.47;-20.13;2.21;0}{;4.91;-0.0;-20.13;2.21;0}{;3.47;3.47;-20.13;2.21;0}{;0.0;4.91;-20.13;2.21;0}", "Cargo_Import": "{Industrially_Manufactured_Goods/Construction;1.2;.1;;5}{Industrially_Manufactured_Goods/Manufacturing;1.1;.1;;4}{Specialty_Goods/Medical;1.2;.1;;3}", "Upgrade_Storage_Volume": "600", - "shield_facets": "0", "accel": "5000000" }, { @@ -12066,2001 +11775,1617 @@ "Key": "CS_UVRF_Laser__upgrades", "Name": "Capital Scale Rapid Fire UV Laser", "Object_Type": "Weapon", - "Mounts": "{CS_UVRF_Laser;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{CS_UVRF_Laser;;;;;;;;;;;;;;;1;1}" }, { "Key": "CS_UV_Laser__upgrades", "Name": "Capital Scale UV Laser", "Object_Type": "Weapon", - "Mounts": "{CS_UV_Laser;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{CS_UV_Laser;;;;;;;;;;;;;;;1;1}" }, { "Key": "CS_XRRF_Laser__upgrades", "Name": "Rapid Fire XASER", "Object_Type": "Weapon", - "Mounts": "{CS_XRRF_Laser;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{CS_XRRF_Laser;;;;;;;;;;;;;;;1;1}" }, { "Key": "CS_XR_Laser__upgrades", "Name": "XASER", "Object_Type": "Weapon", - "Mounts": "{CS_XR_Laser;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{CS_XR_Laser;;;;;;;;;;;;;;;1;1}" }, { "Key": "Disruptor_Beam__upgrades", "Name": "Disruptor Beam", "Object_Type": "Weapon", "Mounts": "{DisruptorBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "Disruptor__upgrades", "Name": "Disruptor Cannon", "Object_Type": "Weapon", "Mounts": "{Disruptor;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "Dissonance__upgrades", "Name": "Dissonance", "Object_Type": "Weapon", - "Mounts": "{Dissonance;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Dissonance;;;;;;;;;;;;;;;1;1}" }, { "Key": "FS_IRRF_Laser__upgrades", "Name": "Rapid Fire IR Laser", "Object_Type": "Weapon", - "Mounts": "{FS_IRRF_Laser;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{FS_IRRF_Laser;;;;;;;;;;;;;;;1;1}" }, { "Key": "FS_IR_Laser__upgrades", "Name": "IR Laser", "Object_Type": "Weapon", - "Mounts": "{FS_IR_Laser;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{FS_IR_Laser;;;;;;;;;;;;;;;1;1}" }, { "Key": "FS_MWRF_Laser__upgrades", "Name": "Rapid Fire Microwave Laser", "Object_Type": "Weapon", - "Mounts": "{FS_MWRF_Laser;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{FS_MWRF_Laser;;;;;;;;;;;;;;;1;1}" }, { "Key": "FS_MW_Laser__upgrades", "Name": "Microwave Laser", "Object_Type": "Weapon", - "Mounts": "{FS_MW_Laser;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{FS_MW_Laser;;;;;;;;;;;;;;;1;1}" }, { "Key": "Heavy_Ion_Beam__upgrades", "Name": "Heavy Ion Beam", "Object_Type": "Weapon", - "Mounts": "{HeavyIonBeam;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{HeavyIonBeam;;;;;;;;;;;;;;;1;1}" }, { "Key": "Hephaestus_Mini__upgrades", "Name": "Hephaestus Cannon", "Object_Type": "Weapon", "Mounts": "{Hephaestus-mini;15000;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "Hephaestus_Mini_ammo__upgrades", "Name": "Hephaestus Shells", "Object_Type": "Weapon", - "Mounts": "{Hephaestus-mini;1000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Hephaestus-mini;1000;;;;;;;;;;;;;;1;1}" }, { "Key": "Hephaestus_Point_Defense__upgrades", "Name": "Hephaestus PD", "Object_Type": "Weapon", "Mounts": "{HephaestusPointDefenseCannon;25000;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "Hephaestus_Point_Defense_ammo__upgrades", "Name": "Hephaestus PD Ammo", "Object_Type": "Weapon", - "Mounts": "{HephaestusPointDefenseCannon;1000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{HephaestusPointDefenseCannon;1000;;;;;;;;;;;;;;1;1}" }, { "Key": "Ion_Beam__upgrades", "Name": "Light Ion Beam", "Object_Type": "Weapon", "Mounts": "{IonBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/medium.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/medium.png@\"\n" }, { "Key": "Ion_Burster__upgrades", "Name": "Ion Burster", "Object_Type": "Weapon", - "Mounts": "{IonBurster;10000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{IonBurster;10000;;;;;;;;;;;;;;1;1}" }, { "Key": "Ion_Burster_ammo__upgrades", "Name": "Ion Burster ammo", "Object_Type": "Weapon", - "Mounts": "{IonBurster;2000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{IonBurster;2000;;;;;;;;;;;;;;1;1}" }, { "Key": "Jackhammer__upgrades", "Name": "Jackhammer", "Object_Type": "Weapon", - "Mounts": "{Jackhammer;600;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Jackhammer;600;;;;;;;;;;;;;;1;1}" }, { "Key": "Jackhammer_ammo__upgrades", "Name": "Replacement Jackhammer Coolant", "Object_Type": "Weapon", - "Mounts": "{Jackhammer;10;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Jackhammer;10;;;;;;;;;;;;;;1;1}" }, { "Key": "Ktek_Beam_PD__upgrades", "Name": "Ktek Point Defense Beam", "Object_Type": "Weapon", "Mounts": "{KtekBeampd;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/beam1.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/beam1.png@\"\n" }, { "Key": "Ktek_Beam__upgrades", "Name": "Ktek Beam", "Object_Type": "Weapon", "Mounts": "{KtekBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@upgrades/beam1.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/beam1.png@\"\n" }, { "Key": "Ktek_Gun__upgrades", "Name": "Ktek Gun", "Object_Type": "Weapon", "Mounts": "{Ktek;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "Ktek_Mini_Grav-thumper__upgrades", "Name": "Miniature Grav-thumper", "Object_Type": "Weapon", - "Mounts": "{MiniGravThumper;8;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{MiniGravThumper;8;;;;;;;;;;;;;;1;1}" }, { "Key": "Ktek_Mini_Grav-thumper_ammo__upgrades", "Name": "Miniature Grav-thumper ammo", "Object_Type": "Weapon", - "Mounts": "{MiniGravThumper;1;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{MiniGravThumper;1;;;;;;;;;;;;;;1;1}" }, { "Key": "LR_Disruptor_Beam__upgrades", "Name": "Long Range Disruptor Beam", "Object_Type": "Weapon", - "Mounts": "{LR_DisruptorBeam;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{LR_DisruptorBeam;;;;;;;;;;;;;;;1;1}" }, { "Key": "LR_Disruptor__upgrades", "Name": "Long Range Disruptor", "Object_Type": "Weapon", - "Mounts": "{LR_Disruptor;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{LR_Disruptor;;;;;;;;;;;;;;;1;1}" }, { "Key": "Micro_Driver__upgrades", "Name": "Micro Driver", "Object_Type": "Weapon", - "Mounts": "{MicroDriver;5000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{MicroDriver;5000;;;;;;;;;;;;;;1;1}" }, { "Key": "Micro_Driver_ammo__upgrades", "Name": "Micro Driver Ammo", "Object_Type": "Weapon", - "Mounts": "{MicroDriver;1000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{MicroDriver;1000;;;;;;;;;;;;;;1;1}" }, { "Key": "Mini_Driver__upgrades", "Name": "Mini Driver", "Object_Type": "Weapon", - "Mounts": "{MiniDriver;2000;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{MiniDriver;2000;;;;;;;;;;;;;;1;1}" }, { "Key": "Mini_Driver_ammo__upgrades", "Name": "Mini Driver Ammo", "Object_Type": "Weapon", - "Mounts": "{MiniDriver;200;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{MiniDriver;200;;;;;;;;;;;;;;1;1}" }, { "Key": "Particle_Beam__upgrades", "Name": "Particle Beam", "Object_Type": "Weapon", "Mounts": "{ParticleBeam;;;;;;;;;;;;;;;1;1}", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "Pugilist__upgrades", "Name": "Pugilist", "Object_Type": "Weapon", - "Mounts": "{Pugilist;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{Pugilist;;;;;;;;;;;;;;;1;1}" }, { "Key": "Relativistic_Particle_Beam__upgrades", "Name": "Relativistic Particle Beam", "Object_Type": "Weapon", - "Mounts": "{RelativisticParticleBeam;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{RelativisticParticleBeam;;;;;;;;;;;;;;;1;1}" }, { "Key": "Shield_Breaker__upgrades", "Name": "Shield Breaker", "Object_Type": "Weapon", - "Mounts": "{ShieldBreaker;;;;;;;;;;;;;;;1;1}", - "shield_facets": "0" + "Mounts": "{ShieldBreaker;;;;;;;;;;;;;;;1;1}" }, { "Key": "", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "Key", - "Textual_Description": "string\n", - "shield_facets": "0" + "Textual_Description": "string\n" }, { "Key": "admonisher.old", - "Textual_Description": "\"Purist light assault craft\"\n", - "shield_facets": "0" + "Textual_Description": "\"Purist light assault craft\"\n" }, { "Key": "aelar", - "Textual_Description": "\"Aeran escort/superiority fighter\"\n", - "shield_facets": "0" + "Textual_Description": "\"Aeran escort/superiority fighter\"\n" }, { "Key": "aelar.blank", - "Textual_Description": "\"Aeran escort/superiority fighter\"\n", - "shield_facets": "0" + "Textual_Description": "\"Aeran escort/superiority fighter\"\n" }, { "Key": "aeon", - "Textual_Description": "\"Aeran interceptor\"\n", - "shield_facets": "0" + "Textual_Description": "\"Aeran interceptor\"\n" }, { "Key": "aeon.blank", - "Textual_Description": "\"Aeran interceptor\"\n", - "shield_facets": "0" + "Textual_Description": "\"Aeran interceptor\"\n" }, { "Key": "aevant", - "Textual_Description": "\"Aeran assault craft (fighter bomber)\"\n", - "shield_facets": "0" + "Textual_Description": "\"Aeran assault craft (fighter bomber)\"\n" }, { "Key": "aevant.blank", - "Textual_Description": "\"Aeran assault craft (fighter bomber)\"\n", - "shield_facets": "0" + "Textual_Description": "\"Aeran assault craft (fighter bomber)\"\n" }, { "Key": "corvette", - "Textual_Description": "\"The Thales class has the distinction of being the oldest military vessel in service that was originally designed for military use.\"\n", - "shield_facets": "0" + "Textual_Description": "\"The Thales class has the distinction of being the oldest military vessel in service that was originally designed for military use.\"\n" }, { "Key": "corvette__pirates", - "Textual_Description": "\"Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.\"\n", - "shield_facets": "0" + "Textual_Description": "\"Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.\"\n" }, { "Key": "corvette__pirates.blank", - "Textual_Description": "\"Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.\"\n", - "shield_facets": "0" + "Textual_Description": "\"Over the decades, as they were decommissioned from the Andolian fleet and sold to other governments, many Thales class vessels have found their way into the hands of less than reputable parties.\"\n" }, { "Key": "corvette.blank", - "Textual_Description": "\"The Thales class has the distinction of being the oldest military vessel in service that was originally designed for military use.\"\n", - "shield_facets": "0" + "Textual_Description": "\"The Thales class has the distinction of being the oldest military vessel in service that was originally designed for military use.\"\n" }, { "Key": "huldra", - "Textual_Description": "\"Rlaan destroyer. Generally seen escorting larger capital vessels.\"\n", - "shield_facets": "0" + "Textual_Description": "\"Rlaan destroyer. Generally seen escorting larger capital vessels.\"\n" }, { "Key": "huldra.blank", - "Textual_Description": "\"Rlaan destroyer. Generally seen escorting larger capital vessels.\"\n", - "shield_facets": "0" + "Textual_Description": "\"Rlaan destroyer. Generally seen escorting larger capital vessels.\"\n" }, { "Key": "idun", - "Textual_Description": "\"The Rlaan Shizu is in many ways similar to its Confederate counterpart, the Schroedinger, meant more for reconaissance and scouting patrols than heavy combat. Nonetheless, its twin gun mountings allow it to mount a basic defense, should it come under attack.\"\n", - "shield_facets": "0" + "Textual_Description": "\"The Rlaan Shizu is in many ways similar to its Confederate counterpart, the Schroedinger, meant more for reconaissance and scouting patrols than heavy combat. Nonetheless, its twin gun mountings allow it to mount a basic defense, should it come under attack.\"\n" }, { "Key": "idun.blank", - "Textual_Description": "\"The Rlaan Shizu is in many ways similar to its Confederate counterpart, the Schroedinger, meant more for reconaissance and scouting patrols than heavy combat. Nonetheless, its twin gun mountings allow it to mount a basic defense, should it come under attack.\"\n", - "shield_facets": "0" + "Textual_Description": "\"The Rlaan Shizu is in many ways similar to its Confederate counterpart, the Schroedinger, meant more for reconaissance and scouting patrols than heavy combat. Nonetheless, its twin gun mountings allow it to mount a basic defense, should it come under attack.\"\n" }, { "Key": "lodur", - "Textual_Description": "\"Rlaan cruiser\"\n", - "shield_facets": "0" + "Textual_Description": "\"Rlaan cruiser\"\n" }, { "Key": "lodur.blank", - "Textual_Description": "\"Rlaan cruiser\"\n", - "shield_facets": "0" + "Textual_Description": "\"Rlaan cruiser\"\n" }, { "Key": "thrud", - "Textual_Description": "\"Rlaan mass production fighter\"\n", - "shield_facets": "0" + "Textual_Description": "\"Rlaan mass production fighter\"\n" }, { "Key": "thrud.blank", - "Textual_Description": "\"Rlaan mass production fighter\"\n", - "shield_facets": "0" + "Textual_Description": "\"Rlaan mass production fighter\"\n" }, { "Key": "vark", - "Textual_Description": "\"A venerable Aeran destroyer, the Agasicles is designed far more for screening efforts than for capital engagements, but is nimble for a ship its size and dangerous in close quarters.\"\n", - "shield_facets": "0" + "Textual_Description": "\"A venerable Aeran destroyer, the Agasicles is designed far more for screening efforts than for capital engagements, but is nimble for a ship its size and dangerous in close quarters.\"\n" }, { "Key": "vark.blank", - "Textual_Description": "\"A venerable Aeran destroyer, the Agasicles is designed far more for screening efforts than for capital engagements, but is nimble for a ship its size and dangerous in close quarters.\"\n", - "shield_facets": "0" + "Textual_Description": "\"A venerable Aeran destroyer, the Agasicles is designed far more for screening efforts than for capital engagements, but is nimble for a ship its size and dangerous in close quarters.\"\n" }, { "Key": "vidar", - "Textual_Description": "\"Rlaan mass production assault craft\"\n", - "shield_facets": "0" + "Textual_Description": "\"Rlaan mass production assault craft\"\n" }, { "Key": "vidar.blank", - "Textual_Description": "\"Rlaan mass production assault craft\"\n", - "shield_facets": "0" + "Textual_Description": "\"Rlaan mass production assault craft\"\n" }, { "Key": "vitik", - "Textual_Description": "\"A carrier built on a scale of paranoid grandeur, this Aeran vessel is as much mobile base as anything else, packing sufficient supplies for prolonged engagements with contested supply lines.\"\n", - "shield_facets": "0" + "Textual_Description": "\"A carrier built on a scale of paranoid grandeur, this Aeran vessel is as much mobile base as anything else, packing sufficient supplies for prolonged engagements with contested supply lines.\"\n" }, { "Key": "vitik.blank", - "Textual_Description": "\"A carrier built on a scale of paranoid grandeur, this Aeran vessel is as much mobile base as anything else, packing sufficient supplies for prolonged engagements with contested supply lines.\"\n", - "shield_facets": "0" + "Textual_Description": "\"A carrier built on a scale of paranoid grandeur, this Aeran vessel is as much mobile base as anything else, packing sufficient supplies for prolonged engagements with contested supply lines.\"\n" }, { "Key": "yavok", - "Textual_Description": "\"The Dreadnaught of the modern day, these Aeran battleships pack so many innovations and so much firepower into a single vessel that it is unfair to categorize it with other battlecruisers or battleships.\"\n", - "shield_facets": "0" + "Textual_Description": "\"The Dreadnaught of the modern day, these Aeran battleships pack so many innovations and so much firepower into a single vessel that it is unfair to categorize it with other battlecruisers or battleships.\"\n" }, { "Key": "yavok.blank", - "Textual_Description": "\"The Dreadnaught of the modern day, these Aeran battleships pack so many innovations and so much firepower into a single vessel that it is unfair to categorize it with other battlecruisers or battleships.\"\n", - "shield_facets": "0" + "Textual_Description": "\"The Dreadnaught of the modern day, these Aeran battleships pack so many innovations and so much firepower into a single vessel that it is unfair to categorize it with other battlecruisers or battleships.\"\n" }, { "Key": "yrilan", - "Textual_Description": "\"Aeran cruiser, of venerable tenure of service.\"\n", - "shield_facets": "0" + "Textual_Description": "\"Aeran cruiser, of venerable tenure of service.\"\n" }, { "Key": "yrilan.blank", - "Textual_Description": "\"Aeran cruiser, of venerable tenure of service.\"\n", - "shield_facets": "0" + "Textual_Description": "\"Aeran cruiser, of venerable tenure of service.\"\n" }, { "Key": "spec_capacitor01__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" }, { "Key": "spec_capacitor02__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" }, { "Key": "spec_capacitor03__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" }, { "Key": "spec_capacitor04__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" }, { "Key": "spec_capacitor05__upgrades", - "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/reactor_capacitance.png@Capacitor for storing energy for FTL travel\"\n" }, { "Key": "cargo_expansion__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@Trades upgrade space and support systems for cargo volume\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@Trades upgrade space and support systems for cargo volume\"\n" }, { "Key": "laser01__upgrades", - "Textual_Description": "\"@upgrades/light.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/light.png@\"\n" }, { "Key": "laser02__upgrades", - "Textual_Description": "\"@upgrades/light.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/light.png@\"\n" }, { "Key": "laser03__upgrades", - "Textual_Description": "\"@upgrades/light.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/light.png@\"\n" }, { "Key": "laser04__upgrades", - "Textual_Description": "\"@upgrades/light.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/light.png@\"\n" }, { "Key": "meson01__upgrades", - "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n" }, { "Key": "meson02__upgrades", - "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n" }, { "Key": "meson03__upgrades", - "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n" }, { "Key": "meson04__upgrades", - "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/accelerator_gun.png@\"\n" }, { "Key": "plasma01__upgrades", - "Textual_Description": "\"@upgrades/heavy.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/heavy.png@\"\n" }, { "Key": "plasma02__upgrades", - "Textual_Description": "\"@upgrades/heavy.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/heavy.png@\"\n" }, { "Key": "plasma03__upgrades", - "Textual_Description": "\"@upgrades/heavy.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/heavy.png@\"\n" }, { "Key": "plasma04__upgrades", - "Textual_Description": "\"@upgrades/heavy.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/heavy.png@\"\n" }, { "Key": "disruptor01__upgrades", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" }, { "Key": "disruptor02__upgrades", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" }, { "Key": "disruptor03__upgrades", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" }, { "Key": "disruptor04__upgrades", - "Textual_Description": "\"@upgrades/razor_gun.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/razor_gun.png@\"\n" }, { "Key": "photon01__upgrades", - "Textual_Description": "\"@upgrades/beam2.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/beam2.png@\"\n" }, { "Key": "photon02__upgrades", - "Textual_Description": "\"@upgrades/beam2.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/beam2.png@\"\n" }, { "Key": "photon03__upgrades", - "Textual_Description": "\"@upgrades/beam3.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/beam3.png@\"\n" }, { "Key": "photon04__upgrades", - "Textual_Description": "\"@upgrades/beam3.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/beam3.png@\"\n" }, { "Key": "MiniGravThumper_ammo__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "fusion_heavy__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "lr_laser_beam__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "disruptor_cannon__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "fusion_gun__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "ion__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "ion_beam_heavy__upgrades", - "Textual_Description": "\"@upgrades/medium.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/medium.png@\"\n" }, { "Key": "laser_beam__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "mass_driver__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@Long before the dawn of modern man, it was known to various hominids that hurling a blunt object was a reasonable way to deliver damage from a distance. Fittingly enough, the worlds of the Purist faction are among the chief manufacturers of mass drivers.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@Long before the dawn of modern man, it was known to various hominids that hurling a blunt object was a reasonable way to deliver damage from a distance. Fittingly enough, the worlds of the Purist faction are among the chief manufacturers of mass drivers.\"\n" }, { "Key": "meson_blaster__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "neutron_gun__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "particle_cannon__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "photon_gun__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "plasma_gun__upgrades", - "Textual_Description": "\"@cargo/cargo_hud.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo_hud.png@\"\n" }, { "Key": "antimatter__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "capship_disruptor__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "gauss_ammo__upgrades", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "hadouken__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "javelin__upgrades", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "killer_bee_ammo__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "killerbee_ammo__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "lr_beam__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "mace__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "maul_ammo__upgrades", - "Textual_Description": "\"@upgrades/maul.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/maul.png@\"\n" }, { "Key": "photon_swarm__upgrades", - "Textual_Description": "\"@upgrades/missile.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/missile.png@\"\n" }, { "Key": "porcupine_mine__upgrades", - "Textual_Description": "\"@upgrades/porcupine_mine.png@\"\n", - "shield_facets": "0" + "Textual_Description": "\"@upgrades/porcupine_mine.png@\"\n" }, { "Key": "thermopylae__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "pmiss\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "carribean__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "deimos__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "desert__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "Dirt__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "earth__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "ganymede__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "industrial__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "j_class__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "jump__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "k_class__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "Lava__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "m_class__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "mars__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "moon__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "n_class__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "newdetroit__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "ocean__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "Snow__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "tkirsa__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "tundra__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "university__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "starfortressinner__rlaan", - "Textual_Description": "\"WRITEME\"\n", - "shield_facets": "0" + "Textual_Description": "\"WRITEME\"\n" }, { "Key": "starfortressouter__rlaan", - "Textual_Description": "\"WRITEME\"\n", - "shield_facets": "0" + "Textual_Description": "\"WRITEME\"\n" }, { "Key": "orange_star__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "red_star__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "sun__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "white_star__planets\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "aera_mil_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "aera_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "confed_mil_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "confed_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "iso_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "pirate_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "rlaan_mil_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "rlaan_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "standard_missions__upgrades\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "contraband\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "contraband.blank\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "contraband.template\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "contraband__aera\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "contraband__confed\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "contraband__luddites\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "contraband__rlaan\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "navpoint\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "navpoint.blank\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "navpoint.template\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "landscape\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "landscape.template\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "ABelt__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AField__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AFieldBase__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AFieldBaseSparse__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AFieldBaseThin__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AFieldJump__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AFieldJumpSparse__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AFieldJumpThin__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AFieldSparse__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "AFieldThin__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "asteroids__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "asteroids1600gap__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "asteroids200gap__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "asteroids400gap__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "asteroids800gap__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "green-nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "green-nebula.nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "HiddenAsteroid__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "nebula_veryhuge__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "nebula_veryhuge.nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "nebula.bigger1.xmesh__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "nebula.bigger2.xmesh__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "nebula.bigger3.xmesh__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "nebula.bigger4.xmesh__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "nebula.nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "purple-nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "purple-nebula.nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "red-nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "red-nebula.nebula__neutral\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "wormhole.neutral.stable\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "wormhole.stable\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "wormhole.stableglownetsaccessory\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "wormhole.unstable\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "wormhole.unstableglownetsaccessory\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "wormhole.unstableswirlsaccessory\"", - "Textual_Description": "\n", - "shield_facets": "0" + "Textual_Description": "\n" }, { "Key": "First_Class_Passenger", - "Textual_Description": "\"@cargo/cargo-hud.png@If you are taking first class passengers around, they had better have all the amenities one expects.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@If you are taking first class passengers around, they had better have all the amenities one expects.\"\n" }, { "Key": "Business_Class_Passenger", - "Textual_Description": "\"@cargo/cargo-hud.png@With a laptop and a wide rear, the business class passenger enjoys some of the room of the first class passenger.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@With a laptop and a wide rear, the business class passenger enjoys some of the room of the first class passenger.\"\n" }, { "Key": "AI_Cores", - "Textual_Description": "\"@cargo/ai_cores.png@Because if they have to ride with the cargo, they start calling you Dave.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/ai_cores.png@Because if they have to ride with the cargo, they start calling you Dave.\"\n" }, { "Key": "Frozen_Colonist", - "Textual_Description": "\"@cargo/frozen_colonist.png@Polite, space-efficient, doesn't try to back-seat pilot, doesn't care how long it takes to get there. Unfortunately, being technically, if only temporarily, deceased - not much for conversation.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/frozen_colonist.png@Polite, space-efficient, doesn't try to back-seat pilot, doesn't care how long it takes to get there. Unfortunately, being technically, if only temporarily, deceased - not much for conversation.\"\n" }, { "Key": "Hitchhiker", - "Textual_Description": "\"@cargo/steerage_class@Always brings a towel of his/her own\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/steerage_class@Always brings a towel of his/her own\"\n" }, { "Key": "Standard_Mealpacks", - "Textual_Description": "\"@cargo/standard_mealpacks.png@Food! Glorious food! Hot TVP and Soymilk!\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/standard_mealpacks.png@Food! Glorious food! Hot TVP and Soymilk!\"\n" }, { "Key": "Luxury_Foods", - "Textual_Description": "\"@cargo/luxury_mealpacks.png@Containing such rarities as actual game meat and imported specialty products, these bundles of luxury items are primarily purchased only by upscale hotels and restaurants.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/luxury_mealpacks.png@Containing such rarities as actual game meat and imported specialty products, these bundles of luxury items are primarily purchased only by upscale hotels and restaurants.\"\n" }, { "Key": "Filtered_Water", - "Textual_Description": "\"@cargo/fresh_water.png@While no colony world settled by Humans or Aera is without substantial natural water supplies, mining bases and orbital stations are always in need of re-supply.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/fresh_water.png@While no colony world settled by Humans or Aera is without substantial natural water supplies, mining bases and orbital stations are always in need of re-supply.\"\n" }, { "Key": "Aera_Ration", - "Textual_Description": "\"@cargo/cargo-hud.png@Containing utilitarian dehydrated meal bars with jerky for dessert, the Aera ration is human edible, but prolonged human consumption will result in eventual sickness and death due to alkaloid content.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Containing utilitarian dehydrated meal bars with jerky for dessert, the Aera ration is human edible, but prolonged human consumption will result in eventual sickness and death due to alkaloid content.\"\n" }, { "Key": "Jhurlon", - "Textual_Description": "\"@cargo/jhurlon.png@A native of the Bzbr world, the Jhurlon most closely resembles a boulder sized land dwelling abalone. While well protected against native predators, modern technology has made cutting through their shell somewhat easier.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/jhurlon.png@A native of the Bzbr world, the Jhurlon most closely resembles a boulder sized land dwelling abalone. While well protected against native predators, modern technology has made cutting through their shell somewhat easier.\"\n" }, { "Key": "Salted_Thok", - "Textual_Description": "\"@cargo/salted_thok.png@Though the Aera destroyed their jungle forests, the seas fared better, and continue to produce this tasty fish-like creature.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/salted_thok.png@Though the Aera destroyed their jungle forests, the seas fared better, and continue to produce this tasty fish-like creature.\"\n" }, { "Key": "Rlaan_Nutripack", - "Textual_Description": "\"@cargo/cargo-hud.png@Containing a protein brick, carb glop and fizzy drinks, even the Rlaan find something to be desired in the aesthetic.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Containing a protein brick, carb glop and fizzy drinks, even the Rlaan find something to be desired in the aesthetic.\"\n" }, { "Key": "Rlaan_Luxury_Nutripack", - "Textual_Description": "\"@cargo/cargo-hud.png@Featuring the Rlaan equivalent of haggis served with the Rlaan equivalent of lutefisk, one can only conjecture that the Rlaan are not to be trusted with the culinary decisions of other species.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Featuring the Rlaan equivalent of haggis served with the Rlaan equivalent of lutefisk, one can only conjecture that the Rlaan are not to be trusted with the culinary decisions of other species.\"\n" }, { "Key": "Rlaan_Generic_Nutripack", - "Textual_Description": "\"@cargo/cargo-hud.png@Consisting primarily of amonia solutions and gels stored at temperatures such that the ammonia is liquid, opening one of these packages is usually a fatal experience for an unprepared human.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Consisting primarily of amonia solutions and gels stored at temperatures such that the ammonia is liquid, opening one of these packages is usually a fatal experience for an unprepared human.\"\n" }, { "Key": "Coffee", - "Textual_Description": "\"@cargo/coffee.png@Generation upon generation of addicts have made the production of coffee one of the largest industries in known space.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/coffee.png@Generation upon generation of addicts have made the production of coffee one of the largest industries in known space.\"\n" }, { "Key": "Animal_Products", - "Textual_Description": "\"@cargo/animal_products.png@Typically diary, eggs, caviar and other products of various animal internal organs, they remain a food source of high nutritional value for all species, and some diners derive a twisted pleasure from eating foods originating from such a source.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/animal_products.png@Typically diary, eggs, caviar and other products of various animal internal organs, they remain a food source of high nutritional value for all species, and some diners derive a twisted pleasure from eating foods originating from such a source.\"\n" }, { "Key": "Grains", - "Textual_Description": "\"@cargo/grains.png@The edible grass seeds, grains, and the carbohydrates garnered from them, are a pillar of an omnivorous diet. When fermented properly, they become the pillars of a liquid diet.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/grains.png@The edible grass seeds, grains, and the carbohydrates garnered from them, are a pillar of an omnivorous diet. When fermented properly, they become the pillars of a liquid diet.\"\n" }, { "Key": "Seafood", - "Textual_Description": "\"@cargo/seafood.png@The only common meats not vat-grown, fish, or the local equivalent, if edible, are the mainstays of agro-planet diets.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/seafood.png@The only common meats not vat-grown, fish, or the local equivalent, if edible, are the mainstays of agro-planet diets.\"\n" }, { "Key": "Meats", - "Textual_Description": "\"@cargo/animal_meat.png@As range animals are too resource intensive, nearly all meat is vat grown.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/animal_meat.png@As range animals are too resource intensive, nearly all meat is vat grown.\"\n" }, { "Key": "Produce", - "Textual_Description": "\"@cargo/produce.png@While space facilities grow an algae sludge for basic food use, it makes a lousy salad.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/produce.png@While space facilities grow an algae sludge for basic food use, it makes a lousy salad.\"\n" }, { "Key": "Malt_Beverages", - "Textual_Description": "\"@cargo/cargo-hud.png@Beer! (It's what's for dinner.)\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Beer! (It's what's for dinner.)\"\n" }, { "Key": "Specialty_Wines", - "Textual_Description": "\"@cargo/arkturian_wines.png@Finely crafted wines from carefully cultivated vinyards. Unlike the cheap wines from farm planets devoted to wine production, every bottle contains liquid craftsmanship and the potential for culinary exploration.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/arkturian_wines.png@Finely crafted wines from carefully cultivated vinyards. Unlike the cheap wines from farm planets devoted to wine production, every bottle contains liquid craftsmanship and the potential for culinary exploration.\"\n" }, { "Key": "Bulk_Wines", - "Textual_Description": "\"@cargo/wine.png@Long the purvey of French snobs competing with Californian snobs, wine making is now the purvey of French snobs from several planets competing with Californian snobs from several planets. Red wine is differentiated from white wine in that it tastes progressively more and worse the cheaper the wine gets. White wine is differentiated from red wine in that as the wine gets cheaper, it begins to taste more like the water it appears to be.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/wine.png@Long the purvey of French snobs competing with Californian snobs, wine making is now the purvey of French snobs from several planets competing with Californian snobs from several planets. Red wine is differentiated from white wine in that it tastes progressively more and worse the cheaper the wine gets. White wine is differentiated from red wine in that as the wine gets cheaper, it begins to taste more like the water it appears to be.\"\n" }, { "Key": "Spirits", - "Textual_Description": "\"@cargo/spirits.png@Spirits are those liquors of sufficiently indeterminate make and origin that one can at best say they were produced in the spirit of being potable.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/spirits.png@Spirits are those liquors of sufficiently indeterminate make and origin that one can at best say they were produced in the spirit of being potable.\"\n" }, { "Key": "Brandy", - "Textual_Description": "\"@cargo/cargo-hud.png@Fermented fruit, distilled into liver quaking perfection. Notably, after humans expanded offworld, people stopped caring as much as to whether their brandy came from the Cognac region...\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Fermented fruit, distilled into liver quaking perfection. Notably, after humans expanded offworld, people stopped caring as much as to whether their brandy came from the Cognac region...\"\n" }, { "Key": "Space_Grog", - "Textual_Description": "\"@cargo/space_grog.png@Unprofessionally distilled fermented sugar product. Because candy is dandy, but liquor is quicker ... and the local rot-gut is even cheaper.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/space_grog.png@Unprofessionally distilled fermented sugar product. Because candy is dandy, but liquor is quicker ... and the local rot-gut is even cheaper.\"\n" }, { "Key": "Tripezian_Premium", - "Textual_Description": "\"@cargo/tripezian_premium.png@Taste the flavour of the Frontier! Tripezian Ale is the product of fermented tripezian berries, an alien fruit lethal when eaten, but whose fermented juices have an intense and exotic flavour. Tripezian berries are produced on only a few worlds, andin limited quantities. This makes Tripezian Ale one of the most expensive and sought after beverages in all of known space.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/tripezian_premium.png@Taste the flavour of the Frontier! Tripezian Ale is the product of fermented tripezian berries, an alien fruit lethal when eaten, but whose fermented juices have an intense and exotic flavour. Tripezian berries are produced on only a few worlds, andin limited quantities. This makes Tripezian Ale one of the most expensive and sought after beverages in all of known space.\"\n" }, { "Key": "Sarakan_Tears", - "Textual_Description": "\"@cargo/sarakan_tears.png@Distilled from the sap of the Sarak bush, this spirit defines the old adage 'Whatever doesn't kill you, will numb the mouth, burn the throat, upset the stomach, tear you a new one, and leave you with a nice rosey outlook towards the universe!\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/sarakan_tears.png@Distilled from the sap of the Sarak bush, this spirit defines the old adage 'Whatever doesn't kill you, will numb the mouth, burn the throat, upset the stomach, tear you a new one, and leave you with a nice rosey outlook towards the universe!\"\n" }, { "Key": "Cotton", - "Textual_Description": "\"@cargo/cotton.png@Long used as a fabric in clothing, textiles and home furnishings, cotton remains remains in demand despite the numerous syynthetic alternatives.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cotton.png@Long used as a fabric in clothing, textiles and home furnishings, cotton remains remains in demand despite the numerous syynthetic alternatives.\"\n" }, { "Key": "Incense", - "Textual_Description": "\"@cargo/incense.png@Consisting of compressed fragrant plantlife, oils and the occasional recreational drug, incense is used for both religious purposes, and by the mass market for relaxation.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/incense.png@Consisting of compressed fragrant plantlife, oils and the occasional recreational drug, incense is used for both religious purposes, and by the mass market for relaxation.\"\n" }, { "Key": "Bonsai", - "Textual_Description": "\"@cargo/bonsai.png@The ancient art of Bonsai (crudely: Tree Pruning) creates easily transportable plant shapes of all exotic shape and bent. In high demand for their aesthetic appearance, they are often used to complete landscaped visual surrounds. A secondary use is their calming effect while caring for your Bonsai.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/bonsai.png@The ancient art of Bonsai (crudely: Tree Pruning) creates easily transportable plant shapes of all exotic shape and bent. In high demand for their aesthetic appearance, they are often used to complete landscaped visual surrounds. A secondary use is their calming effect while caring for your Bonsai.\"\n" }, { "Key": "Khaisalantimin_F62", - "Textual_Description": "\"@cargo/khaisalantimin_F62.png@Produced by a genetically engineered hybrid of Terran and Xeno flora, the F62 variant of the extract of the seeds of the Khaisal plant induces a prolonged state of euphoria in humans. While the extract is not intrinsically toxic and withdrawl is remarkably mild, problems arise due to rapidly increasing tolerance and lost productivity due to usage.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/khaisalantimin_F62.png@Produced by a genetically engineered hybrid of Terran and Xeno flora, the F62 variant of the extract of the seeds of the Khaisal plant induces a prolonged state of euphoria in humans. While the extract is not intrinsically toxic and withdrawl is remarkably mild, problems arise due to rapidly increasing tolerance and lost productivity due to usage.\"\n" }, { "Key": "Tobacco", - "Textual_Description": "\"@cargo/cargo-hud.png@The tobacco plant, native to Terra, is the source of the pesticide Nicotine. Tobacco leaves, when cured and burned, release the addictive pesticide, along with numerous carcinogens. So far, no species other than humanity has been stupid enough to use the addictive pesticide recreationally.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@The tobacco plant, native to Terra, is the source of the pesticide Nicotine. Tobacco leaves, when cured and burned, release the addictive pesticide, along with numerous carcinogens. So far, no species other than humanity has been stupid enough to use the addictive pesticide recreationally.\"\n" }, { "Key": "Water", - "Textual_Description": "\"@cargo/heavy_water.png@Also known as the universal solvent, water is a useful substance, even to those species that do not require it biologically.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/heavy_water.png@Also known as the universal solvent, water is a useful substance, even to those species that do not require it biologically.\"\n" }, { "Key": "Rubber", - "Textual_Description": "\"@cargo/rubber.png@An elastic substance that is obtained by coagulating the milky juice of various tropical plants, prepared as sheets then dried and cut. Basic uses include preventing 18-21 years of child support payments.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/rubber.png@An elastic substance that is obtained by coagulating the milky juice of various tropical plants, prepared as sheets then dried and cut. Basic uses include preventing 18-21 years of child support payments.\"\n" }, { "Key": "Livestock", - "Textual_Description": "\"@cargo/erotica.png@Without goats and sheep, the world of good cheese would be greatly crippled.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/erotica.png@Without goats and sheep, the world of good cheese would be greatly crippled.\"\n" }, { "Key": "Lumber", - "Textual_Description": "\"@cargo/lumber.png@While wood is no longer as common a building material for structural aspects, it remains an aesthetic desired by many residents of paved industrial worlds.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/lumber.png@While wood is no longer as common a building material for structural aspects, it remains an aesthetic desired by many residents of paved industrial worlds.\"\n" }, { "Key": "Iron_Ore", - "Textual_Description": "\"@cargo/base.png@Iron has been vital in the histories of all of the spacefaring races. The prime variance is the ratio of cast iron cookware to iron and steel killingware.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/base.png@Iron has been vital in the histories of all of the spacefaring races. The prime variance is the ratio of cast iron cookware to iron and steel killingware.\"\n" }, { "Key": "Nickel_Ore", - "Textual_Description": "\"@cargo/base.png@Useful as an anti-corrosive coating, nickel is often mined in bulk from nickel-iron asteroids.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/base.png@Useful as an anti-corrosive coating, nickel is often mined in bulk from nickel-iron asteroids.\"\n" }, { "Key": "Tin_Ore", - "Textual_Description": "\"@cargo/base.png@Absent tin, the interstellar sardine trade would flounder.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/base.png@Absent tin, the interstellar sardine trade would flounder.\"\n" }, { "Key": "Tungsten_Ore", - "Textual_Description": "\"@cargo/base.png@Due to its exceptional melting temperature and continued tensile strength at high temperatures, tungsten is a vital part of the spacefaring industry.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/base.png@Due to its exceptional melting temperature and continued tensile strength at high temperatures, tungsten is a vital part of the spacefaring industry.\"\n" }, { "Key": "Alkali_Metals", - "Textual_Description": "\"@cargo/base.png@Caution: Do not clean with water.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/base.png@Caution: Do not clean with water.\"\n" }, { "Key": "Gold", - "Textual_Description": "\"@cargo/precious.png@An exceptionally ductile metal, gold has long been used for the manufacture of useless, albeit pretty, constructions. It's conductive properties have, over the last millenium, given it roles in more useful applications.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/precious.png@An exceptionally ductile metal, gold has long been used for the manufacture of useless, albeit pretty, constructions. It's conductive properties have, over the last millenium, given it roles in more useful applications.\"\n" }, { "Key": "Anti_Corrosives", - "Textual_Description": "\"@cargo/cargo-hud.png@Exemplified by such metals as Platinum ,prized for its luster and resistance to corrosion, the rarity of these metals leads to their value.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Exemplified by such metals as Platinum ,prized for its luster and resistance to corrosion, the rarity of these metals leads to their value.\"\n" }, { "Key": "Rare_Earth", - "Textual_Description": "\"@cargo/cargo-hud.png@Dense rare earth metals for alloy use such as Osmium and Irridium.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Dense rare earth metals for alloy use such as Osmium and Irridium.\"\n" }, { "Key": "Isometal", - "Textual_Description": "\"@cargo/isometal.png@The generic term for any metal or alloy which has been strengthened via a slow thermal reduction cycle, it is also the brand name for one company's iridium, steel, and titanium alloy. \"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/isometal.png@The generic term for any metal or alloy which has been strengthened via a slow thermal reduction cycle, it is also the brand name for one company's iridium, steel, and titanium alloy. \"\n" }, { "Key": "Plasteel", - "Textual_Description": "\"@cargo/cargo-hud.png@More carbon than steel, this substance consists of steel reinforced by countless carbon nanotubes.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@More carbon than steel, this substance consists of steel reinforced by countless carbon nanotubes.\"\n" }, { "Key": "Steel", - "Textual_Description": "\"@cargo/steel.png@Although it has been surpassed in performance, when it comes to cost-performance, steel is always a contender, especially on less developed worlds.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/steel.png@Although it has been surpassed in performance, when it comes to cost-performance, steel is always a contender, especially on less developed worlds.\"\n" }, { "Key": "Polysteel", - "Textual_Description": "\"@cargo/cargo-hud.png@An intricate filadough-like sandwich of metals and ceramics glued together by carbon polymers.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@An intricate filadough-like sandwich of metals and ceramics glued together by carbon polymers.\"\n" }, { "Key": "Tritanium", - "Textual_Description": "\"@cargo/tritanium.png@An alloy formed of titanium, osmium, and iridium.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/tritanium.png@An alloy formed of titanium, osmium, and iridium.\"\n" }, { "Key": "Duranium", - "Textual_Description": "\"@cargo/cargo-hud.png@Sacrificing increased mass for increased protection, massive slabs of depleted uranium are mixed with osmium and encased in an ablative coating of tantalum carbide.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Sacrificing increased mass for increased protection, massive slabs of depleted uranium are mixed with osmium and encased in an ablative coating of tantalum carbide.\"\n" }, { "Key": "Obsidisteel", - "Textual_Description": "\"@cargo/obsidisteel.png@A combination of metals and silicate oxides, this dark, hard substance is prized for its use in the art world.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/obsidisteel.png@A combination of metals and silicate oxides, this dark, hard substance is prized for its use in the art world.\"\n" }, { "Key": "Carbonium", - "Textual_Description": "\"@cargo/carbonium.png@A mix of tungsten and tantalum, into which have been introduced carbons (from a biological source), it is used in certain high temperature applications.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/carbonium.png@A mix of tungsten and tantalum, into which have been introduced carbons (from a biological source), it is used in certain high temperature applications.\"\n" }, { "Key": "Radium", - "Textual_Description": "\"@cargo/radioactives.png@A wonderful ingredient for glowing paints.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/radioactives.png@A wonderful ingredient for glowing paints.\"\n" }, { "Key": "Thorium", - "Textual_Description": "\"@cargo/radioactives.png@An exceptionally common source of nuclear power, it is also known for the exceptional melting points of its oxide.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/radioactives.png@An exceptionally common source of nuclear power, it is also known for the exceptional melting points of its oxide.\"\n" }, { "Key": "Uranium", - "Textual_Description": "\"@cargo/radioactives.png@A rather common radioactive used primarily in fission piles. The depleted isotopes are used in kinetic impact weapons.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/radioactives.png@A rather common radioactive used primarily in fission piles. The depleted isotopes are used in kinetic impact weapons.\"\n" }, { "Key": "Diamonds", - "Textual_Description": "\"@cargo/cargo-hud.png@Exceptionally hard, and useful for many industrial purposes, these carbon lattice crystals have long been loved for their gleaming appearance. Even though the differences are no longer perceptable between manufactured and natural diamonds, there are still those willing to pay more for those hewn from the rock.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Exceptionally hard, and useful for many industrial purposes, these carbon lattice crystals have long been loved for their gleaming appearance. Even though the differences are no longer perceptable between manufactured and natural diamonds, there are still those willing to pay more for those hewn from the rock.\"\n" }, { "Key": "Emeralds", - "Textual_Description": "\"@cargo/cargo-hud.png@A translucent green variety of beryl. Perfect for creating that Oz look.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A translucent green variety of beryl. Perfect for creating that Oz look.\"\n" }, { "Key": "Rubies", - "Textual_Description": "\"@cargo/cargo-hud.png@Red translucent variety of corundum. Work well on shoes.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Red translucent variety of corundum. Work well on shoes.\"\n" }, { "Key": "Corundum_Crystals", - "Textual_Description": "\"@cargo/cargo-hud.png@A hard aluminum oxide, the common forms of which are used as abrasives.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A hard aluminum oxide, the common forms of which are used as abrasives.\"\n" }, { "Key": "Dilithium_Crystals", - "Textual_Description": "\"@cargo/cargo-hud.png@Dilithium telluride, while not particularly impressive, is always a desired item among the religious fanatics of the trekkie religion.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Dilithium telluride, while not particularly impressive, is always a desired item among the religious fanatics of the trekkie religion.\"\n" }, { "Key": "Quartz_Crystals", - "Textual_Description": "\"@cargo/cargo-hud.png@A useful component of cheap oscillators and cheap art.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A useful component of cheap oscillators and cheap art.\"\n" }, { "Key": "Trilithium_Crystals", - "Textual_Description": "\"@cargo/cargo-hud.png@Prized possessions of the trekkie religion, the crystals (trilithium nitride) have precious little actual value.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Prized possessions of the trekkie religion, the crystals (trilithium nitride) have precious little actual value.\"\n" }, { "Key": "Construction_Stone", - "Textual_Description": "\"@cargo/construction_stone.png@Cheap. Dense. Low-Tech. Gets the job done anyway.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/construction_stone.png@Cheap. Dense. Low-Tech. Gets the job done anyway.\"\n" }, { "Key": "Natural_Sculptures", - "Textual_Description": "\"@cargo/natural_sculptures.png@Originally considered waste, stone that has been carved by nature is now considered both decoration and art. Large slabs are used as wall decoration, while small pieces are used in artwork, or are works of art themselves.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/natural_sculptures.png@Originally considered waste, stone that has been carved by nature is now considered both decoration and art. Large slabs are used as wall decoration, while small pieces are used in artwork, or are works of art themselves.\"\n" }, { "Key": "Jade", - "Textual_Description": "\"@cargo/cargo-hud.png@Greenish. Somewhat expensive. Very retro.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Greenish. Somewhat expensive. Very retro.\"\n" }, { "Key": "Marble", - "Textual_Description": "\"@cargo/cargo-hud.png@A prized material for ancient sculptors and interior designers, marble still finds itself a prized material of sculptors and interior designers.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A prized material for ancient sculptors and interior designers, marble still finds itself a prized material of sculptors and interior designers.\"\n" }, { "Key": "Natural_Gas", - "Textual_Description": "\"@cargo/natural_gas.png@A combustible mixture of gases, usable as both a fuel and a raw material in production. A secondary source of such gas is the by-product of animal bio-waste.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/natural_gas.png@A combustible mixture of gases, usable as both a fuel and a raw material in production. A secondary source of such gas is the by-product of animal bio-waste.\"\n" }, { "Key": "Coal", - "Textual_Description": "\"@cargo/hydrocarbons.png@Ancient dead compressed carbon-life. Solid form.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/hydrocarbons.png@Ancient dead compressed carbon-life. Solid form.\"\n" }, { "Key": "Oil", - "Textual_Description": "\"@cargo/cargo-hud.png@Liquid lipids of various origin.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Liquid lipids of various origin.\"\n" }, { "Key": "Petroleum", - "Textual_Description": "\"@cargo/cargo-hud.png@Ancient dead carbon-life. Liquid form.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Ancient dead carbon-life. Liquid form.\"\n" }, { "Key": "Butane", - "Textual_Description": "\"@cargo/cargo-hud.png@Because sometimes, with all the technology around you, what you really want is a Zippo.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Because sometimes, with all the technology around you, what you really want is a Zippo.\"\n" }, { "Key": "Diesel", - "Textual_Description": "\"@cargo/petrochems.png@On planets where resupply is expensive, diesel is an efficient, if polluting, fuel of choice.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/petrochems.png@On planets where resupply is expensive, diesel is an efficient, if polluting, fuel of choice.\"\n" }, { "Key": "Deut-Deut_Fusion_Fuel", - "Textual_Description": "\"@cargo/nuclear_pods.png@Refined from heavy water, nearly pure deuterium is a cheap and abundant, if somewhat difficult to store and transport, source of energy.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/nuclear_pods.png@Refined from heavy water, nearly pure deuterium is a cheap and abundant, if somewhat difficult to store and transport, source of energy.\"\n" }, { "Key": "Baakgah", - "Textual_Description": "\"@cargo/cargo-hud.png@A fuel cell material that releases hydrogen in an easily controlled manner.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A fuel cell material that releases hydrogen in an easily controlled manner.\"\n" }, { "Key": "AntiMatter_Pack", - "Textual_Description": "\"@cargo/cargo-hud.png@Antimatter is held in an ionic lattice at low temperature. Energy is then drawn from the slow interaction between the antimatter and its surroundings.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Antimatter is held in an ionic lattice at low temperature. Energy is then drawn from the slow interaction between the antimatter and its surroundings.\"\n" }, { "Key": "Biopower_Pack", - "Textual_Description": "\"@cargo/cargo-hud.png@While its output is minimal, its efficiency is phenomenal. Living hydrogen emitting fuel cells, biopower packs are a key component of all Rlaan life-support systems.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While its output is minimal, its efficiency is phenomenal. Living hydrogen emitting fuel cells, biopower packs are a key component of all Rlaan life-support systems.\"\n" }, { "Key": "Chitty-chitty-boom-boom", - "Textual_Description": "\"@cargo/cargo-hud.png@An incredibly large, incredibly complex, and incredibly unstable hydrocarbon, CCBB is used in applications where fusion reactors are too large, antimatter cells are too expensive, and fission reactors are impractical. This tends to limit its use to power-tools and personal transport units.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@An incredibly large, incredibly complex, and incredibly unstable hydrocarbon, CCBB is used in applications where fusion reactors are too large, antimatter cells are too expensive, and fission reactors are impractical. This tends to limit its use to power-tools and personal transport units.\"\n" }, { "Key": "Compressed_Oxygen-Nitrogen_Atmosphere", - "Textual_Description": "\"@cargo/atmospheric_gases.png@Breathable - and not even in that sort of LA meets Mexico city sort of way.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/atmospheric_gases.png@Breathable - and not even in that sort of LA meets Mexico city sort of way.\"\n" }, { "Key": "Compressed_Methane-Breather_Atmosphere", - "Textual_Description": "\"@cargo/atmospheric_gases.png@Breathable - and not even in that sort of Aantlbzztkbzbrr meets Bzeentkbrraantl sort of way.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/atmospheric_gases.png@Breathable - and not even in that sort of Aantlbzztkbzbrr meets Bzeentkbrraantl sort of way.\"\n" }, { "Key": "Noble_Gases", - "Textual_Description": "\"@cargo/noble_gases.png@Otherwise known as the inert gases. Commonly used in refining, medical applications, general manufacturing as well as nuclear energy production and laser weapon production and research.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/noble_gases.png@Otherwise known as the inert gases. Commonly used in refining, medical applications, general manufacturing as well as nuclear energy production and laser weapon production and research.\"\n" }, { "Key": "Halogen_Gases", - "Textual_Description": "\"@cargo/halogen_gases.png@Caustic gasses - great for docking lights!\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/halogen_gases.png@Caustic gasses - great for docking lights!\"\n" }, { "Key": "Recycled_Electronics", - "Textual_Description": "\"@cargo/cargo-hud.png@Especially prized by the collectors of the arcane, though also prized by cheapskates, the garbage of the modern day is still valuable in its obsolescence.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Especially prized by the collectors of the arcane, though also prized by cheapskates, the garbage of the modern day is still valuable in its obsolescence.\"\n" }, { "Key": "Recycled_Metals", - "Textual_Description": "\"@cargo/cargo-hud.png@That which can be readily melted can be readily re-made.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@That which can be readily melted can be readily re-made.\"\n" }, { "Key": "Recycled_Oil", - "Textual_Description": "\"@cargo/cargo-hud.png@Given the prodigious use of hydrocarbons by sentient life, it is useful to reuse when possible.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Given the prodigious use of hydrocarbons by sentient life, it is useful to reuse when possible.\"\n" }, { "Key": "Recycled_Plastics", - "Textual_Description": "\"@cargo/cargo-hud.png@As nearly all human civilian products rely on hydrocarbon polymers, were there not a massive recycling program, humanity would have drowned under its own refuse.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@As nearly all human civilian products rely on hydrocarbon polymers, were there not a massive recycling program, humanity would have drowned under its own refuse.\"\n" }, { "Key": "Gears", - "Textual_Description": "\"@cargo/cargo-hud.png@There is no such thing as too much torque.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@There is no such thing as too much torque.\"\n" }, { "Key": "Lubricants", - "Textual_Description": "\"@cargo/cargo-hud.png@Much to the dismay of all mechanical systems, friction cannot be overcome. Much to the delight of all users of mechanical systems, great advances have been made in mitigating friction's undesired effects.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Much to the dismay of all mechanical systems, friction cannot be overcome. Much to the delight of all users of mechanical systems, great advances have been made in mitigating friction's undesired effects.\"\n" }, { "Key": "Spare_Parts", - "Textual_Description": "\"@cargo/cargo-hud.png@While the mean time to failure of solid-state components tends to be measured in decades, this does not tend to account for the type and degree of abuse that consumers will pile on their belongings.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While the mean time to failure of solid-state components tends to be measured in decades, this does not tend to account for the type and degree of abuse that consumers will pile on their belongings.\"\n" }, { "Key": "Aerospace_Ground_Equipment", - "Textual_Description": "\"@cargo/cargo-hud.png@While only small to medium sized craft are capable of planetary landing, the abuse taken by a spaceport due to dropships and other forms of cargo delivery requires that an elaborate array of maintenance equipment, spare parts, and freight loaders must be kept on hand at all times.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While only small to medium sized craft are capable of planetary landing, the abuse taken by a spaceport due to dropships and other forms of cargo delivery requires that an elaborate array of maintenance equipment, spare parts, and freight loaders must be kept on hand at all times.\"\n" }, { "Key": "Aerospace_Repair_Equipment", - "Textual_Description": "\"@cargo/cargo-hud.png@The special materials used in aerospace construction require special equipment for repair and maintenance. Given the dire frequencies of pirate attacks and other sources of damage, this equipment is in high demand.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@The special materials used in aerospace construction require special equipment for repair and maintenance. Given the dire frequencies of pirate attacks and other sources of damage, this equipment is in high demand.\"\n" }, { "Key": "Atmospheric_Scrubbers", - "Textual_Description": "\"@cargo/cargo-hud.png@Atmostpheric scrubbers consist of a series of screens, containers and filters to remove toxic wastes from an artificial atmosphere. As few if any spaceborn craft have an effective contained ecology, they require such artifical means of providing a sustained breathable atmosphere.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Atmostpheric scrubbers consist of a series of screens, containers and filters to remove toxic wastes from an artificial atmosphere. As few if any spaceborn craft have an effective contained ecology, they require such artifical means of providing a sustained breathable atmosphere.\"\n" }, { "Key": "Welding_Supplies", - "Textual_Description": "\"@cargo/cargo-hud.png@Though few know what their true purpose is, there always seem to be govenment projects in every colony that primarily consist of tearing up infrastructure and welding big metal plates over the holes until some second agency comes by a few years later to replace whatever was ripped out. There's also the whole starship construction buisness, but one wonders which is the bigger market.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Though few know what their true purpose is, there always seem to be govenment projects in every colony that primarily consist of tearing up infrastructure and welding big metal plates over the holes until some second agency comes by a few years later to replace whatever was ripped out. There's also the whole starship construction buisness, but one wonders which is the bigger market.\"\n" }, { "Key": "Self_Contained_Hydroponics", - "Textual_Description": "\"@cargo/cargo-hud.png@With the dawn of space travel, hydroponics wasn't just for growing herbs in your closet anymore.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@With the dawn of space travel, hydroponics wasn't just for growing herbs in your closet anymore.\"\n" }, { "Key": "Bulk_Seeds", - "Textual_Description": "\"@cargo/cargo-hud.png@Even if mono-culture is the name of the game, and automation of farms is nearly total, all non-native crops must still be brought in through interstellar shipping, and most agricultural colonies tend to lack the genetic research facilities to produce their own variants.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Even if mono-culture is the name of the game, and automation of farms is nearly total, all non-native crops must still be brought in through interstellar shipping, and most agricultural colonies tend to lack the genetic research facilities to produce their own variants.\"\n" }, { "Key": "Herbicides", - "Textual_Description": "\"@cargo/cargo-hud.png@Many planets have species that make kudzu look like a houseplant. These planets therefore also have markets full of colonists looking for some practical defoliants.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Many planets have species that make kudzu look like a houseplant. These planets therefore also have markets full of colonists looking for some practical defoliants.\"\n" }, { "Key": "Hydroponic_Supplies", - "Textual_Description": "\"@cargo/cargo-hud.png@Growing plants in a liquid solution offers flexibility in placement relative to soil planting. Especially useful in environments that do not actually have soil.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Growing plants in a liquid solution offers flexibility in placement relative to soil planting. Especially useful in environments that do not actually have soil.\"\n" }, { "Key": "Pesticides", - "Textual_Description": "\"@cargo/cargo-hud.png@No matter where one goes, it seems that every world capable of supporting life supports at least one species that is exceptionally annoying to whatever civilization attempts to colonize it. The age-old solution to this problem is to kill said species. Admittedly, doing so in a fashion that doesn't manage to hurt the colonists is still a subject of intense research. However, any pesticide producer will proudly claim that having a few babies born with the wrong number of legs is surely a small price to pay for not having disfiguring holes in all of the world's crops.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@No matter where one goes, it seems that every world capable of supporting life supports at least one species that is exceptionally annoying to whatever civilization attempts to colonize it. The age-old solution to this problem is to kill said species. Admittedly, doing so in a fashion that doesn't manage to hurt the colonists is still a subject of intense research. However, any pesticide producer will proudly claim that having a few babies born with the wrong number of legs is surely a small price to pay for not having disfiguring holes in all of the world's crops.\"\n" }, { "Key": "Synthetic_Fertilizer", - "Textual_Description": "\"@cargo/cargo-hud.png@When synthetic fertilizer became not only better, but cheaper and less smelly than those based on manure, few regretted switching over.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@When synthetic fertilizer became not only better, but cheaper and less smelly than those based on manure, few regretted switching over.\"\n" }, { "Key": "Engineered_Seeds", - "Textual_Description": "\"@cargo/cargo-hud.png@Genetically enhanced cropseed developed to remain fertile in some particular form of hostile soil, and to render the native lifeforms of that planet more edible. Luddite terrorists still protest the use of such products, despite the inability of many existing populations to otherwise feed themselves.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Genetically enhanced cropseed developed to remain fertile in some particular form of hostile soil, and to render the native lifeforms of that planet more edible. Luddite terrorists still protest the use of such products, despite the inability of many existing populations to otherwise feed themselves.\"\n" }, { "Key": "Boring_Droids", - "Textual_Description": "\"@cargo/boring_droids.png@Construction of mine shafts has never been so easy. Just let a few of these know where you want the tunnels, and come back a few days later to find huge mounds of debris a delightfully polished passageway.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/boring_droids.png@Construction of mine shafts has never been so easy. Just let a few of these know where you want the tunnels, and come back a few days later to find huge mounds of debris a delightfully polished passageway.\"\n" }, { "Key": "Laser_Drills", - "Textual_Description": "\"@cargo/cargo-hud.png@While the precise nature of the cuts produced by this drill add to its usefulness, it is fact that lasers never get dull or snagged on dense ore deposits that has caused the laser drill to replace all other competitors.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While the precise nature of the cuts produced by this drill add to its usefulness, it is fact that lasers never get dull or snagged on dense ore deposits that has caused the laser drill to replace all other competitors.\"\n" }, { "Key": "Light_Alls", - "Textual_Description": "\"@cargo/cargo-hud.png@There are few things more terrifying to an asteroid miner than the classic scene from the holovid movie 'The Dark Rock', wherein a group of asteroid miners' standard light droid loses power, and they are attacked by a hideous alien awoken by their mining. While no voracious aliens have ever actually been found in an asteroid mine, reality has never been been a particularly key component of marketing strategy.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@There are few things more terrifying to an asteroid miner than the classic scene from the holovid movie 'The Dark Rock', wherein a group of asteroid miners' standard light droid loses power, and they are attacked by a hideous alien awoken by their mining. While no voracious aliens have ever actually been found in an asteroid mine, reality has never been been a particularly key component of marketing strategy.\"\n" }, { "Key": "Utility_Vehicles", - "Textual_Description": "\"@cargo/cargo-hud.png@The ability to lift large masses and manipulate them dextrously in three dimensions is essential for construction and lacking in all known sentient beings. These machines make up for the shortcomings of biology.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@The ability to lift large masses and manipulate them dextrously in three dimensions is essential for construction and lacking in all known sentient beings. These machines make up for the shortcomings of biology.\"\n" }, { "Key": "PreFab_Buildings", - "Textual_Description": "\"@cargo/cargo-hud.png@Unless one is absurdly wealthy, one lives in a building made out of modular components just like these.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Unless one is absurdly wealthy, one lives in a building made out of modular components just like these.\"\n" }, { "Key": "Landscaping_Equipment", - "Textual_Description": "\"@cargo/cargo-hud.png@For when that hill is blocking your view, you want to recreate your garden surrounds in the latest style, or just want to cover up that unsightly nuclear waste dump.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@For when that hill is blocking your view, you want to recreate your garden surrounds in the latest style, or just want to cover up that unsightly nuclear waste dump.\"\n" }, { "Key": "BioApplicator", - "Textual_Description": "\"@cargo/cargo-hud.png@Essentially a vat full of genetically engineered bacteria with some valves and a spray nozzle, this device is used to create and apply the complex proteins that the Rlaan use as a basic construction material. When the goop sprayed out of the nozzle reacts with the methane atmosphere present on nearly all Rlaan worlds, the proteins produced by the bacteria denature into the desired solid form.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Essentially a vat full of genetically engineered bacteria with some valves and a spray nozzle, this device is used to create and apply the complex proteins that the Rlaan use as a basic construction material. When the goop sprayed out of the nozzle reacts with the methane atmosphere present on nearly all Rlaan worlds, the proteins produced by the bacteria denature into the desired solid form.\"\n" }, { "Key": "BioRemodeler", - "Textual_Description": "\"@cargo/cargo-hud.png@This device applies a set of enzymes that sufficiently liquify the organics used in most Rlaan construction so that they can be altered.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@This device applies a set of enzymes that sufficiently liquify the organics used in most Rlaan construction so that they can be altered.\"\n" }, { "Key": "First_Aid_Kits", - "Textual_Description": "\"@cargo/cargo-hud.png@While the contents have changed countless times, these kits can be found in every public transport and in every overprotective mother's travel bags.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While the contents have changed countless times, these kits can be found in every public transport and in every overprotective mother's travel bags.\"\n" }, { "Key": "Aera_First_Aid_Kit", - "Textual_Description": "\"@cargo/cargo-hud.png@Given their somewhat similar chemical makeup, the Aera First-Aid kit contains many items similar or analogous to those found in a Human kit. Of noteworthy exception, however, is the standard issue in all Aera packs of a suicide pill marked with a lable that translates to 'For use in conjunction with eventually terminal trauma.'\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Given their somewhat similar chemical makeup, the Aera First-Aid kit contains many items similar or analogous to those found in a Human kit. Of noteworthy exception, however, is the standard issue in all Aera packs of a suicide pill marked with a lable that translates to 'For use in conjunction with eventually terminal trauma.'\"\n" }, { "Key": "Pseudotherms", - "Textual_Description": "\"@cargo/cargo-hud.png@The Aera originated on a warm world, and are subject to episodes of reduced functionality if caught unprepared in a frigid environment. These coveralls are packed with shielded isotopes and spectral converters that are guaranteed to warm an Aera back up to body temperature within a few minutes.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@The Aera originated on a warm world, and are subject to episodes of reduced functionality if caught unprepared in a frigid environment. These coveralls are packed with shielded isotopes and spectral converters that are guaranteed to warm an Aera back up to body temperature within a few minutes.\"\n" }, { "Key": "DNA_Resequencer", - "Textual_Description": "\"@cargo/cargo-hud.png@This portable device can take any DNA sample and transcribe it into the more familiar Rlaan analogs so that it may be more conveniently analyzed.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@This portable device can take any DNA sample and transcribe it into the more familiar Rlaan analogs so that it may be more conveniently analyzed.\"\n" }, { "Key": "Rlaan_Cellular_Regrowth_Accelerant", - "Textual_Description": "\"@cargo/cargo-hud.png@A gel pack of complex organic muck that when applied to the site of an injury, will greatly increase the rate of a Rlaan's healing process.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A gel pack of complex organic muck that when applied to the site of an injury, will greatly increase the rate of a Rlaan's healing process.\"\n" }, { "Key": "Cryogenic_Supplies", - "Textual_Description": "\"@cargo/cryogenic_pods.png@For the last thousand years humans have been freezing themselves (or their heads) in the hope that they will one day be revived. While the oddsmakers on New Vegas tend to see the survival rate ever breaking fifty/fifty as too close to call one way or the other, it is clear that our ability to freeze things has advanced rather more rapidly than our ability to defrost them.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cryogenic_pods.png@For the last thousand years humans have been freezing themselves (or their heads) in the hope that they will one day be revived. While the oddsmakers on New Vegas tend to see the survival rate ever breaking fifty/fifty as too close to call one way or the other, it is clear that our ability to freeze things has advanced rather more rapidly than our ability to defrost them.\"\n" }, { "Key": "Regen_Tank", - "Textual_Description": "\"@cargo/regen_tank.png@With advances in cellular research, the medical establishment has been able to restore lost or damaged cellular material. They have not, however, figured out how to stop the replacement part from itching the entire time it's growing back...\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/regen_tank.png@With advances in cellular research, the medical establishment has been able to restore lost or damaged cellular material. They have not, however, figured out how to stop the replacement part from itching the entire time it's growing back...\"\n" }, { "Key": "Syringes", - "Textual_Description": "\"@cargo/vaccines.png@Although no longer necessary for most rational purposes, certain segments of the medical community seem to still gain some perverse pleasure from jamming large hollow needles into their fellow beings.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/vaccines.png@Although no longer necessary for most rational purposes, certain segments of the medical community seem to still gain some perverse pleasure from jamming large hollow needles into their fellow beings.\"\n" }, { "Key": "Vaccines", - "Textual_Description": "\"@cargo/vaccines.png@With interstellar trade and war, the risk of infection from dangerous diseases and biological weapons requires vaccinations against every conceivable threat.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/vaccines.png@With interstellar trade and war, the risk of infection from dangerous diseases and biological weapons requires vaccinations against every conceivable threat.\"\n" }, { "Key": "Altered_Strains", - "Textual_Description": "\"@cargo/cargo-hud.png@While the Rlaan are masters of genetic manipulation, the Aera are decided amateurs, and are behind most of humanity in this area of research. In particular, they have only recently taken measures to artificially expand the gene pool of their own species.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While the Rlaan are masters of genetic manipulation, the Aera are decided amateurs, and are behind most of humanity in this area of research. In particular, they have only recently taken measures to artificially expand the gene pool of their own species.\"\n" }, { "Key": "Implant_tolerance_enhancements", - "Textual_Description": "\"@cargo/cargo-hud.png@Although tending to be more physically gifted than the other dominant species, the Aera suffer from high rejection rates of mechanical implants due to their overzealous immune systems.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Although tending to be more physically gifted than the other dominant species, the Aera suffer from high rejection rates of mechanical implants due to their overzealous immune systems.\"\n" }, { "Key": "Bio_Adapters", - "Textual_Description": "\"@cargo/cargo-hud.png@The Rlaan are more skilled than any other known species at the production of altered organisms, but are still working on perfecting organo-mechanical interface units. One tends to believe success at the first has hindered funding towards the second.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@The Rlaan are more skilled than any other known species at the production of altered organisms, but are still working on perfecting organo-mechanical interface units. One tends to believe success at the first has hindered funding towards the second.\"\n" }, { "Key": "Bio_Splicers", - "Textual_Description": "\"@cargo/cargo-hud.png@Hand-held retro-viral incubation and insertion device. Testing still in the Beta stage - namely, not on Rlaan\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Hand-held retro-viral incubation and insertion device. Testing still in the Beta stage - namely, not on Rlaan\"\n" }, { "Key": "Surgical_Techniques", - "Textual_Description": "\"@cargo/surgical_techniques.png@The medical establishements of all species can appreciate the development of any techniques that are more discussed by surgeons than by lawyers.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/surgical_techniques.png@The medical establishements of all species can appreciate the development of any techniques that are more discussed by surgeons than by lawyers.\"\n" }, { "Key": "Engineered_Bacteria", - "Textual_Description": "\"@cargo/engineered_bacteria.png@Engineered bacteria have been used for over a millenia - but the set of tasks gets bigger every year.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/engineered_bacteria.png@Engineered bacteria have been used for over a millenia - but the set of tasks gets bigger every year.\"\n" }, { "Key": "Synthetic_Limbs", - "Textual_Description": "\"@cargo/cargo-hud.png@Fully functional synthetic limbs are old hat. Cheap fully functional synthetic limbs that are far better than the originals and indistinguishable from their native organic counterparts are far more interesting things.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Fully functional synthetic limbs are old hat. Cheap fully functional synthetic limbs that are far better than the originals and indistinguishable from their native organic counterparts are far more interesting things.\"\n" }, { "Key": "Experimental_Drugs", - "Textual_Description": "\"@cargo/experimental_drugs.png@When a Lilipution Lime-leech is lunching on your liver, you don't care if or what the drugs were tested on.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/experimental_drugs.png@When a Lilipution Lime-leech is lunching on your liver, you don't care if or what the drugs were tested on.\"\n" }, { "Key": "Nano_Constructors", - "Textual_Description": "\"@cargo/cargo-hud.png@While the devices themselves, due to the Nano-plague, are decidedly macro-scale, they are capable of constructing nearly anything with atomic precision.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While the devices themselves, due to the Nano-plague, are decidedly macro-scale, they are capable of constructing nearly anything with atomic precision.\"\n" }, { "Key": "Self_Repairing_Metal", - "Textual_Description": "\"@cargo/cargo-hud.png@By embedding sensor nets and electrical delivery systems, sheets of metal can be produced that will compensate for any cracking or deformation by selectively heating portions of themselves with exceptional precision.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@By embedding sensor nets and electrical delivery systems, sheets of metal can be produced that will compensate for any cracking or deformation by selectively heating portions of themselves with exceptional precision.\"\n" }, { "Key": "Automated_Factories", - "Textual_Description": "\"@cargo/cargo-hud.png@As expensive as AI cores are, sets of orbiting factories tend to be even more expensive. The trick, and gist of many a grant proposal, is to figure out how to convince an AI to do something as boring as operate a holovid factory...\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@As expensive as AI cores are, sets of orbiting factories tend to be even more expensive. The trick, and gist of many a grant proposal, is to figure out how to convince an AI to do something as boring as operate a holovid factory...\"\n" }, { "Key": "Atmospheric_Rejuvinator", - "Textual_Description": "\"@cargo/cargo-hud.png@Whether it be because of overindustrialization or innate unpleasantness, if a planetary atmosphere is not to one's liking, deploying a few million of these (or a few dozen for a domed community)can do wonders.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Whether it be because of overindustrialization or innate unpleasantness, if a planetary atmosphere is not to one's liking, deploying a few million of these (or a few dozen for a domed community)can do wonders.\"\n" }, { "Key": "Ozone_Healer", - "Textual_Description": "\"@cargo/ozone_replacement.png@Many electronic devices naturally produce ozone. However, as most of these devices tend to be grounded, they do not contribute to the accretion of an ozone layer at high altitude. A recently arrived at solution: move lots of electronic devices out to the ozone layer on high efficiency flying platforms. These are the platforms.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/ozone_replacement.png@Many electronic devices naturally produce ozone. However, as most of these devices tend to be grounded, they do not contribute to the accretion of an ozone layer at high altitude. A recently arrived at solution: move lots of electronic devices out to the ozone layer on high efficiency flying platforms. These are the platforms.\"\n" }, { "Key": "Forest_Regenerator", - "Textual_Description": "\"@cargo/forest_regenerators.png@While many civilized races, with the notable exception of the Aera, would love to see their ancestral forests of old regrown, nearly all are uninclined to do much work towards this goal. Therefore, some effort has been made into producing autonomous forest tending units that can oversee the regrowth of an ecosystem without anyone having to get their manipulator appendages dirty.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/forest_regenerators.png@While many civilized races, with the notable exception of the Aera, would love to see their ancestral forests of old regrown, nearly all are uninclined to do much work towards this goal. Therefore, some effort has been made into producing autonomous forest tending units that can oversee the regrowth of an ecosystem without anyone having to get their manipulator appendages dirty.\"\n" }, { "Key": "(Xeno)forming_Units", - "Textual_Description": "\"@cargo/terraforming_units.png@For humans, terraformers, for every other species, something else - for the targeted planet underneath them, truly an alien transformation. Incorporating atmospheric processing, development of a viable biosphere, and creation of potable liquids, xenoforming units are automated monstrocities that can be landed on a hostile planet surface. Given enough time, any airless desert of sufficient size can be made into a golf-course and a strip mall.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/terraforming_units.png@For humans, terraformers, for every other species, something else - for the targeted planet underneath them, truly an alien transformation. Incorporating atmospheric processing, development of a viable biosphere, and creation of potable liquids, xenoforming units are automated monstrocities that can be landed on a hostile planet surface. Given enough time, any airless desert of sufficient size can be made into a golf-course and a strip mall.\"\n" }, { "Key": "Quantum_Deductor", - "Textual_Description": "\"@cargo/quantum_deductor.png@The ever so polite name for the class of devices used to attack quantum cryptosystems.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/quantum_deductor.png@The ever so polite name for the class of devices used to attack quantum cryptosystems.\"\n" }, { "Key": "Virtual_Tunneling_Terminal", - "Textual_Description": "\"@cargo/cargo-hud.png@A device used for viewing and traversing the internals of macro-scale objects via tunneling effects.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A device used for viewing and traversing the internals of macro-scale objects via tunneling effects.\"\n" }, { "Key": "Quantum_Computers", - "Textual_Description": "\"@cargo/quantum_processor.png@Featuring massive parallelism and minute feature size, a top of the line number cruncher can analyze more useless facts about its user in a second than most users desire to know in a lifetime.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/quantum_processor.png@Featuring massive parallelism and minute feature size, a top of the line number cruncher can analyze more useless facts about its user in a second than most users desire to know in a lifetime.\"\n" }, { "Key": "Consoles", - "Textual_Description": "\"@cargo/cargo-hud.png@Of the many interfaces between organics and machines, species specific variants of the Nazduc console produced on various Unadorned worlds remain among the most popular.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Of the many interfaces between organics and machines, species specific variants of the Nazduc console produced on various Unadorned worlds remain among the most popular.\"\n" }, { "Key": "Microprocessors", - "Textual_Description": "\"@cargo/cargo-hud.png@A vital component of every consumer product since the dawn of ubiquitous computing, microprocessors, though individually near worthless, are in exceptional demand as bulk products.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A vital component of every consumer product since the dawn of ubiquitous computing, microprocessors, though individually near worthless, are in exceptional demand as bulk products.\"\n" }, { "Key": "Protocol_Droids", - "Textual_Description": "\"@cargo/cargo-hud.png@Trained in the nuances of interspecies relations, these machines are valued accessories for both diplomats and far ranging merchants - provided they can figure out how to make the damned things shut up when not in use.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Trained in the nuances of interspecies relations, these machines are valued accessories for both diplomats and far ranging merchants - provided they can figure out how to make the damned things shut up when not in use.\"\n" }, { "Key": "Robotic_Laborers", - "Textual_Description": "\"@cargo/robot_workers.png@Tireless laborers that will attempt to do nearly anything you can convey to them as their task. Unfortunately, in order to keep costs down, their ability to understand exactly what it is you were trying to convey is somewhat limited. NOTE: Certain aberrations with this particular model have been noticed in conjunction with the request 'lend me a hand'. Please refrain from issuing this command.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/robot_workers.png@Tireless laborers that will attempt to do nearly anything you can convey to them as their task. Unfortunately, in order to keep costs down, their ability to understand exactly what it is you were trying to convey is somewhat limited. NOTE: Certain aberrations with this particular model have been noticed in conjunction with the request 'lend me a hand'. Please refrain from issuing this command.\"\n" }, { "Key": "Enhanced_Limbs", - "Textual_Description": "\"@cargo/enhanced_limbs.png@When the limbs of a sentient being are just not up to the job, fiber enhancements, neuro drivers and bone reinforcing increases function by several orders of magnitude.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/enhanced_limbs.png@When the limbs of a sentient being are just not up to the job, fiber enhancements, neuro drivers and bone reinforcing increases function by several orders of magnitude.\"\n" }, { "Key": "Enhanced_Organs", - "Textual_Description": "\"@cargo/enhanced_organs.png@Sometimes genecrafting alone cannot provide the benefits desired.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/enhanced_organs.png@Sometimes genecrafting alone cannot provide the benefits desired.\"\n" }, { "Key": "Artificial_Limbs", - "Textual_Description": "\"@cargo/artificial_limbs.png@We have the technology - we can rebuild him.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/artificial_limbs.png@We have the technology - we can rebuild him.\"\n" }, { "Key": "Cyborg_Construction_Workers", - "Textual_Description": "\"@cargo/cargo-hud.png@While, in most cultures, granted a set of rights nearly indistinguishable from normal organics, due to the bulky, less than aesthetically pleasing attachments most construction cyborgs are equipped with, transportation regulations welcome their being shipped in cargo holds.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While, in most cultures, granted a set of rights nearly indistinguishable from normal organics, due to the bulky, less than aesthetically pleasing attachments most construction cyborgs are equipped with, transportation regulations welcome their being shipped in cargo holds.\"\n" }, { "Key": "Cyborg_Defenders", - "Textual_Description": "\"@cargo/cyborg_mercs.png@The modern day equivalent to the private security officers of old, these cyborgs tend to be somewhat more cost effective, if somewhat less pleasant to stand next to. So they ride in the cargo hold instead...\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cyborg_mercs.png@The modern day equivalent to the private security officers of old, these cyborgs tend to be somewhat more cost effective, if somewhat less pleasant to stand next to. So they ride in the cargo hold instead...\"\n" }, { "Key": "Pleasure_Borgs", - "Textual_Description": "\"@cargo/pleasure_borgs.png@Pleasure cyborgs, differentiated from pleasure bots by having real skin and systems to keep said skin alive, are sufficiently non-sapient that they may be freely bought and sold. That being said, they still don't like being shoved into the closet every time grandma comes to visit.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/pleasure_borgs.png@Pleasure cyborgs, differentiated from pleasure bots by having real skin and systems to keep said skin alive, are sufficiently non-sapient that they may be freely bought and sold. That being said, they still don't like being shoved into the closet every time grandma comes to visit.\"\n" }, { "Key": "PAI_Wetware", - "Textual_Description": "\"@cargo/pai_wetware.png@Pseudo-Artificial Intelligence. PAIs are wet-ware embedded in hardware - genetically engineered brain-in-boxes that distribute the tasks of thinking between the organic and inorganic components. Commercial PAIs are almost universally designed as idiot-savant systems, capable of limited self-motivation and direction, easy to manipulate, but capable of extraordinary problem solving power for the problems they were designed for and trained to assault. PAIs tend to be able to present more natural user interfaces than the expert systems they compete with, tending to be at least vaguely self-aware, and much more responsive to and on emotional levels. In particular, niche market and custom built models are limited only by legislation requiring that entities surpassing a specified set of standardized metrics cannot be considered property, and must be registered as either custom children or custom dependent employees. While the difference is clear for low end models, standards aside, most will agree that the line between a high-end PAI and a designer cyborg human is exceptionally blurry.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/pai_wetware.png@Pseudo-Artificial Intelligence. PAIs are wet-ware embedded in hardware - genetically engineered brain-in-boxes that distribute the tasks of thinking between the organic and inorganic components. Commercial PAIs are almost universally designed as idiot-savant systems, capable of limited self-motivation and direction, easy to manipulate, but capable of extraordinary problem solving power for the problems they were designed for and trained to assault. PAIs tend to be able to present more natural user interfaces than the expert systems they compete with, tending to be at least vaguely self-aware, and much more responsive to and on emotional levels. In particular, niche market and custom built models are limited only by legislation requiring that entities surpassing a specified set of standardized metrics cannot be considered property, and must be registered as either custom children or custom dependent employees. While the difference is clear for low end models, standards aside, most will agree that the line between a high-end PAI and a designer cyborg human is exceptionally blurry.\"\n" }, { "Key": "Neural_Interface", - "Textual_Description": "\"@cargo/cargo-hud.png@The true pulse of an Andolian is not the calm beating of her heart, but the rampaging datastream of her mind.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@The true pulse of an Andolian is not the calm beating of her heart, but the rampaging datastream of her mind.\"\n" }, { "Key": "Jewelry", - "Textual_Description": "\"@cargo/jewelry.png@All but entirely useless, except as art or in dating simulations. Still, there will always be a demand for items suitable for decadent expenditure.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/jewelry.png@All but entirely useless, except as art or in dating simulations. Still, there will always be a demand for items suitable for decadent expenditure.\"\n" }, { "Key": "Carpets", - "Textual_Description": "\"@cargo/cargo-hud.png@Carpets, albeit of far less dust loving varieties, have made their way into space primarily because large slabs of metal are cold to walk on.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Carpets, albeit of far less dust loving varieties, have made their way into space primarily because large slabs of metal are cold to walk on.\"\n" }, { "Key": "Furniture", - "Textual_Description": "\"@cargo/cargo-hud.png@No matter what their size or shape, all corporeal beings need something to park their butt-equivalent on.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@No matter what their size or shape, all corporeal beings need something to park their butt-equivalent on.\"\n" }, { "Key": "Home_Appliances", - "Textual_Description": "\"@cargo/cargo-hud.png@From the esoteric hover-masseuse to the ubiquitous InstaNuker, these are the champions of eternal consumerism.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@From the esoteric hover-masseuse to the ubiquitous InstaNuker, these are the champions of eternal consumerism.\"\n" }, { "Key": "Hygiene_Supplies", - "Textual_Description": "\"@cargo/personal_hygienics.png@As advanced as the sentient races have become, they have not escaped the need for a good scrubbing up every once and a while. Cremes and balms promise to use the latest advances in nanoscale chemical transport to remove wrinkles and provide superior skin tone, anti-esthers seek out and destroy unpleasant scent particles, and orifice specific probes prevent awkward mucus excretions.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/personal_hygienics.png@As advanced as the sentient races have become, they have not escaped the need for a good scrubbing up every once and a while. Cremes and balms promise to use the latest advances in nanoscale chemical transport to remove wrinkles and provide superior skin tone, anti-esthers seek out and destroy unpleasant scent particles, and orifice specific probes prevent awkward mucus excretions.\"\n" }, { "Key": "Janitorial_Supplies", - "Textual_Description": "\"@cargo/cargo-hud.png@While most developed worlds are moving away from using living janitors, the need for chemical cleansers and means to apply them has not changed.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While most developed worlds are moving away from using living janitors, the need for chemical cleansers and means to apply them has not changed.\"\n" }, { "Key": "Textiles", - "Textual_Description": "\"@cargo/cargo-hud.png@No matter how far technology has advanced, there will always be those who desire to the freedom to make their own kilt.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@No matter how far technology has advanced, there will always be those who desire to the freedom to make their own kilt.\"\n" }, { "Key": "Clothing", - "Textual_Description": "\"@cargo/clothing.png@Despite the proselytizing efforts of the adherents of the Trekie religion, the unitard never did catch on. Clothing in all manner of make and manufacture can be found in most any region of inhabited space.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/clothing.png@Despite the proselytizing efforts of the adherents of the Trekie religion, the unitard never did catch on. Clothing in all manner of make and manufacture can be found in most any region of inhabited space.\"\n" }, { "Key": "Robot_Servants", - "Textual_Description": "\"@cargo/robot_servants.png@Having the abilities of a simple-minded bodyservant and portable data storage unit, these machines are valued accessories for those too poor or too ethical to use human servants.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/robot_servants.png@Having the abilities of a simple-minded bodyservant and portable data storage unit, these machines are valued accessories for those too poor or too ethical to use human servants.\"\n" }, { "Key": "Personal_Transport", - "Textual_Description": "\"@cargo/personal_transport.png@Despite the best efforts of government to encourage people to do so, they still tend not to take public transit or transport-pool.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/personal_transport.png@Despite the best efforts of government to encourage people to do so, they still tend not to take public transit or transport-pool.\"\n" }, { "Key": "IntaTouch", - "Textual_Description": "\"@cargo/cargo-hud.png@A tactile simulator that reminds provides an Aera with relaxing sensations.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A tactile simulator that reminds provides an Aera with relaxing sensations.\"\n" }, { "Key": "VirtuArea", - "Textual_Description": "\"@cargo/cargo-hud.png@A wall hanging that projects the illusion of open space.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A wall hanging that projects the illusion of open space.\"\n" }, { "Key": "Books", - "Textual_Description": "\"@cargo/cargo-hud.png@While the manner of its conveyance has gone through countless alterations over untold millenia, few things compare to a well crafted tale.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@While the manner of its conveyance has gone through countless alterations over untold millenia, few things compare to a well crafted tale.\"\n" }, { "Key": "Games", - "Textual_Description": "\"@cargo/games.png@Providing near endless possibility for gameplay and maximizing entertainment return, interactive computer games are a market fueled by the hard labors of underfunded dreamers. Despite their lack of fiscal resources they still manage to produce high quality products and garner wide fan bases. These fan bases could theoretically provide support for the poor, downtrodden programmers and content providers, but strangely they never seem to.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/games.png@Providing near endless possibility for gameplay and maximizing entertainment return, interactive computer games are a market fueled by the hard labors of underfunded dreamers. Despite their lack of fiscal resources they still manage to produce high quality products and garner wide fan bases. These fan bases could theoretically provide support for the poor, downtrodden programmers and content providers, but strangely they never seem to.\"\n" }, { "Key": "Holo_Vids", - "Textual_Description": "\"@cargo/holovids.png@Mindless entertainment for the masses. Especially popular among those with no noticeable social life. This year's top seller on the Confederation frontier: 'Who's your Dgn?: Interspecies Fantasies XXIV'. And, as always, the top seller in High Born space: 'Birth of a Nation II.'\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/holovids.png@Mindless entertainment for the masses. Especially popular among those with no noticeable social life. This year's top seller on the Confederation frontier: 'Who's your Dgn?: Interspecies Fantasies XXIV'. And, as always, the top seller in High Born space: 'Birth of a Nation II.'\"\n" }, { "Key": "Rare_Artwork", - "Textual_Description": "\"@cargo/rare_artwork.png@Wonderfully handcrafted with near-forgotton techniques and wonderously copied with exceptionally well known ones. 'Dogs playing poker', 'Rlaan plays it by trust', and replicas of mid 21st century CE Terran plastic food storage units are among the more popular items of this type.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/rare_artwork.png@Wonderfully handcrafted with near-forgotton techniques and wonderously copied with exceptionally well known ones. 'Dogs playing poker', 'Rlaan plays it by trust', and replicas of mid 21st century CE Terran plastic food storage units are among the more popular items of this type.\"\n" }, { "Key": "Erotica", - "Textual_Description": "\"@cargo/erotica.png@If you have to ask, this terminal judges you too young to be told.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/erotica.png@If you have to ask, this terminal judges you too young to be told.\"\n" }, { "Key": "Resistant_biologics", - "Textual_Description": "\"@cargo/resistant_biologics.png@While of potential legitimate use for research, these pathogens are deemed too dangerous to transport, if only because someone willing to use them might intercept them.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/resistant_biologics.png@While of potential legitimate use for research, these pathogens are deemed too dangerous to transport, if only because someone willing to use them might intercept them.\"\n" }, { "Key": "Illegal_Weapons", - "Textual_Description": "\"@cargo/hp_weapons.png@While it may seem odd, given the loose nature of the laws governing what armaments may be placed on civilian ships, certain weapons, such as thermonuclear mortars, hunter-killer drones, and Anchadaen wrestling worms, are not allowed to be carried around by the civilians of any known political entity deserving of the title. This does not prevent groups and individuals from desiring the aquisition of such devices.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/hp_weapons.png@While it may seem odd, given the loose nature of the laws governing what armaments may be placed on civilian ships, certain weapons, such as thermonuclear mortars, hunter-killer drones, and Anchadaen wrestling worms, are not allowed to be carried around by the civilians of any known political entity deserving of the title. This does not prevent groups and individuals from desiring the aquisition of such devices.\"\n" }, { "Key": "Pilot", - "Textual_Description": "\"@cargo/cargo-hud.png@Much as you may hate the pilot of the ship that attempted to destroy yours, destroying that pilot's ship does not grant one, under interstellar law, the right to sell said pilot into slavery. That being said, many have been known to justify such actions by claiming it to be an entirely proper form of remuneration. [Note to editors: Do not change name as the code relies on Pilot]\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Much as you may hate the pilot of the ship that attempted to destroy yours, destroying that pilot's ship does not grant one, under interstellar law, the right to sell said pilot into slavery. That being said, many have been known to justify such actions by claiming it to be an entirely proper form of remuneration. [Note to editors: Do not change name as the code relies on Pilot]\"\n" }, { "Key": "Slaves", - "Textual_Description": "\"@cargo/cargo-hud.png@Illegal due to fears of interspecies domination, among a plethora of other reasons, economic inefficiencies looming largest of all.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Illegal due to fears of interspecies domination, among a plethora of other reasons, economic inefficiencies looming largest of all.\"\n" }, { "Key": "Clones", - "Textual_Description": "\"@cargo/cargo-hud.png@It is illegal to transport clones as mass cargo. Each clone must book individual passage at cabin rate on a certified civilian transport. Exceptions may be granted for clones under the age of gestation.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@It is illegal to transport clones as mass cargo. Each clone must book individual passage at cabin rate on a certified civilian transport. Exceptions may be granted for clones under the age of gestation.\"\n" }, { "Key": "ISO_Propaganda", - "Textual_Description": "\"@cargo/cargo-hud.png@A fair portion of it's true a fair portion of the time, but all of it's illegal all of the time.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A fair portion of it's true a fair portion of the time, but all of it's illegal all of the time.\"\n" }, { "Key": "ISO_Party_Member", - "Textual_Description": "\"@cargo/iso_member.png@Anyone in Confederation space willing to openly declare their membership in the ISO either has great fortitude or suffers from great idiocy. The same however, must be said of those willing to transport them through said space.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/iso_member.png@Anyone in Confederation space willing to openly declare their membership in the ISO either has great fortitude or suffers from great idiocy. The same however, must be said of those willing to transport them through said space.\"\n" }, { "Key": "Socialist_Worker_Journal", - "Textual_Description": "\"@cargo/swj.png@The Socialist Worker Journal is a bi-monthly electronic publication believed to have its origins on Berkeley in the Trotsky system. The SWJ highlights the importance of advancing socialism, and features artwork and music produced by workers, for workers. This product has been officially deemed 'unworthy for use even in the task of wiping one's rear.'\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/swj.png@The Socialist Worker Journal is a bi-monthly electronic publication believed to have its origins on Berkeley in the Trotsky system. The SWJ highlights the importance of advancing socialism, and features artwork and music produced by workers, for workers. This product has been officially deemed 'unworthy for use even in the task of wiping one's rear.'\"\n" }, { "Key": "Luddite_Religious_Tracts", - "Textual_Description": "\"@cargo/luddite_tracts.png@Carrying ISO propaganda will get one arrested. Carrying luddite propaganda, outside of the more sympathetic Purist regions, is likely to get one summarily shot.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/luddite_tracts.png@Carrying ISO propaganda will get one arrested. Carrying luddite propaganda, outside of the more sympathetic Purist regions, is likely to get one summarily shot.\"\n" }, { "Key": "Escaped_Political_Prisoners", - "Textual_Description": "\"@cargo/political_prisoners.png@Are you now, or have you ever been, a member of the ISO?\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/political_prisoners.png@Are you now, or have you ever been, a member of the ISO?\"\n" }, { "Key": "Overeager_Immigrants", - "Textual_Description": "\"@cargo/cargo-hud.png@With the passing of the Confederation's so called 'Enough is Enough' legislation, it is illegal to transport individuals whose stated purpose is to settle on a planet deemed to have already reached its maximum desired population. While many decried the legislative package as both idiotic and unenforceable and hearings on the act dragged on for years, the coalition of Purists, High Born, Shapers, and various minor factions prevailed over the opposition of the Andolians and the Merchants, with the Unadorned not deigning to participate in the discussion.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@With the passing of the Confederation's so called 'Enough is Enough' legislation, it is illegal to transport individuals whose stated purpose is to settle on a planet deemed to have already reached its maximum desired population. While many decried the legislative package as both idiotic and unenforceable and hearings on the act dragged on for years, the coalition of Purists, High Born, Shapers, and various minor factions prevailed over the opposition of the Andolians and the Merchants, with the Unadorned not deigning to participate in the discussion.\"\n" }, { "Key": "ICBINF", - "Textual_Description": "\"@cargo/cargo-hud.png@Originally designed as a cheap, renewable, and environmentally friendly refrigerant, it was found to induce exceptionally terminal cancers in Rlaan.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Originally designed as a cheap, renewable, and environmentally friendly refrigerant, it was found to induce exceptionally terminal cancers in Rlaan.\"\n" }, { "Key": "Zhollus", - "Textual_Description": "\"@cargo/cargo-hud.png@A plant-like lifeform that, while exceptionally tasty to a Rlaan, is exceptionally devastating to a Rlaan friendly ecosystem.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@A plant-like lifeform that, while exceptionally tasty to a Rlaan, is exceptionally devastating to a Rlaan friendly ecosystem.\"\n" }, { "Key": "RetrifiedSalt", - "Textual_Description": "\"@cargo/cargo-hud.png@Salted crematory remains. Illegal in Aera space due to the combination of a cultural disdain for such and an unwillingness to remove an ancient law from the books.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Salted crematory remains. Illegal in Aera space due to the combination of a cultural disdain for such and an unwillingness to remove an ancient law from the books.\"\n" }, { "Key": "AeraNerveStimuli", - "Textual_Description": "\"@cargo/cargo-hud.png@Ever watched an Aera spasm in something that looks like a cross between an epileptic fit and an orgasm? Give them some of this and sit back. Way back. Preferably behind a barrier, because when the Aera in question starts to go into withdrawl induced fits of berserker rage, you might live to tell the tale.\"\n", - "shield_facets": "0" + "Textual_Description": "\"@cargo/cargo-hud.png@Ever watched an Aera spasm in something that looks like a cross between an epileptic fit and an orgasm? Give them some of this and sit back. Way back. Preferably behind a barrier, because when the Aera in question starts to go into withdrawl induced fits of berserker rage, you might live to tell the tale.\"\n" } ] \ No newline at end of file diff --git a/units/units_old.json b/units/units_old.json index 68ba4159..2afe737c 100644 --- a/units/units_old.json +++ b/units/units_old.json @@ -950,7 +950,7 @@ { "Key": "mult_overdrive01__upgrades", "Name": "Overdrive I", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", @@ -963,7 +963,7 @@ { "Key": "mult_overdrive02__upgrades", "Name": "Overdrive II", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", @@ -976,7 +976,7 @@ { "Key": "mult_overdrive03__upgrades", "Name": "Overdrive III", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner_generic.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", @@ -989,7 +989,7 @@ { "Key": "mult_overdrive04__upgrades", "Name": "Overdrive IV", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", @@ -1002,7 +1002,7 @@ { "Key": "mult_overdrive05__upgrades", "Name": "Overdrive V", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", @@ -1015,7 +1015,7 @@ { "Key": "mult_overdrive06__upgrades", "Name": "Overdrive VI", - "Upgrade_Type": "Afterburner", + "Upgrade_Type": "Afterburner_Upgrade", "Object_Type": "Upgrade_Replacement", "Textual_Description": "\"@upgrades/afterburner.png@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency. Comes bundled with appropriate vector-governor firmware updates.\"\n", "Mass": "1", @@ -37349,9 +37349,9 @@ "Shield_Front_Bottom_Left": "150", "Shield_Recharge": "8", "Shield_Leak": "0", - "Warp_Capacitor": "325", + "Warp_Capacitor": "325/400", "Primary_Capacitor": "200", - "Reactor_Recharge": "30", + "Reactor_Recharge": "30/44", "Jump_Drive_Present": "FALSE", "Jump_Drive_Delay": "1", "Outsystem_Jump_Cost": "200", @@ -37371,8 +37371,8 @@ "Right_Accel": "4000", "Top_Accel": "4000", "Bottom_Accel": "4000", - "Afterburner_Speed_Governor": "120", - "Default_Speed_Governor": "120", + "Afterburner_Speed_Governor": "120/125", + "Default_Speed_Governor": "120/125", "ITTS": "FALSE", "Radar_Color": "FALSE", "Radar_Range": "300000000", From 7b37c3b601117242a926ccbcf09c66ec40b6547f Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Tue, 11 Feb 2025 22:45:28 +0200 Subject: [PATCH 3/7] Fix Oswald losing shield by removing absurd shield15 without commensurate reactor and capacitors. --- modules/quests/quest_tutorial.py | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/quests/quest_tutorial.py b/modules/quests/quest_tutorial.py index 17331aaf..f9564c00 100644 --- a/modules/quests/quest_tutorial.py +++ b/modules/quests/quest_tutorial.py @@ -144,7 +144,6 @@ def launchNewDrone (self): #VS.launch(name,type,faction,unittype,ai,nr,nrwaves,pos,squadlogo): self.drone = VS.launch("Oswald","Robin.tutorial","klkk_citizen","unit","default",1,1,vec,'') # upgrade drone - self.drone.upgrade("quadshield15",0,0,1,0) self.drone.upgrade("armor06",0,0,1,0) # when launching give the player some text and ask him to decide if he wants to participate VS.IOmessage (0,"Oswald","Privateer",self.msgColor+"Hello traveler.") From e0e5d44a98aa5a9e145ddcfc5ad41b528fe89f4f Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Thu, 13 Feb 2025 07:46:34 +0200 Subject: [PATCH 4/7] Make upgrade_view display damaged upgrades installed. Make radar display cones in degrees and not radians. Wrong units were used. Make Llama.begin start with some minor damage. Also useful for testing this PR, --- python/base_computer/upgrade_view.py | 87 +++++++++++++++++++----- python/base_computer/upgrade_view.schema | 6 +- 2 files changed, 74 insertions(+), 19 deletions(-) diff --git a/python/base_computer/upgrade_view.py b/python/base_computer/upgrade_view.py index 07bc0dc9..c9ae7654 100644 --- a/python/base_computer/upgrade_view.py +++ b/python/base_computer/upgrade_view.py @@ -1,5 +1,18 @@ -import json - +import json +import locale + +locale.setlocale(locale.LC_ALL, '') + +def format_number(number) -> str: + # large numbers - int with commas + if number > 1000: + int_number = '{:n}'.format(int(number)) + return str(int_number) + + # numbers that should be rounded + + + return str(number) def add_exceptions(unit, key): # Show Stats by default @@ -113,7 +126,30 @@ def process_weapon(upgrade, unit, vsdm): if 'Energy.rate' in upgrade: unit['Energy.continuous_rate'] = round(upgrade['Energy.rate'] * shot_cycle_mul * vsdm,2) +def process_resource(key, resource_text): + exclude = ['description'] + if key in exclude: + return resource_text + print(f"{key} {resource_text}") + parts = resource_text.split('/') + + damaged_index = 0 + original_index = 0 + + if len(parts) == 2: + damaged_index = 0 + original_index = 1 + elif len(parts) == 3: + damaged_index = 1 + original_index = 2 + else: + return resource_text + + damaged = float(parts[damaged_index]) + original = float(parts[original_index]) + + return f"{format_number(damaged)} (orig: {format_number(original)})" # We process a line to find the tag or # we convert to unit[key] and replace the tag with it. @@ -141,8 +177,10 @@ def process_line(line, unit): eq_index = line.find('=') if eq_index == -1: key = line[start_index+1:end_index] + if key in unit: - line = line[:start_index] + str(unit[key]) + line[end_index+1:] + value = process_resource(key, str(unit[key])) + line = line[:start_index] + str(value) + line[end_index+1:] # Is there another tag? if line.find('<') != -1: @@ -160,7 +198,14 @@ def process_line(line, unit): return '' -def get_upgrade_info(key): +def get_upgrade_info(unit_stats): + key = unit_stats['upgrade_key'] + + # Remove ship name - use upgrade name + if 'Name' in unit_stats: + del unit_stats['Name'] + + vsdm = 5.0 with open('config.json', 'r') as file: data = json.load(file) @@ -185,22 +230,21 @@ def get_upgrade_info(key): break # Process shield and armor - if 'shield_strength' in unit: - shield_strength = unit['shield_strength'] + if 'shield' in unit: + shield_strength = unit['shield'] unit['shield_front'] = shield_strength unit['shield_back'] = shield_strength unit['shield_left'] = shield_strength unit['shield_right'] = shield_strength - del unit['shield_strength'] + del unit['shield'] - if 'armor_strength' in unit: - armor_strength = unit['armor_strength'] + if 'armor' in unit: + armor_strength = unit['armor'] unit['armor_front'] = armor_strength unit['armor_back'] = armor_strength unit['armor_left'] = armor_strength unit['armor_right'] = armor_strength - del unit['armor_strength'] - + del unit['armor'] # Process ammo and weapons if 'Mounts' in unit: @@ -208,7 +252,7 @@ def get_upgrade_info(key): mount_parts = mounts.split(';') key = mount_parts[0] unit['ammo_quantity'] = mount_parts[1] - + with open('weapons.json', 'r') as file: data = json.load(file) @@ -220,7 +264,17 @@ def get_upgrade_info(key): add_exceptions(unit, key) process_shady(unit,key) - + + # Overwrite values in original upgrade with actual in ship (if relevant) + for key in unit: + if key in unit_stats: + unit[key] = unit_stats[key] + print(f"{key} {unit_stats[key]}") + + # Radar range in km not meters + if 'Radar_Range' in unit: + unit['Radar_Range'] = format_number(int(unit['Radar_Range'])/ 1000) + text = '' with open('python/base_computer/upgrade_view.schema', 'r') as file: @@ -231,6 +285,9 @@ def get_upgrade_info(key): if __name__ == "__main__": + unit = {'Afterburner_Accel': '17000.00/17000.00/17000.00', 'Afterburner_Speed_Governor': '120.00/120.00/125.00', 'Bottom_Accel': '4000.00/4000.00/4000.00', 'Can_Cloak': '0', 'Can_Lock': '1', 'Cargo': '{armor02;upgrades/Armor;200.000000;1;20.000000;0.000000;1.000000;1.000000;;false;true}{capacitor02;upgrades/Capacitors/Standard;200.000000;1;4.000000;4.000000;1.000000;1.000000;;false;true}{reactor02;upgrades/Reactors/Standard;200.000000;1;2.000000;3.500000;1.000000;1.000000;;false;true}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200.000000;1;5.000000;4.000000;1.000000;1.000000;;false;true}{skyscope1;upgrades/Sensors/Common;200.000000;1;0.010000;1.000000;1.000000;1.000000;;false;true}{quadshield02;upgrades/Shield_Systems/Standard_Quad_Shields;200.000000;1;2.000000;8.000000;1.000000;1.000000;;false;true}', 'Cargo_Import': '', 'Cloak_Energy': '0.000000', 'Cloak_Glass': '0', 'Cloak_Min': '0.000000', 'Cloak_Rate': '0.000000', 'Comm_Functionality': '1', 'Default_Speed_Governor': '120.00/120.00/125.00', 'ECM_Rating': '0', 'Equipment_Space': '0', 'FireControl_Functionality': '1', 'Forward_Accel': '17000.00/17000.00/17000.00', 'Fuel_Capacity': '25.00/25.00/25.00', 'Heat_Sink_Rating': '0', 'Hidden_Hold_Volume': '0', 'Hold_Volume': '2000', 'Hud_Functionality': '1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;', 'Hull': '500.00/500.00/500.00', 'ITTS': '1', 'Jump_Drive_Delay': '1.000000', 'Jump_Drive_Present': '0', 'Key': 'Llama.begin', 'Left_Accel': '4000.00/4000.00/4000.00', 'Lifesupport_Functionality': '1', 'Lock_Cone': '25', 'Maneuver_Pitch': '50000.00/50000.00/50000.00', 'Maneuver_Roll': '50000.00/50000.00/50000.00', 'Maneuver_Yaw': '50000.00/50000.00/50000.00', 'Mass': '250', 'Max_Comm_Functionality': '1', 'Max_Cone': '180', 'Max_FireControl_Functionality': '1', 'Max_Hud_Functionality': '1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;', 'Max_Lifesupport_Functionality': '1', 'Max_SPECDrive_Functionality': '1', 'Mounts': '{Laser;-1;15;LIGHT;7.084000;-0.476000;23.855999;0.000000;0.000000;0.000000;0.000000;1.000000;0.000000;1.000000;0.000000;1.000000;1.000000}{Laser;-1;15;LIGHT;-6.748000;-0.476000;23.855999;0.000000;0.000000;0.000000;0.000000;1.000000;0.000000;1.000000;0.000000;1.000000;1.000000}{Laser;-1;3;LIGHT;2.660000;1.232000;7.532000;0.000000;0.000000;0.000000;0.000000;1.000000;0.000000;1.000000;0.000000;1.000000;1.000000}{Laser;-1;3;LIGHT;-2.352000;1.232000;7.532000;0.000000;0.000000;0.000000;0.000000;1.000000;0.000000;1.000000;0.000000;1.000000;1.000000}{Dumbfire;48;48;LIGHT-MISSILE MEDIUM-MISSILE SPECIAL-MISSILE;0.000000;0.000000;0.000000;0.000000;0.000000;0.000000;0.000000;1.000000;0.000000;1.000000;0.000000;1.000000;1.000000}{;-1;48;LIGHT-MISSILE MEDIUM-MISSILE SPECIAL-MISSILE;0.000000;0.000000;0.000000;0.000000;0.000000;0.000000;0.000000;1.000000;0.000000;1.000000;0.000000;1.000000;1.000000}', 'Name': 'Llama', 'Outsystem_Jump_Cost': '200.000000', 'Pitch_Governor_Down': '50.00/50.00/50.00', 'Pitch_Governor_Up': '50.00/50.00/50.00', 'Primary_Capacitor': '0.33/0.33/0.33', 'Radar_Color': '0', 'Radar_Range': '3e+08', 'Reactor_Recharge': '44.000000', 'Repair_Droid': '0', 'Retro_Accel': '15000.00/15000.00/15000.00', 'Right_Accel': '4000.00/4000.00/4000.00', 'Roll_Governor_Left': '55.00/55.00/55.00', 'Roll_Governor_Right': '55.00/55.00/55.00', 'SPECDrive_Functionality': '1', 'Shield_Efficiency': '1', 'Shield_Leak': '0', 'Shield_Recharge': '8.00/8.00/8.00', 'Slide_End': '0', 'Slide_Start': '0', 'Spec_Interdiction': '0', 'Sub_Units': '', 'Textual_Description': "With Lauktk's death, ownership of this vessel has passed on to you.", 'Top_Accel': '4000.00/4000.00/4000.00', 'Tracking_Cone': '3.99998', 'Tractorability': 'p', 'Unit_Scale': '', 'Upgrade_Storage_Volume': '360', 'Upgrades': '', 'Warp_Capacitor': '0.67/0.67/0.67', 'Warp_Max_Multiplier': '1', 'Warp_Min_Multiplier': '1', 'Warp_Usage_Cost': '120.000000', 'Wormhole': '0', 'Yaw_Governor_Left': '45.00/45.00/45.00', 'Yaw_Governor_Right': '45.00/45.00/45.00', 'armor_back': '190.00/190.00/200.00', 'armor_front': '192.00/192.00/200.00', 'armor_left': '195.00/195.00/200.00', 'armor_right': '180.00/180.00/200.00', 'shield_back': '142.00/142.00/150.00', 'shield_facets': '4', 'shield_front': '138.00/138.00/150.00', 'shield_left': '145.00/145.00/150.00', 'shield_right': '150.00/150.00/150.00', 'upgrade_key': 'add_spec_capacitor01__upgrades'} + unit['upgrade_key'] == 'skyscope1' + t = get_upgrade_info(unit) #t = get_upgrade_info('Photon_MK_III_ammo__upgrades') #t = get_upgrade_info('Photon_MK_III__upgrades') #t = get_upgrade_info('armor01__upgrades') @@ -239,7 +296,7 @@ def get_upgrade_info(key): #t = get_upgrade_info('cloaking_device__upgrades') #t = get_upgrade_info('jump_drive__upgrades') #t = get_upgrade_info('mult_overdrive01__upgrades') - t = get_upgrade_info('passenger_quarters_01__upgrades') + #t = get_upgrade_info(['upgrade_key': 'passenger_quarters_01__upgrades']) #t = get_upgrade_info('reactor09__upgrades') #t = get_upgrade_info('add_spec_capacitor01__upgrades') #t = get_upgrade_info('hawkeye2__upgrades') @@ -256,7 +313,5 @@ def get_upgrade_info(key): #t = get_upgrade_info('mult_shady_moreupgrade__upgrades') #t = get_upgrade_info('mult_shady_morethrust__upgrades') - - print(t) diff --git a/python/base_computer/upgrade_view.schema b/python/base_computer/upgrade_view.schema index c6b8ace3..8f2c1b5d 100644 --- a/python/base_computer/upgrade_view.schema +++ b/python/base_computer/upgrade_view.schema @@ -65,9 +65,9 @@ Activated energy usage: #-c MJ/s // Sensor // TODO: Check against code #c.75:.9:1#Tracking range: #-c km -#c.75:.9:1#Tracking cone: #-c -#c.75:.9:1#Assisted targeting cone: #-c radians -#c.75:.9:1#Missile locking cone: #-c radians +#c.75:.9:1#Tracking cone: #-c degrees +#c.75:.9:1#Assisted targeting cone: #-c degrees +#c.75:.9:1#Missile locking cone: #-c degrees #c.75:.9:1#ITTS (Intelligent Target Tracking System) support: #-c #c.75:.9:1#AFHH (Advanced Flag & Hostility Heuristics) support: #-c From 7c597d637a713c6c3c6732cc9550e460e5e8b74e Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Thu, 13 Feb 2025 07:47:13 +0200 Subject: [PATCH 5/7] And now with the actual changes to Llama.begin. --- units/ships.json | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/units/ships.json b/units/ships.json index 25ed62d5..ee4f8ca7 100644 --- a/units/ships.json +++ b/units/ships.json @@ -5821,10 +5821,10 @@ "Cockpit": "no-cockpit", "Use_Rapid": "1", "Mass": "250", - "Shield_Recharge": "8", + "Shield_Recharge": "7.8/8", "Warp_Capacitor": "325/400", - "Primary_Capacitor": "200", - "Reactor_Recharge": "30/44", + "Primary_Capacitor": "197/200", + "Reactor_Recharge": "39/44", "Outsystem_Jump_Cost": "200", "Afterburner_Speed_Governor": "120/125", "Default_Speed_Governor": "120/125", @@ -5835,8 +5835,14 @@ "Light": "{supernova.bmp.bfxm;0;0.35;-2.09200;2;;;;;}{supernova.bmp.bfxm;1.31;0;-1.82200;2;;;;;}{supernova.bmp.bfxm;-1.32800;0;-1.82200;2;;;;;}{supernova.bmp.bfxm;1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.454;0.094;2.327;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.454;0.094;2.327;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}{supernova.bmp.bfxm;-1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}", "Mounts": "{laser;;15;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{laser;;15;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{laser;;3;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{laser;;3;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{Dumbfire;48;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;@upgrades/skyscope_alpha.png@Refurbished Part;0}{capacitor02;upgrades/Capacitors/Standard;200;1;4;4;1;1;@upgrades/capacitor.png@Refurbished Part;0}{reactor02;upgrades/Reactors/Standard;200;1;2;3.5;1;1;@upgrades/reactor.png@Refurbished Part;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;@upgrades/reactor_capacitance.png@Refurbished Part;0}{quadshield02;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;2;8;1;1;@upgrades/shield.png@Refurbished Part;0}{armor02;upgrades/Armor;200;1;20;0;1;1;@cargo/plasteel.png@Refurbished Part;0}", - "armor": "200.0", - "shield": "150.0", + "armor_front": "192/200.0", + "armor_back": "190/200.0", + "armor_left": "195/200.0", + "armor_right": "198/200.0", + "shield_front": "148/150.0", + "shield_back": "149/150.0", + "shield_left": "145/150.0", + "shield_right": "150/150.0", "shield_facets": "4" } }, From 11ec95d797f5a63a2317c598842480baf3158700 Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Thu, 13 Feb 2025 19:19:44 +0200 Subject: [PATCH 6/7] Add integral components Add some more damage to Llama.begin. --- master_component_list.json | 34 ++++++++++++++++++++++++++++++++++ units/ships.json | 3 ++- units/units.json | 22 ++++++++++++++++++++++ 3 files changed, 58 insertions(+), 1 deletion(-) diff --git a/master_component_list.json b/master_component_list.json index 06dd5bb9..5bd6cfde 100644 --- a/master_component_list.json +++ b/master_component_list.json @@ -1,4 +1,38 @@ [ + { + "file": "hull", + "categoryname": "upgrades/integral", + "price": "12000", + "mass": "0", + "volume": "0", + "description": "@cargo/hull_patches.image@The ship's hull." + }, + { + "file": "afterburner", + "categoryname": "upgrades/integral", + "price": "2000", + "mass": "0", + "volume": "0", + "description": "@upgrades/afterburner_generic.image@Engine overdrive. Increases thrust at the expense of decreased fuel efficiency." + }, + { + "file": "drive", + "categoryname": "upgrades/integral", + "price": "6000", + "mass": "0", + "volume": "0", + "description": "@upgrades/afterburner_generic.image@The ship's engine." + }, + { + "file": "ftl_drive", + "categoryname": "upgrades/integral", + "price": "4500", + "mass": "0", + "volume": "0", + "description": "@upgrades/jump_drive.image@The ship's faster than light engine." + }, + + { "file": "Areus_Milspec_Package", "categoryname": "upgrades/Packages/Milspec", diff --git a/units/ships.json b/units/ships.json index ee4f8ca7..52ddd2cc 100644 --- a/units/ships.json +++ b/units/ships.json @@ -5826,7 +5826,7 @@ "Primary_Capacitor": "197/200", "Reactor_Recharge": "39/44", "Outsystem_Jump_Cost": "200", - "Afterburner_Speed_Governor": "120/125", + "Afterburner_Speed_Governor": "200/325", "Default_Speed_Governor": "120/125", "Radar_Range": "300000000", "Tracking_Cone": "4", @@ -5835,6 +5835,7 @@ "Light": "{supernova.bmp.bfxm;0;0.35;-2.09200;2;;;;;}{supernova.bmp.bfxm;1.31;0;-1.82200;2;;;;;}{supernova.bmp.bfxm;-1.32800;0;-1.82200;2;;;;;}{supernova.bmp.bfxm;1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.316;0.450;-1.37;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.963;0.010;-1.37;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.316;-0.431;-1.37;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;1.454;0.094;2.327;0.5;1;1;1;1;0.0005;-1;0;0}{supernova.bmp.bfxm;1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;-1.059;0.346;2.327;0.5;1;1;1;1;0.0005;0;-1;0}{supernova.bmp.bfxm;-1.454;0.094;2.327;0.5;1;1;1;1;0.0005;1;0;0}{supernova.bmp.bfxm;-1.059;-0.157;2.327;0.5;1;1;1;1;0.0005;0;1;0}{supernova.bmp.bfxm;1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}{supernova.bmp.bfxm;-1.652;0.208;1.565;0.8;1;1;1;1;0.0005;0;0;-1}", "Mounts": "{laser;;15;Light;1.01200;-6.80000e-2;3.40800;;;;;;;;;1;1}{laser;;15;Light;-0.964000;-6.80000e-2;3.40800;;;;;;;;;1;1}{laser;;3;Light;0.380000;0.176000;1.07600;;;;;;;;;1;1}{laser;;3;Light;-0.336000;0.176000;1.07600;;;;;;;;;1;1}{Dumbfire;48;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}{;;48;light-missile medium-missile special-missile;0;0;0;;;;;;;;;1;1}", "Cargo": "{skyscope1;upgrades/Sensors/Common;200;1;0.01;1;1;1;@upgrades/skyscope_alpha.png@Refurbished Part;0}{capacitor02;upgrades/Capacitors/Standard;200;1;4;4;1;1;@upgrades/capacitor.png@Refurbished Part;0}{reactor02;upgrades/Reactors/Standard;200;1;2;3.5;1;1;@upgrades/reactor.png@Refurbished Part;0}{add_spec_capacitor01;upgrades/SPEC_Capacitors;200;1;5;4;1;1;@upgrades/reactor_capacitance.png@Refurbished Part;0}{quadshield02;upgrades/Shield_Systems/Standard_Quad_Shields;200;1;2;8;1;1;@upgrades/shield.png@Refurbished Part;0}{armor02;upgrades/Armor;200;1;20;0;1;1;@cargo/plasteel.png@Refurbished Part;0}", + "Hull": "485/500", "armor_front": "192/200.0", "armor_back": "190/200.0", "armor_left": "195/200.0", diff --git a/units/units.json b/units/units.json index 05f9d7d2..db778f00 100644 --- a/units/units.json +++ b/units/units.json @@ -1,4 +1,26 @@ [ + { + "Key": "hull__upgrades", + "Name": "Hull", + "Upgrade_Type": "Hull" + }, + { + "Key": "afterburner__upgrades", + "Name": "Afterburner", + "Upgrade_Type": "Afterburner" + }, + { + "Key": "drive__upgrades", + "Name": "Drive", + "Upgrade_Type": "Drive" + }, + { + "Key": "ftl_drive__upgrades", + "Name": "FTL Drive", + "Upgrade_Type": "FTL_Drive" + }, + + { "Key": "armor01__upgrades", "Name": "Plasteel Armor", From 6445734646877e25399e8783ef2787777b975e27 Mon Sep 17 00:00:00 2001 From: Roy Falk Date: Tue, 18 Feb 2025 05:40:33 +0200 Subject: [PATCH 7/7] Reset Llama.begin afterburner. --- units/ships.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/units/ships.json b/units/ships.json index 52ddd2cc..c39438ce 100644 --- a/units/ships.json +++ b/units/ships.json @@ -5826,7 +5826,7 @@ "Primary_Capacitor": "197/200", "Reactor_Recharge": "39/44", "Outsystem_Jump_Cost": "200", - "Afterburner_Speed_Governor": "200/325", + "Afterburner_Speed_Governor": "120/125", "Default_Speed_Governor": "120/125", "Radar_Range": "300000000", "Tracking_Cone": "4",