fdev-ids 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. fdev_ids-1.0.0/LICENSE +9 -0
  2. fdev_ids-1.0.0/PKG-INFO +115 -0
  3. fdev_ids-1.0.0/README.md +79 -0
  4. fdev_ids-1.0.0/pyproject.toml +54 -0
  5. fdev_ids-1.0.0/setup.cfg +4 -0
  6. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/CQCRank.csv +15 -0
  7. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/EmpireRank.csv +16 -0
  8. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/ExplorationRank.csv +15 -0
  9. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/FederationRank.csv +16 -0
  10. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/TradeRank.csv +15 -0
  11. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/bundles.csv +6 -0
  12. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/combatrank.csv +15 -0
  13. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/commodity.csv +257 -0
  14. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/crimes.csv +41 -0
  15. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/dockingdeniedreasons.csv +8 -0
  16. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/economy.csv +18 -0
  17. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/engineers.csv +39 -0
  18. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/factionids.csv +10 -0
  19. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/factionstate.csv +28 -0
  20. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/government.csv +16 -0
  21. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/happiness.csv +6 -0
  22. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/material.csv +138 -0
  23. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/microresources.csv +197 -0
  24. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/outfitting.csv +1156 -0
  25. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/passengers.csv +18 -0
  26. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/rare_commodity.csv +143 -0
  27. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/rings.csv +5 -0
  28. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/security.csv +6 -0
  29. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/shipyard.csv +46 -0
  30. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/sku.csv +60 -0
  31. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/systemallegiance.csv +9 -0
  32. fdev_ids-1.0.0/src/fdev_ids/FDevIDs/terraformingstate.csv +4 -0
  33. fdev_ids-1.0.0/src/fdev_ids/__init__.py +106 -0
  34. fdev_ids-1.0.0/src/fdev_ids/_loader.py +46 -0
  35. fdev_ids-1.0.0/src/fdev_ids.egg-info/PKG-INFO +115 -0
  36. fdev_ids-1.0.0/src/fdev_ids.egg-info/SOURCES.txt +38 -0
  37. fdev_ids-1.0.0/src/fdev_ids.egg-info/dependency_links.txt +1 -0
  38. fdev_ids-1.0.0/src/fdev_ids.egg-info/requires.txt +14 -0
  39. fdev_ids-1.0.0/src/fdev_ids.egg-info/top_level.txt +1 -0
  40. fdev_ids-1.0.0/tests/test_fdev_ids.py +25 -0
