Rewrite data files to have one key per line. Will make future commits far easier to see what has changed

This commit is contained in:
Cmdr McDonald
2016-10-15 17:28:56 +01:00
parent 38de0a6433
commit 3195c6d7b2
50 changed files with 10642 additions and 975 deletions

View File

@@ -1,10 +1,37 @@
{
"fh": [
{ "id": "fh", "grp": "fh", "class": 7, "rating": "D", "cost": -1, "power": 0.35, "mass": 60, "bays": 2, "rebuildsperbay": 15 },
{ "id": "fm", "grp": "fh", "class": 6, "rating": "D", "cost": -1, "power": 0.35, "mass": 40, "bays": 2, "rebuildsperbay": 8 },
{ "id": "fr", "grp": "fh", "class": 5, "rating": "D", "cost": -1, "power": 0.25, "mass": 20, "bays": 1, "rebuildsperbay": 6 }
{
"bays": 2,
"class": 7,
"cost": -1,
"grp": "fh",
"id": "fh",
"mass": 60,
"power": 0.35,
"rating": "D",
"rebuildsperbay": 15
},
{
"bays": 2,
"class": 6,
"cost": -1,
"grp": "fh",
"id": "fm",
"mass": 40,
"power": 0.35,
"rating": "D",
"rebuildsperbay": 8
},
{
"bays": 1,
"class": 5,
"cost": -1,
"grp": "fh",
"id": "fr",
"mass": 20,
"power": 0.25,
"rating": "D",
"rebuildsperbay": 6
}
]
}