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