mirror of
https://github.com/EDCD/coriolis-data.git
synced 2025-12-08 15:13:23 +00:00
Remove non-existent wake scanner blueprints
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#2.2.17
|
||||
* Add mass as potential SCB modification
|
||||
* Fix mining laser statistics
|
||||
* Remove non-existent grade 4 and 5 wake scanner modifications
|
||||
|
||||
#2.2.16
|
||||
* Fix incorrect thermal load modifiers for dirty drives
|
||||
|
||||
@@ -842,9 +842,9 @@
|
||||
},
|
||||
"ws": {
|
||||
"blueprints": {
|
||||
"WakeScanner_LightWeight": [1, 2, 3, 4, 5],
|
||||
"WakeScanner_Reinforced": [1, 2, 3, 4, 5],
|
||||
"WakeScanner_Shielded": [1, 2, 3, 4, 5]
|
||||
"WakeScanner_LightWeight": [1, 2, 3],
|
||||
"WakeScanner_Reinforced": [1, 2, 3],
|
||||
"WakeScanner_Shielded": [1, 2, 3]
|
||||
},
|
||||
"modifications": [
|
||||
"boot",
|
||||
|
||||
@@ -203,7 +203,19 @@ describe('JSON Data', function() {
|
||||
expect(modification.method).toBeDefined('Modification has no method, ID:' + modification.id);
|
||||
ids[modification.id] = true;
|
||||
}
|
||||
});
|
||||
|
||||
it('has valid module modifications', function() {
|
||||
for (var m in Modifications.modules) {
|
||||
const module = Modifications.modules[m];
|
||||
for (var bp in module.blueprints) {
|
||||
expect(Modifications.blueprints[bp]).toBeDefined('Missing ' + bp + ' for ' + m);
|
||||
for (var g in module.blueprints[bp]) {
|
||||
const grade = module.blueprints[bp][g];
|
||||
expect(Modifications.blueprints[bp].grades[grade]).toBeDefined('Missing ' + bp + ' grade ' + grade + ' for ' + m);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
it('has valid specials', function() {
|
||||
|
||||
Reference in New Issue
Block a user