Files
dockipelago/worlds/evn/rezdata/outfits.py
Jonathan Tinney 7971961166
Some checks failed
Analyze modified files / flake8 (push) Failing after 2m28s
Build / build-win (push) Has been cancelled
Build / build-ubuntu2204 (push) Has been cancelled
ctest / Test C++ ubuntu-latest (push) Has been cancelled
ctest / Test C++ windows-latest (push) Has been cancelled
Analyze modified files / mypy (push) Has been cancelled
Build and Publish Docker Images / Push Docker image to Docker Hub (push) Successful in 5m4s
Native Code Static Analysis / scan-build (push) Failing after 5m2s
type check / pyright (push) Successful in 1m7s
unittests / Test Python 3.11.2 ubuntu-latest (push) Failing after 16m23s
unittests / Test Python 3.12 ubuntu-latest (push) Failing after 28m19s
unittests / Test Python 3.13 ubuntu-latest (push) Failing after 14m49s
unittests / Test hosting with 3.13 on ubuntu-latest (push) Successful in 5m0s
unittests / Test Python 3.13 macos-latest (push) Has been cancelled
unittests / Test Python 3.11 windows-latest (push) Has been cancelled
unittests / Test Python 3.13 windows-latest (push) Has been cancelled
add schedule I, sonic 1/frontiers/heroes, spirit island
2026-04-02 23:46:36 -07:00

7821 lines
234 KiB
Python

