forked from EVEIPH/EVE-IPH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EVEAttributes.vb
2493 lines (2465 loc) · 85.1 KB
/
EVEAttributes.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Imports System.Data.SQLite
' Class to get and process all item attributes
Public Class EVEAttributes
' Gets the attribute by the name sent for the typename sent
Public Function GetAttribute(ByVal TypeName As String, ByVal AttributeCode As ItemAttributes) As Double
Dim SQL As String
Dim readerSearch As SQLiteDataReader
SQL = "SELECT typeID FROM INVENTORY_TYPES WHERE typeName = '" & TypeName & "'"
DBCommand = New SQLiteCommand(SQL, EVEDB.DBREf)
readerSearch = DBCommand.ExecuteReader
If readerSearch.Read Then
Return GetAttribute(readerSearch.GetInt32(0), AttributeCode)
Else
Return Nothing
End If
End Function
' Gets the attributes by the name sent for the typename sent
Public Function GetAttributes(ByVal TypeName As String) As List(Of AttributeRecord)
Dim SQL As String
Dim readerSearch As SQLiteDataReader
SQL = "SELECT typeID FROM INVENTORY_TYPES WHERE typeName = '" & FormatDBString(TypeName) & "'"
DBCommand = New SQLiteCommand(SQL, EVEDB.DBREf)
readerSearch = DBCommand.ExecuteReader
If readerSearch.Read Then
Return GetAttributes(readerSearch.GetInt32(0))
Else
Return Nothing
End If
End Function
' Gets the attribute by the typeID sent
Public Function GetAttribute(ByVal TypeID As Integer, ByVal AttributeCode As ItemAttributes) As Double
Dim SQL As String
Dim readerAttribute As SQLiteDataReader
SQL = "SELECT COALESCE(valuefloat, valueint) FROM TYPE_ATTRIBUTES "
SQL = SQL & "WHERE typeID = " & TypeID & " "
SQL = SQL & "AND attributeID = " & AttributeCode
DBCommand = New SQLiteCommand(SQL, EVEDB.DBREf)
readerAttribute = DBCommand.ExecuteReader
If readerAttribute.Read Then
Return readerAttribute.GetDouble(0)
Else
Return Nothing
End If
End Function
' Gets all attributes for the typeID sent
Public Function GetAttributes(ByVal TypeID As Integer) As List(Of AttributeRecord)
Dim SQL As String
Dim readerAttribute As SQLiteDataReader
Dim ReturnList As New List(Of AttributeRecord)
SQL = "SELECT ATTRIBUTE_TYPES.attributeID, attributeName, COALESCE(valuefloat, valueint) FROM TYPE_ATTRIBUTES, ATTRIBUTE_TYPES "
SQL = SQL & "WHERE TYPE_ATTRIBUTES.typeID = " & TypeID & " AND ATTRIBUTE_TYPES.attributeID = TYPE_ATTRIBUTES.attributeID"
DBCommand = New SQLiteCommand(SQL, EVEDB.DBREf)
readerAttribute = DBCommand.ExecuteReader
While readerAttribute.Read
' Add the records
Dim Record As New AttributeRecord
Record.ID = readerAttribute.GetInt32(0)
Record.Name = readerAttribute.GetString(1)
Record.Value = readerAttribute.GetDouble(2)
Call ReturnList.Add(Record)
End While
Return ReturnList
End Function
End Class
Public Enum ItemAttributes
isOnline = 2
damage = 3
mass = 4
capacitorNeed = 6
minRange = 8
hp = 9
powerOutput = 11
lowSlots = 12
medSlots = 13
hiSlots = 14
powerLoad = 15
charge = 18
powerToSpeed = 19
speedFactor = 20
warpFactor = 21
warpInhibitor = 29
power = 30
maxArmor = 31
breakPoint = 32
maxVelocity = 37
capacity = 38
damageHP = 39
slots = 47
cpuOutput = 48
cpuLoad = 49
cpu = 50
speed = 51
damageResistance = 52
maxRange = 54
rechargeRate = 55
chargeRate = 56
targetModule = 61
accuracyBonus = 63
damageMultiplier = 64
armorBonus = 65
durationBonus = 66
capacitorBonus = 67
shieldBonus = 68
rateBonus = 69
agility = 70
capacityBonus = 72
duration = 73
hpToCapacity = 75
maxTargetRange = 76
miningAmount = 77
scanSpeed = 79
speedBonus = 80
hpFactor = 81
structureBonus = 82
structureDamageAmount = 83
armorDamageAmount = 84
shieldTransferRange = 87
shieldDrainAmount = 88
shieldDrainRange = 89
powerTransferAmount = 90
powerTransferRange = 91
kineticDampeningFieldStrength = 92
kineticDampeningFieldBonus = 93
energyReflectionStrength = 95
energyReflectionBonus = 96
energyNeutralizerAmount = 97
energyNeutralizerRangeOptimal = 98
empFieldRange = 99
launcherSlotsLeft = 101
turretSlotsLeft = 102
warpScrambleRange = 103
warpScrambleStatus = 104
warpScrambleStrength = 105
droneBaySlotsLeft = 106
explosionRange = 107
detonationRange = 108
kineticDamageResonance = 109
thermalDamageResonance = 110
explosiveDamageResonance = 111
energyDamageAbsorptionFactor = 112
emDamageResonance = 113
emDamage = 114
explosiveDamage = 116
kineticDamage = 117
thermalDamage = 118
weaponRangeMultiplier = 120
powerOutputBonus = 121
armorPiercingChance = 122
shieldPiercingChance = 123
mainColor = 124
shipScanRange = 125
cargoScanRange = 126
ammoLoaded = 127
chargeSize = 128
maxPassengers = 129
thermalDamageResonanceMultiplier = 130
kineticDamageResonanceMultiplier = 131
explosiveDamageResonanceMultiplier = 132
emDamageResonanceMultiplier = 133
shieldRechargeRateMultiplier = 134
moduleSize = 135
uniformity = 136
launcherGroup = 137
emDamageBonus = 138
explosiveDamageBonus = 139
kineticDamageBonus = 140
thermalDamageBonus = 141
ecmBurstRange = 142
targetHostileRange = 143
capacitorRechargeRateMultiplier = 144
powerOutputMultiplier = 145
shieldCapacityMultiplier = 146
capacitorCapacityMultiplier = 147
armorHPMultiplier = 148
cargoCapacityMultiplier = 149
structureHPMultiplier = 150
agilityBonus = 151
maxPassengersBonus = 152
warpCapacitorNeed = 153
proximityRange = 154
incapacitationRatio = 156
orbitRange = 157
falloff = 158
trackingSpeed = 160
volume = 161
radius = 162
dummyDuration = 163
charisma = 164
intelligence = 165
memory = 166
perception = 167
willpower = 168
agilityMultiplier = 169
customCharismaBonus = 170
customWillpowerBonus = 171
customPerceptionBonus = 172
customMemoryBonus = 173
customIntelligenceBonus = 174
charismaBonus = 175
intelligenceBonus = 176
memoryBonus = 177
perceptionBonus = 178
willpowerBonus = 179
primaryAttribute = 180
secondaryAttribute = 181
requiredSkill1 = 182
requiredSkill2 = 183
requiredSkill3 = 184
attributePoints = 185
warpCapacitorNeedMultiplier = 186
repairCostMultiplier = 187
cargoScanResistance = 188
targetGroup = 189
corporationMemberLimit = 190
corporationMemberBonus = 191
maxLockedTargets = 192
maxAttackTargets = 193
jammingResistance = 194
raceID = 195
manufactureSlotLimit = 196
surveyScanRange = 197
cpuMultiplier = 202
miningDurationMultiplier = 203
speedMultiplier = 204
accuracyMultiplier = 205
miningAmountMultiplier = 207
scanRadarStrength = 208
scanLadarStrength = 209
scanMagnetometricStrength = 210
scanGravimetricStrength = 211
missileDamageMultiplier = 212
missileDamageMultiplierBonus = 213
capacitorNeedMultiplier = 216
propulsionGraphicID = 217
blueprintResearchTimeMultiplier = 218
manufactureTimeMultiplier = 219
blueprintResearchTimeMultiplierBonus = 220
blueprintManufactureTimeMultiplier = 221
blueprintManufactureTimeMultiplierBonus = 222
charismaSkillTrainingTimeMultiplier = 223
intelligenceSkillTrainingTimeMultiplier = 224
memorySkillTrainingTimeMultiplier = 225
perceptionSkillTrainingTimeMultiplier = 226
willpowerSkillTrainingTimeMultiplier = 227
charismaSkillTrainingTimeMultiplierBonus = 228
intelligenceSkillTrainingTimeMultiplierBonus = 229
memorySkillTrainingTimeMultiplierBonus = 230
perceptionSkillTrainingTimeMultiplierBonus = 231
willpowerSkillTrainingTimeMultiplierBonus = 232
maxLockedTargetsBonus = 235
maxAttackTargetsBonus = 236
maxTargetRangeMultiplier = 237
scanGravimetricStrengthBonus = 238
scanLadarStrengthBonus = 239
scanMagnetometricStrengthBonus = 240
scanRadarStrengthBonus = 241
scanSpeedMultiplier = 242
maxRangeMultiplier = 243
trackingSpeedMultiplier = 244
gfxTurretID = 245
gfxBoosterID = 246
entityAttackRange = 247
entityLootValueMin = 248
entityLootValueMax = 249
entityLootCountMin = 250
entityLootCountMax = 251
entitySecurityStatusKillBonus = 252
entitySecurityStatusAggressionBonus = 253
minLootCount = 254
maxLootCount = 256
entityFollowRange = 257
minLootValue = 258
maxLootValue = 259
attackRange = 260
killStatusModifier = 261
attackStatusModifier = 262
shieldCapacity = 263
shieldCharge = 264
armorHP = 265
armorDamage = 266
armorEmDamageResonance = 267
armorExplosiveDamageResonance = 268
armorKineticDamageResonance = 269
armorThermalDamageResonance = 270
shieldEmDamageResonance = 271
shieldExplosiveDamageResonance = 272
shieldKineticDamageResonance = 273
shieldThermalDamageResonance = 274
skillTimeConstant = 275
skillPoints = 276
requiredSkill1Level = 277
requiredSkill2Level = 278
requiredSkill3Level = 279
skillLevel = 280
explosionDelay = 281
launcherCapacityMultiplier = 282
droneCapacity = 283
excludeGangMembers = 284
excludeCorporationMembers = 285
excludeHostiles = 286
kDmgBonus = 287
shipCPUBonus = 288
turretDamageBonus = 289
skillTurretDmgBonus = 290
cpuskillBonus = 291
damageMultiplierBonus = 292
rofBonus = 293
rangeSkillBonus = 294
abPowerBonus = 295
acPowerBonus = 296
afPowerBonus = 297
atPowerBonus = 298
cbTRangeBonus = 299
ccTRangeBonus = 300
cfTRangeBonus = 301
ciTRangeBonus = 302
aiPowerBonus = 303
ctTRangeBonus = 304
gbCpuBonus = 305
maxVelocityModifier = 306
scannerDurationBonus = 307
scanspeedBonus = 308
maxTargetRangeBonus = 309
cpuNeedBonus = 310
maxTargetBonus = 311
durationSkillBonus = 312
powerEngineeringOutputBonus = 313
capRechargeBonus = 314
velocityBonus = 315
corpMemberBonus = 316
capNeedBonus = 317
speedFBonus = 318
warpCapacitorNeedBonus = 319
powerUseBonus = 320
burstSpeed = 321
burstSpeedMutator = 322
powerNeedBonus = 323
barrageDmgMutator = 324
barrageFalloffMutator = 325
barrageDmgMultiplier = 326
hullHpBonus = 327
barrageFalloff = 328
gangRofBonus = 329
boosterDuration = 330
implantness = 331
burstDmg = 332
burstDmgMutator = 333
shipPowerBonus = 334
armorHpBonus = 335
uniformityBonus = 336
shieldCapacityBonus = 337
rechargeratebonus = 338
falloffBonus = 349
skillTrainingTimeBonus = 350
maxRangeBonus = 351
maxActiveDrones = 352
maxActiveDroneBonus = 353
maxDroneBonus = 354
negotiationPercentage = 355
diplomacyBonus = 356
fastTalkPercentage = 359
connectionsBonus = 360
criminalConnectionsBonus = 361
socialBonus = 362
amarrTechTimePercent = 363
minmatarTechTimePercent = 364
gallenteTechTimePercent = 365
caldariTechTimePercent = 366
productionTimePercent = 367
refiningTimePercentage = 368
manufactureCostMultiplier = 369
amarrTechMutator = 370
caldariTechMutator = 371
gallenteTechMutator = 372
productionTimeMutator = 373
minmatarTechMutator = 374
productionCostMutator = 375
refiningTimePercent = 376
refiningTimeMutator = 377
refiningYieldPercentage = 378
refiningYieldMutator = 379
maxActiveFactory = 380
maxActiveFactories = 383
maxResearchGangSize = 384
manufacturingTimeResearchSpeed = 385
researchCostPercent = 386
copySpeedPercent = 387
frigateConstructionCost = 388
cruiserConstructionCost = 389
industrialConstructionCost = 392
battleshipConstructionCost = 393
titanConstructionTime = 394
stationConstructionTime = 395
repairCostPercent = 396
reverseEngineeringChance = 397
mineralNeedResearchSpeed = 398
duplicatingChance = 399
missileStandardVelocityPecent = 400
cruiseMissileVelocityPercent = 401
heavyMissileSpeedPercent = 402
rocketDmgPercent = 403
torpedoVelocityPercent = 404
defenderVelocityPercent = 405
missileFOFVelocityPercent = 406
researchGangSizeBonus = 407
battleshipConstructionTimeBonus = 408
cruiserConstructionTimeBonus = 409
frigateConstructionTimeBonus = 410
industrialConstructionTimeBonus = 411
connectionBonusMutator = 412
criminalConnectionsMutator = 413
diplomacyMutator = 414
fastTalkMutator = 415
entityFlyRange = 416
maxNonRaceCorporationMembers = 417
nonRaceCorporationMembersBonus = 418
skillPointsSaved = 419
trackingBonus = 420
shieldRechargerateBonus = 421
techLevel = 422
entityDroneCount = 423
cpuOutputBonus2 = 424
cpuOutputBonus = 425
heavyDroneDamagePercent = 426
heavyDroneDamageBonus = 427
miningDroneAmountPercent = 428
miningDroneSpeedBonus = 429
scoutDroneVelocityPercent = 430
scoutDroneVelocityBonus = 431
defenderVelocityBonus = 432
heavyMissileDamageBonus = 433
miningAmountBonus = 434
maxGangModules = 435
standingIncreasePercent = 436
negotiationBonus = 437
socialMutator = 438
targetingSpeedBonus = 439
manufacturingTimeBonus = 440
turretSpeeBonus = 441
barterDiscount = 442
tradePremium = 443
contrabandFencingChance = 444
smugglingChance = 445
tradePremiumBonus = 446
smugglingChanceBonus = 447
fencingChanceBonus = 448
barterDiscountBonus = 449
manufacturingSlotBonus = 450
manufactureCostBonus = 451
copySpeedBonus = 452
blueprintmanufactureTimeBonus = 453
mutaton = 454
learningBonus = 455
entityEquipmentMin = 456
entityEquipmentMax = 457
droneControlDistance = 458
droneRangeBonus = 459
shipBonusMF = 460
specialAbilityBonus = 461
shipBonusGF = 462
shipBonusCF = 463
shipBonusAF = 464
entityEquipmentGroupMax = 465
entityReactionFactor = 466
maxLaborotorySlots = 467
mineralNeedResearchBonus = 468
entityBluePrintDropChance = 469
lootRespawnTime = 470
laboratorySlotsBonus = 471
stationTypeID = 472
prototypingBonus = 473
inventionBonus = 474
entityAttackDelayMin = 475
entityAttackDelayMax = 476
shipBonusAC = 478
shieldRechargeRate = 479
maxEffectiveRange = 480
entityKillBounty = 481
capacitorCapacity = 482
shieldUniformity = 484
shipBonus2AF = 485
shipBonusGC = 486
shipBonusCC = 487
shipVelocityBonusMC = 488
shipBonusMC = 489
shipBonusMB = 490
shipBonusCB = 491
shipBonusAB = 492
shipBonusMI = 493
shipBonusAI = 494
shipBonusCI = 495
shipBonusGI = 496
entityDefenderChance = 497
droneCapacityBonus = 499
shipBonusGB = 500
shipBonus2CB = 501
entityConvoyDroneMin = 502
entityConvoyDroneMax = 503
entityWarpScrambleChance = 504
warpScrambleDuration = 505
missileLaunchDuration = 506
entityMissileTypeID = 507
entityCruiseSpeed = 508
cargoScanFalloff = 509
shipScanFalloff = 510
shipScanResistance = 511
modifyTargetSpeedChance = 512
modifyTargetSpeedDuration = 513
modifyTargetSpeedRange = 514
modifyTargetSpeedCapacitorNeed = 515
chassisType = 516
fallofMultiplier = 517
shipBonusMB2 = 518
cloakingCapacitorNeedRatio = 519
damageCloudChance = 522
armorUniformity = 524
structureUniformity = 525
reqResearchSkill = 526
reqManufacturingSkill = 527
reqManufacturingSkillLevel = 528
reqResearchSkillLevel = 529
reqManufacturingTool = 530
reqResearchTool = 531
reqResearchComponent = 532
Manufacturer_ID = 534
installedMod = 535
reqResearchComponetAmount = 536
reqManufacturingComponent1Amount = 537
reqManufacturingComponent2Amount = 538
entityStrength = 542
damageCloudChanceReduction = 543
cloudEffectDelay = 544
cloudDuration = 545
damageCloudType = 546
missileVelocityBonus = 547
shieldBoostMultiplier = 548
powerIncrease = 549
resistanceBonus = 550
rocketVelocityPercent = 551
signatureRadius = 552
maxGangSizeBonus = 553
signatureRadiusBonus = 554
cloakVelocityBonus = 555
anchoringDelay = 556
maxFlightTimeBonus = 557
explosionRangeBonus = 558
Inertia = 559
cloakingTargetingDelay = 560
shipBonusGB2 = 561
entityFactionLoss = 562
entitySecurityMaxGain = 563
scanResolution = 564
scanResolutionMultiplier = 565
scanResolutionBonus = 566
speedBoostFactor = 567
eliteBonusInterceptor = 568
eliteBonusCoverOps1 = 569
eliteBonusBombers = 570
eliteBonusGunships = 571
eliteBonusdestroyers = 573
eliteBonusBattlecruiser = 575
testForEggert = 579
entityChaseMaxDelay = 580
entityChaseMaxDelayChance = 581
entityChaseMaxDuration = 582
entityChaseMaxDurationChance = 583
entityMaxWanderRange = 584
shipBonusAB2 = 585
shipBonusGF2 = 586
shipBonusMF2 = 587
shipBonusCF2 = 588
isPlayerOwnable = 589
gestaltBonus1 = 590
droneMaxVelocityBonus = 591
cloakCapacitorBonus = 592
Die = 594
capBoostMultipler = 595
explosionDelayBonus = 596
eliteBonusEscorts = 597
shipBonusCB3 = 598
warpSpeedMultiplier = 600
warpSpeedBonus = 601
launcherGroup2 = 602
launcherGroup3 = 603
chargeGroup1 = 604
chargeGroup2 = 605
chargeGroup3 = 606
powerNeedMultiplier = 608
chargeGroup4 = 609
chargeGroup5 = 610
durationMultiplier = 611
baseShieldDamage = 612
baseArmorDamage = 613
cargoCapacityBonus = 614
boosterShieldBoostAmountPenalty = 616
cloakingTargetingDelayBonus = 619
optimalSigRadius = 620
trackingSpeedAtOptimal = 621
massLimit = 622
cloakingSlotsLeftSuper = 623
WarpSBonus = 624
bountyBonus = 625
bountyMultiplier = 626
bountySkillBonus = 627
bountySkillMultiplyer = 628
cargoGroup = 629
entityArmorRepairDuration = 630
entityArmorRepairAmount = 631
interceptorGF = 632
metaLevel = 633
newAgility = 634
turnAngle = 635
entityShieldBoostDuration = 636
entityShieldBoostAmount = 637
entityArmorRepairDelayChance = 638
entityShieldBoostDelayChance = 639
entityGroupRespawnChance = 640
prereqimplant = 641
armingTime = 643
aimedLaunch = 644
missileEntityVelocityMultiplier = 645
missileEntityFlightTimeMultiplier = 646
missileEntityArmingTimeMultiplier = 647
shieldTUNEBonus = 648
cloakingCpuNeedBonus = 649
maxStructureDistance = 650
decloakFieldRange = 651
signatureRadiusMultiplier = 652
aoeVelocity = 653
aoeCloudSize = 654
aoeFalloff = 655
shipBonusAC2 = 656
shipBonusCC2 = 657
shipBonusGC2 = 658
shipBonusMC2 = 659
impactDamage = 660
maxDirectionalVelocity = 661
minTargetVelDmgMultiplier = 662
minMissileVelDmgMultiplier = 663
maxMissileVelocity = 664
entityChaseMaxDistance = 665
moduleShipGroup2 = 666
moduleShipGroup3 = 667
moduleShipGroup1 = 668
moduleReactivationDelay = 669
areaOfEffectBonus = 670
entityCruiseSpeedMultiplier = 672
eliteBonusGunship1 = 673
eliteBonusGunship2 = 675
unanchoringDelay = 676
onliningDelay = 677
eliteBonusLogistics1 = 678
eliteBonusLogistics2 = 679
shieldRadius = 680
typeContainerType1 = 681
typeContainerType2 = 682
typeContainerType3 = 683
typeContainerCapacity1 = 684
typeContainerCapacity2 = 685
typeContainerCapacity3 = 686
operationConsumptionRate = 687
reinforcedConsumptionRate = 688
packageGraphicID = 689
packageRadius = 690
targetSwitchDelay = 691
eliteBonusHeavyGunship1 = 692
eliteBonusHeavyGunship2 = 693
resourceReinforced1Type = 694
resourceReinforced2Type = 695
resourceReinforced3Type = 696
resourceReinforced4Type = 697
resourceReinforced5Type = 698
resourceReinforced1Quantity = 699
resourceReinforced2Quantity = 700
resourceReinforced3Quantity = 701
resourceReinforced4Quantity = 703
resourceReinforced5Quantity = 704
resourceOnline1Type = 705
resourceOnline2Type = 706
resourceOnline3Type = 707
resourceOnline4Type = 708
harvesterType = 709
harvesterQuality = 710
moonAnchorDistance = 711
usageDamagePercent = 712
consumptionType = 713
consumptionQuantity = 714
maxOperationalDistance = 715
maxOperationalUsers = 716
refiningYieldMultiplier = 717
operationalDuration = 719
refineryCapacity = 720
refiningDelayMultiplier = 721
posControlTowerPeriod = 722
contrabandDetectionChance = 723
contrabandDetectionResistance = 724
contrabandScanChance = 725
moonMiningAmount = 726
destroyerROFpenality = 727
controlTowerLaserDamageBonus = 728
shipBonusMD1 = 729
shipBonusD1 = 732
shipBonusD2 = 733
shipBonusCD1 = 734
shipBonusCD2 = 735
shipBonusGD1 = 738
shipBonusGD2 = 739
shipBonusMD2 = 740
shipBonusBC1 = 741
shipBonusBC2 = 742
shipBonusCBC1 = 743
shipBonusCBC2 = 745
shipBonusGBC2 = 746
shipBonusGBC1 = 747
shipBonusMBC1 = 748
shipBonusMBC2 = 749
controlTowerLaserOptimalBonus = 750
controlTowerHybridOptimalBonus = 751
controlTowerProjectileOptimalBonus = 752
controlTowerProjectileFallOffBonus = 753
controlTowerProjectileROFBonus = 754
controlTowerMissileROFBonus = 755
controlTowerMoonHarvesterCPUBonus = 756
controlTowerSiloCapacityBonus = 757
shipBonusDF1 = 758
shipBonusDF2 = 759
controlTowerLaserProximityRangeBonus = 760
controlTowerProjectileProximityRangeBonus = 761
controlTowerHybridProximityRangeBonus = 762
maxGroupActive = 763
controlTowerEwRofBonus = 764
scanRange = 765
controlTowerHybridDamageBonus = 766
trackingSpeedBonus = 767
maxRangeBonus2 = 769
controlTowerEwTargetSwitchDelayBonus = 770
ammoCapacity = 771
entityFlyRangeFactor = 772
shipBonusORE1 = 773
shipBonusORE2 = 774
miningCPUNeedBonus = 775
structureMissileVelocityBonus = 776
structureMissileDamageBonus = 777
structureMissileExplosionDelayBonus = 778
entityFlyRangeMultiplier = 779
iceHarvestCycleBonus = 780
specialisationAsteroidGroup = 781
specialisationAsteroidYieldMultiplier = 782
crystalVolatilityChance = 783
crystalVolatilityDamage = 784
unfitCapCost = 785
crystalsGetDamaged = 786
minScanDeviation = 787
maxScanDeviation = 788
specialtyMiningAmount = 789
reprocessingSkillType = 790
scanAnalyzeCount = 791
controlTowerMissileVelocityBonus = 792
shipBonusPirateFaction = 793
probesInGroup = 794
shipBonusABC1 = 795
massAddition = 796
maximumRangeCap = 797
entityBracketColour = 798
implantSetBloodraider = 799
contrabandDetectionChanceBonus = 800
deadspaceUnsafe = 801
implantSetSerpentis = 802
implantSetSerpentis2 = 803
eliteBonusInterceptor2 = 804
quantity = 805
repairBonus = 806
eliteBonusIndustrial1 = 807
eliteBonusIndustrial2 = 808
shipBonusAI2 = 809
shipBonusCI2 = 811
shipBonusGI2 = 813
shipBonusMI2 = 814
propulsionFusionStrengthBonus = 815
propulsionIonStrengthBonus = 816
propulsionMagpulseStrengthBonus = 817
propulsionPlasmaStrengthBonus = 818
hitsMissilesOnly = 823
scanSkillEwStrengthBonus = 828
propulsionSkillPropulsionStrengthBonus = 829
bonusComplexAngel10 = 830
ewTargetJam = 831
scanSkillTargetPaintStrengthBonus = 832
commandBonus = 833
wingCommandBonus = 834
stealthBomberLauncherPower = 837
implantSetGuristas = 838
eliteBonusCoverOps2 = 839
agentID = 840
agentCommRange = 841
reactionGroup1 = 842
reactionGroup2 = 843
agentAutoPopupRange = 844
hiddenLauncherDamageBonus = 845
scanStrengthBonus = 846
aoeVelocityBonus = 847
aoeCloudSizeBonus = 848
canUseCargoInSpace = 849
squadronCommandBonus = 850
shieldBoostCapacitorBonus = 851
siegeModeWarpStatus = 852
advancedAgility = 853
disallowAssistance = 854
activationTargetLoss = 855
aoeFalloffBonus = 857
missileEntityAoeCloudSizeMultiplier = 858
missileEntityAoeVelocityMultiplier = 859
missileEntityAoeFalloffMultiplier = 860
canJump = 861
usageWeighting = 862
implantSetAngel = 863
implantSetSansha = 864
planetAnchorDistance = 865
jumpDriveConsumptionType = 866
jumpDriveRange = 867
jumpDriveConsumptionAmount = 868
jumpDriveDuration = 869
jumpDriveRangeBonus = 870
jumpDriveDurationBonus = 871
disallowOffensiveModifiers = 872
advancedCapitalAgility = 874
mindlinkBonus = 884
consumptionQuantityBonus = 885
freighterBonusA1 = 886
freighterBonusA2 = 887
freighterBonusC1 = 888
freighterBonusC2 = 889
freighterBonusG2 = 890
freighterBonusG1 = 891
freighterBonusM1 = 892
freighterBonusM2 = 893
speedBoostBonus = 894
armorDamageAmountBonus = 895
armorDamageDurationBonus = 896
shieldBonusDurationBonus = 897
jumpDriveCapacitorNeed = 898
jumpDriveCapacitorNeedBonus = 899
accessDifficulty = 901
accessDifficultyBonus = 902
spawnWithoutGuardsToo = 903
warcruiserCPUBonus = 904
tacklerBonus = 905
disallowEarlyDeactivation = 906
hasShipMaintenanceBay = 907
shipMaintenanceBayCapacity = 908
maxShipGroupActiveID = 909
maxShipGroupActive = 910
hasFleetHangars = 911
fleetHangarCapacity = 912
gallenteNavyBonus = 913
gallenteNavyBonusMultiplier = 914
caldariNavyBonus = 915
caldariNavyBonusMultiplier = 916
amarrNavyBonus = 917
amarrNavyBonusMulitplier = 918
republicFleetBonus = 919
republicFleetBonusMultiplier = 920
oreCompression = 921
eliteBonusBarge1 = 924
eliteBonusBarge2 = 925
shipBonusORE3 = 926
miningUpgradeCPUReductionBonus = 927
entityTargetJam = 928
ECMDuration = 929
ECMEntityChance = 930
energyNeutralizerEntityChance = 931
entitySensorDampenDurationChance = 932
entityTrackingDisruptDurationChance = 933
entityTargetPaintDurationChance = 935
ECMRangeOptimal = 936
entityCapacitorDrainMaxRange = 937
entitySensorDampenMaxRange = 938
entityTrackingDisruptMaxRange = 940
entityTargetPaintMaxRange = 941
energyNeutralizerDuration = 942
entitySensorDampenDuration = 943
entityTrackingDisruptDuration = 944
entityTargetPaintDuration = 945
entityCapacitorDrainAmount = 946
entitySensorDampenMultiplier = 947
entityTrackingDisruptMultiplier = 948
entityTargetPaintMultiplier = 949
entitySensorDampenFallOff = 950
entityTrackingDisruptFallOff = 951
entityCapacitorFallOff = 952
ECMRangeFalloff = 953
entityTargetPaintFallOff = 954
isCaldariNavy = 955
damageModifierMultiplierBonus = 956
cNavyModOncNavyShip = 957
hardeningBonus = 958
entityShieldBoostLargeDelayChance = 959
caldariNavyBonusMultiplier2 = 960
caldarNavyBonus2 = 961
eliteBonusReconShip1 = 962
eliteBonusReconShip2 = 963
passiveEmDamageResonanceMultiplier = 964
passiveThermalDamageResonanceMultiplier = 965
passiveKineticDamageResonanceMultiplier = 966
passiveExplosiveDamageResonanceMultiplier = 967
hasStasisWeb = 968
activeEmDamageResonance = 969
activeThermalDamageResonance = 970
activeKineticDamageResonance = 971
activeExplosiveDamageResonance = 972
signatureRadiusBonusPercent = 973
hullEmDamageResonance = 974
hullExplosiveDamageResonance = 975
hullKineticDamageResonance = 976
hullThermalDamageResonance = 977
maxGroupOnline = 978
maxJumpClones = 979
hasCloneJumpSlots = 980
allowsCloneJumpsWhenActive = 981
canReceiveCloneJumps = 982
signatureRadiusAdd = 983
emDamageResistanceBonus = 984
explosiveDamageResistanceBonus = 985
kineticDamageResistanceBonus = 986
thermalDamageResistanceBonus = 987
hardeningbonus2 = 988
volumePostPercent = 989
activeEmResistanceBonus = 990
activeExplosiveResistanceBonus = 991
activeThermicResistanceBonus = 992
activeKineticResistanceBonus = 993
passiveEmDamageResistanceBonus = 994
passiveExplosiveDamageResistanceBonus = 995
passiveKineticDamageResistanceBonus = 996
passiveThermicDamageResistanceBonus = 997
isRAMcompatible = 998
eliteBonusCommandShips2 = 999
eliteBonusCommandShips1 = 1000
jumpPortalConsumptionMassFactor = 1001
jumpPortalDuration = 1002
eliteBonusCommandShip1DONOTUSE = 1003
eliteBonusCommandShip2DONOTUSE = 1004
jumpPortalCapacitorNeed = 1005
entityShieldBoostDelayChanceSmall = 1006
entityShieldBoostDelayChanceMedium = 1007
entityShieldBoostDelayChanceLarge = 1008
entityArmorRepairDelayChanceSmall = 1009
entityArmorRepairDelayChanceMedium = 1010
entityArmorRepairDelayChanceLarge = 1011
eliteBonusInterdictors1 = 1012
eliteBonusInterdictors2 = 1013
disallowRepeatingActivation = 1014
entityShieldBoostDelayChanceSmallMultiplier = 1015
entityShieldBoostDelayChanceMediumMultiplier = 1016
entityShieldBoostDelayChanceLargeMultiplier = 1017
entityArmorRepairDelayChanceSmallMultiplier = 1018
entityArmorRepairDelayChanceMediumMultiplier = 1019
entityArmorRepairDelayChanceLargeMultiplier = 1020
warpAccuracyMaxRange = 1021
warpAccuracyFactor = 1022
warpAccuracyFactorMultiplier = 1023
warpAccuracyMaxRangeMultiplier = 1024
warpAccuracyFactorPercentage = 1025
warpAccuracyMaxRangePercentage = 1026
scanGravimetricStrengthPercent = 1027
scanLadarStrengthPercent = 1028
scanMagnetometricStrengthPercent = 1029
scanRadarStrengthPercent = 1030
controlTowerSize = 1031
anchoringSecurityLevelMax = 1032
anchoringRequiresSovereignty = 1033
covertOpsAndReconOpsCloakModuleDelay = 1034
covertOpsStealthBomberTargettingDelay = 1035
maxTractorVelocity = 1045