fdev_ids-1.0.0/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 jdlbt
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,115 @@
1
+ Metadata-Version: 2.4
2
+ Name: fdev-ids
3
+ Version: 1.0.0
4
+ Summary: Data from https://github.com/EDCD/FDevIDs bundled in Python data structures.
5
+ Author: Julien de la Bruère-Terreault
6
+ Maintainer: Julien de la Bruère-Terreault
7
+ License-Expression: MIT
8
+ Project-URL: Homepage, https://codeberg.org/jdlbt/fdev-ids-python
9
+ Project-URL: Issue tracker, https://codeberg.org/jdlbt/fdev-ids-python/issues
10
+ Project-URL: Source, https://codeberg.org/jdlbt/fdev-ids-python
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Requires-Python: >=3.10
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Provides-Extra: tests
24
+ Requires-Dist: pytest; extra == "tests"
25
+ Requires-Dist: pytest-cov; extra == "tests"
26
+ Requires-Dist: pytest-regressions; extra == "tests"
27
+ Provides-Extra: dev
28
+ Requires-Dist: fdev-ids[tests]; extra == "dev"
29
+ Requires-Dist: black==25.9.0; extra == "dev"
30
+ Requires-Dist: build; extra == "dev"
31
+ Requires-Dist: flake8==7.3.0; extra == "dev"
32
+ Requires-Dist: isort==6.1.0; extra == "dev"
33
+ Requires-Dist: pre-commit; extra == "dev"
34
+ Requires-Dist: tox; extra == "dev"
35
+ Dynamic: license-file
36
+
37
+ # fdev-ids-python
38
+
39
+ Data from https://github.com/EDCD/FDevIDs bundled in Python data structures.
40
+
41
+ ## Installation
42
+
43
+ pip install fdev-ids
44
+
45
+ ## Usage
46
+
47
+ Load a table by specifying the lowercase table name:
48
+
49
+ ```pycon
50
+ >>> from pprint import pprint
51
+ >>> from fdev_ids import load_table
52
+ >>> bundles = load_table("bundles")
53
+ >>> pprint(bundles)
54
+ {129030471: {'id': 129030471,
55
+ 'name': 'AX COMBAT JUMPSTART ALLIANCE CHIEFTAIN',
56
+ 'sku': 'FORC_FDEV_V_CHIEFTAIN_BUNDLE_001'},
57
+ 129030472: {'id': 129030472,
58
+ 'name': 'LASER MINING JUMPSTART TYPE-6',
59
+ 'sku': 'FORC_FDEV_V_TYPE6_BUNDLE_001'},
60
+ 129030473: {'id': 129030473,
61
+ 'name': 'EXPLORATION JUMPSTART DIAMONDBACK EXPLORER',
62
+ 'sku': 'FORC_FDEV_V_DIAMOND_EXPLORER_BUNDLE_001'},
63
+ 129030512: {'id': 129030512,
64
+ 'name': 'PYTHON MK II STELLAR',
65
+ 'sku': 'FORC_FDEV_V_PYTHON_MKII_BUNDLE_001'},
66
+ 129030519: {'id': 129030519,
67
+ 'name': 'PYTHON MK II STANDARD',
68
+ 'sku': 'FORC_FDEV_V_PYTHON_MKII_BUNDLE_002'}}
69
+ ```
70
+
71
+ Tables with a single value per ID return the value directly for each ID:
72
+
73
+ ```pycon
74
+ >>> factionids = load_table("factionids")
75
+ >>> pprint(factionids)
76
+ {'$faction_Alliance;': 'Alliance',
77
+ '$faction_Empire;': 'Empire',
78
+ '$faction_Federation;': 'Federation',
79
+ '$faction_FrontlineSolutions;': 'Frontline Solutions',
80
+ '$faction_Independent;': 'Independent',
81
+ '$faction_Pirate;': 'Pirate',
82
+ '$faction_Thargoid;': 'Thargoid',
83
+ '$faction_none;': 'None'}
84
+ ```
85
+
86
+ Similarily when only the ID is defined:
87
+
88
+ ```pycon
89
+ >>> dockingdeniedreasons = load_table("dockingdeniedreasons")
90
+ >>> pprint(dockingdeniedreasons)
91
+ {'ActiveFighter': 'ActiveFighter',
92
+ 'Distance': 'Distance',
93
+ 'Hostile': 'Hostile',
94
+ 'NoSpace': 'NoSpace',
95
+ 'Offences': 'Offences',
96
+ 'RestrictedAccess': 'RestrictedAccess',
97
+ 'TooLarge': 'TooLarge'}
98
+ ```
99
+
100
+ ## Terms of Use
101
+
102
+ The data contained in this package is based on publicly available information sourced from https://github.com/EDCD/FDevIDs and subject to the [Elite Dangerous EULA and Terms of Use](https://www.frontierstore.net/ed-eula/).
103
+
104
+ The MIT license applies to the code in this repository only.
105
+
106
+ ## Issues & support
107
+
108
+ Report issues with the package itself at https://codeberg.org/jdlbt/fdev-ids-python/issues.
109
+
110
+ For issues with or updates to the data tables, refer to https://github.com/EDCD/FDevIDs/issues.
111
+
112
+
113
+ ## Development
114
+
115
+ See [CONTRIBUTING](CONTRIBUTING.md).
@@ -0,0 +1,79 @@
1
+ # fdev-ids-python
2
+
3
+ Data from https://github.com/EDCD/FDevIDs bundled in Python data structures.
4
+
5
+ ## Installation
6
+
7
+ pip install fdev-ids
8
+
9
+ ## Usage
10
+
11
+ Load a table by specifying the lowercase table name:
12
+
13
+ ```pycon
14
+ >>> from pprint import pprint
15
+ >>> from fdev_ids import load_table
16
+ >>> bundles = load_table("bundles")
17
+ >>> pprint(bundles)
18
+ {129030471: {'id': 129030471,
19
+ 'name': 'AX COMBAT JUMPSTART ALLIANCE CHIEFTAIN',
20
+ 'sku': 'FORC_FDEV_V_CHIEFTAIN_BUNDLE_001'},
21
+ 129030472: {'id': 129030472,
22
+ 'name': 'LASER MINING JUMPSTART TYPE-6',
23
+ 'sku': 'FORC_FDEV_V_TYPE6_BUNDLE_001'},
24
+ 129030473: {'id': 129030473,
25
+ 'name': 'EXPLORATION JUMPSTART DIAMONDBACK EXPLORER',
26
+ 'sku': 'FORC_FDEV_V_DIAMOND_EXPLORER_BUNDLE_001'},
27
+ 129030512: {'id': 129030512,
28
+ 'name': 'PYTHON MK II STELLAR',
29
+ 'sku': 'FORC_FDEV_V_PYTHON_MKII_BUNDLE_001'},
30
+ 129030519: {'id': 129030519,
31
+ 'name': 'PYTHON MK II STANDARD',
32
+ 'sku': 'FORC_FDEV_V_PYTHON_MKII_BUNDLE_002'}}
33
+ ```
34
+
35
+ Tables with a single value per ID return the value directly for each ID:
36
+
37
+ ```pycon
38
+ >>> factionids = load_table("factionids")
39
+ >>> pprint(factionids)
40
+ {'$faction_Alliance;': 'Alliance',
41
+ '$faction_Empire;': 'Empire',
42
+ '$faction_Federation;': 'Federation',
43
+ '$faction_FrontlineSolutions;': 'Frontline Solutions',
44
+ '$faction_Independent;': 'Independent',
45
+ '$faction_Pirate;': 'Pirate',
46
+ '$faction_Thargoid;': 'Thargoid',
47
+ '$faction_none;': 'None'}
48
+ ```
49
+
50
+ Similarily when only the ID is defined:
51
+
52
+ ```pycon
53
+ >>> dockingdeniedreasons = load_table("dockingdeniedreasons")
54
+ >>> pprint(dockingdeniedreasons)
55
+ {'ActiveFighter': 'ActiveFighter',
56
+ 'Distance': 'Distance',
57
+ 'Hostile': 'Hostile',
58
+ 'NoSpace': 'NoSpace',
59
+ 'Offences': 'Offences',
60
+ 'RestrictedAccess': 'RestrictedAccess',
61
+ 'TooLarge': 'TooLarge'}
62
+ ```
63
+
64
+ ## Terms of Use
65
+
66
+ The data contained in this package is based on publicly available information sourced from https://github.com/EDCD/FDevIDs and subject to the [Elite Dangerous EULA and Terms of Use](https://www.frontierstore.net/ed-eula/).
67
+
68
+ The MIT license applies to the code in this repository only.
69
+
70
+ ## Issues & support
71
+
72
+ Report issues with the package itself at https://codeberg.org/jdlbt/fdev-ids-python/issues.
73
+
74
+ For issues with or updates to the data tables, refer to https://github.com/EDCD/FDevIDs/issues.
75
+
76
+
77
+ ## Development
78
+
79
+ See [CONTRIBUTING](CONTRIBUTING.md).
@@ -0,0 +1,54 @@
1
+ [build-system]
2
+ requires = ["setuptools>=78"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "fdev-ids"
7
+ description = "Data from https://github.com/EDCD/FDevIDs bundled in Python data structures."
8
+ license = "MIT"
9
+ maintainers = [ { name = "Julien de la Bruère-Terreault" } ]
10
+ authors = [ { name = "Julien de la Bruère-Terreault" } ]
11
+ dynamic = ["version"]
12
+ requires-python = ">=3.10"
13
+ classifiers = [
14
+ "Development Status :: 5 - Production/Stable",
15
+ "Intended Audience :: Developers",
16
+ "Programming Language :: Python",
17
+ "Programming Language :: Python :: 3 :: Only",
18
+ "Programming Language :: Python :: 3.10",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.12",
21
+ "Programming Language :: Python :: 3.13",
22
+ "Programming Language :: Python :: 3.14",
23
+ ]
24
+ readme = "README.md"
25
+ urls.Homepage = "https://codeberg.org/jdlbt/fdev-ids-python"
26
+ urls."Issue tracker" = "https://codeberg.org/jdlbt/fdev-ids-python/issues"
27
+ urls.Source = "https://codeberg.org/jdlbt/fdev-ids-python"
28
+
29
+ [project.optional-dependencies]
30
+ tests = ["pytest", "pytest-cov", "pytest-regressions"]
31
+ dev = [
32
+ "fdev-ids[tests]",
33
+ "black==25.9.0",
34
+ "build",
35
+ "flake8==7.3.0",
36
+ "isort==6.1.0",
37
+ "pre-commit",
38
+ "tox",
39
+ ]
40
+
41
+ [tool.setuptools.dynamic]
42
+ version = { attr = "fdev_ids.__version__" }
43
+
44
+ [tool.setuptools.package-data]
45
+ fdev_ids = ["FDevIDs/*.csv"]
46
+
47
+ [tool.black]
48
+ line-length = 88
49
+
50
+ [tool.isort]
51
+ profile = "google"
52
+
53
+ [tool.pytest.ini_options]
54
+ addopts = "-v"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,15 @@
1
+ number,name
2
+ 0,Helpless
3
+ 1,Mostly Helpless
4
+ 2,Amateur
5
+ 3,Semi Professional
6
+ 4,Professional
7
+ 5,Champion
8
+ 6,Hero
9
+ 7,Legend
10
+ 8,Elite
11
+ 9,Elite I
12
+ 10,Elite II
13
+ 11,Elite III
14
+ 12,Elite IV
15
+ 13,Elite V
@@ -0,0 +1,16 @@
1
+ number,name
2
+ 0,None
3
+ 1,Outsider
4
+ 2,Serf
5
+ 3,Master
6
+ 4,Squire
7
+ 5,Knight
8
+ 6,Lord
9
+ 7,Baron
10
+ 8,Viscount
11
+ 9,Count
12
+ 10,Earl
13
+ 11,Marquis
14
+ 12,Duke
15
+ 13,Prince
16
+ 14,King
@@ -0,0 +1,15 @@
1
+ number,name
2
+ 0,Aimless
3
+ 1,Mostly Aimless
4
+ 2,Scout
5
+ 3,Surveyor
6
+ 4,Explorer
7
+ 5,Pathfinder
8
+ 6,Ranger
9
+ 7,Pioneer
10
+ 8,Elite
11
+ 9,Elite I
12
+ 10,Elite II
13
+ 11,Elite III
14
+ 12,Elite IV
15
+ 13,Elite V
@@ -0,0 +1,16 @@
1
+ number,name
2
+ 0,None
3
+ 1,Recruit
4
+ 2,Cadet
5
+ 3,Midshipman
6
+ 4,Petty Officer
7
+ 5,Chief Petty Officer
8
+ 6,Warrant Officer
9
+ 7,Ensign
10
+ 8,Lieutenant
11
+ 9,Lt Commander
12
+ 10,Post Commander
13
+ 11,Post Captain
14
+ 12,Rear Admiral
15
+ 13,Vice Admiral
16
+ 14,Admiral
@@ -0,0 +1,15 @@
1
+ number,name
2
+ 0,Penniless
3
+ 1,Mostly Penniless
4
+ 2,Peddler
5
+ 3,Dealer
6
+ 4,Merchant
7
+ 5,Broker
8
+ 6,Entrepreneur
9
+ 7,Tycoon
10
+ 8,Elite
11
+ 9,Elite I
12
+ 10,Elite II
13
+ 11,Elite III
14
+ 12,Elite IV
15
+ 13,Elite V
@@ -0,0 +1,6 @@
1
+ id,name,sku
2
+ 129030471,AX COMBAT JUMPSTART ALLIANCE CHIEFTAIN,FORC_FDEV_V_CHIEFTAIN_BUNDLE_001
3
+ 129030472,LASER MINING JUMPSTART TYPE-6,FORC_FDEV_V_TYPE6_BUNDLE_001
4
+ 129030473,EXPLORATION JUMPSTART DIAMONDBACK EXPLORER,FORC_FDEV_V_DIAMOND_EXPLORER_BUNDLE_001
5
+ 129030512,PYTHON MK II STELLAR,FORC_FDEV_V_PYTHON_MKII_BUNDLE_001
6
+ 129030519,PYTHON MK II STANDARD,FORC_FDEV_V_PYTHON_MKII_BUNDLE_002
@@ -0,0 +1,15 @@
1
+ number,name
2
+ 0,Harmless
3
+ 1,MostlyHarmless
4
+ 2,Novice
5
+ 3,Competent
6
+ 4,Expert
7
+ 5,Master
8
+ 6,Dangerous
9
+ 7,Deadly
10
+ 8,Elite
11
+ 9,Elite I
12
+ 10,Elite II
13
+ 11,Elite III
14
+ 12,Elite IV
15
+ 13,Elite V
@@ -0,0 +1,257 @@
1
+ id,symbol,category,name
2
+ 128049152,Platinum,Metals,Platinum
3
+ 128049153,Palladium,Metals,Palladium
4
+ 128049154,Gold,Metals,Gold
5
+ 128049155,Silver,Metals,Silver
6
+ 128049156,Bertrandite,Minerals,Bertrandite
7
+ 128049157,Indite,Minerals,Indite
8
+ 128049158,Gallite,Minerals,Gallite
9
+ 128049159,Coltan,Minerals,Coltan
10
+ 128049160,Uraninite,Minerals,Uraninite
11
+ 128049161,Lepidolite,Minerals,Lepidolite
12
+ 128049162,Cobalt,Metals,Cobalt
13
+ 128049163,Rutile,Minerals,Rutile
14
+ 128049165,Bauxite,Minerals,Bauxite
15
+ 128049166,Water,Chemicals,Water
16
+ 128049168,Beryllium,Metals,Beryllium
17
+ 128049169,Indium,Metals,Indium
18
+ 128049170,Gallium,Metals,Gallium
19
+ 128049171,Tantalum,Metals,Tantalum
20
+ 128049172,Uranium,Metals,Uranium
21
+ 128049173,Lithium,Metals,Lithium
22
+ 128049174,Titanium,Metals,Titanium
23
+ 128049175,Copper,Metals,Copper
24
+ 128049176,Aluminium,Metals,Aluminium
25
+ 128049177,Algae,Foods,Algae
26
+ 128049178,FruitAndVegetables,Foods,Fruit and Vegetables
27
+ 128049180,Grain,Foods,Grain
28
+ 128049182,Animalmeat,Foods,Animal Meat
29
+ 128049183,Fish,Foods,Fish
30
+ 128049184,FoodCartridges,Foods,Food Cartridges
31
+ 128049185,SyntheticMeat,Foods,Synthetic Meat
32
+ 128049188,Tea,Foods,Tea
33
+ 128049189,Coffee,Foods,Coffee
34
+ 128049190,Leather,Textiles,Leather
35
+ 128049191,NaturalFabrics,Textiles,Natural Fabrics
36
+ 128049193,SyntheticFabrics,Textiles,Synthetic Fabrics
37
+ 128049197,Polymers,Industrial Materials,Polymers
38
+ 128049199,Semiconductors,Industrial Materials,Semiconductors
39
+ 128049200,Superconductors,Industrial Materials,Superconductors
40
+ 128049202,HydrogenFuel,Chemicals,Hydrogen Fuel
41
+ 128049203,MineralOil,Chemicals,Mineral Oil
42
+ 128049204,Explosives,Chemicals,Explosives
43
+ 128049205,Pesticides,Chemicals,Pesticides
44
+ 128049208,AgriculturalMedicines,Medicines,Agri-Medicines
45
+ 128049209,PerformanceEnhancers,Medicines,Performance Enhancers
46
+ 128049210,BasicMedicines,Medicines,Basic Medicines
47
+ 128049212,BasicNarcotics,Legal Drugs,Narcotics
48
+ 128049213,Tobacco,Legal Drugs,Tobacco
49
+ 128049214,Beer,Legal Drugs,Beer
50
+ 128049215,Wine,Legal Drugs,Wine
51
+ 128049216,Liquor,Legal Drugs,Liquor
52
+ 128049217,PowerGenerators,Machinery,Power Generators
53
+ 128049218,WaterPurifiers,Machinery,Water Purifiers
54
+ 128049220,HeliostaticFurnaces,Machinery,Microbial Furnaces
55
+ 128049221,MineralExtractors,Machinery,Mineral Extractors
56
+ 128049222,CropHarvesters,Machinery,Crop Harvesters
57
+ 128049223,MarineSupplies,Machinery,Marine Equipment
58
+ 128049225,ComputerComponents,Technology,Computer Components
59
+ 128049226,HazardousEnvironmentSuits,Technology,H.E. Suits
60
+ 128049227,Robotics,Technology,Robotics
61
+ 128049228,AutoFabricators,Technology,Auto-Fabricators
62
+ 128049229,AnimalMonitors,Technology,Animal Monitors
63
+ 128049230,AquaponicSystems,Technology,Aquaponic Systems
64
+ 128049231,AdvancedCatalysers,Technology,Advanced Catalysers
65
+ 128049232,TerrainEnrichmentSystems,Technology,Land Enrichment Systems
66
+ 128049233,PersonalWeapons,Weapons,Personal Weapons
67
+ 128049234,BattleWeapons,Weapons,Battle Weapons
68
+ 128049235,ReactiveArmour,Weapons,Reactive Armour
69
+ 128049236,NonLethalWeapons,Weapons,Non-Lethal Weapons
70
+ 128049238,DomesticAppliances,Consumer Items,Domestic Appliances
71
+ 128049240,ConsumerTechnology,Consumer Items,Consumer Technology
72
+ 128049241,Clothing,Consumer Items,Clothing
73
+ 128049243,Slaves,Slavery,Slaves
74
+ 128049244,Biowaste,Waste,Biowaste
75
+ 128049245,ToxicWaste,Waste,Toxic Waste
76
+ 128049246,ChemicalWaste,Waste,Chemical Waste
77
+ 128049248,Scrap,Waste,Scrap
78
+ 128049669,ProgenitorCells,Medicines,Progenitor Cells
79
+ 128049670,CombatStabilisers,Medicines,Combat Stabilisers
80
+ 128049671,ResonatingSeparators,Technology,Resonating Separators
81
+ 128049672,BioReducingLichen,Technology,Bioreducing Lichen
82
+ 128064028,AtmosphericExtractors,Machinery,Atmospheric Processors
83
+ 128066403,Drones,NonMarketable,Limpets
84
+ 128666752,USSCargoBlackBox,Salvage,Black Box
85
+ 128666754,USSCargoTradeData,Salvage,Trade Data
86
+ 128666755,USSCargoMilitaryPlans,Salvage,Military Plans
87
+ 128666756,USSCargoAncientArtefact,Salvage,Ancient Artefact
88
+ 128666757,USSCargoRareArtwork,Salvage,Rare Artwork
89
+ 128666758,USSCargoExperimentalChemicals,Salvage,Experimental Chemicals
90
+ 128666759,USSCargoRebelTransmissions,Salvage,Rebel Transmissions
91
+ 128666760,USSCargoPrototypeTech,Salvage,Prototype Tech
92
+ 128666761,USSCargoTechnicalBlueprints,Salvage,Technical Blueprints
93
+ 128667728,ImperialSlaves,Slavery,Imperial Slaves
94
+ 128668547,UnknownArtifact,Salvage,Thargoid Sensor
95
+ 128668548,AiRelics,Salvage,AI Relics
96
+ 128668549,Hafnium178,Metals,Hafnium 178
97
+ 128668550,Painite,Minerals,Painite
98
+ 128668551,Antiquities,Salvage,Antiquities
99
+ 128668552,MilitaryIntelligence,Salvage,Military Intelligence
100
+ 128671118,Osmium,Metals,Osmium
101
+ 128671443,SAP8CoreContainer,Salvage,SAP 8 Core Container
102
+ 128671444,TrinketsOfFortune,Consumer Items,Trinkets of Hidden Fortune
103
+ 128672123,WreckageComponents,Salvage,Wreckage Components
104
+ 128672124,EncriptedDataStorage,Salvage,Encrypted Data Storage
105
+ 128672125,OccupiedCryoPod,Salvage,Occupied Escape Pod
106
+ 128672126,PersonalEffects,Salvage,Personal Effects
107
+ 128672127,ComercialSamples,Salvage,Commercial Samples
108
+ 128672128,TacticalData,Salvage,Tactical Data
109
+ 128672129,AssaultPlans,Salvage,Assault Plans
110
+ 128672130,EncryptedCorrespondence,Salvage,Encrypted Correspondence
111
+ 128672131,DiplomaticBag,Salvage,Diplomatic Bag
112
+ 128672132,ScientificResearch,Salvage,Scientific Research
113
+ 128672133,ScientificSamples,Salvage,Scientific Samples
114
+ 128672134,PoliticalPrisoner,Salvage,Political Prisoners
115
+ 128672135,Hostage,Salvage,Hostages
116
+ 128672136,LargeExplorationDataCash,Salvage,Large Survey Data Cache
117
+ 128672137,SmallExplorationDataCash,Salvage,Small Survey Data Cache
118
+ 128672159,AntiqueJewellery,Salvage,Antique Jewellery
119
+ 128672160,PreciousGems,Salvage,Precious Gems
120
+ 128672161,EarthRelics,Salvage,Earth Relics
121
+ 128672162,GeneBank,Salvage,Gene Bank
122
+ 128672163,TimeCapsule,Salvage,Time Capsule
123
+ 128672294,Cryolite,Minerals,Cryolite
124
+ 128672295,Goslarite,Minerals,Goslarite
125
+ 128672296,Moissanite,Minerals,Moissanite
126
+ 128672297,Pyrophyllite,Minerals,Pyrophyllite
127
+ 128672298,Lanthanum,Metals,Lanthanum
128
+ 128672299,Thallium,Metals,Thallium
129
+ 128672300,Bismuth,Metals,Bismuth
130
+ 128672301,Thorium,Metals,Thorium
131
+ 128672302,CeramicComposites,Industrial Materials,Ceramic Composites
132
+ 128672303,SyntheticReagents,Chemicals,Synthetic Reagents
133
+ 128672304,NerveAgents,Chemicals,Nerve Agents
134
+ 128672305,SurfaceStabilisers,Chemicals,Surface Stabilisers
135
+ 128672306,BootlegLiquor,Legal Drugs,Bootleg Liquor
136
+ 128672307,GeologicalEquipment,Machinery,Geological Equipment
137
+ 128672308,ThermalCoolingUnits,Machinery,Thermal Cooling Units
138
+ 128672309,BuildingFabricators,Machinery,Building Fabricators
139
+ 128672310,MuTomImager,Technology,Muon Imager
140
+ 128672311,StructuralRegulators,Technology,Structural Regulators
141
+ 128672312,Landmines,Weapons,Landmines
142
+ 128672313,SkimerComponents,Machinery,Skimmer Components
143
+ 128672314,EvacuationShelter,Consumer Items,Evacuation Shelter
144
+ 128672315,GeologicalSamples,Salvage,Geological Samples
145
+ 128672701,MetaAlloys,Industrial Materials,Meta-Alloys
146
+ 128672775,Taaffeite,Minerals,Taaffeite
147
+ 128672776,Jadeite,Minerals,Jadeite
148
+ 128672810,UnstableDataCore,Salvage,Unstable Data Core
149
+ 128672811,DamagedEscapePod,Salvage,Damaged Escape Pod
150
+ 128673845,Praseodymium,Metals,Praseodymium
151
+ 128673846,Bromellite,Minerals,Bromellite
152
+ 128673847,Samarium,Metals,Samarium
153
+ 128673848,LowTemperatureDiamond,Minerals,Low Temperature Diamonds
154
+ 128673850,HydrogenPeroxide,Chemicals,Hydrogen Peroxide
155
+ 128673851,LiquidOxygen,Chemicals,Liquid oxygen
156
+ 128673852,MethanolMonohydrateCrystals,Minerals,Methanol Monohydrate Crystals
157
+ 128673853,LithiumHydroxide,Minerals,Lithium Hydroxide
158
+ 128673854,MethaneClathrate,Minerals,Methane Clathrate
159
+ 128673855,InsulatingMembrane,Industrial Materials,Insulating Membrane
160
+ 128673856,CMMComposite,Industrial Materials,CMM Composite
161
+ 128673857,CoolingHoses,Industrial Materials,Micro-weave Cooling Hoses
162
+ 128673858,NeofabricInsulation,Industrial Materials,Neofabric Insulation
163
+ 128673859,ArticulationMotors,Machinery,Articulation Motors
164
+ 128673860,HNShockMount,Machinery,HN Shock Mount
165
+ 128673861,EmergencyPowerCells,Machinery,Emergency Power Cells
166
+ 128673862,PowerConverter,Machinery,Power Converter
167
+ 128673863,PowerGridAssembly,Machinery,Energy Grid Assembly
168
+ 128673864,PowerTransferConduits,Machinery,Power Transfer Bus
169
+ 128673865,RadiationBaffle,Machinery,Radiation Baffle
170
+ 128673866,ExhaustManifold,Machinery,Exhaust Manifold
171
+ 128673867,ReinforcedMountingPlate,Machinery,Reinforced Mounting Plate
172
+ 128673868,HeatsinkInterlink,Machinery,Heatsink Interlink
173
+ 128673869,MagneticEmitterCoil,Machinery,Magnetic Emitter Coil
174
+ 128673870,ModularTerminals,Machinery,Modular Terminals
175
+ 128673871,Nanobreakers,Technology,Nanobreakers
176
+ 128673872,TelemetrySuite,Technology,Telemetry Suite
177
+ 128673873,MicroControllers,Technology,Micro Controllers
178
+ 128673874,IonDistributor,Machinery,Ion Distributor
179
+ 128673875,DiagnosticSensor,Technology,Hardware Diagnostic Sensor
180
+ 128673876,UnknownArtifact2,Salvage,Thargoid Probe
181
+ 128682044,ConductiveFabrics,Textiles,Conductive Fabrics
182
+ 128682045,MilitaryGradeFabrics,Textiles,Military Grade Fabrics
183
+ 128682046,AdvancedMedicines,Medicines,Advanced Medicines
184
+ 128682047,MedicalDiagnosticEquipment,Technology,Medical Diagnostic Equipment
185
+ 128682048,SurvivalEquipment,Consumer Items,Survival Equipment
186
+ 128682049,DataCore,Salvage,Data Core
187
+ 128682051,MysteriousIdol,Salvage,Mysterious Idol
188
+ 128682052,ProhibitedResearchMaterials,Salvage,Prohibited Research Materials
189
+ 128682053,AntimatterContainmentUnit,Salvage,Antimatter Containment Unit
190
+ 128682054,SpacePioneerRelics,Salvage,Space Pioneer Relics
191
+ 128682055,FossilRemnants,Salvage,Fossil Remnants
192
+ 128732183,AncientRelic,Salvage,Guardian Relic
193
+ 128732184,AncientOrb,Salvage,Guardian Orb
194
+ 128732185,AncientCasket,Salvage,Guardian Casket
195
+ 128732186,AncientTablet,Salvage,Guardian Tablet
196
+ 128732187,AncientUrn,Salvage,Guardian Urn
197
+ 128732188,AncientTotem,Salvage,Guardian Totem
198
+ 128737287,UnknownResin,Salvage,Thargoid Resin
199
+ 128737288,UnknownBiologicalMatter,Salvage,Thargoid Biological Matter
200
+ 128737289,UnknownTechnologySamples,Salvage,Thargoid Technology Samples
201
+ 128740752,UnknownArtifact3,Salvage,Thargoid Link
202
+ 128793127,ThargoidHeart,Salvage,Thargoid Heart
203
+ 128793128,ThargoidTissueSampleType1,Salvage,Thargoid Cyclops Tissue Sample
204
+ 128793129,ThargoidTissueSampleType2,Salvage,Thargoid Basilisk Tissue Sample
205
+ 128793130,ThargoidTissueSampleType3,Salvage,Thargoid Medusa Tissue Sample
206
+ 128824468,ThargoidScoutTissueSample,Salvage,Thargoid Scout Tissue Sample
207
+ 128888499,AncientKey,Salvage,Ancient Key
208
+ 128902652,ThargoidTissueSampleType4,Salvage,Thargoid Hydra Tissue Sample
209
+ 128922517,M_TissueSample_Fluid,Salvage,Mollusc Fluid
210
+ 128922518,M_TissueSample_Soft,Salvage,Mollusc Soft Tissue
211
+ 128922519,M_TissueSample_Nerves,Salvage,Mollusc Brain Tissue
212
+ 128922520,S_TissueSample_Cells,Salvage,Pod Core Tissue
213
+ 128922521,S_TissueSample_Surface,Salvage,Pod Dead Tissue
214
+ 128922522,S_TissueSample_Core,Salvage,Pod Surface Tissue
215
+ 128922523,P_ParticulateSample,Salvage,Anomaly Particles
216
+ 128922781,S9_TissueSample_Shell,Salvage,Pod Tissue
217
+ 128922782,M3_TissueSample_Membrane,Salvage,Mollusc Membrane
218
+ 128922783,M3_TissueSample_Mycelium,Salvage,Mollusc Mycelium
219
+ 128922784,M3_TissueSample_Spores,Salvage,Mollusc Spores
220
+ 128922785,S6_TissueSample_Mesoglea,Salvage,Pod Mesoglea
221
+ 128922786,S6_TissueSample_Cells,Salvage,Pod Outer Tissue
222
+ 128922787,S6_TissueSample_Coenosarc,Salvage,Pod Shell Tissue
223
+ 128924325,Rhodplumsite,Minerals,Rhodplumsite
224
+ 128924326,Serendibite,Minerals,Serendibite
225
+ 128924327,Monazite,Minerals,Monazite
226
+ 128924328,Musgravite,Minerals,Musgravite
227
+ 128924329,Benitoite,Minerals,Benitoite
228
+ 128924330,Grandidierite,Minerals,Grandidierite
229
+ 128924331,Alexandrite,Minerals,Alexandrite
230
+ 128924332,Opal,Minerals,Void Opal
231
+ 128924333,RockforthFertiliser,Chemicals,Rockforth Fertiliser
232
+ 128924334,AgronomicTreatment,Chemicals,Agronomic Treatment
233
+ 128961249,Tritium,Chemicals,Tritium
234
+ 128983059,OnionHeadC,Legal Drugs,Onionhead Gamma Strain
235
+ 129015433,AncientRelicTG,Salvage,Unclassified Relic
236
+ 129019258,ThargoidTissueSampleType5,Salvage,Thargoid Orthrus Tissue Sample
237
+ 129019259,ThargoidGeneratorTissueSample,Salvage,Caustic Tissue Sample
238
+ 129022087,UnocuppiedEscapePod,Salvage,Unoccupied Escape Pod
239
+ 129022395,ThargoidTissueSampleType6,Salvage,Thargoid Glaive Tissue Sample
240
+ 129022396,ThargoidTissueSampleType7,Salvage,Thargoid Scythe Tissue Sample
241
+ 129022398,ThargoidTissueSampleType9a,Salvage,Titan Deep Tissue Sample
242
+ 129022399,ThargoidTissueSampleType9b,Salvage,Titan Tissue Sample
243
+ 129022400,ThargoidTissueSampleType9c,Salvage,Titan Partial Tissue Sample
244
+ 129022402,ThargoidTissueSampleType10a,Salvage,Titan Maw Deep Tissue Sample
245
+ 129022403,ThargoidTissueSampleType10b,Salvage,Titan Maw Tissue Sample
246
+ 129022404,ThargoidTissueSampleType10c,Salvage,Titan Maw Partial Tissue Sample
247
+ 129022405,UnknownSack,Salvage,Protective Membrane Scrap
248
+ 129022406,ThargoidPod,Salvage,Xenobiological Prison Pod
249
+ 129022407,CoralSap,Salvage,Coral Sap
250
+ 129022408,UnknownMineral,Salvage,Impure Spire Mineral
251
+ 129022409,UnknownRefinedMineral,Salvage,Semi-Refined Spire Mineral
252
+ 129030459,ThargoidTitanDriveComponent,Salvage,Titan Drive Component
253
+ 129030460,ThargoidCystSpecimen,Salvage,Cyst Specimen
254
+ 129030461,ThargoidBoneFragments,Salvage,Bone Fragments
255
+ 129030462,ThargoidOrganSample,Salvage,Organ Sample
256
+ 129031238,Steel,Metals,Steel
257
+ 129031327,Haematite,Minerals,Haematite
@@ -0,0 +1,41 @@
1
+ id
2
+ assault
3
+ collidedAtSpeedInNoFireZone
4
+ collidedAtSpeedInNoFireZone_hulldamage
5
+ disobeyPolice
6
+ dockingMajorBlockingAirlock
7
+ dockingMajorBlockingLandingPad
8
+ dockingMajorTresspass
9
+ dockingMinorBlockingAirlock
10
+ dockingMinorBlockingLandingPad
11
+ dockingMinorTresspass
12
+ dumpingDangerous
13
+ dumpingNearStation
14
+ fireInNoFireZone
15
+ fireInStation
16
+ illegalCargo
17
+ interdiction
18
+ murder
19
+ onFoot_arcCutterUse
20
+ onFoot_breakingAndEntering
21
+ onFoot_carryingIllegalData
22
+ onFoot_carryingIllegalGoods
23
+ onFoot_carryingStolenGoods
24
+ onFoot_damagingDefences
25
+ onFoot_dataTransfer
26
+ onFoot_detectionOfWeapon
27
+ onFoot_eBreachUse
28
+ onFoot_failureToSubmitToPolice
29
+ onFoot_identityTheft
30
+ onFoot_murder
31
+ onFoot_overchargeIntent
32
+ onfoot_overchargedPort
33
+ onFoot_profileCloningIntent
34
+ onFoot_propertyTheft
35
+ onFoot_recklessEndangerment
36
+ onFoot_theft
37
+ onFoot_trespass
38
+ passengerWanted
39
+ piracy
40
+ recklessWeaponsDischarge
41
+ shuttleDestruction
@@ -0,0 +1,8 @@
1
+ id
2
+ ActiveFighter
3
+ Distance
4
+ Hostile
5
+ NoSpace
6
+ Offences
7
+ TooLarge
8
+ RestrictedAccess