# This file is auto generated by a custom script, mostly. Some manual editting (particularly with the types)
# With how EVN plugins work, we essentially have to reconstruct any objects we want to modify.
# This file contains a table of mission data used in EV Nova.
# Search and replace regex: (\})\r?\n?\},\r?\n?\{(\r?\n?\s+)"([\d]*)"(:) -> $1,$2$3$4
from typing import Dict, TypedDict, List, Set
outf_columns = {
"resource_type": "Resource Type",
"id": "ID",
"name": "Name",
"display_weight": "Display Weight",
"mass": "Mass",
"tech_level": "Tech Level",
"mod_type_1": "Mod Type 1",
"mod_value_1": "Mod Value 1",
"mod_type_2": "Mod Type 2",
"mod_value_2": "Mod Value 2",
"mod_type_3": "Mod Type 3",
"mod_value_3": "Mod Value 3",
"mod_type_4": "Mod Type 4",
"mod_value_4": "Mod Value 4",
"max_count": "Max Count",
"cost": "Cost",
"item_class": "Item Class",
"scan_mask": "Scan Mask",
"buy_random": "Buy Random",
"availability": "Availability",
"on_purchase": "On Purchase",
"on_sell": "On Sell",
"contribute_bits": "Contribute Bits",
"require_bits": "Require Bits",
"short_name": "Short Name",
"lower_case_name": "Lower Case Name",
"lower_case_plural_name": "Lower Case Plural Name",
"requirments_government": "Requirments Government",
"flags": "Flags",
"end_of_resource": "End-of-resource"
}
# Manual adjustment until I figure out how to get the script to generate this correctly with the right types.
class OutfDict(TypedDict, total=False):
resource_type: str
id: int
name: str
display_weight: int
mass: int
tech_level: int
mod_type_1: int
mod_value_1: int
mod_type_2: int
mod_value_2: int
mod_type_3: int
mod_value_3: int
mod_type_4: int
mod_value_4: int
max_count: int
cost: int
item_class: int
scan_mask: int
buy_random: int
availability: str
on_purchase: str
on_sell: str
contribute_bits: int
require_bits: int
short_name: str
lower_case_name: str
lower_case_plural_name: str
requirments_government: int
flags: int
end_of_resource: str
# I haven't figured out how to get the generator to not add quotes around int values without redefining the entire structure of the data, so for now it is all strings?
# I manually adjusted the index/keys though.
outf_table: Dict[int, OutfDict] = {
128: {
"resource_type": "outf",
"id": "128",
"name": "Light Blaster",
"display_weight": "100",
"mass": "3",
"tech_level": "4",
"mod_type_1": "1",
"mod_value_1": "128",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "8",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Light Blaster",
"lower_case_name": "light blaster",
"lower_case_plural_name": "light blasters",
"requirments_government": "127",
"flags": "0x0001",
"end_of_resource": "EOR"
},
129: {
"resource_type": "outf",
"id": "129",
"name": "Medium Blaster",
"display_weight": "100",
"mass": "8",
"tech_level": "5",
"mod_type_1": "1",
"mod_value_1": "129",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "6",
"cost": "20000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000100000001",
"short_name": "Medium Blaster",
"lower_case_name": "medium blaster",
"lower_case_plural_name": "medium blasters",
"requirments_government": "128",
"flags": "0x0001",
"end_of_resource": "EOR"
},
130: {
"resource_type": "outf",
"id": "130",
"name": "Light Blaster Turret",
"display_weight": "100",
"mass": "10",
"tech_level": "5",
"mod_type_1": "1",
"mod_value_1": "130",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "6",
"cost": "15000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Light Blaster\\\\nTurret",
"lower_case_name": "light blaster turret",
"lower_case_plural_name": "light blaster turrets",
"requirments_government": "127",
"flags": "0x0002",
"end_of_resource": "EOR"
},
131: {
"resource_type": "outf",
"id": "131",
"name": "Medium Blaster Turret",
"display_weight": "99",
"mass": "25",
"tech_level": "6",
"mod_type_1": "1",
"mod_value_1": "131",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "40000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000100000001",
"short_name": "Medium Blaster\\\\nTurret",
"lower_case_name": "medium blaster turret",
"lower_case_plural_name": "medium blaster turrets",
"requirments_government": "128",
"flags": "0x0002",
"end_of_resource": "EOR"
},
132: {
"resource_type": "outf",
"id": "132",
"name": "Heavy Blaster Turret",
"display_weight": "99",
"mass": "45",
"tech_level": "7",
"mod_type_1": "1",
"mod_value_1": "132",
"mod_type_2": "7",
"mod_value_2": "-5",
"mod_type_3": "9",
"mod_value_3": "-2",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000100000001",
"short_name": "Heavy Blaster\\\\nTurret",
"lower_case_name": "heavy blaster turret",
"lower_case_plural_name": "heavy blaster turrets",
"requirments_government": "127",
"flags": "0x4002",
"end_of_resource": "EOR"
},
133: {
"resource_type": "outf",
"id": "133",
"name": "Quad Light Blaster Turret",
"display_weight": "99",
"mass": "20",
"tech_level": "6",
"mod_type_1": "1",
"mod_value_1": "133",
"mod_type_2": "7",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "60000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b68 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000900000001",
"short_name": "Quad Light\\\\nBlaster Turret",
"lower_case_name": "quad light blaster turret",
"lower_case_plural_name": "quad light blaster turrets",
"requirments_government": "127",
"flags": "0x4002",
"end_of_resource": "EOR"
},
134: {
"resource_type": "outf",
"id": "134",
"name": "IR Missile Launcher",
"display_weight": "98",
"mass": "5",
"tech_level": "4",
"mod_type_1": "1",
"mod_value_1": "134",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "20000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "IR Missile\\\\nLauncher",
"lower_case_name": "IR missile launcher",
"lower_case_plural_name": "IR missile launchers",
"requirments_government": "128",
"flags": "0x0000",
"end_of_resource": "EOR"
},
135: {
"resource_type": "outf",
"id": "135",
"name": "IR Missile",
"display_weight": "98",
"mass": "0",
"tech_level": "4",
"mod_type_1": "3",
"mod_value_1": "134",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "200",
"cost": "750",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "IR Missile",
"lower_case_name": "IR missile",
"lower_case_plural_name": "IR missiles",
"requirments_government": "128",
"flags": "0x0000",
"end_of_resource": "EOR"
},
136: {
"resource_type": "outf",
"id": "136",
"name": "Radar Missile Launcher",
"display_weight": "97",
"mass": "7",
"tech_level": "5",
"mod_type_1": "1",
"mod_value_1": "135",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "30000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "Radar Missile\\\\nLauncher",
"lower_case_name": "radar missile launcher",
"lower_case_plural_name": "radar missile launchers",
"requirments_government": "128",
"flags": "0x0000",
"end_of_resource": "EOR"
},
137: {
"resource_type": "outf",
"id": "137",
"name": "Radar Missile",
"display_weight": "97",
"mass": "0",
"tech_level": "5",
"mod_type_1": "3",
"mod_value_1": "135",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "150",
"cost": "1000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "Radar Missile",
"lower_case_name": "radar missile",
"lower_case_plural_name": "radar missiles",
"requirments_government": "128",
"flags": "0x0000",
"end_of_resource": "EOR"
},
138: {
"resource_type": "outf",
"id": "138",
"name": "Gravimetric Missile Launcher",
"display_weight": "96",
"mass": "10",
"tech_level": "115",
"mod_type_1": "1",
"mod_value_1": "136",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "P30 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "Grav Missile\\\\nLauncher",
"lower_case_name": "gravimetric missile launcher",
"lower_case_plural_name": "gravimetric missile launchers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
139: {
"resource_type": "outf",
"id": "139",
"name": "Gravimetric Missile",
"display_weight": "96",
"mass": "1",
"tech_level": "115",
"mod_type_1": "3",
"mod_value_1": "136",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "100",
"cost": "1750",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "P30 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "Gravimetric\\\\nMissile",
"lower_case_name": "gravimetric missile",
"lower_case_plural_name": "gravimetric missiles",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
140: {
"resource_type": "outf",
"id": "140",
"name": "Etheric Wake Missile Launcher",
"display_weight": "95",
"mass": "7",
"tech_level": "113",
"mod_type_1": "1",
"mod_value_1": "137",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b29",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "Etheric Wake\\\\nMissile Launcher",
"lower_case_name": "etheric wake missile launcher",
"lower_case_plural_name": "etheric wake missile launchers",
"requirments_government": "128",
"flags": "0x4000",
"end_of_resource": "EOR"
},
141: {
"resource_type": "outf",
"id": "141",
"name": "Etheric Wake Missile",
"display_weight": "95",
"mass": "1",
"tech_level": "113",
"mod_type_1": "3",
"mod_value_1": "137",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "75",
"cost": "2000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "b28",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "Etheric Wake\\\\nMissile",
"lower_case_name": "etheric wake missile",
"lower_case_plural_name": "etheric wake missiles",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
142: {
"resource_type": "outf",
"id": "142",
"name": "Raven Rocket Pod",
"display_weight": "94",
"mass": "5",
"tech_level": "4",
"mod_type_1": "1",
"mod_value_1": "138",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "6",
"cost": "10000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Raven Rocket\\\\nPod",
"lower_case_name": "Raven rocket pod",
"lower_case_plural_name": "Raven rocket pods",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
143: {
"resource_type": "outf",
"id": "143",
"name": "Raven Rocket",
"display_weight": "94",
"mass": "0",
"tech_level": "3",
"mod_type_1": "3",
"mod_value_1": "138",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "300",
"cost": "100",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Raven Rocket",
"lower_case_name": "Raven rocket",
"lower_case_plural_name": "Raven rockets",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
144: {
"resource_type": "outf",
"id": "144",
"name": "Raven Rocket Turret",
"display_weight": "94",
"mass": "15",
"tech_level": "5",
"mod_type_1": "1",
"mod_value_1": "139",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "12500",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Raven Rocket\\\\nTurret",
"lower_case_name": "Raven rocket turret",
"lower_case_plural_name": "Raven rocket turrets",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
145: {
"resource_type": "outf",
"id": "145",
"name": "Stellar Grenade Launcher",
"display_weight": "93",
"mass": "3",
"tech_level": "3",
"mod_type_1": "1",
"mod_value_1": "140",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Stellar Grenade\\\\nLauncher",
"lower_case_name": "stellar grenade launcher",
"lower_case_plural_name": "stellar grenade launchers",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
146: {
"resource_type": "outf",
"id": "146",
"name": "Stellar Grenade",
"display_weight": "93",
"mass": "0",
"tech_level": "3",
"mod_type_1": "3",
"mod_value_1": "140",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "200",
"cost": "100",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Stellar Grenade",
"lower_case_name": "stellar grenade",
"lower_case_plural_name": "stellar grenades",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
147: {
"resource_type": "outf",
"id": "147",
"name": "Polaron Cannon",
"display_weight": "75",
"mass": "25",
"tech_level": "113",
"mod_type_1": "1",
"mod_value_1": "141",
"mod_type_2": "8",
"mod_value_2": "-3",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b27 | b432",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000010000000001",
"short_name": "Polaron Cannon",
"lower_case_name": "Polaron cannon",
"lower_case_plural_name": "Polaron cannons",
"requirments_government": "128",
"flags": "0x4001",
"end_of_resource": "EOR"
},
148: {
"resource_type": "outf",
"id": "148",
"name": "Ionic Particle Cannon",
"display_weight": "75",
"mass": "25",
"tech_level": "111",
"mod_type_1": "1",
"mod_value_1": "142",
"mod_type_2": "7",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "8",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000010000000001",
"short_name": "Ion Cannon",
"lower_case_name": "ionic particle cannon",
"lower_case_plural_name": "ionic particle cannons",
"requirments_government": "127",
"flags": "0x4001",
"end_of_resource": "EOR"
},
149: {
"resource_type": "outf",
"id": "149",
"name": "Fusion Pulse Cannon",
"display_weight": "50",
"mass": "6",
"tech_level": "10",
"mod_type_1": "1",
"mod_value_1": "143",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "6",
"cost": "20000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fusion Pulse\\\\nCannon",
"lower_case_name": "fusion pulse cannon",
"lower_case_plural_name": "fusion pulse cannons",
"requirments_government": "127",
"flags": "0x4001",
"end_of_resource": "EOR"
},
150: {
"resource_type": "outf",
"id": "150",
"name": "Fusion Pulse Turret",
"display_weight": "50",
"mass": "20",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "144",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fusion Pulse\\\\nTurret",
"lower_case_name": "fusion pulse turret",
"lower_case_plural_name": "fusion pulse turrets",
"requirments_government": "127",
"flags": "0x4002",
"end_of_resource": "EOR"
},
151: {
"resource_type": "outf",
"id": "151",
"name": "Wraith Cannon",
"display_weight": "25",
"mass": "10",
"tech_level": "133",
"mod_type_1": "1",
"mod_value_1": "145",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "((b279 | b316) & !b326) | b130",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Wraith Cannon",
"lower_case_name": "wraith cannon",
"lower_case_plural_name": "wraith cannons",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
152: {
"resource_type": "outf",
"id": "152",
"name": "Wraithii",
"display_weight": "25",
"mass": "0",
"tech_level": "133",
"mod_type_1": "3",
"mod_value_1": "145",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "600",
"cost": "1000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "((b279 | b316) & !(b285 & b327)) | b130",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Wraithii",
"lower_case_name": "wraithii",
"lower_case_plural_name": "wraithii",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
153: {
"resource_type": "outf",
"id": "153",
"name": "Capacitor Pulse Laser",
"display_weight": "26",
"mass": "40",
"tech_level": "9",
"mod_type_1": "1",
"mod_value_1": "146",
"mod_type_2": "18",
"mod_value_2": "-20",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "1000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Capacitor Pulse\\\\nLaser",
"lower_case_name": "capacitor pulse laser",
"lower_case_plural_name": "capacitor pulse lasers",
"requirments_government": "127",
"flags": "0x4001",
"end_of_resource": "EOR"
},
154: {
"resource_type": "outf",
"id": "154",
"name": "BioRelay Laser",
"display_weight": "27",
"mass": "15",
"tech_level": "133",
"mod_type_1": "1",
"mod_value_1": "147",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "6",
"cost": "250000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "((b279 | b319) | (b134 | b189)) & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Biorelay Laser",
"lower_case_name": "biorelay laser",
"lower_case_plural_name": "biorelay lasers",
"requirments_government": "127",
"flags": "0x4001",
"end_of_resource": "EOR"
},
155: {
"resource_type": "outf",
"id": "155",
"name": "Polaron Torpedo Tube",
"display_weight": "24",
"mass": "25",
"tech_level": "9",
"mod_type_1": "1",
"mod_value_1": "148",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "60",
"availability": "(b298 & P30) & !b326",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaron Torpedo\\\\nTube",
"lower_case_name": "Polaron torpedo tube",
"lower_case_plural_name": "Polaron torpedo tubes",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
156: {
"resource_type": "outf",
"id": "156",
"name": "Polaron Torpedo",
"display_weight": "23",
"mass": "0",
"tech_level": "9",
"mod_type_1": "3",
"mod_value_1": "148",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "40",
"cost": "2500",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "(b298 & P30) & !b326",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaron Torpedo",
"lower_case_name": "Polaron torpedo",
"lower_case_plural_name": "Polaron torpedoes",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
157: {
"resource_type": "outf",
"id": "157",
"name": "Viper Bay",
"display_weight": "92",
"mass": "75",
"tech_level": "7",
"mod_type_1": "1",
"mod_value_1": "149",
"mod_type_2": "7",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Viper Bay",
"lower_case_name": "Viper bay",
"lower_case_plural_name": "Viper bays ",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
158: {
"resource_type": "outf",
"id": "158",
"name": "Viper",
"display_weight": "92",
"mass": "0",
"tech_level": "6",
"mod_type_1": "3",
"mod_value_1": "149",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "70",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Viper",
"lower_case_name": "Viper",
"lower_case_plural_name": "Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
159: {
"resource_type": "outf",
"id": "159",
"name": "Anaconda Bay",
"display_weight": "92",
"mass": "75",
"tech_level": "7",
"mod_type_1": "1",
"mod_value_1": "150",
"mod_type_2": "7",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "45",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Anaconda Bay",
"lower_case_name": "Anaconda bay",
"lower_case_plural_name": "Anaconda bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
160: {
"resource_type": "outf",
"id": "160",
"name": "Anaconda",
"display_weight": "92",
"mass": "0",
"tech_level": "6",
"mod_type_1": "3",
"mod_value_1": "150",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "70",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Anaconda",
"lower_case_name": "Anaconda",
"lower_case_plural_name": "Anacondas",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
161: {
"resource_type": "outf",
"id": "161",
"name": "Firebird Bay",
"display_weight": "70",
"mass": "80",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "151",
"mod_type_2": "7",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1250000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "65",
"availability": "b224 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Firebird Bay",
"lower_case_name": "Firebird bay",
"lower_case_plural_name": "Firebird bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
162: {
"resource_type": "outf",
"id": "162",
"name": "Firebird",
"display_weight": "70",
"mass": "0",
"tech_level": "10",
"mod_type_1": "3",
"mod_value_1": "151",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "90",
"availability": "b224 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Firebird",
"lower_case_name": "Firebird",
"lower_case_plural_name": "Firebirds",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
163: {
"resource_type": "outf",
"id": "163",
"name": "Phoenix Bay",
"display_weight": "70",
"mass": "80",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "152",
"mod_type_2": "7",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1750000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "55",
"availability": "b224 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Phoenix Bay",
"lower_case_name": "Phoenix bay",
"lower_case_plural_name": "Phoenix bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
164: {
"resource_type": "outf",
"id": "164",
"name": "Phoenix",
"display_weight": "70",
"mass": "0",
"tech_level": "10",
"mod_type_1": "3",
"mod_value_1": "152",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "85",
"availability": "b224 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Phoenix",
"lower_case_name": "Phoenix",
"lower_case_plural_name": "Phoenixes",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
165: {
"resource_type": "outf",
"id": "165",
"name": "Thunderhead Bay",
"display_weight": "15",
"mass": "90",
"tech_level": "5",
"mod_type_1": "1",
"mod_value_1": "153",
"mod_type_2": "7",
"mod_value_2": "-4",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "3500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "60",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Thunderhead Bay",
"lower_case_name": "Thunderhead bay",
"lower_case_plural_name": "Thunderhead bays",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
166: {
"resource_type": "outf",
"id": "166",
"name": "Thunderhead",
"display_weight": "15",
"mass": "0",
"tech_level": "4",
"mod_type_1": "3",
"mod_value_1": "153",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "300000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Thunderhead",
"lower_case_name": "Thunderhead",
"lower_case_plural_name": "Thunderheads",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
167: {
"resource_type": "outf",
"id": "167",
"name": "Manta Bay",
"display_weight": "24",
"mass": "40",
"tech_level": "9",
"mod_type_1": "1",
"mod_value_1": "154",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "40",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Manta Bay",
"lower_case_name": "Manta bay",
"lower_case_plural_name": "Manta bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
168: {
"resource_type": "outf",
"id": "168",
"name": "Manta",
"display_weight": "24",
"mass": "0",
"tech_level": "9",
"mod_type_1": "3",
"mod_value_1": "154",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Manta",
"lower_case_name": "Manta",
"lower_case_plural_name": "Mantas",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
169: {
"resource_type": "outf",
"id": "169",
"name": "Hail Chaingun",
"display_weight": "48",
"mass": "4",
"tech_level": "10",
"mod_type_1": "1",
"mod_value_1": "155",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "8",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Hail Chaingun",
"lower_case_name": "Hail chaingun",
"lower_case_plural_name": "Hail chainguns",
"requirments_government": "127",
"flags": "0x0001",
"end_of_resource": "EOR"
},
170: {
"resource_type": "outf",
"id": "170",
"name": "Chaingun Ammunition",
"display_weight": "47",
"mass": "0",
"tech_level": "10",
"mod_type_1": "3",
"mod_value_1": "155",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2000",
"cost": "20",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Chaingun Ammo",
"lower_case_name": "chaingun ammunition",
"lower_case_plural_name": "magazines of chaingun ammunition",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
171: {
"resource_type": "outf",
"id": "171",
"name": "100mm Fixed Railgun",
"display_weight": "49",
"mass": "15",
"tech_level": "10",
"mod_type_1": "1",
"mod_value_1": "156",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "6",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "100mm Fixed\\\\nRailgun",
"lower_case_name": "100mm fixed railgun",
"lower_case_plural_name": "100mm fixed railguns",
"requirments_government": "127",
"flags": "0x4001",
"end_of_resource": "EOR"
},
172: {
"resource_type": "outf",
"id": "172",
"name": "150mm Fixed Railgun",
"display_weight": "49",
"mass": "25",
"tech_level": "10",
"mod_type_1": "1",
"mod_value_1": "157",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "5",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "150mm Fixed\\\\nRailgun",
"lower_case_name": "150mm fixed railgun",
"lower_case_plural_name": "150mm fixed railguns",
"requirments_government": "127",
"flags": "0x4001",
"end_of_resource": "EOR"
},
173: {
"resource_type": "outf",
"id": "173",
"name": "200mm Fixed Railgun",
"display_weight": "49",
"mass": "35",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "158",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "300000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "200mm Fixed\\\\nRailgun",
"lower_case_name": "200mm fixed railgun",
"lower_case_plural_name": "200mm fixed railguns",
"requirments_government": "127",
"flags": "0x4001",
"end_of_resource": "EOR"
},
174: {
"resource_type": "outf",
"id": "174",
"name": "100mm Turreted Railgun",
"display_weight": "49",
"mass": "30",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "159",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "65",
"availability": "b224 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Turreted Railgun\\\\n100mm",
"lower_case_name": "100mm turreted railgun",
"lower_case_plural_name": "100mm turreted railguns",
"requirments_government": "127",
"flags": "0x4002",
"end_of_resource": "EOR"
},
175: {
"resource_type": "outf",
"id": "175",
"name": "EMP Torpedo Tube",
"display_weight": "74",
"mass": "20",
"tech_level": "16",
"mod_type_1": "1",
"mod_value_1": "160",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "500000",
"item_class": "0",
"scan_mask": "0xE080",
"buy_random": "60",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "EMP Torpedo\\\\nTube",
"lower_case_name": "EMP torpedo tube",
"lower_case_plural_name": "EMP torpedo tubes",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
176: {
"resource_type": "outf",
"id": "176",
"name": "EMP Torpedo",
"display_weight": "74",
"mass": "4",
"tech_level": "16",
"mod_type_1": "3",
"mod_value_1": "160",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "20",
"cost": "5000",
"item_class": "0",
"scan_mask": "0xE080",
"buy_random": "80",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "EMP Torpedo",
"lower_case_name": "EMP torpedo",
"lower_case_plural_name": "EMP torpedoes",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
177: {
"resource_type": "outf",
"id": "177",
"name": "Fusion Reactor",
"display_weight": "23",
"mass": "10",
"tech_level": "8",
"mod_type_1": "18",
"mod_value_1": "8",
"mod_type_2": "8",
"mod_value_2": "20",
"mod_type_3": "7",
"mod_value_3": "25",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "(b280 | b321) & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fusion Reactor",
"lower_case_name": "fusion reactor",
"lower_case_plural_name": "fusion reactors",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
178: {
"resource_type": "outf",
"id": "178",
"name": "Thorium Reactor",
"display_weight": "93",
"mass": "8",
"tech_level": "111",
"mod_type_1": "18",
"mod_value_1": "10",
"mod_type_2": "8",
"mod_value_2": "10",
"mod_type_3": "7",
"mod_value_3": "15",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "4000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "60",
"availability": "b80 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Thorium Reactor",
"lower_case_name": "thorium reactor",
"lower_case_plural_name": "thorium reactors",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
179: {
"resource_type": "outf",
"id": "179",
"name": "Fission Reactor",
"display_weight": "93",
"mass": "10",
"tech_level": "6",
"mod_type_1": "18",
"mod_value_1": "16",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fission Reactor",
"lower_case_name": "fission reactor",
"lower_case_plural_name": "fission reactors",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
180: {
"resource_type": "outf",
"id": "180",
"name": "Carbon Fiber",
"display_weight": "16",
"mass": "1",
"tech_level": "3",
"mod_type_1": "6",
"mod_value_1": "40",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "250",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000800000001",
"short_name": "Carbon Fiber",
"lower_case_name": "layer of carbon fiber",
"lower_case_plural_name": "layers of carbon fiber",
"requirments_government": "128",
"flags": "0x0600",
"end_of_resource": "EOR"
},
181: {
"resource_type": "outf",
"id": "181",
"name": "Matrix Steel",
"display_weight": "71",
"mass": "3",
"tech_level": "11",
"mod_type_1": "6",
"mod_value_1": "150",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "1500",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Matrix Steel",
"lower_case_name": "matrix steel",
"lower_case_plural_name": "layers of matrix steel",
"requirments_government": "127",
"flags": "0x4600",
"end_of_resource": "EOR"
},
182: {
"resource_type": "outf",
"id": "182",
"name": "Titanium Lattice",
"display_weight": "93",
"mass": "2",
"tech_level": "7",
"mod_type_1": "6",
"mod_value_1": "110",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000800000001",
"short_name": "Titanium\\\\nLattice",
"lower_case_name": "titanium lattice",
"lower_case_plural_name": "layers of titanium lattice",
"requirments_government": "127",
"flags": "0x4600",
"end_of_resource": "EOR"
},
183: {
"resource_type": "outf",
"id": "183",
"name": "Spun Diamond",
"display_weight": "25",
"mass": "1",
"tech_level": "9",
"mod_type_1": "6",
"mod_value_1": "200",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "2500",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Spun Diamond",
"lower_case_name": "spun diamond",
"lower_case_plural_name": "layers of spun diamond",
"requirments_government": "127",
"flags": "0x4600",
"end_of_resource": "EOR"
},
184: {
"resource_type": "outf",
"id": "184",
"name": "Gravimetric Sensors",
"display_weight": "16",
"mass": "0",
"tech_level": "1",
"mod_type_1": "13",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Gravimetric\\\\nSensors",
"lower_case_name": "gravimetric sensor",
"lower_case_plural_name": "gravimetric sensors",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
185: {
"resource_type": "outf",
"id": "185",
"name": "IFF Decoder",
"display_weight": "16",
"mass": "0",
"tech_level": "1",
"mod_type_1": "14",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "IFF Decoder",
"lower_case_name": "IFF decoder",
"lower_case_plural_name": "IFF decoders",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
186: {
"resource_type": "outf",
"id": "186",
"name": "Auto-recharger",
"display_weight": "16",
"mass": "0",
"tech_level": "1",
"mod_type_1": "19",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Auto-recharger",
"lower_case_name": "auto-recharger",
"lower_case_plural_name": "auto-rechargers",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
187: {
"resource_type": "outf",
"id": "187",
"name": "Auto-eject",
"display_weight": "16",
"mass": "0",
"tech_level": "1",
"mod_type_1": "20",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "20000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Auto-eject",
"lower_case_name": "auto-eject",
"lower_case_plural_name": "auto-ejectors",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
188: {
"resource_type": "outf",
"id": "188",
"name": "Escape Pod",
"display_weight": "16",
"mass": "1",
"tech_level": "1",
"mod_type_1": "11",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "15000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Escape Pod",
"lower_case_name": "escape pod",
"lower_case_plural_name": "escape pods",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
189: {
"resource_type": "outf",
"id": "189",
"name": "Cargo Expansion",
"display_weight": "16",
"mass": "15",
"tech_level": "4",
"mod_type_1": "2",
"mod_value_1": "10",
"mod_type_2": "9",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "5",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Cargo Expansion",
"lower_case_name": "cargo expansion",
"lower_case_plural_name": "cargo expansions",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
190: {
"resource_type": "outf",
"id": "190",
"name": "Mass Expansion",
"display_weight": "16",
"mass": "-10",
"tech_level": "4",
"mod_type_1": "2",
"mod_value_1": "-15",
"mod_type_2": "9",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "5",
"cost": "175000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Mass Expansion",
"lower_case_name": "mass expansion",
"lower_case_plural_name": "mass expansions",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
191: {
"resource_type": "outf",
"id": "191",
"name": "Cargo Retool",
"display_weight": "16",
"mass": "12",
"tech_level": "4",
"mod_type_1": "2",
"mod_value_1": "10",
"mod_type_2": "9",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "5",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Cargo Retool",
"lower_case_name": "cargo retool",
"lower_case_plural_name": "cargo retools",
"requirments_government": "127",
"flags": "0x0008",
"end_of_resource": "EOR"
},
192: {
"resource_type": "outf",
"id": "192",
"name": "Mass Retool",
"display_weight": "16",
"mass": "-10",
"tech_level": "4",
"mod_type_1": "2",
"mod_value_1": "-12",
"mod_type_2": "9",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "5",
"cost": "275000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Mass Retool",
"lower_case_name": "mass retool",
"lower_case_plural_name": "mass retools",
"requirments_government": "127",
"flags": "0x0008",
"end_of_resource": "EOR"
},
193: {
"resource_type": "outf",
"id": "193",
"name": "Shield Recharger",
"display_weight": "93",
"mass": "3",
"tech_level": "7",
"mod_type_1": "5",
"mod_value_1": "60",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "400000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "70",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000800000001",
"short_name": "Shield Recharger",
"lower_case_name": "shield recharger",
"lower_case_plural_name": "shield rechargers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
194: {
"resource_type": "outf",
"id": "194",
"name": "Organic Shield",
"display_weight": "25",
"mass": "5",
"tech_level": "9",
"mod_type_1": "5",
"mod_value_1": "120",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "600000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Organic Shield",
"lower_case_name": "organic shield",
"lower_case_plural_name": "organic shields",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
195: {
"resource_type": "outf",
"id": "195",
"name": "Shield Buffer",
"display_weight": "93",
"mass": "4",
"tech_level": "7",
"mod_type_1": "4",
"mod_value_1": "25",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "10",
"cost": "600000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "70",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000800000001",
"short_name": "Shield Buffer",
"lower_case_name": "shield buffer",
"lower_case_plural_name": "shield buffers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
196: {
"resource_type": "outf",
"id": "196",
"name": "Shield Organelles",
"display_weight": "25",
"mass": "3",
"tech_level": "9",
"mod_type_1": "4",
"mod_value_1": "40",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "10",
"cost": "750000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Shield\\\\nOrganelles",
"lower_case_name": "shield organelles",
"lower_case_plural_name": "shield organelles",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
197: {
"resource_type": "outf",
"id": "197",
"name": "Afterburner",
"display_weight": "16",
"mass": "5",
"tech_level": "4",
"mod_type_1": "15",
"mod_value_1": "37",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "30000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Afterburner",
"lower_case_name": "afterburner",
"lower_case_plural_name": "afterburners",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
198: {
"resource_type": "outf",
"id": "198",
"name": "Port & Polish",
"display_weight": "73",
"mass": "0",
"tech_level": "112",
"mod_type_1": "7",
"mod_value_1": "75",
"mod_type_2": "8",
"mod_value_2": "25",
"mod_type_3": "9",
"mod_value_3": "10",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Port & Polish",
"lower_case_name": "port & polish",
"lower_case_plural_name": "port & polishes",
"requirments_government": "127",
"flags": "0x0008",
"end_of_resource": "EOR"
},
199: {
"resource_type": "outf",
"id": "199",
"name": "Overdrive",
"display_weight": "73",
"mass": "0",
"tech_level": "12",
"mod_type_1": "8",
"mod_value_1": "75",
"mod_type_2": "7",
"mod_value_2": "50",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "40000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "b437 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Overdrive",
"lower_case_name": "overdrive",
"lower_case_plural_name": "overdrives",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
200: {
"resource_type": "outf",
"id": "200",
"name": "Vectored Thrust",
"display_weight": "73",
"mass": "0",
"tech_level": "111",
"mod_type_1": "9",
"mod_value_1": "125",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Vectored Thrust",
"lower_case_name": "vectored thrust",
"lower_case_plural_name": "vectored thrust ports",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
201: {
"resource_type": "outf",
"id": "201",
"name": "Sutherland Alluvial Dampener",
"display_weight": "60",
"mass": "10",
"tech_level": "12",
"mod_type_1": "22",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "300000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b446 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Suth All Damp",
"lower_case_name": "Sutherland alluvial damper",
"lower_case_plural_name": "Sutherland alluvial dampers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
202: {
"resource_type": "outf",
"id": "202",
"name": "Horizontal Booster",
"display_weight": "60",
"mass": "0",
"tech_level": "15",
"mod_type_1": "23",
"mod_value_1": "-500",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Horizontal\\\\nBooster",
"lower_case_name": "horizontal booster",
"lower_case_plural_name": "horizontal boosters",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
203: {
"resource_type": "outf",
"id": "203",
"name": "Sensor Boost",
"display_weight": "93",
"mass": "0",
"tech_level": "7",
"mod_type_1": "24",
"mod_value_1": "20",
"mod_type_2": "28",
"mod_value_2": "-3",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "300000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sensor Boost",
"lower_case_name": "sensor boost",
"lower_case_plural_name": "sensor boosts",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
204: {
"resource_type": "outf",
"id": "204",
"name": "Map; Sol/Kel'ar Iy only",
"display_weight": "16",
"mass": "0",
"tech_level": "80",
"mod_type_1": "16",
"mod_value_1": "1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Map",
"lower_case_name": "map",
"lower_case_plural_name": "maps",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
205: {
"resource_type": "outf",
"id": "205",
"name": ";T5 Strength",
"display_weight": "114",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "4",
"mod_value_1": "5",
"mod_type_2": "5",
"mod_value_2": "10",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "6",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "T5 Strength Level",
"lower_case_name": "T5 strength level",
"lower_case_plural_name": "T5 strength levels",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
206: {
"resource_type": "outf",
"id": "206",
"name": ";T4 Strength",
"display_weight": "114",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "4",
"mod_value_1": "25",
"mod_type_2": "5",
"mod_value_2": "20",
"mod_type_3": "12",
"mod_value_3": "100",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "6",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "T4 Strength Level",
"lower_case_name": "T4 strength level",
"lower_case_plural_name": "T4 strength levels",
"requirments_government": "0",
"flags": "0x000C",
"end_of_resource": "EOR"
},
207: {
"resource_type": "outf",
"id": "207",
"name": ";T3 Strength",
"display_weight": "114",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "4",
"mod_value_1": "125",
"mod_type_2": "5",
"mod_value_2": "40",
"mod_type_3": "12",
"mod_value_3": "200",
"mod_type_4": "19",
"mod_value_4": "-1",
"max_count": "6",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "T3 Strength Level",
"lower_case_name": "T3 strength level",
"lower_case_plural_name": "T3 strength levels",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
208: {
"resource_type": "outf",
"id": "208",
"name": "Cargo Retool",
"display_weight": "60",
"mass": "12",
"tech_level": "8",
"mod_type_1": "2",
"mod_value_1": "10",
"mod_type_2": "9",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Cargo Retool",
"lower_case_name": "cargo retool",
"lower_case_plural_name": "cargo retools",
"requirments_government": "127",
"flags": "0x0008",
"end_of_resource": "EOR"
},
209: {
"resource_type": "outf",
"id": "209",
"name": ";T2 Strength",
"display_weight": "114",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "4",
"mod_value_1": "600",
"mod_type_2": "5",
"mod_value_2": "80",
"mod_type_3": "12",
"mod_value_3": "400",
"mod_type_4": "19",
"mod_value_4": "-1",
"max_count": "6",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "T2 Strength Level",
"lower_case_name": "T2 strength level",
"lower_case_plural_name": "T2 strength levels",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
210: {
"resource_type": "outf",
"id": "210",
"name": "Mass Retool",
"display_weight": "60",
"mass": "-10",
"tech_level": "8",
"mod_type_1": "2",
"mod_value_1": "-12",
"mod_type_2": "9",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Mass Retool",
"lower_case_name": "mass retool",
"lower_case_plural_name": "mass retools",
"requirments_government": "127",
"flags": "0x0008",
"end_of_resource": "EOR"
},
211: {
"resource_type": "outf",
"id": "211",
"name": "Fed Cloaking Device",
"display_weight": "59",
"mass": "15",
"tech_level": "9999",
"mod_type_1": "17",
"mod_value_1": "14",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "3500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Cloaking\\\\nDevice",
"lower_case_name": "cloaking device",
"lower_case_plural_name": "cloaking devices",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
212: {
"resource_type": "outf",
"id": "212",
"name": "Sensor Boost",
"display_weight": "25",
"mass": "0",
"tech_level": "9",
"mod_type_1": "24",
"mod_value_1": "40",
"mod_type_2": "28",
"mod_value_2": "-10",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "375000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "b283 | b321",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sensor Boost",
"lower_case_name": "sensor boost",
"lower_case_plural_name": "sensor boosts",
"requirments_government": "127",
"flags": "0x4008",
"end_of_resource": "EOR"
},
213: {
"resource_type": "outf",
"id": "213",
"name": "Sensor Boost",
"display_weight": "71",
"mass": "0",
"tech_level": "11",
"mod_type_1": "24",
"mod_value_1": "15",
"mod_type_2": "28",
"mod_value_2": "-5",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "250000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sensor Boost",
"lower_case_name": "sensor boost",
"lower_case_plural_name": "sensor boosts",
"requirments_government": "127",
"flags": "0x0008",
"end_of_resource": "EOR"
},
214: {
"resource_type": "outf",
"id": "214",
"name": "Sensor Boost",
"display_weight": "73",
"mass": "0",
"tech_level": "12",
"mod_type_1": "24",
"mod_value_1": "25",
"mod_type_2": "28",
"mod_value_2": "-3",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "600000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sensor Boost",
"lower_case_name": "sensor boost",
"lower_case_plural_name": "sensor boosts",
"requirments_government": "127",
"flags": "0x0008",
"end_of_resource": "EOR"
},
215: {
"resource_type": "outf",
"id": "215",
"name": "Storm Chaingun",
"display_weight": "48",
"mass": "25",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "161",
"mod_type_2": "7",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "350000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Storm Chaingun",
"lower_case_name": "Storm chaingun",
"lower_case_plural_name": "Storm chainguns",
"requirments_government": "127",
"flags": "0x0002",
"end_of_resource": "EOR"
},
216: {
"resource_type": "outf",
"id": "216",
"name": "Fusion Pulse Battery",
"display_weight": "50",
"mass": "12",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "162",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b206 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fusion Pulse\\\\nBattery",
"lower_case_name": "fusion pulse battery",
"lower_case_plural_name": "fusion pulse batteries",
"requirments_government": "127",
"flags": "0x4002",
"end_of_resource": "EOR"
},
217: {
"resource_type": "outf",
"id": "217",
"name": "Thunderhead Lance",
"display_weight": "15",
"mass": "8",
"tech_level": "113",
"mod_type_1": "1",
"mod_value_1": "166",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000100000001",
"short_name": "Thunderhead\\\\nLance",
"lower_case_name": "thunderhead lance",
"lower_case_plural_name": "thunderhead lances",
"requirments_government": "127",
"flags": "0x0101",
"end_of_resource": "EOR"
},
218: {
"resource_type": "outf",
"id": "218",
"name": "Pirate Viper Bay",
"display_weight": "69",
"mass": "40",
"tech_level": "12",
"mod_type_1": "1",
"mod_value_1": "169",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "60",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate\\\\nViper Bay",
"lower_case_name": "Pirate Viper bay",
"lower_case_plural_name": "Pirate Viper bays",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
219: {
"resource_type": "outf",
"id": "219",
"name": "Pirate Viper",
"display_weight": "69",
"mass": "0",
"tech_level": "12",
"mod_type_1": "3",
"mod_value_1": "169",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "75",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate Viper",
"lower_case_name": "Pirate Viper",
"lower_case_plural_name": "Pirate Vipers",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
220: {
"resource_type": "outf",
"id": "220",
"name": "Turreted BioRelay Laser",
"display_weight": "27",
"mass": "25",
"tech_level": "9",
"mod_type_1": "1",
"mod_value_1": "170",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1250000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "BioRelay Laser\\\\nTurret",
"lower_case_name": "biorelay laser turret",
"lower_case_plural_name": "biorelay laser turrets",
"requirments_government": "127",
"flags": "0x4002",
"end_of_resource": "EOR"
},
221: {
"resource_type": "outf",
"id": "221",
"name": "Flower Of Spring",
"display_weight": "120",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "1",
"mod_value_1": "171",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Flower of Spring",
"lower_case_name": "Flower of Spring",
"lower_case_plural_name": "Flowers of Spring",
"requirments_government": "0",
"flags": "0x402D",
"end_of_resource": "EOR"
},
222: {
"resource_type": "outf",
"id": "222",
"name": "Summer Bloom",
"display_weight": "119",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "1",
"mod_value_1": "172",
"mod_type_2": "18",
"mod_value_2": "-40",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Summer Bloom",
"lower_case_name": "Summer Bloom",
"lower_case_plural_name": "Summer Blooms",
"requirments_government": "0",
"flags": "0x402E",
"end_of_resource": "EOR"
},
223: {
"resource_type": "outf",
"id": "223",
"name": "Autumn Petal",
"display_weight": "118",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "1",
"mod_value_1": "173",
"mod_type_2": "18",
"mod_value_2": "-32",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Autumn Petal",
"lower_case_name": "Autumn Petal",
"lower_case_plural_name": "Autumn Petals",
"requirments_government": "0",
"flags": "0x402E",
"end_of_resource": "EOR"
},
224: {
"resource_type": "outf",
"id": "224",
"name": "Winter Tempest",
"display_weight": "117",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "1",
"mod_value_1": "174",
"mod_type_2": "18",
"mod_value_2": "-20",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Winter Tempest",
"lower_case_name": "Winter Tempest",
"lower_case_plural_name": "Winter Tempests",
"requirments_government": "0",
"flags": "0x402D",
"end_of_resource": "EOR"
},
225: {
"resource_type": "outf",
"id": "225",
"name": "Create Dart",
"display_weight": "116",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "1",
"mod_value_1": "175",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Divisable Mind",
"lower_case_name": "capability to divide your mind",
"lower_case_plural_name": "capabilities to divide your mind",
"requirments_government": "127",
"flags": "0x402C",
"end_of_resource": "EOR"
},
226: {
"resource_type": "outf",
"id": "226",
"name": "Dart",
"display_weight": "115",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "3",
"mod_value_1": "175",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Dart",
"lower_case_name": "lot of energy to create a dart",
"lower_case_plural_name": "lots of energy to create darts",
"requirments_government": "127",
"flags": "0x4028",
"end_of_resource": "EOR"
},
227: {
"resource_type": "outf",
"id": "227",
"name": "Marine Platoon",
"display_weight": "10",
"mass": "5",
"tech_level": "3",
"mod_type_1": "25",
"mod_value_1": "25",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "18",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "40",
"availability": "P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Marine Platoon",
"lower_case_name": "marine platoon",
"lower_case_plural_name": "marine platoons",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
228: {
"resource_type": "outf",
"id": "228",
"name": "Solar Panels",
"display_weight": "16",
"mass": "3",
"tech_level": "3",
"mod_type_1": "18",
"mod_value_1": "30",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "15000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Solar Panel",
"lower_case_name": "solar panel",
"lower_case_plural_name": "solar panels",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
229: {
"resource_type": "outf",
"id": "229",
"name": "Nanites",
"display_weight": "0",
"mass": "30",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "163",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "100",
"cost": "1",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Nanites",
"lower_case_name": "nanites",
"lower_case_plural_name": "nanites",
"requirments_government": "0",
"flags": "0x0000",
"end_of_resource": "EOR"
},
230: {
"resource_type": "outf",
"id": "230",
"name": "Solar Lance",
"display_weight": "0",
"mass": "15",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "164",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Solar Lance",
"lower_case_name": "solar lance",
"lower_case_plural_name": "solar lances",
"requirments_government": "0",
"flags": "0x0001",
"end_of_resource": "EOR"
},
231: {
"resource_type": "outf",
"id": "231",
"name": "WGB (A)",
"display_weight": "0",
"mass": "10",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "165",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "WGB (A)",
"lower_case_name": "wgb (a)",
"lower_case_plural_name": "wgb (a)",
"requirments_government": "0",
"flags": "0x0001",
"end_of_resource": "EOR"
},
232: {
"resource_type": "outf",
"id": "232",
"name": "WGB (Y)",
"display_weight": "0",
"mass": "8",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "167",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "WGB (Y)",
"lower_case_name": "wgb (y)",
"lower_case_plural_name": "wgb (y)",
"requirments_government": "0",
"flags": "0x0001",
"end_of_resource": "EOR"
},
233: {
"resource_type": "outf",
"id": "233",
"name": "WGB (C)",
"display_weight": "0",
"mass": "5",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "168",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "WGB (C)",
"lower_case_name": "wgb (c)",
"lower_case_plural_name": "wgb (c)",
"requirments_government": "0",
"flags": "0x0001",
"end_of_resource": "EOR"
},
234: {
"resource_type": "outf",
"id": "234",
"name": "Rebel Cloaking Device - legal",
"display_weight": "59",
"mass": "15",
"tech_level": "15",
"mod_type_1": "17",
"mod_value_1": "6",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "3500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "b753",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Cloaking\\\\nDevice",
"lower_case_name": "Rebel cloaking device",
"lower_case_plural_name": "Rebel cloaking devices",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
235: {
"resource_type": "outf",
"id": "235",
"name": "Matter/Antimatter Reactor",
"display_weight": "23",
"mass": "15",
"tech_level": "9",
"mod_type_1": "18",
"mod_value_1": "4",
"mod_type_2": "7",
"mod_value_2": "35",
"mod_type_3": "8",
"mod_value_3": "25",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "5000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "70",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Anti-Matter\\\\nReactor",
"lower_case_name": "matter/anti-matter reactor",
"lower_case_plural_name": "matter/anti-matter reactors",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
236: {
"resource_type": "outf",
"id": "236",
"name": "Fuel Transfer",
"display_weight": "0",
"mass": "0",
"tech_level": "999",
"mod_type_1": "12",
"mod_value_1": "-100",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fuel Transfer",
"lower_case_name": "fuel transfer",
"lower_case_plural_name": "fuel transfers",
"requirments_government": "127",
"flags": "0x0010",
"end_of_resource": "EOR"
},
237: {
"resource_type": "outf",
"id": "237",
"name": "Map",
"display_weight": "0",
"mass": "0",
"tech_level": "999",
"mod_type_1": "16",
"mod_value_1": "3",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Map",
"lower_case_name": "map",
"lower_case_plural_name": "maps",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
238: {
"resource_type": "outf",
"id": "238",
"name": "Civilian IR Jammer",
"display_weight": "16",
"mass": "1",
"tech_level": "6",
"mod_type_1": "33",
"mod_value_1": "20",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "25000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000800000001",
"short_name": "Civilian\\\\nIR Jammer",
"lower_case_name": "civilian IR jammer",
"lower_case_plural_name": "civilian IR jammers",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
239: {
"resource_type": "outf",
"id": "239",
"name": "Civilian Radar Jammer",
"display_weight": "16",
"mass": "2",
"tech_level": "6",
"mod_type_1": "34",
"mod_value_1": "15",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "40000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000800000001",
"short_name": "Civilian\\\\nRadar Jam",
"lower_case_name": "civilian radar jammer",
"lower_case_plural_name": "civilian radar jammers",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
240: {
"resource_type": "outf",
"id": "240",
"name": "Military IR Jammer",
"display_weight": "93",
"mass": "2",
"tech_level": "6",
"mod_type_1": "33",
"mod_value_1": "30",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "75000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b68 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000800000001",
"short_name": "Military\\\\nIR Jammer",
"lower_case_name": "military IR jammer",
"lower_case_plural_name": "military IR jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
241: {
"resource_type": "outf",
"id": "241",
"name": "Military Radar Jammer",
"display_weight": "93",
"mass": "4",
"tech_level": "7",
"mod_type_1": "34",
"mod_value_1": "25",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "125000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "b78 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000800000001",
"short_name": "Military\\\\nRadar Jam",
"lower_case_name": "military radar jammer",
"lower_case_plural_name": "military radar jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
242: {
"resource_type": "outf",
"id": "242",
"name": "Auroran IR Jammer",
"display_weight": "49",
"mass": "4",
"tech_level": "10",
"mod_type_1": "33",
"mod_value_1": "35",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "b206 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Auroran\\\\nIR Jammer",
"lower_case_name": "Auroran IR jammer",
"lower_case_plural_name": "Auroran IR jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
243: {
"resource_type": "outf",
"id": "243",
"name": "Auroran Radar Jammer",
"display_weight": "49",
"mass": "10",
"tech_level": "11",
"mod_type_1": "34",
"mod_value_1": "20",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "125000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b206 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Auroran\\\\nRadar Jam",
"lower_case_name": "Auroran radar jammer",
"lower_case_plural_name": "Auroran radar jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
244: {
"resource_type": "outf",
"id": "244",
"name": "Polaris Jammer",
"display_weight": "25",
"mass": "1",
"tech_level": "8",
"mod_type_1": "33",
"mod_value_1": "40",
"mod_type_2": "34",
"mod_value_2": "40",
"mod_type_3": "35",
"mod_value_3": "20",
"mod_type_4": "36",
"mod_value_4": "10",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "(b280 | b321) & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaris\\\\nJammer",
"lower_case_name": "Polaris jammer",
"lower_case_plural_name": "Polaris jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
245: {
"resource_type": "outf",
"id": "245",
"name": "Nil'kemorya Jammer",
"display_weight": "25",
"mass": "2",
"tech_level": "9",
"mod_type_1": "33",
"mod_value_1": "50",
"mod_type_2": "34",
"mod_value_2": "50",
"mod_type_3": "35",
"mod_value_3": "45",
"mod_type_4": "36",
"mod_value_4": "20",
"max_count": "1",
"cost": "125000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "70",
"availability": "b298 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Nil'kemorya\\\\nJammer",
"lower_case_name": "Nil'kemorya jammer",
"lower_case_plural_name": "Nil'kemorya jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
246: {
"resource_type": "outf",
"id": "246",
"name": "Rebel IR Jammer",
"display_weight": "60",
"mass": "2",
"tech_level": "15",
"mod_type_1": "33",
"mod_value_1": "35",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "75000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "b130 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel\\\\nIR Jammer",
"lower_case_name": "Rebel IR jammer",
"lower_case_plural_name": "Rebel IR jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
247: {
"resource_type": "outf",
"id": "247",
"name": "Rebel Radar Jammer",
"display_weight": "60",
"mass": "4",
"tech_level": "15",
"mod_type_1": "34",
"mod_value_1": "30",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "125000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "b134 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel\\\\nRadar Jam",
"lower_case_name": "Rebel radar jammer",
"lower_case_plural_name": "Rebel radar jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
248: {
"resource_type": "outf",
"id": "248",
"name": "Pirate Jammer",
"display_weight": "70",
"mass": "5",
"tech_level": "12",
"mod_type_1": "33",
"mod_value_1": "30",
"mod_type_2": "34",
"mod_value_2": "20",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate Jammer",
"lower_case_name": "Pirate jammer",
"lower_case_plural_name": "Pirate jammers",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
249: {
"resource_type": "outf",
"id": "249",
"name": "Distract Sensors",
"display_weight": "114",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "33",
"mod_value_1": "45",
"mod_type_2": "34",
"mod_value_2": "45",
"mod_type_3": "35",
"mod_value_3": "40",
"mod_type_4": "36",
"mod_value_4": "35",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Distract Sensors",
"lower_case_name": "ability to distract sensors",
"lower_case_plural_name": "abilities to distract sensors",
"requirments_government": "127",
"flags": "0x402C",
"end_of_resource": "EOR"
},
250: {
"resource_type": "outf",
"id": "250",
"name": "Rebel Radar Jammer",
"display_weight": "60",
"mass": "4",
"tech_level": "15",
"mod_type_1": "34",
"mod_value_1": "30",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "125000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "b190 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel\\\\nRadar Jam",
"lower_case_name": "Rebel radar jammer",
"lower_case_plural_name": "Rebel radar jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
251: {
"resource_type": "outf",
"id": "251",
"name": "Vell-os Area Map",
"display_weight": "113",
"mass": "0",
"tech_level": "999",
"mod_type_1": "19",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "b450",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Topographic\\\\nSense",
"lower_case_name": "topographic sense",
"lower_case_plural_name": "topographic sense",
"requirments_government": "127",
"flags": "0x402C",
"end_of_resource": "EOR"
},
252: {
"resource_type": "outf",
"id": "252",
"name": "Physical Sense",
"display_weight": "112",
"mass": "0",
"tech_level": "999",
"mod_type_1": "13",
"mod_value_1": "-1",
"mod_type_2": "28",
"mod_value_2": "-25",
"mod_type_3": "24",
"mod_value_3": "50",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Physical Sense\\\\nSize",
"lower_case_name": "physical size sense",
"lower_case_plural_name": "physical size sense",
"requirments_government": "0",
"flags": "0x402C",
"end_of_resource": "EOR"
},
253: {
"resource_type": "outf",
"id": "253",
"name": "Hostility Sense",
"display_weight": "111",
"mass": "0",
"tech_level": "999",
"mod_type_1": "14",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Hostility Sense",
"lower_case_name": "hostility sense",
"lower_case_plural_name": "hostility sense",
"requirments_government": "0",
"flags": "0x402C",
"end_of_resource": "EOR"
},
254: {
"resource_type": "outf",
"id": "254",
"name": "Wraith Cannon",
"display_weight": "16",
"mass": "10",
"tech_level": "113",
"mod_type_1": "1",
"mod_value_1": "200",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "500000",
"item_class": "0",
"scan_mask": "0x2400",
"buy_random": "85",
"availability": "b32",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Wraith Cannon",
"lower_case_name": "wraith cannon",
"lower_case_plural_name": "wraith cannons",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
255: {
"resource_type": "outf",
"id": "255",
"name": "Wraithii",
"display_weight": "16",
"mass": "0",
"tech_level": "113",
"mod_type_1": "3",
"mod_value_1": "145",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "600",
"cost": "2500",
"item_class": "0",
"scan_mask": "0x2400",
"buy_random": "95",
"availability": "b31",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Wraithii",
"lower_case_name": "wraithii",
"lower_case_plural_name": "wraithii",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
256: {
"resource_type": "outf",
"id": "256",
"name": "Battery Pack",
"display_weight": "16",
"mass": "3",
"tech_level": "3",
"mod_type_1": "12",
"mod_value_1": "100",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "4",
"cost": "10000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Battery Pack",
"lower_case_name": "battery pack",
"lower_case_plural_name": "battery packs",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
257: {
"resource_type": "outf",
"id": "257",
"name": "Heavy Weapons License",
"display_weight": "5",
"mass": "0",
"tech_level": "7",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000100000000",
"require_bits": "0x0000000000000000",
"short_name": "Heavy Weapons\\\\nLicense",
"lower_case_name": "heavy weapons license",
"lower_case_plural_name": "heavy weapons licenses",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
258: {
"resource_type": "outf",
"id": "258",
"name": "Missile Weapons License",
"display_weight": "5",
"mass": "0",
"tech_level": "7",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "7500",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000200000000",
"require_bits": "0x0000000000000000",
"short_name": "Missile Weapons\\\\nLicense",
"lower_case_name": "missile weapons license",
"lower_case_plural_name": "missile weapons licenses",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
259: {
"resource_type": "outf",
"id": "259",
"name": "Fighter Bay License",
"display_weight": "4",
"mass": "0",
"tech_level": "7",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "20000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000400000000",
"require_bits": "0x0000000000000000",
"short_name": "Fighter Bay\\\\nLicense",
"lower_case_name": "fighter bay license",
"lower_case_plural_name": "fighter bay licenses",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
260: {
"resource_type": "outf",
"id": "260",
"name": "Protective Technologies License",
"display_weight": "5",
"mass": "0",
"tech_level": "7",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "40000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000800000000",
"require_bits": "0x0000000000000000",
"short_name": "Protective Tech\\\\nLicense",
"lower_case_name": "protective technologies license",
"lower_case_plural_name": "protective technologies licenses",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
261: {
"resource_type": "outf",
"id": "261",
"name": "Thorium Reactor - ionisation",
"display_weight": "93",
"mass": "15",
"tech_level": "67",
"mod_type_1": "50",
"mod_value_1": "135",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "400000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Thorium Reactor",
"lower_case_name": "thorium reactor",
"lower_case_plural_name": "thorium reactors",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
262: {
"resource_type": "outf",
"id": "262",
"name": "Ion Dissipator",
"display_weight": "60",
"mass": "5",
"tech_level": "15",
"mod_type_1": "40",
"mod_value_1": "200",
"mod_type_2": "39",
"mod_value_2": "50",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "2",
"cost": "300000",
"item_class": "0",
"scan_mask": "0x0800",
"buy_random": "75",
"availability": "b429",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Ion Dissipator",
"lower_case_name": "ion dissipator",
"lower_case_plural_name": "ion dissipators",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
263: {
"resource_type": "outf",
"id": "263",
"name": "Capital Ships License",
"display_weight": "4",
"mass": "0",
"tech_level": "7",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000004000000000",
"require_bits": "0x0000000000000000",
"short_name": "Capital Ships\\\\nLicense",
"lower_case_name": "capital ships license",
"lower_case_plural_name": "capital ships licenses",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
264: {
"resource_type": "outf",
"id": "264",
"name": "Capital Warships License",
"display_weight": "4",
"mass": "0",
"tech_level": "7",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "75000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000008000000000",
"require_bits": "0x0000004000000000",
"short_name": "Capital Warships\\\\nLicense",
"lower_case_name": "capital warships license",
"lower_case_plural_name": "capital warships licenses",
"requirments_government": "127",
"flags": "0x400C",
"end_of_resource": "EOR"
},
265: {
"resource_type": "outf",
"id": "265",
"name": "Exotic Ships & Weapons License",
"display_weight": "3",
"mass": "0",
"tech_level": "7",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "60",
"availability": "P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x000001FF00000000",
"require_bits": "0x0000000000000000",
"short_name": "Exotic Ships &\\\\nWeaps License",
"lower_case_name": "exotic ships and weapons license",
"lower_case_plural_name": "exotic ships and weapons licenses",
"requirments_government": "127",
"flags": "0x400C",
"end_of_resource": "EOR"
},
266: {
"resource_type": "outf",
"id": "266",
"name": "Wraith Cloaking Device",
"display_weight": "0",
"mass": "0",
"tech_level": "999",
"mod_type_1": "17",
"mod_value_1": "2",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Wr Cloak",
"lower_case_name": "wraith cloaking device",
"lower_case_plural_name": "wraith cloaking devices",
"requirments_government": "0",
"flags": "0x4000",
"end_of_resource": "EOR"
},
267: {
"resource_type": "outf",
"id": "267",
"name": "Wraith Fast Jump",
"display_weight": "0",
"mass": "0",
"tech_level": "999",
"mod_type_1": "37",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Wr Fast Jump",
"lower_case_name": "wraith fast jump",
"lower_case_plural_name": "wraith fast jumps",
"requirments_government": "0",
"flags": "0x4000",
"end_of_resource": "EOR"
},
268: {
"resource_type": "outf",
"id": "268",
"name": "Cloaking Organ;Polaris v1.0",
"display_weight": "25",
"mass": "1",
"tech_level": "9",
"mod_type_1": "17",
"mod_value_1": "2059",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "(b1301 | b319) & !b1302",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Cloaking Organ",
"lower_case_name": "cloaking organ",
"lower_case_plural_name": "cloaking organs",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
269: {
"resource_type": "outf",
"id": "269",
"name": "Cloaking Organ;Polaris v1.1",
"display_weight": "25",
"mass": "1",
"tech_level": "9",
"mod_type_1": "17",
"mod_value_1": "1033",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "b1302",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Cloaking Organ",
"lower_case_name": "cloaking organ",
"lower_case_plural_name": "cloaking organs",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
270: {
"resource_type": "outf",
"id": "270",
"name": "Asteroid Mining Laser",
"display_weight": "7",
"mass": "3",
"tech_level": "4",
"mod_type_1": "1",
"mod_value_1": "181",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "8",
"cost": "10000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Mining Laser",
"lower_case_name": "mining laser",
"lower_case_plural_name": "mining lasers",
"requirments_government": "127",
"flags": "0x0001",
"end_of_resource": "EOR"
},
271: {
"resource_type": "outf",
"id": "271",
"name": "Asteroid Scoop",
"display_weight": "7",
"mass": "5",
"tech_level": "3",
"mod_type_1": "31",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "10000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Asteroid Scoop",
"lower_case_name": "asteroid scoop",
"lower_case_plural_name": "asteroid scoops",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
272: {
"resource_type": "outf",
"id": "272",
"name": "Dr Ralph's Exploration Map",
"display_weight": "0",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "16",
"mod_value_1": "10",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "999",
"cost": "0",
"item_class": "25",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Dr Ralph's Map",
"lower_case_name": "Dr Ralph's exploration map",
"lower_case_plural_name": "Dr Ralph's exploration maps",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
273: {
"resource_type": "outf",
"id": "273",
"name": "Tunnelling Organ",
"display_weight": "25",
"mass": "3",
"tech_level": "9",
"mod_type_1": "37",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "b3721 & !b324",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Tunnelling\\\\nOrgan",
"lower_case_name": "tunnelling organ",
"lower_case_plural_name": "tunnelling organs",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
274: {
"resource_type": "outf",
"id": "274",
"name": "Tunnelling Organ",
"display_weight": "25",
"mass": "2",
"tech_level": "9",
"mod_type_1": "37",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "b324",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Tunnelling\\\\nOrgan",
"lower_case_name": "tunnelling organ",
"lower_case_plural_name": "tunnelling organs",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
275: {
"resource_type": "outf",
"id": "275",
"name": "Multi-Jumping Organ",
"display_weight": "25",
"mass": "2",
"tech_level": "9",
"mod_type_1": "32",
"mod_value_1": "10",
"mod_type_2": "37",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "b326",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Multi-Jump\\\\nOrgan",
"lower_case_name": "multi-jump organ",
"lower_case_plural_name": "multi-jump organs",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
276: {
"resource_type": "outf",
"id": "276",
"name": "Polaron Multi-Torpedo Tube",
"display_weight": "22",
"mass": "28",
"tech_level": "9",
"mod_type_1": "1",
"mod_value_1": "182",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "250000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "(P30 & b305) & !b327",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaron Multi-Torp\\\\nTube",
"lower_case_name": "Polaron multi-torpedo tube",
"lower_case_plural_name": "Polaron multi-torpedo tubes",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
277: {
"resource_type": "outf",
"id": "277",
"name": "Polaron Multi-Torpedo",
"display_weight": "21",
"mass": "0",
"tech_level": "9",
"mod_type_1": "3",
"mod_value_1": "182",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "20",
"cost": "3000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "(P30 & b305) & !b327",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaron Multi-Torp",
"lower_case_name": "Polaron multi-torpedo",
"lower_case_plural_name": "Polaron multi-torpedoes",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
278: {
"resource_type": "outf",
"id": "278",
"name": "Wraith Cannon;fire whilst cloaked",
"display_weight": "25",
"mass": "10",
"tech_level": "9",
"mod_type_1": "1",
"mod_value_1": "183",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "210000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "b285 & b327",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Wraith Cannon",
"lower_case_name": "wraith cannon",
"lower_case_plural_name": "wraith cannons",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
279: {
"resource_type": "outf",
"id": "279",
"name": "Wraithii;fire whilst cloaked",
"display_weight": "25",
"mass": "0",
"tech_level": "9",
"mod_type_1": "3",
"mod_value_1": "145",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "300",
"cost": "1050",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "b285 & b327",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Wraithii",
"lower_case_name": "wraithii",
"lower_case_plural_name": "wraithii",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
280: {
"resource_type": "outf",
"id": "280",
"name": "Polaron Torpedo Tube;fire whilst cloaked",
"display_weight": "24",
"mass": "27",
"tech_level": "9",
"mod_type_1": "1",
"mod_value_1": "184",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "210000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "70",
"availability": "(P30 & b298) & (b327 & b1305)",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaron Torpedo\\\\nTube",
"lower_case_name": "Polaron torpedo tube",
"lower_case_plural_name": "Polaron torpedo tubes",
"requirments_government": "127",
"flags": "0x5000",
"end_of_resource": "EOR"
},
281: {
"resource_type": "outf",
"id": "281",
"name": "Polaron Torpedo;fire whilst cloaked",
"display_weight": "23",
"mass": "0",
"tech_level": "9",
"mod_type_1": "3",
"mod_value_1": "148",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "20",
"cost": "2600",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "(P30 & b298) & (b327 & b1305)",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaron Torpedo",
"lower_case_name": "Polaron torpedo",
"lower_case_plural_name": "Polaron torpedoes",
"requirments_government": "127",
"flags": "0x5000",
"end_of_resource": "EOR"
},
282: {
"resource_type": "outf",
"id": "282",
"name": "Polaron Multi-Torpedo Tube;fire whilst cloaked",
"display_weight": "22",
"mass": "30",
"tech_level": "9",
"mod_type_1": "1",
"mod_value_1": "185",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "260000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "60",
"availability": "(P30 & b305) & (b327 & b1305)",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaron Multi-Torp\\\\nTube",
"lower_case_name": "Polaron multi-torpedo tube",
"lower_case_plural_name": "Polaron multi-torpedo tubes",
"requirments_government": "127",
"flags": "0x5000",
"end_of_resource": "EOR"
},
283: {
"resource_type": "outf",
"id": "283",
"name": "Polaron Multi-Torpedo;fire whilst cloaked",
"display_weight": "21",
"mass": "0",
"tech_level": "9",
"mod_type_1": "3",
"mod_value_1": "182",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "10",
"cost": "3200",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "(P30 & b305) & (b327 & b1305)",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Polaron Multi-Torp",
"lower_case_name": "Polaron multi-torpedo",
"lower_case_plural_name": "Polaron multi-torpedoes",
"requirments_government": "127",
"flags": "0x5000",
"end_of_resource": "EOR"
},
284: {
"resource_type": "outf",
"id": "284",
"name": "Pirate Thunderhead Bay",
"display_weight": "69",
"mass": "70",
"tech_level": "12",
"mod_type_1": "1",
"mod_value_1": "176",
"mod_type_2": "8",
"mod_value_2": "-3",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "5000000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "40",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate Th-head\\\\nBay",
"lower_case_name": "Pirate Thunderhead bay",
"lower_case_plural_name": "Pirate Thunderhead bays",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
285: {
"resource_type": "outf",
"id": "285",
"name": "Pirate Thunderhead",
"display_weight": "69",
"mass": "0",
"tech_level": "12",
"mod_type_1": "3",
"mod_value_1": "176",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "400000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "60",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate\\\\nThunderhead",
"lower_case_name": "Pirate Thunderhead",
"lower_case_plural_name": "Pirate Thunderheads",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
286: {
"resource_type": "outf",
"id": "286",
"name": "Firebird Bay",
"display_weight": "70",
"mass": "65",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "186",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "1250000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "75",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Firebird Bay",
"lower_case_name": "Firebird bay",
"lower_case_plural_name": "Firebird bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
287: {
"resource_type": "outf",
"id": "287",
"name": "Firebird",
"display_weight": "70",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "186",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "120000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "95",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Firebird",
"lower_case_name": "Firebird",
"lower_case_plural_name": "Firebirds",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
288: {
"resource_type": "outf",
"id": "288",
"name": "Firebird Bay",
"display_weight": "70",
"mass": "65",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "187",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "1250000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "75",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Firebird Bay",
"lower_case_name": "Firebird bay",
"lower_case_plural_name": "Firebird bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
289: {
"resource_type": "outf",
"id": "289",
"name": "Firebird",
"display_weight": "70",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "187",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "120000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "95",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Firebird",
"lower_case_name": "Firebird",
"lower_case_plural_name": "Firebirds",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
290: {
"resource_type": "outf",
"id": "290",
"name": "Phoenix Bay",
"display_weight": "70",
"mass": "65",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "188",
"mod_type_2": "8",
"mod_value_2": "-3",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1750000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Phoenix Bay",
"lower_case_name": "Phoenix bay",
"lower_case_plural_name": "Phoenix bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
291: {
"resource_type": "outf",
"id": "291",
"name": "Phoenix",
"display_weight": "70",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "188",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Phoenix",
"lower_case_name": "Phoenix",
"lower_case_plural_name": "Phoenix's",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
292: {
"resource_type": "outf",
"id": "292",
"name": "Phoenix Bay",
"display_weight": "70",
"mass": "65",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "189",
"mod_type_2": "8",
"mod_value_2": "-3",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1750000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Phoenix Bay",
"lower_case_name": "Phoenix bay",
"lower_case_plural_name": "Phoenix bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
293: {
"resource_type": "outf",
"id": "293",
"name": "Phoenix",
"display_weight": "70",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "189",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Phoenix",
"lower_case_name": "Phoenix",
"lower_case_plural_name": "Phoenix's",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
294: {
"resource_type": "outf",
"id": "294",
"name": "Pirate Viper Bay",
"display_weight": "69",
"mass": "75",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "190",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate Viper Bay",
"lower_case_name": "Pirate Viper bay",
"lower_case_plural_name": "Pirate Viper bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
295: {
"resource_type": "outf",
"id": "295",
"name": "Pirate Viper",
"display_weight": "15",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "190",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate Viper",
"lower_case_name": "Pirate Viper",
"lower_case_plural_name": "Pirate Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
296: {
"resource_type": "outf",
"id": "296",
"name": "Pirate Viper Bay",
"display_weight": "69",
"mass": "75",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "191",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate Viper Bay",
"lower_case_name": "Pirate Viper bay",
"lower_case_plural_name": "Pirate Viper bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
297: {
"resource_type": "outf",
"id": "297",
"name": "Pirate Viper",
"display_weight": "15",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "191",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Pirate Viper",
"lower_case_name": "Pirate Viper",
"lower_case_plural_name": "Pirate Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
298: {
"resource_type": "outf",
"id": "298",
"name": "Rebel Viper Bay",
"display_weight": "69",
"mass": "50",
"tech_level": "15",
"mod_type_1": "1",
"mod_value_1": "192",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "45",
"availability": "b134 | b190",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Viper Bay",
"lower_case_name": "Rebel Viper bay",
"lower_case_plural_name": "Rebel Viper bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
299: {
"resource_type": "outf",
"id": "299",
"name": "Rebel Viper",
"display_weight": "69",
"mass": "0",
"tech_level": "15",
"mod_type_1": "3",
"mod_value_1": "192",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "80",
"availability": "b134 | b190",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Viper",
"lower_case_name": "Rebel Viper",
"lower_case_plural_name": "Rebel Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
300: {
"resource_type": "outf",
"id": "300",
"name": "Rebel Viper Bay",
"display_weight": "69",
"mass": "50",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "193",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Viper Bay",
"lower_case_name": "Rebel Viper bay",
"lower_case_plural_name": "Rebel Viper bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
301: {
"resource_type": "outf",
"id": "301",
"name": "Rebel Viper",
"display_weight": "15",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "193",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Viper",
"lower_case_name": "Rebel Viper",
"lower_case_plural_name": "Rebel Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
302: {
"resource_type": "outf",
"id": "302",
"name": "Rebel Viper Bay",
"display_weight": "69",
"mass": "50",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "194",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Viper Bay",
"lower_case_name": "Rebel Viper bay",
"lower_case_plural_name": "Rebel Viper bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
303: {
"resource_type": "outf",
"id": "303",
"name": "Rebel Viper",
"display_weight": "15",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "194",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Viper",
"lower_case_name": "Rebel Viper",
"lower_case_plural_name": "Rebel Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
304: {
"resource_type": "outf",
"id": "304",
"name": "Rebel Viper Bay",
"display_weight": "69",
"mass": "50",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "195",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Viper Bay",
"lower_case_name": "Rebel Viper bay",
"lower_case_plural_name": "Rebel Viper bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
305: {
"resource_type": "outf",
"id": "305",
"name": "Rebel Viper",
"display_weight": "15",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "195",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Viper",
"lower_case_name": "Rebel Viper",
"lower_case_plural_name": "Rebel Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
306: {
"resource_type": "outf",
"id": "306",
"name": "Viper Bay",
"display_weight": "92",
"mass": "75",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "177",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Viper Bay",
"lower_case_name": "Viper bay",
"lower_case_plural_name": "Viper bays ",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
307: {
"resource_type": "outf",
"id": "307",
"name": "Viper",
"display_weight": "92",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "177",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Viper",
"lower_case_name": "Viper",
"lower_case_plural_name": "Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
308: {
"resource_type": "outf",
"id": "308",
"name": "Viper Bay",
"display_weight": "92",
"mass": "75",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "179",
"mod_type_2": "8",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "1500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Viper Bay",
"lower_case_name": "Viper bay",
"lower_case_plural_name": "Viper bays ",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
309: {
"resource_type": "outf",
"id": "309",
"name": "Viper",
"display_weight": "92",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "179",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Viper",
"lower_case_name": "Viper",
"lower_case_plural_name": "Vipers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
310: {
"resource_type": "outf",
"id": "310",
"name": "Anaconda Bay",
"display_weight": "92",
"mass": "75",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "178",
"mod_type_2": "8",
"mod_value_2": "-3",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Anaconda Bay",
"lower_case_name": "Anaconda bay",
"lower_case_plural_name": "Anaconda bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
311: {
"resource_type": "outf",
"id": "311",
"name": "Anaconda",
"display_weight": "92",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "178",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Anaconda",
"lower_case_name": "Anaconda",
"lower_case_plural_name": "Anacondas",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
312: {
"resource_type": "outf",
"id": "312",
"name": "Anaconda Bay",
"display_weight": "92",
"mass": "75",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "180",
"mod_type_2": "8",
"mod_value_2": "-3",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "2000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Anaconda Bay",
"lower_case_name": "Anaconda bay",
"lower_case_plural_name": "Anaconda bays",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
313: {
"resource_type": "outf",
"id": "313",
"name": "Anaconda",
"display_weight": "92",
"mass": "0",
"tech_level": "999",
"mod_type_1": "3",
"mod_value_1": "180",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "9999",
"cost": "200000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000400000001",
"short_name": "Anaconda",
"lower_case_name": "Anaconda",
"lower_case_plural_name": "Anacondas",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
314: {
"resource_type": "outf",
"id": "314",
"name": "Chrome Valk Upgrade",
"display_weight": "0",
"mass": "0",
"tech_level": "116",
"mod_type_1": "-1",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "75",
"availability": "b4000 & P30",
"on_purchase": "H165",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000080000001",
"short_name": "Starbridge\\\\nUpgrade",
"lower_case_name": "Starbridge upgrade",
"lower_case_plural_name": "Starbridge upgrades",
"requirments_government": "127",
"flags": "0x4110",
"end_of_resource": "EOR"
},
315: {
"resource_type": "outf",
"id": "315",
"name": "Rebel Starbridge Upgrade",
"display_weight": "0",
"mass": "0",
"tech_level": "15",
"mod_type_1": "-1",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "25000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "b130 & P30",
"on_purchase": "H178",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000080000001",
"short_name": "Rebel Starbridge\\\\nUpgrade",
"lower_case_name": "Rebel Starbridge upgrade",
"lower_case_plural_name": "Rebel Starbridge upgrades",
"requirments_government": "127",
"flags": "0x4110",
"end_of_resource": "EOR"
},
316: {
"resource_type": "outf",
"id": "316",
"name": "Rebel Valkyrie Upgrade",
"display_weight": "0",
"mass": "0",
"tech_level": "15",
"mod_type_1": "-1",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "20000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "b130 & P30",
"on_purchase": "H179",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000040000001",
"short_name": "Rebel Valkyrie\\\\nUpgrade",
"lower_case_name": "Rebel Valkyrie upgrade",
"lower_case_plural_name": "Rebel Valkyrie upgrades",
"requirments_government": "127",
"flags": "0x4110",
"end_of_resource": "EOR"
},
317: {
"resource_type": "outf",
"id": "317",
"name": "Pirate Starbridge Upgrade",
"display_weight": "0",
"mass": "0",
"tech_level": "12",
"mod_type_1": "-1",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "40",
"availability": "b130 & P30",
"on_purchase": "H148",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000080000001",
"short_name": "Pirate Starbridge\\\\nUpgrade",
"lower_case_name": "Pirate Starbridge upgrade",
"lower_case_plural_name": "Pirate Starbridge upgrades",
"requirments_government": "127",
"flags": "0x4110",
"end_of_resource": "EOR"
},
318: {
"resource_type": "outf",
"id": "318",
"name": "Pirate Valkyrie Upgrade",
"display_weight": "0",
"mass": "0",
"tech_level": "12",
"mod_type_1": "-1",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "40000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "40",
"availability": "b130 & P30",
"on_purchase": "H149",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000040000001",
"short_name": "Pirate Valkyrie\\\\nUpgrade",
"lower_case_name": "Pirate Valkyrie upgrade",
"lower_case_plural_name": "Pirate Valkyrie upgrades",
"requirments_government": "127",
"flags": "0x4110",
"end_of_resource": "EOR"
},
319: {
"resource_type": "outf",
"id": "319",
"name": "Drop Bear Repellent",
"display_weight": "0",
"mass": "0",
"tech_level": "77",
"mod_type_1": "-1",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "999",
"cost": "5000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "b42 & !b44",
"on_purchase": "b43",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Drop Bear\\\\nRepellant",
"lower_case_name": "bottle of Auroran drop bear repellent",
"lower_case_plural_name": "bottles of Auroran drop bear repellent",
"requirments_government": "127",
"flags": "0x4004",
"end_of_resource": "EOR"
},
320: {
"resource_type": "outf",
"id": "320",
"name": "Illegal Medium Blaster",
"display_weight": "100",
"mass": "10",
"tech_level": "42",
"mod_type_1": "1",
"mod_value_1": "129",
"mod_type_2": "7",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "17000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "95",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "Medium Blaster\\\\n- illegal -",
"lower_case_name": "illegal medium blaster",
"lower_case_plural_name": "illegal medium blasters",
"requirments_government": "127",
"flags": "0x0801",
"end_of_resource": "EOR"
},
321: {
"resource_type": "outf",
"id": "321",
"name": "Illegal Medium Blaster Turret",
"display_weight": "99",
"mass": "30",
"tech_level": "42",
"mod_type_1": "1",
"mod_value_1": "131",
"mod_type_2": "7",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "35000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "90",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "Med Bl Turret\\\\n- illegal -",
"lower_case_name": "illegal medium blaster turret",
"lower_case_plural_name": "illegal medium blaster turrets",
"requirments_government": "127",
"flags": "0x0802",
"end_of_resource": "EOR"
},
322: {
"resource_type": "outf",
"id": "322",
"name": "Illegal Heavy Blaster Turret",
"display_weight": "98",
"mass": "60",
"tech_level": "42",
"mod_type_1": "1",
"mod_value_1": "132",
"mod_type_2": "7",
"mod_value_2": "-2",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "130000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "80",
"availability": "b130",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "Hvy Bl Turret\\\\n- illegal -",
"lower_case_name": "illegal heavy blaster turret",
"lower_case_plural_name": "illegal heavy blaster turrets",
"requirments_government": "127",
"flags": "0x4802",
"end_of_resource": "EOR"
},
323: {
"resource_type": "outf",
"id": "323",
"name": "Illegal Quad Light Blaster Turret",
"display_weight": "98",
"mass": "20",
"tech_level": "42",
"mod_type_1": "1",
"mod_value_1": "133",
"mod_type_2": "7",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "55000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "80",
"availability": "b130",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "Qd Lt Turret\\\\n- illegal -",
"lower_case_name": "illegal quad light blaster turret",
"lower_case_plural_name": "illegal quad light blaster turrets",
"requirments_government": "127",
"flags": "0x4802",
"end_of_resource": "EOR"
},
324: {
"resource_type": "outf",
"id": "324",
"name": "Illegal IR Missile Launcher",
"display_weight": "98",
"mass": "5",
"tech_level": "42",
"mod_type_1": "1",
"mod_value_1": "134",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "17000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "95",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "IR Mssl Lnchr\\\\n- illegal -",
"lower_case_name": "illegal IR missile launcher",
"lower_case_plural_name": "illegal IR missile launchers",
"requirments_government": "127",
"flags": "0x0800",
"end_of_resource": "EOR"
},
325: {
"resource_type": "outf",
"id": "325",
"name": "Illegal IR Missile",
"display_weight": "98",
"mass": "0",
"tech_level": "42",
"mod_type_1": "3",
"mod_value_1": "134",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "200",
"cost": "650",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "100",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "IR Missile\\\\n- illegal -",
"lower_case_name": "illegal IR missile",
"lower_case_plural_name": "illegal IR missiles",
"requirments_government": "127",
"flags": "0x0800",
"end_of_resource": "EOR"
},
326: {
"resource_type": "outf",
"id": "326",
"name": "Illegal Radar Missile Launcher",
"display_weight": "97",
"mass": "7",
"tech_level": "42",
"mod_type_1": "1",
"mod_value_1": "135",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "25000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "90",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rdr Mssl Lnchr\\\\n- illegal -",
"lower_case_name": "illegal radar missile launcher",
"lower_case_plural_name": "illegal radar missile launchers",
"requirments_government": "127",
"flags": "0x0800",
"end_of_resource": "EOR"
},
327: {
"resource_type": "outf",
"id": "327",
"name": "Illegal Radar Missile",
"display_weight": "97",
"mass": "0",
"tech_level": "42",
"mod_type_1": "3",
"mod_value_1": "135",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "150",
"cost": "800",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "100",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "Radar Missile\\\\n- illegal -",
"lower_case_name": "illegal radar missile",
"lower_case_plural_name": "illegal radar missiles",
"requirments_government": "127",
"flags": "0x4800",
"end_of_resource": "EOR"
},
328: {
"resource_type": "outf",
"id": "328",
"name": "Disabling Fusion Pulse Turret",
"display_weight": "50",
"mass": "20",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "233",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "75000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "b206 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fusion Turret\\\\n- disabling -",
"lower_case_name": "disabling fusion pulse turret",
"lower_case_plural_name": "disabling fusion pulse turrets",
"requirments_government": "127",
"flags": "0x4002",
"end_of_resource": "EOR"
},
329: {
"resource_type": "outf",
"id": "329",
"name": "Disabling Radar Missile Launcher",
"display_weight": "97",
"mass": "7",
"tech_level": "11",
"mod_type_1": "1",
"mod_value_1": "234",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "20000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "b206",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rdr Mssl Launcher\\\\n- disabling -",
"lower_case_name": "disabling radar missile launcher",
"lower_case_plural_name": "disabling radar missile launchers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
330: {
"resource_type": "outf",
"id": "330",
"name": "Disabling Radar Missile",
"display_weight": "97",
"mass": "0",
"tech_level": "11",
"mod_type_1": "3",
"mod_value_1": "135",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "150",
"cost": "1250",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "95",
"availability": "b206",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Radar Missile\\\\n- disabling -",
"lower_case_name": "disabling radar missile",
"lower_case_plural_name": "disabling radar missiles",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
331: {
"resource_type": "outf",
"id": "331",
"name": "User modified Ionic Particle Cannon",
"display_weight": "75",
"mass": "25",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "201",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "8",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Ion Cannon\\\\n- User modified -",
"lower_case_name": "user modified ionic particle cannon",
"lower_case_plural_name": "user modified ionic particle cannons",
"requirments_government": "127",
"flags": "0x4001",
"end_of_resource": "EOR"
},
332: {
"resource_type": "outf",
"id": "332",
"name": "Illegal Ionic Particle Cannon",
"display_weight": "75",
"mass": "25",
"tech_level": "42",
"mod_type_1": "1",
"mod_value_1": "142",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "8",
"cost": "150000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "70",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000020000000000",
"require_bits": "0x0000000000000001",
"short_name": "Ion Cannon\\\\n- illegal -",
"lower_case_name": "illegal ionic particle cannon",
"lower_case_plural_name": "illegal ionic particle cannons",
"requirments_government": "127",
"flags": "0x0801",
"end_of_resource": "EOR"
},
333: {
"resource_type": "outf",
"id": "333",
"name": "Sigma Engine Tune-up",
"display_weight": "0",
"mass": "0",
"tech_level": "20",
"mod_type_1": "7",
"mod_value_1": "60",
"mod_type_2": "8",
"mod_value_2": "30",
"mod_type_3": "9",
"mod_value_3": "75",
"mod_type_4": "12",
"mod_value_4": "100",
"max_count": "1",
"cost": "1000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "b33 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sigma\\\\nEngine Tune-up",
"lower_case_name": "Sigma engine tune-up",
"lower_case_plural_name": "Sigma engine tune-ups",
"requirments_government": "127",
"flags": "0x4008",
"end_of_resource": "EOR"
},
334: {
"resource_type": "outf",
"id": "334",
"name": "Sigma Electrical Rewiring",
"display_weight": "0",
"mass": "0",
"tech_level": "20",
"mod_type_1": "4",
"mod_value_1": "100",
"mod_type_2": "5",
"mod_value_2": "50",
"mod_type_3": "24",
"mod_value_3": "20",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "1000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "b33 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sigma\\\\nElec. Rewiring",
"lower_case_name": "Sigma electrical rewiring",
"lower_case_plural_name": "Sigma electrical rewirings",
"requirments_government": "127",
"flags": "0x4008",
"end_of_resource": "EOR"
},
335: {
"resource_type": "outf",
"id": "335",
"name": "Sigma Mount Reinforcement",
"display_weight": "0",
"mass": "0",
"tech_level": "20",
"mod_type_1": "45",
"mod_value_1": "4",
"mod_type_2": "46",
"mod_value_2": "2",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "1500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "b33 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sigma\\\\nMount Reinf.",
"lower_case_name": "Sigma mount reinforcement",
"lower_case_plural_name": "Sigma mount reinforcement",
"requirments_government": "127",
"flags": "0x4008",
"end_of_resource": "EOR"
},
336: {
"resource_type": "outf",
"id": "336",
"name": ";T1 Strength",
"display_weight": "114",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "4",
"mod_value_1": "1000",
"mod_type_2": "5",
"mod_value_2": "100",
"mod_type_3": "12",
"mod_value_3": "800",
"mod_type_4": "19",
"mod_value_4": "-1",
"max_count": "6",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "T1 Strength Level",
"lower_case_name": "T1 strength level",
"lower_case_plural_name": "T1 strength levels",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
337: {
"resource_type": "outf",
"id": "337",
"name": ";T0 Strength",
"display_weight": "114",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "4",
"mod_value_1": "2000",
"mod_type_2": "5",
"mod_value_2": "150",
"mod_type_3": "12",
"mod_value_3": "1200",
"mod_type_4": "19",
"mod_value_4": "-1",
"max_count": "6",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "T0 Strength Level",
"lower_case_name": "T0 strength level",
"lower_case_plural_name": "T0 strength levels",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
338: {
"resource_type": "outf",
"id": "338",
"name": "Telekinetic Boost",
"display_weight": "112",
"mass": "0",
"tech_level": "999",
"mod_type_1": "15",
"mod_value_1": "20",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Telekinetic Boost",
"lower_case_name": "telekinetic boost",
"lower_case_plural_name": "telekinetic boosts",
"requirments_government": "127",
"flags": "0x402C",
"end_of_resource": "EOR"
},
339: {
"resource_type": "outf",
"id": "339",
"name": ";Krypt mind attack",
"display_weight": "0",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "5",
"mod_value_1": "-20",
"mod_type_2": "18",
"mod_value_2": "-12",
"mod_type_3": "4",
"mod_value_3": "-50",
"mod_type_4": "29",
"mod_value_4": "-10",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "",
"lower_case_name": "",
"lower_case_plural_name": "",
"requirments_government": "-1",
"flags": "0x0000",
"end_of_resource": "EOR"
},
340: {
"resource_type": "outf",
"id": "340",
"name": "Sigma Mass Expansion",
"display_weight": "0",
"mass": "-100",
"tech_level": "20",
"mod_type_1": "2",
"mod_value_1": "-120",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "2500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "40",
"availability": "b33 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sigma\\\\nMass Expansion",
"lower_case_name": "Sigma mass expansion",
"lower_case_plural_name": "Sigma mass expansions",
"requirments_government": "127",
"flags": "0x4008",
"end_of_resource": "EOR"
},
341: {
"resource_type": "outf",
"id": "341",
"name": "Sigma Mass Addition",
"display_weight": "0",
"mass": "-5",
"tech_level": "20",
"mod_type_1": "-1",
"mod_value_1": "0",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "500000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "60",
"availability": "b33 & !b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Sigma\\\\nMass Addition",
"lower_case_name": "Sigma mass addition",
"lower_case_plural_name": "Sigma mass additions",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
342: {
"resource_type": "outf",
"id": "342",
"name": "Area Map - Vell-os",
"display_weight": "0",
"mass": "0",
"tech_level": "0",
"mod_type_1": "16",
"mod_value_1": "2",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Area Map",
"lower_case_name": "area map",
"lower_case_plural_name": "area maps",
"requirments_government": "-1",
"flags": "0x4000",
"end_of_resource": "EOR"
},
345: {
"resource_type": "outf",
"id": "345",
"name": "Wraith Cannon",
"display_weight": "16",
"mass": "10",
"tech_level": "15",
"mod_type_1": "1",
"mod_value_1": "219",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "4",
"cost": "500000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "70",
"availability": "b130",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Wraith Cannon",
"lower_case_name": "wraith cannon",
"lower_case_plural_name": "wraith cannons",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
346: {
"resource_type": "outf",
"id": "346",
"name": "Wraithii",
"display_weight": "16",
"mass": "0",
"tech_level": "15",
"mod_type_1": "3",
"mod_value_1": "145",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "600",
"cost": "2500",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "85",
"availability": "b130",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Wraithii",
"lower_case_name": "wraithii",
"lower_case_plural_name": "wraithii",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
347: {
"resource_type": "outf",
"id": "347",
"name": "Rebel Cloaking Device - illegal",
"display_weight": "59",
"mass": "15",
"tech_level": "15",
"mod_type_1": "17",
"mod_value_1": "6",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "3500000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Rebel Cloaking\\\\nDevice",
"lower_case_name": "Rebel cloaking device",
"lower_case_plural_name": "Rebel cloaking devices",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
348: {
"resource_type": "outf",
"id": "348",
"name": "Bureau Bomb Outfit",
"display_weight": "0",
"mass": "0",
"tech_level": "9999",
"mod_type_1": "47",
"mod_value_1": "3220",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "0",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "-1",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Bomb",
"lower_case_name": "",
"lower_case_plural_name": "",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
358: {
"resource_type": "outf",
"id": "358",
"name": "Cheap Thorium Reactor",
"display_weight": "0",
"mass": "7",
"tech_level": "57",
"mod_type_1": "18",
"mod_value_1": "20",
"mod_type_2": "8",
"mod_value_2": "5",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "400000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "20",
"availability": "!b424",
"on_purchase": "b9011",
"on_sell": "!b9011",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Thorium Reactor\\\\n- cheap -",
"lower_case_name": "cheap thorium reactor",
"lower_case_plural_name": "cheap thorium reactors",
"requirments_government": "127",
"flags": "0x0800",
"end_of_resource": "EOR"
},
359: {
"resource_type": "outf",
"id": "359",
"name": "Cheap Fission Reactor",
"display_weight": "0",
"mass": "8",
"tech_level": "57",
"mod_type_1": "18",
"mod_value_1": "35",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "100000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "35",
"availability": "!b424",
"on_purchase": "b9012",
"on_sell": "!b9012",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fission Reactor\\\\n- cheap -",
"lower_case_name": "cheap fission reactor",
"lower_case_plural_name": "cheap fission reactors",
"requirments_government": "127",
"flags": "0x0800",
"end_of_resource": "EOR"
},
360: {
"resource_type": "outf",
"id": "360",
"name": "Cheap Carbon Fiber",
"display_weight": "0",
"mass": "1",
"tech_level": "55",
"mod_type_1": "6",
"mod_value_1": "30",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "150",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "60",
"availability": "!b424",
"on_purchase": "b9013",
"on_sell": "!b9013",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Carbon Fiber\\\\n- cheap -",
"lower_case_name": "layer of cheap carbon fiber",
"lower_case_plural_name": "layers of cheap carbon fiber",
"requirments_government": "127",
"flags": "0x0E00",
"end_of_resource": "EOR"
},
361: {
"resource_type": "outf",
"id": "361",
"name": "Cheap Military IR Jammer",
"display_weight": "0",
"mass": "2",
"tech_level": "55",
"mod_type_1": "33",
"mod_value_1": "25",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "15000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "50",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Mil IR Jammer\\\\n- cheap -",
"lower_case_name": "cheap military IR jammer",
"lower_case_plural_name": "cheap military IR jammers",
"requirments_government": "127",
"flags": "0x0800",
"end_of_resource": "EOR"
},
362: {
"resource_type": "outf",
"id": "362",
"name": "Cheap Military Radar Jammer",
"display_weight": "0",
"mass": "3",
"tech_level": "55",
"mod_type_1": "34",
"mod_value_1": "20",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "25000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "40",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Mil Rdr Jammer\\\\n- cheap -",
"lower_case_name": "cheap military radar jammer",
"lower_case_plural_name": "cheap military radar jammers",
"requirments_government": "127",
"flags": "0x0800",
"end_of_resource": "EOR"
},
363: {
"resource_type": "outf",
"id": "363",
"name": "Forged Exotic Ships & Weapons License",
"display_weight": "0",
"mass": "0",
"tech_level": "58",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "5",
"availability": "!b424",
"on_purchase": "S731 D265 D264 D263 D260 D259 D258 D257",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000000",
"short_name": "Exotic License\\\\n- forged -",
"lower_case_name": "forged exotic ships and weapons license",
"lower_case_plural_name": "forged exotic ships and weapons licenses",
"requirments_government": "127",
"flags": "0x0018",
"end_of_resource": "EOR"
},
364: {
"resource_type": "outf",
"id": "364",
"name": "Forged Exotic Ships & Weapons License",
"display_weight": "0",
"mass": "0",
"tech_level": "58",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "45000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "5",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x000001FF00000000",
"require_bits": "0x0000000000000000",
"short_name": "Exotic License\\\\n- forged -",
"lower_case_name": "forged exotic ships and weapons license",
"lower_case_plural_name": "forged exotic ships and weapons licenses",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
374: {
"resource_type": "outf",
"id": "374",
"name": "Thorium Reactor - bomb",
"display_weight": "93",
"mass": "15",
"tech_level": "67",
"mod_type_1": "47",
"mod_value_1": "3246",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "400000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Thorium Reactor",
"lower_case_name": "thorium reactor",
"lower_case_plural_name": "thorium reactors",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
375: {
"resource_type": "outf",
"id": "375",
"name": "Fission Reactor - disabled",
"display_weight": "93",
"mass": "40",
"tech_level": "67",
"mod_type_1": "18",
"mod_value_1": "120",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "250",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Fission Reactor\\\\n- faulty -",
"lower_case_name": "faulty fission reactor",
"lower_case_plural_name": "faulty fission reactors",
"requirments_government": "127",
"flags": "0x4800",
"end_of_resource": "EOR"
},
376: {
"resource_type": "outf",
"id": "376",
"name": "Carbon Fiber - degraded",
"display_weight": "16",
"mass": "1",
"tech_level": "65",
"mod_type_1": "6",
"mod_value_1": "20",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "75",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Carbon Fiber\\\\n- degraded -",
"lower_case_name": "layer of degraded carbon fiber",
"lower_case_plural_name": "layers of degraded carbon fiber",
"requirments_government": "127",
"flags": "0x4E00",
"end_of_resource": "EOR"
},
377: {
"resource_type": "outf",
"id": "377",
"name": "Carbon Fiber - degraded",
"display_weight": "16",
"mass": "1",
"tech_level": "65",
"mod_type_1": "6",
"mod_value_1": "10",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "50",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Carbon Fiber\\\\n-degraded -",
"lower_case_name": "layer of degraded carbon fiber",
"lower_case_plural_name": "layers of degraded carbon fiber",
"requirments_government": "127",
"flags": "0x4E00",
"end_of_resource": "EOR"
},
378: {
"resource_type": "outf",
"id": "378",
"name": "Carbon Fiber - degraded",
"display_weight": "16",
"mass": "1",
"tech_level": "65",
"mod_type_1": "6",
"mod_value_1": "6",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "2",
"cost": "25",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "0",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Carbon Fiber\\\\n- degraded -",
"lower_case_name": "layer of degraded carbon fiber",
"lower_case_plural_name": "layers of degraded carbon fiber",
"requirments_government": "127",
"flags": "0x4E00",
"end_of_resource": "EOR"
},
433: {
"resource_type": "outf",
"id": "433",
"name": "Map; Fed/Pol",
"display_weight": "16",
"mass": "0",
"tech_level": "81",
"mod_type_1": "16",
"mod_value_1": "2",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Map",
"lower_case_name": "map",
"lower_case_plural_name": "maps",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
434: {
"resource_type": "outf",
"id": "434",
"name": "Map; Reb/Pir/Aur",
"display_weight": "16",
"mass": "0",
"tech_level": "82",
"mod_type_1": "16",
"mod_value_1": "3",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "1000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "100",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Map",
"lower_case_name": "map",
"lower_case_plural_name": "maps",
"requirments_government": "127",
"flags": "0x0000",
"end_of_resource": "EOR"
},
435: {
"resource_type": "outf",
"id": "435",
"name": "Hellhound Missile Launcher",
"display_weight": "73",
"mass": "10",
"tech_level": "115",
"mod_type_1": "1",
"mod_value_1": "230",
"mod_type_2": "8",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "3",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "Hellhound Mssl\\\\nLauncher",
"lower_case_name": "hellhound missile launcher",
"lower_case_plural_name": "hellhound missile launchers",
"requirments_government": "127",
"flags": "0x0100",
"end_of_resource": "EOR"
},
436: {
"resource_type": "outf",
"id": "436",
"name": "Hellhound Missile",
"display_weight": "73",
"mass": "0",
"tech_level": "115",
"mod_type_1": "3",
"mod_value_1": "230",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "50",
"cost": "1500",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "!b424 & P30",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000200000001",
"short_name": "Hellhound Mssl",
"lower_case_name": "hellhound missile",
"lower_case_plural_name": "hellhound missiles",
"requirments_government": "127",
"flags": "0x0100",
"end_of_resource": "EOR"
},
437: {
"resource_type": "outf",
"id": "437",
"name": "Repair Droids",
"display_weight": "60",
"mass": "10",
"tech_level": "12",
"mod_type_1": "49",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "1",
"cost": "300000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "80",
"availability": "b446",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Repair Droids",
"lower_case_name": "repair droids",
"lower_case_plural_name": "repair droids",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
438: {
"resource_type": "outf",
"id": "438",
"name": "Light Cannon",
"display_weight": "100",
"mass": "2",
"tech_level": "111",
"mod_type_1": "1",
"mod_value_1": "231",
"mod_type_2": "-1",
"mod_value_2": "0",
"mod_type_3": "-1",
"mod_value_3": "0",
"mod_type_4": "-1",
"mod_value_4": "0",
"max_count": "6",
"cost": "10000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "90",
"availability": "",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Light Cannon",
"lower_case_name": "light cannon",
"lower_case_plural_name": "light cannons",
"requirments_government": "127",
"flags": "0x0001",
"end_of_resource": "EOR"
},
439: {
"resource_type": "outf",
"id": "439",
"name": "Exotic Ships & Weapons License",
"display_weight": "0",
"mass": "0",
"tech_level": "73",
"mod_type_1": "-1",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "45000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "5",
"availability": "!b424",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x000001FF00000000",
"require_bits": "0x0000000000000000",
"short_name": "Exotic License\\\\n- forged -",
"lower_case_name": "forged exotic ships and weapons license",
"lower_case_plural_name": "forged exotic ships and weapons licenses",
"requirments_government": "127",
"flags": "0x000C",
"end_of_resource": "EOR"
},
440: {
"resource_type": "outf",
"id": "440",
"name": "TripHammer",
"display_weight": "0",
"mass": "0",
"tech_level": "999",
"mod_type_1": "1",
"mod_value_1": "232",
"mod_type_2": "6",
"mod_value_2": "100",
"mod_type_3": "7",
"mod_value_3": "20",
"mod_type_4": "9",
"mod_value_4": "5",
"max_count": "4",
"cost": "1000000",
"item_class": "0",
"scan_mask": "0x0000",
"buy_random": "50",
"availability": "b9999",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "TripHammer",
"lower_case_name": "TripHammer",
"lower_case_plural_name": "TripHammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
441: {
"resource_type": "outf",
"id": "441",
"name": "Transmission Jammer",
"display_weight": "0",
"mass": "1",
"tech_level": "200",
"mod_type_1": "44",
"mod_value_1": "-1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "75000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "90",
"availability": "b158",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "Transmission\\\\nJammer",
"lower_case_name": "transmission jammer",
"lower_case_plural_name": "transmission jammers",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
442: {
"resource_type": "outf",
"id": "442",
"name": "Federation IFF Projector",
"display_weight": "0",
"mass": "2",
"tech_level": "200",
"mod_type_1": "48",
"mod_value_1": "1",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "90",
"availability": "b158",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "IFF Projector\\\\n- Federation -",
"lower_case_name": "Federation IFF projector",
"lower_case_plural_name": "Federation IFF projectors",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
},
443: {
"resource_type": "outf",
"id": "443",
"name": "Moash IFF Projector",
"display_weight": "0",
"mass": "2",
"tech_level": "200",
"mod_type_1": "48",
"mod_value_1": "3",
"mod_type_2": "-1",
"mod_value_2": "-1",
"mod_type_3": "-1",
"mod_value_3": "-1",
"mod_type_4": "-1",
"mod_value_4": "-1",
"max_count": "1",
"cost": "50000",
"item_class": "0",
"scan_mask": "0x8000",
"buy_random": "90",
"availability": "b158",
"on_purchase": "",
"on_sell": "",
"contribute_bits": "0x0000000000000000",
"require_bits": "0x0000000000000001",
"short_name": "IFF Projector\\\\n- Moash -",
"lower_case_name": "Moash IFF projector",
"lower_case_plural_name": "Moash IFF projectors",
"requirments_government": "127",
"flags": "0x4000",
"end_of_resource": "EOR"
}
}