-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos_1130417-1131149.html
2145 lines (2095 loc) · 157 KB
/
Chaos_1130417-1131149.html
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
<!DOCTYPE html>
<html>
<head>
<title>Hoboleaks: Chaos_Previous (Build: 1130417) to Chaos_Next (Build: 1131149)</title>
<meta name="title" content="Client Comparison: Chaos_Previous (Build: 1130417) to Chaos_Next (Build: 1131149) | Hoboleaks">
<meta name="description" content="Generated @ 2017-03-23 19:24:36 EVE Time">
<meta charset="UTF-8">
<style>
table {
width:1280px;
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
border-collapse: collapse;
}
td, th {
border: 1px solid black;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #DBDBDB;
}
tr.unimportant {
opacity: 0.4;
font-size: 8pt;
}
td.mini {
font-size: 8pt;
}
p.mini {
font-family: arial, tahoma, sans-serif;
font-size: 8pt;
}
p {
font-family: arial, tahoma, sans-serif;
}
p.mini2 {
font-family: arial, tahoma, sans-serif;
font-size: 5pt;
}
p.mini3 {
font-family: arial, tahoma, sans-serif;
font-size: 5pt;
color: gray;
}
p.kindasmall {
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
margin: 5px 0px 5px 0px;
}
h1, h2, h3 {
font-family: arial, tahoma, sans-serif;
}
summary.bigsum {
font-family: arial, tahoma, sans-serif;
font-size: 15pt;
}
summary.bigsum_disabled {
font-family: arial, tahoma, sans-serif;
color: #9E9E9E;
font-size: 15pt;
}
summary.smallsum {
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
}
p.scriptnotify {
font-family: arial, tahoma, sans-serif;
color: red;
font-size: 12pt;
}
p.scriptnotifysmall {
font-family: arial, tahoma, sans-serif;
color: red;
font-size: 9pt;
}
p.scriptnotifysmaller {
font-family: arial, tahoma, sans-serif;
color: red;
font-size: 5pt;
}
div.simplebox {
font-family: arial, tahoma, sans-serif;
font-size: 10pt;
padding: 5px;
margin: 2px;
border-left-style: dotted;
}
ul {
padding-left:20px;
}
div.footer {
position: fixed;
bottom: 20px;
height: 20px;
width: 20px;
border-style: none;
}
div.footer1 {
left: 20px;
}
div.footer2 {
right: 20px;
visibility: hidden;
}
div.footer:hover {
border-style: dotted;
border-color: #F2F2F2;
}
/* IE 6 */
* html #footer {
position:absolute;
top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
}
</style>
<script type="text/javascript">
function selectText(containerid, hasWaited) {
hasWaited = hasWaited || false
if (hasWaited == false) {
window.setTimeout(function(){selectText(containerid, true)}, 50); /* I'm sure I'm in the wrong here somehow and not Chrome, but this is how we're fixing it soooooooo yeah. */
return
}
var node = document.getElementById(containerid);
if (document.selection) {
var range = document.body.createTextRange();
range.moveToElementText(node);
range.select();
} else if (window.getSelection) {
var range = document.createRange();
range.selectNodeContents(node);
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
}
}
</script>
</head>
<body>
<h1>Comparing Chaos_Previous (Build: 1130417) to Chaos_Next (Build: 1131149)</h1>
<!-- <iframe id="timer" src="timerSection#2,1489606234.803" style="border:none;" height="40px" width="800px"> </iframe> -->
<p class="mini">Generated @ 2017-03-23 19:24:36 EVE Time (UTC)</p>
<noscript>
<nobr>
<p class="scriptnotify" style="display:inline;">You've disabled javascript. This made the menu so sad that it self-destructed. I hope you're happy now.</p>
<p class="scriptnotifysmaller" style="display:inline;">You monster.</p>
</nobr>
<p class="scriptnotifysmall">This page should still kinda work though.</p>
</noscript>
<iframe id="navMenu" src="nav.html" style="border:none; display:none;" height="40px" width="800px"> </iframe>
<script>
document.getElementById("navMenu").style.display = "block";
</script>
<p class="mini">Note: Chaos is an internal development server containing many odd projects and changes, many of which may never actually make it to TQ. Speculate responsibly.</p>
<p class="kindasmall">Click the categories below to expand them!</p>
<!--<h2 id="items">Items</h2>-->
<details id="newitems">
<summary class="bigsum">New Items (6 Entries)</summary>
<table>
<tr>
<!--<th>[[title4]]</th>-->
<th>TypeID & Name</th>
<th>Description</th>
<th>Group</th>
<th>Attributes</th>
</tr>
<details>
<summary class="smallsum" onClick="selectText('newItemsNotepad')">Show/Hide EVE notepad list for in-game viewing.</summary><div class="simplebox" id="newItemsNotepad"><url=showinfo:45056>♦ Apocalypse</url><br><url=showinfo:45057>Amarr CA Cruiser</url><br><url=showinfo:45060>Vintage Frigate Blueprints</url><br><url=showinfo:45061>Subspace Energy & You</url><br><url=showinfo:45062>Replica Gold Magnate Decorative Plating</url><br><url=showinfo:45055>♦ Bhaalgorn</url><br></div></details><tr>
<td>45056 - <b>♦ Apocalypse</b></td>
<td>In days past, only those in high favor with the Emperor could hope to earn the reward of commanding one of the majestic and powerful Apocalypse class battleships. In latter years, even though now in full market circulation, these golden, metallic monstrosities are still feared and respected as enduring symbols of Amarrian might.</td>
<td>♦ Battleship</td>
<td width="300px"><details>
<summary>Click to toggle showing the 63 attributes.</summary> <b>Mass:</b> 102350000.0<br> <b>Shield Capacity:</b> 7500.0<br> <b>Structure Hitpoints:</b> 8750.0<br> <b>Armor EM Damage Resistance:</b> 0.425<br> <b>Armor Explosive Damage Resistance:</b> 0.34<br> <b>Armor Kinetic Damage Resistance:</b> 0.31875<br> <b>Armor Thermal Damage Resistance:</b> 0.5525<br> <b>Shield EM Damage Resistance:</b> 0.875<br> <b>Shield Explosive Damage Resistance:</b> 0.4375<br> <b>Shield Kinetic Damage Resistance:</b> 0.525<br> <b>Shield Thermal Damage Resistance:</b> 0.7<br> <b>graphicID:</b> 2121<br> <b>Maximum Velocity:</b> 134.1875<br> <b>Capacity:</b> 675.0<br> <b>Signature Radius:</b> 380.0<br> <b>entityFactionLoss:</b> 0.0<br> <b>Rate of fire:</b> 4172.66979<br> <b>Scan Resolution:</b> 154.375<br> <b>behaviorMicroWarpDriveDischarge:</b> 210.0<br> <b>Armor Hitpoints:</b> 22500.0<br> <b>behaviorMicroWarpDriveMassAddition:</b> 50000000.0<br> <b>behaviorMicroWarpDriveSignatureRadiusBonus:</b> 500.0<br> <b>behaviorMicroWarpDriveSpeedFactor:</b> 631.25<br> <b>behaviorMicroWarpDriveSpeedBoostFactor:</b> 150000000.0<br> <b>Damage Modifier:</b> 37.54954326<br> <b>Optimal Range:</b> 149428.125<br> <b>Inertia Modifier:</b> 0.080325<br> <b>Capacitor Recharge time:</b> 600000.0<br> <b>Maximum Targeting Range:</b> 184067.4552<br> <b>Signature Resolution:</b> 40000.0<br> <b>Structure Kinetic Damage Resistance:</b> 0.402<br> <b>Structure Thermal Damage Resistance:</b> 0.402<br> <b>Structure Explosive Damage Resistance:</b> 0.402<br> <b>Structure EM Damage Resistance:</b> 0.402<br> <b>EM damage:</b> 20.0<br> <b>Explosive damage:</b> 0.0<br> <b>Kinetic damage:</b> 0.0<br> <b>Thermal damage:</b> 12.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1814<br> <b>typeNameID:</b> 525626<br> <b>Accuracy falloff :</b> 19500.0<br> <b>Turret Tracking:</b> 0.751953125<br> <b>typeID:</b> 45056<br> <b>radius:</b> 400.0<br> <b>soundID:</b> 20061<br> <b>wreckTypeID:</b> 26470<br> <b>published:</b> False<br> <b>Maximum Locked Targets:</b> 7.0<br> <b>raceID:</b> 4<br> <b>Volume:</b> 495000.0<br> <b>behaviorMicroWarpDriveDuration:</b> 10000.0<br> <b>RADAR Sensor Strength:</b> 35.52<br> <b>Ladar Sensor Strength:</b> 0.0<br> <b>Magnetometric Sensor Strength:</b> 0.0<br> <b>Gravimetric Sensor Strength:</b> 0.0<br> <b>Shield recharge time:</b> 1875000.0<br> <b>descriptionID:</b> 525627<br> <b>Bounty:</b> 0.0<br> <b>Capacitor Capacity:</b> 6562.5<br> <b>gfxTurretID:</b> 2985.0<br> <b>gfxBoosterID:</b> 394.0<br> <b>basePrice:</b> 0.0<br></details></td>
</tr>
<tr>
<td>45057 - <b>Amarr CA Cruiser</b></td>
<td>A cruiser of the Amarr empire.</td>
<td>Mission Amarr Empire Cruiser</td>
<td width="300px"><details>
<summary>Click to toggle showing the 75 attributes.</summary> <b>Mass:</b> 12000000.0<br> <b>Shield Capacity:</b> 600.0<br> <b>Structure Hitpoints:</b> 400.0<br> <b>Armor EM Damage Resistance:</b> 0.79<br> <b>Armor Explosive Damage Resistance:</b> 0.49<br> <b>Armor Kinetic Damage Resistance:</b> 0.59<br> <b>Armor Thermal Damage Resistance:</b> 0.69<br> <b>Shield EM Damage Resistance:</b> 0.79<br> <b>Shield Explosive Damage Resistance:</b> 0.49<br> <b>Shield Kinetic Damage Resistance:</b> 0.59<br> <b>Shield Thermal Damage Resistance:</b> 0.69<br> <b>entityBracketColour:</b> 1.0<br> <b>graphicID:</b> 1065<br> <b>Maximum Velocity:</b> 100.0<br> <b>Capacity:</b> 450.0<br> <b>Signature Radius:</b> 105.0<br> <b>entityFactionLoss:</b> 0.0<br> <b>Rate of fire:</b> 12000.0<br> <b>Scan Resolution:</b> 290.0<br> <b>Optimal Range:</b> 20000.0<br> <b>Armor Hitpoints:</b> 600.0<br> <b>Ignore Drones Below This Size:</b> 50.0<br> <b>Damage Modifier:</b> 4.8<br> <b>entityChaseMaxDelay:</b> 10000.0<br> <b>entityChaseMaxDelayChance:</b> 0.2<br> <b>entityChaseMaxDuration:</b> 10000.0<br> <b>entityChaseMaxDurationChance:</b> 1.0<br> <b>armorUniformity:</b> 0.75<br> <b>Capacitor Recharge time:</b> 1000000.0<br> <b>structureUniformity:</b> 1.0<br> <b>Disallows Assistance:</b> 1.0<br> <b>Signature Resolution:</b> 50.0<br> <b>Threat Target Switch:</b> 1.0<br> <b>Use Signature Radius:</b> 1.0<br> <b>Chance to not change targets:</b> 0.0<br> <b>use effect monitoring:</b> 1.0<br> <b>entityArmorRepairDuration:</b> 10000.0<br> <b>entityArmorRepairAmount:</b> 130.0<br> <b>Drone Tanking Modifier:</b> 0.7<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 668<br> <b>typeNameID:</b> 525631<br> <b>entityChaseMaxDistance:</b> 11500.0<br> <b>Accuracy falloff :</b> 10000.0<br> <b>Turret Tracking:</b> 0.081<br> <b>typeID:</b> 45057<br> <b>radius:</b> 150.0<br> <b>EM damage:</b> 8.0<br> <b>wreckTypeID:</b> 27051<br> <b>published:</b> False<br> <b>Maximum Locked Targets:</b> 1.0<br> <b>maxAttackTargets:</b> 1.0<br> <b>raceID:</b> 4<br> <b>Thermal damage:</b> 8.0<br> <b>Volume:</b> 120000.0<br> <b>entityEquipmentMin:</b> -4.0<br> <b>entityEquipmentMax:</b> 3.0<br> <b>entityAttackRange:</b> 50000.0<br> <b>RADAR Sensor Strength:</b> 14.0<br> <b>entityReactionFactor:</b> 0.52<br> <b>entityFlyRange:</b> 20000.0<br> <b>propulsionGraphicID:</b> 397.0<br> <b>entityAttackDelayMin:</b> 5475.0<br> <b>entityAttackDelayMax:</b> 21900.0<br> <b>Shield recharge time:</b> 1000000.0<br> <b>descriptionID:</b> 525632<br> <b>Capacitor Capacity:</b> 625.0<br> <b>Shield Uniformity:</b> 0.75<br> <b>entityOverviewShipGroupId:</b> 26.0<br> <b>entityArmorRepairDelayChanceMedium:</b> 0.41<br> <b>gfxTurretID:</b> 454.0<br> <b>gfxBoosterID:</b> 397.0<br> <b>basePrice:</b> 0.0<br> <b>entityLootCountMin:</b> 1.0<br> <b>Orbit Velocity:</b> 180.0<br></details></td>
</tr>
<tr>
<td>45060 - <b>Vintage Frigate Blueprints</b></td>
<td>This set of blueprints was almost lost to the ages, and is now very valuable in certain circles. Only partially complete due to data degradation, it details an Imperial frigate of unknown class, roughly the same dimensions and mass as the Punisher. Also included are partial details on a proprietary antimatter reactor design, as well as instructions for proper radioactive decontamination and disposal of slaves used to construct and install it in the vessel's chassis.</td>
<td>Special Edition Commodities</td>
<td width="300px"><details>
<summary>Click to toggle showing the 13 attributes.</summary> <b>descriptionID:</b> 525638<br> <b>typeID:</b> 45060<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 525637<br> <b>iconID:</b> 2853<br> <b>published:</b> True<br> <b>marketGroupID:</b> 1661<br> <b>basePrice:</b> 0.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1194<br></details></td>
</tr>
<tr>
<td>45061 - <b>Subspace Energy & You</b></td>
<td>This instructional holoreel package details the finer points of working with the conversion of subspace energy, and provides relevant health and safety recommendations to reduce potential exposure to harmful electromagnetic fields. For full clarification, the package also includes examples of what may happen should those with metallic augmentations be careless around ultra high voltage electrical equipment and strong magnetic fields. Viewer discretion is advised.</td>
<td>Special Edition Commodities</td>
<td width="300px"><details>
<summary>Click to toggle showing the 13 attributes.</summary> <b>descriptionID:</b> 525640<br> <b>typeID:</b> 45061<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 525639<br> <b>iconID:</b> 1177<br> <b>published:</b> True<br> <b>marketGroupID:</b> 1661<br> <b>basePrice:</b> 0.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1194<br></details></td>
</tr>
<tr>
<td>45062 - <b>Replica Gold Magnate Decorative Plating</b></td>
<td>This is a scale model of a section of decorative plating designed for the port side propulsion pod of a Gold Magnate. As intricately detailed as the real thing, it comes with its own stand for display. With only 1337 numbered issues of this piece produced in celebration of the ascension of Her Holiness Empress Catiz I to the throne, each one is highly valued by collectors across the cluster. Laser cut from the finest pure gold the Empire has to offer, these pieces of art are crafted from left over materials from the production of actual decorative plating now in service on Gold Magnates with the Imperial Guard.</td>
<td>Special Edition Commodities</td>
<td width="300px"><details>
<summary>Click to toggle showing the 13 attributes.</summary> <b>descriptionID:</b> 525642<br> <b>typeID:</b> 45062<br> <b>radius:</b> 1<br> <b>Mass:</b> 0.0<br> <b>Capacity:</b> 0.0<br> <b>Volume:</b> 0.01<br> <b>typeNameID:</b> 525641<br> <b>iconID:</b> 21062<br> <b>published:</b> True<br> <b>marketGroupID:</b> 1661<br> <b>basePrice:</b> 0.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1194<br></details></td>
</tr>
<tr>
<td>45055 - <b>♦ Bhaalgorn</b></td>
<td>Named after a child-devouring demon of Amarrian legend, the Bhaalgorn is the pride and joy of the Blood Raider cabal. Though it is known to be based on an Armageddon blueprint, the design's origin remains shrouded in mystery. Those of a superstitious persuasion whisper in the dark of eldritch ceremonies and arcane rituals, but for most people, the practical aspect of the matter will more than suffice: you see one of these blood-red horrors looming on the horizon, it's time to make yourself scarce.</td>
<td>♦ Battleship</td>
<td width="300px"><details>
<summary>Click to toggle showing the 73 attributes.</summary> <b>Mass:</b> 102725000.0<br> <b>Shield Capacity:</b> 11043.75<br> <b>Structure Hitpoints:</b> 11625.0<br> <b>Armor EM Damage Resistance:</b> 0.425<br> <b>Armor Explosive Damage Resistance:</b> 0.34<br> <b>Armor Kinetic Damage Resistance:</b> 0.31875<br> <b>Armor Thermal Damage Resistance:</b> 0.5525<br> <b>Shield EM Damage Resistance:</b> 0.875<br> <b>Shield Explosive Damage Resistance:</b> 0.4375<br> <b>Shield Kinetic Damage Resistance:</b> 0.525<br> <b>Shield Thermal Damage Resistance:</b> 0.7<br> <b>Maximum Velocity Bonus:</b> -55.0<br> <b>graphicID:</b> 2122<br> <b>Maximum Velocity:</b> 114.7254961<br> <b>Capacity:</b> 675.0<br> <b>Signature Radius:</b> 400.0<br> <b>entityFactionLoss:</b> 0.0<br> <b>Rate of fire:</b> 7244.218385<br> <b>Scan Resolution:</b> 125.0<br> <b>behaviorMicroWarpDriveDischarge:</b> 210.0<br> <b>Armor Hitpoints:</b> 36810.0<br> <b>behaviorMicroWarpDriveMassAddition:</b> 50000000.0<br> <b>behaviorMicroWarpDriveSignatureRadiusBonus:</b> 500.0<br> <b>behaviorMicroWarpDriveSpeedFactor:</b> 631.25<br> <b>behaviorMicroWarpDriveSpeedBoostFactor:</b> 150000000.0<br> <b>Damage Modifier:</b> 84.48647234<br> <b>Optimal Range:</b> 136620.0<br> <b>Inertia Modifier:</b> 0.084375<br> <b>Capacitor Recharge time:</b> 865500.0<br> <b>Maximum Targeting Range:</b> 181545.9832<br> <b>Neutralization Amount:</b> 1050.0<br> <b>Signature Resolution:</b> 40000.0<br> <b>Structure Kinetic Damage Resistance:</b> 0.402<br> <b>Structure Thermal Damage Resistance:</b> 0.402<br> <b>Structure Explosive Damage Resistance:</b> 0.402<br> <b>Structure EM Damage Resistance:</b> 0.402<br> <b>EM damage:</b> 20.0<br> <b>Explosive damage:</b> 0.0<br> <b>Kinetic damage:</b> 0.0<br> <b>Thermal damage:</b> 12.0<br> <b>portionSize:</b> 1<br> <b>groupID:</b> 1814<br> <b>typeNameID:</b> 525624<br> <b>behaviorWebifierDuration:</b> 5000.0<br> <b>Accuracy falloff :</b> 32500.0<br> <b>Turret Tracking:</b> 0.435015625<br> <b>typeID:</b> 45055<br> <b>radius:</b> 400.0<br> <b>soundID:</b> 20112<br> <b>wreckTypeID:</b> 26470<br> <b>published:</b> False<br> <b>Maximum Locked Targets:</b> 8.0<br> <b>raceID:</b> 4<br> <b>behaviorWebifierRange:</b> 30000.0<br> <b>behaviorWebifierFalloff:</b> 0.0<br> <b>behaviorWebifierDischarge:</b> 3.75<br> <b>Volume:</b> 486000.0<br> <b>behaviorMicroWarpDriveDuration:</b> 10000.0<br> <b>RADAR Sensor Strength:</b> 33.6<br> <b>Ladar Sensor Strength:</b> 0.0<br> <b>Magnetometric Sensor Strength:</b> 0.0<br> <b>Gravimetric Sensor Strength:</b> 0.0<br> <b>behaviorEnergyNeutralizerDuration:</b> 24000.0<br> <b>behaviorEnergyNeutralizerRange:</b> 24000.0<br> <b>behaviorEnergyNeutralizerFalloff:</b> 12000.0<br> <b>behaviorEnergyNeutralizerDischarge:</b> 375.0<br> <b>Shield recharge time:</b> 1875000.0<br> <b>descriptionID:</b> 525625<br> <b>Bounty:</b> 0.0<br> <b>Capacitor Capacity:</b> 8554.6875<br> <b>gfxTurretID:</b> 3065.0<br> <b>gfxBoosterID:</b> 397.0<br> <b>basePrice:</b> 0.0<br></details></td>
</tr>
</table>
</details>
<details id="removeditems">
<summary class="bigsum_disabled" onclick="return false">Removed Items (0 Entries)</summary>
<table>
<tr>
<th>Name</th>
<th>Description</th>
<th>Group</th>
<th>Attributes</th>
</tr>
</table>
</details>
<br>
<details id="bonuschanges">
<summary class="bigsum">Changed Traits (12 Entries)</summary>
<table>
<tr>
<th>TypeID, Group, & Name</th>
<th>Chaos_Previous</th>
<th>Chaos_Next</th>
<th>Diff</th>
<!-- <th>[[title4]]</th> -->
</tr>
<tr>
<td style="text-align:center;" width="130px">671 - <b>Erebus</b><br>(Titan)</td>
<td width="355px"><b>Gallente Titan bonuses (per skill level):</b><ul><li>180% bonus to <b>Capital Hybrid Turret</b> damage</li><li>5% bonus to <b>Capital Hybrid Turret</b> rate of fire</li><li>10+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Doomsday</b> devices</li><li> Can fit <b>Jump Portal Generator</b></li><li> Can fit <b>Clone Vat Bay</b></li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><li> Can fit one <b>Phenomena Generator</b> module</li><ul></td>
<td width="355px"><b>Gallente Titan bonuses (per skill level):</b><ul><li>180% bonus to <b>Capital Hybrid Turret</b> damage</li><li>5% bonus to <b>Capital Hybrid Turret</b> rate of fire</li><li>10+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Doomsday</b> module</li><li> Can fit a <b>Phenomena Generator</b> module</li><li> Can fit a <b>Jump Portal Generator</b> module</li><li> Can fit a <b>Clone Vat Bay</b> module</li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><ul></td>
<td><span>Gallente Titan bonuses (per skill level):<br>180% bonus to <a href=showinfo:21666>Capital Hybrid Turret</a> damage<br>5% bonus to <a href=showinfo:21666>Capital Hybrid Turret</a> rate of fire<br>10+ bonus to ship warp core strength<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module<br> Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can use three <a href=showinfo:3348>Command Burst</a> modules<br>200% bonus to <a href=showinfo:3348>Command Burst</a> area of effect range<br>500% bonus to Armor Plates and Shield Extenders<br>80% bonus to Sensor Dampener resistance<br>80% bonus to Weapon Disruption resistance<br>80% bonus to Stasis effect resistance<br>80% increase to Remote Electronic Assistance impedance<br>5x penalty to <a href=showinfo:34593>Entosis Link</a> duration</span><del style="background:#ffe6e6;"><br> Can fit one <a href=showinfo:43662>Phenomena Generator</a> module</del></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">3764 - <b>Leviathan</b><br>(Titan)</td>
<td width="355px"><b>Caldari Titan bonuses (per skill level):</b><ul><li>50% bonus to kinetic <b>XL Cruise</b>, <b>XL Torpedo</b> and <b>Torpedo</b> damage</li><li>40% bonus to EM, explosive and thermal <b>XL Cruise</b>, <b>XL Torpedo</b> and <b>Torpedo</b> damage</li><li>15% bonus to <b>XL Cruise Missile Launchers</b>, <b>XL Torpedo Launchers</b> and <b>Rapid Torpedo Launcher</b> rate of fire</li><li>10+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Doomsday</b> devices</li><li> Can fit <b>Jump Portal Generator</b></li><li> Can fit <b>Clone Vat Bay</b></li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>100% bonus to <b>Torpedo</b> Velocity</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li> Can fit one <b>Phenomena Generator</b> module</li><li>5x penalty to <b>Entosis Link</b> duration</li><ul></td>
<td width="355px"><b>Caldari Titan bonuses (per skill level):</b><ul><li>50% bonus to kinetic <b>XL Cruise</b>, <b>XL Torpedo</b> and <b>Torpedo</b> damage</li><li>40% bonus to EM, explosive and thermal <b>XL Cruise</b>, <b>XL Torpedo</b> and <b>Torpedo</b> damage</li><li>15% bonus to <b>XL Cruise Missile Launchers</b>, <b>XL Torpedo Launchers</b> and <b>Rapid Torpedo Launcher</b> rate of fire</li><li>10+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Doomsday</b> module</li><li> Can fit a <b>Phenomena Generator</b> module</li><li> Can fit a <b>Jump Portal Generator</b> module</li><li> Can fit a <b>Clone Vat Bay</b> module</li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>100% bonus to <b>Torpedo</b> Velocity</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><ul></td>
<td><span>Caldari Titan bonuses (per skill level):<br>50% bonus to kinetic <a href=showinfo:32435>XL Cruise</a>, <a href=showinfo:21668>XL Torpedo</a> and <a href=showinfo:3325>Torpedo</a> damage<br>40% bonus to EM, explosive and thermal <a href=showinfo:32435>XL Cruise</a>, <a href=showinfo:21668>XL Torpedo</a> and <a href=showinfo:3325>Torpedo</a> damage<br>15% bonus to <a href=showinfo:32435>XL Cruise Missile Launchers</a>, <a href=showinfo:21668>XL Torpedo Launchers</a> and <a href=showinfo:3325>Rapid Torpedo Launcher</a> rate of fire<br>10+ bonus to ship warp core strength<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module<br> Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can use three <a href=showinfo:3348>Command Burst</a> modules<br>200% bonus to <a href=showinfo:3348>Command Burst</a> area of effect range<br>500% bonus to Armor Plates and Shield Extenders<br>100% bonus to <a href=showinfo:3325>Torpedo</a> Velocity<br>80% bonus to Sensor Dampener resistance<br>80% bonus to Weapon Disruption resistance<br>80% bonus to Stasis effect resistance<br>80% increase to Remote Electronic Assistance impedance<br></span><del style="background:#ffe6e6;"> Can fit one <a href=showinfo:43660>Phenomena Generator</a> module<br></del><span>5x penalty to <a href=showinfo:34593>Entosis Link</a> duration</span></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">11567 - <b>Avatar</b><br>(Titan)</td>
<td width="355px"><b>Amarr Titan bonuses (per skill level):</b><ul><li>180% bonus to <b>Capital Energy Turret</b> damage</li><li>10% reduction in <b>Capital Energy Turret</b> activation cost</li><li>10+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Doomsday</b> devices</li><li> Can fit <b>Jump Portal Generator</b></li><li> Can fit <b>Clone Vat Bay</b></li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><li> Can fit one <b>Phenomena Generator</b> module</li><ul></td>
<td width="355px"><b>Amarr Titan bonuses (per skill level):</b><ul><li>180% bonus to <b>Capital Energy Turret</b> damage</li><li>10% reduction in <b>Capital Energy Turret</b> activation cost</li><li>10+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Doomsday</b> module</li><li> Can fit a <b>Phenomena Generator</b> module</li><li> Can fit a <b>Jump Portal Generator</b> module</li><li> Can fit a <b>Clone Vat Bay</b> module</li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><ul></td>
<td><span>Amarr Titan bonuses (per skill level):<br>180% bonus to <a href=showinfo:20327>Capital Energy Turret</a> damage<br>10% reduction in <a href=showinfo:20327>Capital Energy Turret</a> activation cost<br>10+ bonus to ship warp core strength<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module<br> Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can use three <a href=showinfo:3348>Command Burst</a> modules<br>200% bonus to <a href=showinfo:3348>Command Burst</a> area of effect range<br>500% bonus to Armor Plates and Shield Extenders<br>80% bonus to Sensor Dampener resistance<br>80% bonus to Weapon Disruption resistance<br>80% bonus to Stasis effect resistance<br>80% increase to Remote Electronic Assistance impedance<br>5x penalty to <a href=showinfo:34593>Entosis Link</a> duration</span><del style="background:#ffe6e6;"><br> Can fit one <a href=showinfo:43658>Phenomena Generator</a> module</del></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">19720 - <b>Revelation</b><br>(Dreadnought)</td>
<td width="355px"><b>Amarr Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Energy Turret</b> damage</li><li>4% bonus to all armor resistances</li><li>10% reduction in <b>Capital Energy Turret</b> activation cost</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Siege modules</b></li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td width="355px"><b>Amarr Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Energy Turret</b> damage</li><li>4% bonus to all armor resistances</li><li>10% reduction in <b>Capital Energy Turret</b> activation cost</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Siege module</b></li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td><span>Amarr Dreadnought bonuses (per skill level):<br>5% bonus to <a href=showinfo:20327>Capital Energy Turret</a> damage<br>4% bonus to all armor resistances<br>10% reduction in <a href=showinfo:20327>Capital Energy Turret</a> activation cost<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a><br>5x penalty to <a href=showinfo:34593>Entosis Link</a> cycle time</span></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">19722 - <b>Naglfar</b><br>(Dreadnought)</td>
<td width="355px"><b>Minmatar Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Projectile Turret</b> damage</li><li>5% bonus to <b>Capital Projectile Turret</b> rate of fire</li><li>5% bonus to <b>Shield Booster</b> cycle time</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Siege modules</b></li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td width="355px"><b>Minmatar Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Projectile Turret</b> damage</li><li>5% bonus to <b>Capital Projectile Turret</b> rate of fire</li><li>5% bonus to <b>Shield Booster</b> cycle time</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Siege module</b></li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td><span>Minmatar Dreadnought bonuses (per skill level):<br>5% bonus to <a href=showinfo:21667>Capital Projectile Turret</a> damage<br>5% bonus to <a href=showinfo:21667>Capital Projectile Turret</a> rate of fire<br>5% bonus to <a href=showinfo:3416>Shield Booster</a> cycle time<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a><br>5x penalty to <a href=showinfo:34593>Entosis Link</a> cycle time</span></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">19724 - <b>Moros</b><br>(Dreadnought)</td>
<td width="355px"><b>Gallente Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Hybrid Turret</b> damage</li><li>5% bonus to <b>Capital Hybrid Turret</b> rate of fire</li><li>5% bonus to <b>Armor Repairer</b> cycle time</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Siege modules</b></li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td width="355px"><b>Gallente Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Hybrid Turret</b> damage</li><li>5% bonus to <b>Capital Hybrid Turret</b> rate of fire</li><li>5% bonus to <b>Armor Repairer</b> cycle time</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Siege module</b></li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td><span>Gallente Dreadnought bonuses (per skill level):<br>5% bonus to <a href=showinfo:21666>Capital Hybrid Turret</a> damage<br>5% bonus to <a href=showinfo:21666>Capital Hybrid Turret</a> rate of fire<br>5% bonus to <a href=showinfo:3393>Armor Repairer</a> cycle time<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a><br>5x penalty to <a href=showinfo:34593>Entosis Link</a> cycle time</span></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">19726 - <b>Phoenix</b><br>(Dreadnought)</td>
<td width="355px"><b>Caldari Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>XL Cruise</b>, <b>XL Torpedo</b> and <b>Torpedo</b> damage</li><li>4% bonus to all shield resistances</li><li>10% reduction in <b>missile launcher</b> reload time</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Siege modules</b></li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td width="355px"><b>Caldari Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>XL Cruise</b>, <b>XL Torpedo</b> and <b>Torpedo</b> damage</li><li>4% bonus to all shield resistances</li><li>10% reduction in <b>missile launcher</b> reload time</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Siege module</b></li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td><span>Caldari Dreadnought bonuses (per skill level):<br>5% bonus to <a href=showinfo:32435>XL Cruise</a>, <a href=showinfo:21668>XL Torpedo</a> and <a href=showinfo:3325>Torpedo</a> damage<br>4% bonus to all shield resistances<br>10% reduction in <a href=showinfo:3319>missile launcher</a> reload time<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a><br>5x penalty to <a href=showinfo:34593>Entosis Link</a> cycle time</span></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">23773 - <b>Ragnarok</b><br>(Titan)</td>
<td width="355px"><b>Minmatar Titan bonuses (per skill level):</b><ul><li>180% bonus to <b>Capital Projectile Turret</b> damage</li><li>5% bonus to <b>Capital Projectile Turret</b> rate of fire</li><li>10+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Doomsday</b> devices</li><li> Can fit <b>Jump Portal Generator</b></li><li> Can fit <b>Clone Vat Bay</b></li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><li> Can fit one <b>Phenomena Generator</b> module</li><ul></td>
<td width="355px"><b>Minmatar Titan bonuses (per skill level):</b><ul><li>180% bonus to <b>Capital Projectile Turret</b> damage</li><li>5% bonus to <b>Capital Projectile Turret</b> rate of fire</li><li>10+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Doomsday</b> module</li><li> Can fit a <b>Phenomena Generator</b> module</li><li> Can fit a <b>Jump Portal Generator</b> module</li><li> Can fit a <b>Clone Vat Bay</b> module</li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><ul></td>
<td><span>Minmatar Titan bonuses (per skill level):<br>180% bonus to <a href=showinfo:21667>Capital Projectile Turret</a> damage<br>5% bonus to <a href=showinfo:21667>Capital Projectile Turret</a> rate of fire<br>10+ bonus to ship warp core strength<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module<br> Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can use three <a href=showinfo:3348>Command Burst</a> modules<br>200% bonus to <a href=showinfo:3348>Command Burst</a> area of effect range<br>500% bonus to Armor Plates and Shield Extenders<br>80% bonus to Sensor Dampener resistance<br>80% bonus to Weapon Disruption resistance<br>80% bonus to Stasis effect resistance<br>80% increase to Remote Electronic Assistance impedance<br>5x penalty to <a href=showinfo:34593>Entosis Link</a> duration</span><del style="background:#ffe6e6;"><br> Can fit one <a href=showinfo:43664>Phenomena Generator</a> module</del></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">42124 - <b>Vehement</b><br>(Dreadnought)</td>
<td width="355px"><b>Gallente Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Hybrid Turret</b> rate of fire</li></ul><br><br><b>Minmatar Dreadnought bonuses (per skill level):</b><ul><li>10% bonus to <b>Stasis Webifier</b> effectiveness</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Siege modules</b></li><li>37.5% bonus to <b>Capital Hybrid Turret</b> damage</li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td width="355px"><b>Gallente Dreadnought bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Hybrid Turret</b> rate of fire</li></ul><br><br><b>Minmatar Dreadnought bonuses (per skill level):</b><ul><li>10% bonus to <b>Stasis Webifier</b> effectiveness</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Siege module</b></li><li>37.5% bonus to <b>Capital Hybrid Turret</b> damage</li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td><span>Gallente Dreadnought bonuses (per skill level):<br>5% bonus to <a href=showinfo:21666>Capital Hybrid Turret</a> rate of fire<br><br>Minmatar Dreadnought bonuses (per skill level):<br>10% bonus to <a href=showinfo:526>Stasis Webifier</a> effectiveness<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a><br>37.5% bonus to <a href=showinfo:21666>Capital Hybrid Turret</a> damage<br>5x penalty to <a href=showinfo:34593>Entosis Link</a> cycle time</span></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">42126 - <b>Vanquisher</b><br>(Titan)</td>
<td width="355px"><b>Gallente Titan bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Hybrid Turret</b> rate of fire</li><li>6+ bonus to ship warp core strength</li></ul><br><br><b>Minmatar Titan bonuses (per skill level):</b><ul><li>10% bonus to <b>Stasis Webifier</b> effectiveness</li><li>6+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit <b>Doomsday</b> devices</li><li> Can fit <b>Jump Portal Generator</b></li><li> Can fit <b>Clone Vat Bay</b></li><li> Can fit three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>1000% bonus to <b>Capital Hybrid Turret</b> damage</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><li> Can fit one <b>Minmatar</b> or <b>Gallente</b> Phenomena Generator module</li><ul></td>
<td width="355px"><b>Gallente Titan bonuses (per skill level):</b><ul><li>5% bonus to <b>Capital Hybrid Turret</b> rate of fire</li><li>6+ bonus to ship warp core strength</li></ul><br><br><b>Minmatar Titan bonuses (per skill level):</b><ul><li>10% bonus to <b>Stasis Webifier</b> effectiveness</li><li>6+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Doomsday</b> module</li><li> Can fit a <b>Phenomena Generator</b> module</li><li> Can fit a <b>Jump Portal Generator</b> module</li><li> Can fit a <b>Clone Vat Bay</b> module</li><li> Can use three <b>Command Burst</b> modules</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>1000% bonus to <b>Capital Hybrid Turret</b> damage</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><ul></td>
<td><span>Gallente Titan bonuses (per skill level):<br>5% bonus to <a href=showinfo:21666>Capital Hybrid Turret</a> rate of fire<br>6+ bonus to ship warp core strength<br><br>Minmatar Titan bonuses (per skill level):<br>10% bonus to <a href=showinfo:526>Stasis Webifier</a> effectiveness<br>6+ bonus to ship warp core strength<br><br>Role Bonus:<br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module<br> Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins><span><br> Can </span><del style="background:#ffe6e6;">fit</del><ins style="background:#e6ffe6;">use</ins><span> three <a href=showinfo:3348>Command Burst</a> modules<br>200% bonus to <a href=showinfo:3348>Command Burst</a> area of effect range\</span><ins style="background:#e6ffe6;">n500% bonus to Armor Plates and Shield Extenders\</ins><span>n1000% bonus to <a href=showinfo:21666>Capital Hybrid Turret</a> damage<br></span><del style="background:#ffe6e6;">50</del><ins style="background:#e6ffe6;">8</ins><span>0% bonus to </span><del style="background:#ffe6e6;">Armor Plates and Shield Extenders<br>80% bonus to </del><span></span><ins style="background:#e6ffe6;"></ins><span>Sensor Dampener resistance<br>80% bonus to Weapon Disruption resistance<br>80%</span><ins style="background:#e6ffe6;"> bonus to Stasis effect resistance<br>80%</ins><span> increase to Remote Electronic Assistance impedance<br>5x penalty to <a href=showinfo:34593>Entosis Link</a> duration</span><del style="background:#ffe6e6;"><br> Can fit one <a href=showinfo:43664>Minmatar</a> or <a href=showinfo:43662>Gallente</a> Phenomena Generator module</del></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">42241 - <b>Molok</b><br>(Titan)</td>
<td width="355px"></td>
<td width="355px"><b>Minmatar Titan bonuses (per skill level):</b><ul><li>20% bonus to <b>Stasis Webifier</b> optimal range</li><li>6+ bonus to ship warp core strength</li></ul><br><br><b>Amarr Titan bonuses (per skill level):</b><ul><li>15% bonus to <b>Energy Nosferatu</b> and <b>Energy Neutralizer</b> drain amount</li><li>6+ bonus to ship warp core strength</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Doomsday</b> module</li><li> Can fit a <b>Phenomena Generator</b> module</li><li> Can fit a <b>Jump Portal Generator</b> module</li><li> Can fit a <b>Clone Vat Bay</b> module</li><li> Can use three <b>Command Burst</b> modules</li><li> <b>Energy Nosferatu</b> fitted to this ship will drain targeted ship's capacitor regardless of your own capacitor level</li><li>200% bonus to <b>Command Burst</b> area of effect range</li><li>500% bonus to Armor Plates and Shield Extenders</li><li>1400% bonus to <b>Capital Energy Turret</b> damage</li><li>80% bonus to Sensor Dampener resistance</li><li>80% bonus to Weapon Disruption resistance</li><li>80% bonus to Stasis effect resistance</li><li>80% increase to Remote Electronic Assistance impedance</li><li>5x penalty to <b>Entosis Link</b> duration</li><ul></td>
<td><ins style="background:#e6ffe6;">Minmatar Titan bonuses (per skill level):<br>20% bonus to <a href=showinfo:526>Stasis Webifier</a> optimal range<br>6+ bonus to ship warp core strength<br><br>Amarr Titan bonuses (per skill level):<br>15% bonus to <a href=showinfo:3423>Energy Nosferatu</a> and <a href=showinfo:3423>Energy Neutralizer</a> drain amount<br>6+ bonus to ship warp core strength<br><br>Role Bonus:<br> Can fit a <a href=showinfo:24563>Doomsday</a> module<br> Can fit a <a href=showinfo:43662>Phenomena Generator</a> module<br> Can fit a <a href=showinfo:23953>Jump Portal Generator</a> module<br> Can fit a <a href=showinfo:23735>Clone Vat Bay</a> module<br> Can use three <a href=showinfo:3348>Command Burst</a> modules<br> <a href=showinfo:3423>Energy Nosferatu</a> fitted to this ship will drain targeted ship's capacitor regardless of your own capacitor level<br>200% bonus to <a href=showinfo:3348>Command Burst</a> area of effect range<br>500% bonus to Armor Plates and Shield Extenders<br>1400% bonus to <a href=showinfo:20327>Capital Energy Turret</a> damage<br>80% bonus to Sensor Dampener resistance<br>80% bonus to Weapon Disruption resistance<br>80% bonus to Stasis effect resistance<br>80% increase to Remote Electronic Assistance impedance<br>5x penalty to <a href=showinfo:34593>Entosis Link</a> duration</ins></td>
</tr>
<tr>
<td style="text-align:center;" width="130px">42243 - <b>Chemosh</b><br>(Dreadnought)</td>
<td width="355px"></td>
<td width="355px"><b>Amarr Dreadnought bonuses (per skill level):</b><ul><li>15% bonus to <b>Energy Nosferatu</b> and <b>Energy Neutralizer</b> drain amount</li></ul><br><br><b>Minmatar Dreadnought bonuses (per skill level):</b><ul><li>20% bonus to <b>Stasis Webifier</b> optimal range</li></ul><br><br><b>Role Bonus:</b><ul><li> Can fit a <b>Doomsday</b> module</li><li> <b>Energy Nosferatu</b> fitted to this ship will drain targeted ship's capacitor regardless of your own capacitor level</li><li>25% bonus to <b>Capital Energy Turret</b> damage</li><li>5x penalty to <b>Entosis Link</b> cycle time</li><ul></td>
<td><ins style="background:#e6ffe6;">Amarr Dreadnought bonuses (per skill level):<br>15% bonus to <a href=showinfo:3423>Energy Nosferatu</a> and <a href=showinfo:3423>Energy Neutralizer</a> drain amount<br><br>Minmatar Dreadnought bonuses (per skill level):<br>20% bonus to <a href=showinfo:526>Stasis Webifier</a> optimal range<br><br>Role Bonus:<br> Can fit a <a href=showinfo:24563>Doomsday</a> module<br> <a href=showinfo:3423>Energy Nosferatu</a> fitted to this ship will drain targeted ship's capacitor regardless of your own capacitor level<br>25% bonus to <a href=showinfo:20327>Capital Energy Turret</a> damage<br>5x penalty to <a href=showinfo:34593>Entosis Link</a> cycle time</ins></td>
</tr>
</table>
</details>
<!--<h2 id="attributes">Attributes</h2>-->
<details id="dgmattribs">
<summary class="bigsum">Changes to Attributes (8 Entries)</summary>
<table>
<tr>
<th>Attribute Name</th>
<!--<th>[[title1]]</th>
<th>[[title2]]</th>-->
<th>Diff</th>
</tr>
<tr>
<td>2616 - behaviorMicroWarpDriveMassAddition</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2616<br><b>attributeName:</b> None <b>=></b> behaviorMicroWarpDriveMassAddition<br><b>categoryID:</b> None <b>=></b> 42<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 2<br></td>
</tr>
<tr>
<td>2467 - specialCorpseHoldCapacity</td>
<td><b>categoryID:</b> 4 <b>=></b> 40<br></td>
</tr>
<tr>
<td>2594 - attributeEngRigMatBonus</td>
<td><b>highIsGood:</b> True <b>=></b> False<br></td>
</tr>
<tr>
<td>2614 - behaviorMicroWarpDriveDischarge</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2614<br><b>attributeName:</b> None <b>=></b> behaviorMicroWarpDriveDischarge<br><b>categoryID:</b> None <b>=></b> 42<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 114<br></td>
</tr>
<tr>
<td>2617 - behaviorMicroWarpDriveSignatureRadiusBonus</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2617<br><b>attributeName:</b> None <b>=></b> behaviorMicroWarpDriveSignatureRadiusBonus<br><b>categoryID:</b> None <b>=></b> 42<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 124<br></td>
</tr>
<tr>
<td>2615 - behaviorMicroWarpDriveDuration</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2615<br><b>attributeName:</b> None <b>=></b> behaviorMicroWarpDriveDuration<br><b>categoryID:</b> None <b>=></b> 42<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 101<br></td>
</tr>
<tr>
<td>2618 - behaviorMicroWarpDriveSpeedFactor</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2618<br><b>attributeName:</b> None <b>=></b> behaviorMicroWarpDriveSpeedFactor<br><b>categoryID:</b> None <b>=></b> 42<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 124<br></td>
</tr>
<tr>
<td>2619 - behaviorMicroWarpDriveSpeedBoostFactor</td>
<td><b>attributeCategory:</b> None <b>=></b> 5<br><b>attributeID:</b> None <b>=></b> 2619<br><b>attributeName:</b> None <b>=></b> behaviorMicroWarpDriveSpeedBoostFactor<br><b>categoryID:</b> None <b>=></b> 42<br><b>defaultValue:</b> None <b>=></b> 0.0<br><b>description:</b> None <b>=></b> <br><b>displayName:</b> None <b>=></b> <br><b>highIsGood:</b> None <b>=></b> True<br><b>published:</b> None <b>=></b> False<br><b>stackable:</b> None <b>=></b> True<br><b>unitID:</b> None <b>=></b> 125<br></td>
</tr>
</table>
</details>
<details id="typeattribs">
<summary class="bigsum">Attribute Changes per Type (20 Entries)</summary>
<table>
<tr>
<th>TypeID, Name, and Group</th>
<!--<th>[[title1]]</th>
<th>[[title2]]</th>-->
<th>Diff</th>
</tr>
<tr>
<td>45056 - <b>♦ Apocalypse</b> (♦ Battleship)</td>
<td><details>
<summary>Click to toggle showing the 63 attributes.</summary><b>mass:</b> None <b>=></b> 102350000.0<br><b>hp:</b> None <b>=></b> 8750.0<br><b>maxVelocity:</b> None <b>=></b> 134.1875<br><b>capacity:</b> None <b>=></b> 675.0<br><b>speed:</b> None <b>=></b> 4172.66979<br><b>maxRange:</b> None <b>=></b> 149428.125<br><b>rechargeRate:</b> None <b>=></b> 600000.0<br><b>damageMultiplier:</b> None <b>=></b> 37.54954326<br><b>agility:</b> None <b>=></b> 0.080325<br><b>maxTargetRange:</b> None <b>=></b> 184067.4552<br><b>kineticDamageResonance:</b> None <b>=></b> 0.402<br><b>thermalDamageResonance:</b> None <b>=></b> 0.402<br><b>explosiveDamageResonance:</b> None <b>=></b> 0.402<br><b>emDamageResonance:</b> None <b>=></b> 0.402<br><b>emDamage:</b> None <b>=></b> 20.0<br><b>explosiveDamage:</b> None <b>=></b> 0.0<br><b>kineticDamage:</b> None <b>=></b> 0.0<br><b>thermalDamage:</b> None <b>=></b> 12.0<br><b>falloff:</b> None <b>=></b> 19500.0<br><b>trackingSpeed:</b> None <b>=></b> 0.751953125<br><b>volume:</b> None <b>=></b> 495000.0<br><b>radius:</b> None <b>=></b> 400.0<br><b>maxLockedTargets:</b> None <b>=></b> 7.0<br><b>raceID:</b> None <b>=></b> 4<br><b>scanRadarStrength:</b> None <b>=></b> 35.52<br><b>scanLadarStrength:</b> None <b>=></b> 0.0<br><b>scanMagnetometricStrength:</b> None <b>=></b> 0.0<br><b>scanGravimetricStrength:</b> None <b>=></b> 0.0<br><b>gfxTurretID:</b> None <b>=></b> 2985.0<br><b>gfxBoosterID:</b> None <b>=></b> 394.0<br><b>shieldCapacity:</b> None <b>=></b> 7500.0<br><b>armorHP:</b> None <b>=></b> 22500.0<br><b>armorEmDamageResonance:</b> None <b>=></b> 0.425<br><b>armorExplosiveDamageResonance:</b> None <b>=></b> 0.34<br><b>armorKineticDamageResonance:</b> None <b>=></b> 0.31875<br><b>armorThermalDamageResonance:</b> None <b>=></b> 0.5525<br><b>shieldEmDamageResonance:</b> None <b>=></b> 0.875<br><b>shieldExplosiveDamageResonance:</b> None <b>=></b> 0.4375<br><b>shieldKineticDamageResonance:</b> None <b>=></b> 0.525<br><b>shieldThermalDamageResonance:</b> None <b>=></b> 0.7<br><b>shieldRechargeRate:</b> None <b>=></b> 1875000.0<br><b>entityKillBounty:</b> None <b>=></b> 0.0<br><b>capacitorCapacity:</b> None <b>=></b> 6562.5<br><b>signatureRadius:</b> None <b>=></b> 380.0<br><b>entityFactionLoss:</b> None <b>=></b> 0.0<br><b>scanResolution:</b> None <b>=></b> 154.375<br><b>optimalSigRadius:</b> None <b>=></b> 40000.0<br><b>published:</b> None <b>=></b> False<br><b>behaviorMicroWarpDriveDischarge:</b> None <b>=></b> 210.0<br><b>behaviorMicroWarpDriveDuration:</b> None <b>=></b> 10000.0<br><b>behaviorMicroWarpDriveMassAddition:</b> None <b>=></b> 50000000.0<br><b>behaviorMicroWarpDriveSignatureRadiusBonus:</b> None <b>=></b> 500.0<br><b>behaviorMicroWarpDriveSpeedFactor:</b> None <b>=></b> 631.25<br><b>behaviorMicroWarpDriveSpeedBoostFactor:</b> None <b>=></b> 150000000.0<br><b>basePrice:</b> None <b>=></b> 0.0<br><b>descriptionID:</b> None <b>=></b> 525627<br><b>graphicID:</b> None <b>=></b> 2121<br><b>groupID:</b> None <b>=></b> 1814<br><b>portionSize:</b> None <b>=></b> 1<br><b>soundID:</b> None <b>=></b> 20061<br><b>typeID:</b> None <b>=></b> 45056<br><b>typeNameID:</b> None <b>=></b> 525626<br><b>wreckTypeID:</b> None <b>=></b> 26470<br></details></td>
</tr>
<tr>
<td>42241 - <b>Molok</b> (Titan)</td>
<td><details>
<summary>Click to toggle showing the 30 attributes.</summary><b>hp:</b> 390000.0 <b>=></b> 580000.0<br><b>powerOutput:</b> 1250000.0 <b>=></b> 1375000.0<br><b>medSlots:</b> 5.0 <b>=></b> 6.0<br><b>maxVelocity:</b> 60.0 <b>=></b> 65.0<br><b>capacity:</b> 11250.0 <b>=></b> 12400.0<br><b>cpuOutput:</b> 815.0 <b>=></b> 900.0<br><b>agility:</b> 0.034 <b>=></b> 0.03<br><b>turretSlotsLeft:</b> 6.0 <b>=></b> 4.0<br><b>scanRadarStrength:</b> 225.0 <b>=></b> 240.0<br><b>shieldCapacity:</b> 260000.0 <b>=></b> 390000.0<br><b>armorHP:</b> 630000.0 <b>=></b> 950000.0<br><b>capacitorCapacity:</b> 135000.0 <b>=></b> 145000.0<br><b>signatureRadius:</b> 22760.0 <b>=></b> 24000.0<br><b>scanResolution:</b> 70.0 <b>=></b> 75.0<br><b>metaLevel:</b> 0.0 <b>=></b> 8.0<br><b>upgradeCapacity:</b> 400.0 <b>=></b> 350.0<br><b>heatAttenuationHi:</b> 0.82 <b>=></b> 0.820335356<br><b>heatAttenuationMed:</b> 0.71 <b>=></b> 0.757858283<br><b>heatAttenuationLow:</b> 0.82 <b>=></b> 0.820335356<br><b>metaGroupID:</b> None <b>=></b> 4.0<br><b>nosOverride:</b> None <b>=></b> 1.0<br><b>published:</b> False <b>=></b> True<br><b>shipBonusRole3:</b> None <b>=></b> 1400.0<br><b>shipBonusTitanA1:</b> 180.0 <b>=></b> 15.0<br><b>shipBonusTitanA2:</b> -10.0 <b>=></b> None<br><b>shipBonusTitanA3:</b> -10.0 <b>=></b> -6.0<br><b>shipBonusTitanM1:</b> None <b>=></b> 20.0<br><b>shipBonusTitanM3:</b> None <b>=></b> -6.0<br><b>specialCorpseHoldCapacity:</b> None <b>=></b> 200000.0<br><b>marketGroupID:</b> None <b>=></b> 2287<br></details></td>
</tr>
<tr>
<td>42243 - <b>Chemosh</b> (Dreadnought)</td>
<td><details>
<summary>Click to toggle showing the 27 attributes.</summary><b>hp:</b> 113000.0 <b>=></b> 169000.0<br><b>powerOutput:</b> 780000.0 <b>=></b> 858000.0<br><b>hiSlots:</b> 5.0 <b>=></b> 6.0<br><b>maxVelocity:</b> 75.0 <b>=></b> 80.0<br><b>cpuOutput:</b> 650.0 <b>=></b> 715.0<br><b>agility:</b> 0.044 <b>=></b> 0.04<br><b>scanRadarStrength:</b> 41.0 <b>=></b> 45.0<br><b>shieldCapacity:</b> 78100.0 <b>=></b> 118000.0<br><b>armorHP:</b> 113000.0 <b>=></b> 169000.0<br><b>capacitorCapacity:</b> 60000.0 <b>=></b> 66000.0<br><b>signatureRadius:</b> 11100.0 <b>=></b> 11800.0<br><b>scanResolution:</b> 80.0 <b>=></b> 85.0<br><b>metaLevel:</b> 0.0 <b>=></b> 8.0<br><b>upgradeCapacity:</b> 400.0 <b>=></b> 350.0<br><b>heatAttenuationHi:</b> 0.71 <b>=></b> 0.757858283<br><b>heatAttenuationMed:</b> 0.63 <b>=></b> 0.629960525<br><b>heatAttenuationLow:</b> 0.82 <b>=></b> 0.820335356<br><b>metaGroupID:</b> None <b>=></b> 4.0<br><b>nosOverride:</b> None <b>=></b> 1.0<br><b>published:</b> False <b>=></b> True<br><b>shipBonusDreadnoughtA1:</b> 5.0 <b>=></b> 15.0<br><b>shipBonusDreadnoughtA2:</b> -4.0 <b>=></b> None<br><b>shipBonusDreadnoughtA3:</b> -10.0 <b>=></b> None<br><b>shipBonusDreadnoughtM1:</b> None <b>=></b> 20.0<br><b>shipBonusRole3:</b> None <b>=></b> 25.0<br><b>specialCorpseHoldCapacity:</b> None <b>=></b> 20000.0<br><b>marketGroupID:</b> None <b>=></b> 2288<br></details></td>
</tr>
<tr>
<td>45057 - <b>Amarr CA Cruiser</b> (Mission Amarr Empire Cruiser)</td>
<td><details>
<summary>Click to toggle showing the 75 attributes.</summary><b>mass:</b> None <b>=></b> 12000000.0<br><b>hp:</b> None <b>=></b> 400.0<br><b>maxVelocity:</b> None <b>=></b> 100.0<br><b>capacity:</b> None <b>=></b> 450.0<br><b>speed:</b> None <b>=></b> 12000.0<br><b>maxRange:</b> None <b>=></b> 20000.0<br><b>rechargeRate:</b> None <b>=></b> 1000000.0<br><b>damageMultiplier:</b> None <b>=></b> 4.8<br><b>emDamage:</b> None <b>=></b> 8.0<br><b>thermalDamage:</b> None <b>=></b> 8.0<br><b>falloff:</b> None <b>=></b> 10000.0<br><b>trackingSpeed:</b> None <b>=></b> 0.081<br><b>volume:</b> None <b>=></b> 120000.0<br><b>radius:</b> None <b>=></b> 150.0<br><b>maxLockedTargets:</b> None <b>=></b> 1.0<br><b>maxAttackTargets:</b> None <b>=></b> 1.0<br><b>raceID:</b> None <b>=></b> 4<br><b>scanRadarStrength:</b> None <b>=></b> 14.0<br><b>propulsionGraphicID:</b> None <b>=></b> 397.0<br><b>gfxTurretID:</b> None <b>=></b> 454.0<br><b>gfxBoosterID:</b> None <b>=></b> 397.0<br><b>entityAttackRange:</b> None <b>=></b> 50000.0<br><b>entityLootCountMin:</b> None <b>=></b> 1.0<br><b>shieldCapacity:</b> None <b>=></b> 600.0<br><b>armorHP:</b> None <b>=></b> 600.0<br><b>armorEmDamageResonance:</b> None <b>=></b> 0.79<br><b>armorExplosiveDamageResonance:</b> None <b>=></b> 0.49<br><b>armorKineticDamageResonance:</b> None <b>=></b> 0.59<br><b>armorThermalDamageResonance:</b> None <b>=></b> 0.69<br><b>shieldEmDamageResonance:</b> None <b>=></b> 0.79<br><b>shieldExplosiveDamageResonance:</b> None <b>=></b> 0.49<br><b>shieldKineticDamageResonance:</b> None <b>=></b> 0.59<br><b>shieldThermalDamageResonance:</b> None <b>=></b> 0.69<br><b>entityFlyRange:</b> None <b>=></b> 20000.0<br><b>entityEquipmentMin:</b> None <b>=></b> -4.0<br><b>entityEquipmentMax:</b> None <b>=></b> 3.0<br><b>entityReactionFactor:</b> None <b>=></b> 0.52<br><b>entityAttackDelayMin:</b> None <b>=></b> 5475.0<br><b>entityAttackDelayMax:</b> None <b>=></b> 21900.0<br><b>shieldRechargeRate:</b> None <b>=></b> 1000000.0<br><b>capacitorCapacity:</b> None <b>=></b> 625.0<br><b>shieldUniformity:</b> None <b>=></b> 0.75<br><b>entityCruiseSpeed:</b> None <b>=></b> 180.0<br><b>armorUniformity:</b> None <b>=></b> 0.75<br><b>structureUniformity:</b> None <b>=></b> 1.0<br><b>signatureRadius:</b> None <b>=></b> 105.0<br><b>entityFactionLoss:</b> None <b>=></b> 0.0<br><b>scanResolution:</b> None <b>=></b> 290.0<br><b>entityChaseMaxDelay:</b> None <b>=></b> 10000.0<br><b>entityChaseMaxDelayChance:</b> None <b>=></b> 0.2<br><b>entityChaseMaxDuration:</b> None <b>=></b> 10000.0<br><b>entityChaseMaxDurationChance:</b> None <b>=></b> 1.0<br><b>optimalSigRadius:</b> None <b>=></b> 50.0<br><b>entityArmorRepairDuration:</b> None <b>=></b> 10000.0<br><b>entityArmorRepairAmount:</b> None <b>=></b> 130.0<br><b>entityChaseMaxDistance:</b> None <b>=></b> 11500.0<br><b>entityBracketColour:</b> None <b>=></b> 1.0<br><b>disallowAssistance:</b> None <b>=></b> 1.0<br><b>entityArmorRepairDelayChanceMedium:</b> None <b>=></b> 0.41<br><b>AI_ShouldUseTargetSwitching:</b> None <b>=></b> 1.0<br><b>AI_ShouldUseSignatureRadius:</b> None <b>=></b> 1.0<br><b>AI_ChanceToNotTargetSwitch:</b> None <b>=></b> 0.0<br><b>AI_ShouldUseEffectMultiplier:</b> None <b>=></b> 1.0<br><b>AI_TankingModifierDrone:</b> None <b>=></b> 0.7<br><b>entityOverviewShipGroupId:</b> None <b>=></b> 26.0<br><b>AI_IgnoreDronesBelowSignatureRadius:</b> None <b>=></b> 50.0<br><b>published:</b> None <b>=></b> False<br><b>basePrice:</b> None <b>=></b> 0.0<br><b>descriptionID:</b> None <b>=></b> 525632<br><b>graphicID:</b> None <b>=></b> 1065<br><b>groupID:</b> None <b>=></b> 668<br><b>portionSize:</b> None <b>=></b> 1<br><b>typeID:</b> None <b>=></b> 45057<br><b>typeNameID:</b> None <b>=></b> 525631<br><b>wreckTypeID:</b> None <b>=></b> 27051<br></details></td>
</tr>
<tr>
<td>43658 - <b>Amarr Phenomena Generator</b> (Titan Phenomena Generator)</td>
<td><b>canFitShipType2:</b> None <b>=></b> 42241.0<br></td>
</tr>
<tr>
<td>42126 - <b>Vanquisher</b> (Titan)</td>
<td><b>certificateTemplate:</b> 88 <b>=></b> None<br></td>
</tr>
<tr>
<td>43664 - <b>Minmatar Phenomena Generator</b> (Titan Phenomena Generator)</td>
<td><b>canFitShipType3:</b> None <b>=></b> 42241.0<br></td>
</tr>
<tr>
<td>37808 - <b>Women's CONCORD Test Pilot T-Shirt</b> (Tops)</td>
<td><b>published:</b> False <b>=></b> True<br><b>marketGroupID:</b> None <b>=></b> 1398<br></td>
</tr>
<tr>
<td>37809 - <b>Men's CONCORD Test Pilot T-Shirt</b> (Tops)</td>
<td><b>published:</b> False <b>=></b> True<br><b>marketGroupID:</b> None <b>=></b> 1398<br></td>
</tr>
<tr>
<td>40631 - <b>‘Holy Destiny’ Electromagnetic Lance</b> (Super Weapon)</td>
<td><b>canFitShipType2:</b> None <b>=></b> 42241.0<br></td>
</tr>
<tr>
<td>40632 - <b>‘Divine Harvest’ Electromagnetic Reaper</b> (Super Weapon)</td>
<td><b>canFitShipType2:</b> None <b>=></b> 42241.0<br></td>
</tr>
<tr>
<td>37818 - <b>Men's CONCORD 'Solitaire' Survival Suit</b> (Outer)</td>
<td><b>published:</b> False <b>=></b> True<br><b>marketGroupID:</b> None <b>=></b> 1399<br></td>
</tr>
<tr>
<td>37601 - <b>Women's CONCORD 'Solitaire' Survival Suit</b> (Outer)</td>
<td><b>published:</b> False <b>=></b> True<br><b>marketGroupID:</b> None <b>=></b> 1399<br></td>
</tr>
<tr>
<td>23674 - <b>'Gjallarhorn' Explosive Doomsday</b> (Super Weapon)</td>
<td><b>canFitShipType3:</b> None <b>=></b> 42241.0<br></td>
</tr>
<tr>
<td>41441 - <b>‘Geiravor’ Explosive Lance</b> (Super Weapon)</td>
<td><b>canFitShipType3:</b> None <b>=></b> 42241.0<br></td>
</tr>
<tr>
<td>41444 - <b>‘Jormungandr’ Explosive Reaper</b> (Super Weapon)</td>
<td><b>canFitShipType3:</b> None <b>=></b> 42241.0<br></td>
</tr>
<tr>
<td>24550 - <b>'Judgment' Electromagnetic Doomsday</b> (Super Weapon)</td>
<td><b>canFitShipType2:</b> None <b>=></b> 42241.0<br></td>
</tr>
<tr>
<td>45050 - <b>Amarr CA Frigate</b> (Mission Amarr Empire Frigate)</td>
<td><b>hp:</b> 150.0 <b>=></b> 100.0<br><b>maxVelocity:</b> 300.0 <b>=></b> 350.0<br></td>
</tr>
<tr>
<td>45051 - <b>Amarr CA Destroyer</b> (Mission Amarr Empire Destroyer)</td>
<td><details>
<summary>Click to toggle showing the 16 attributes.</summary><b>hp:</b> 400.0 <b>=></b> 250.0<br><b>maxVelocity:</b> 200.0 <b>=></b> 250.0<br><b>warpScrambleRange:</b> 0.0 <b>=></b> None<br><b>trackingSpeed:</b> 0.1 <b>=></b> 0.4<br><b>entitySecurityStatusKillBonus:</b> 0.0 <b>=></b> None<br><b>shieldCapacity:</b> 500.0 <b>=></b> 350.0<br><b>armorHP:</b> 500.0 <b>=></b> 350.0<br><b>entityDefenderChance:</b> 0.0 <b>=></b> None<br><b>entityWarpScrambleChance:</b> 0.0 <b>=></b> None<br><b>missileLaunchDuration:</b> 1.0 <b>=></b> None<br><b>entityArmorRepairDuration:</b> 10000.0 <b>=></b> None<br><b>entityArmorRepairAmount:</b> 65.0 <b>=></b> None<br><b>entityShieldBoostDuration:</b> 5000.0 <b>=></b> None<br><b>missileEntityAoeCloudSizeMultiplier:</b> 0.9468 <b>=></b> None<br><b>entityShieldBoostDelayChanceSmall:</b> 0.25 <b>=></b> None<br><b>entityArmorRepairDelayChanceSmall:</b> 0.25 <b>=></b> None<br></details></td>
</tr>
<tr>
<td>45055 - <b>♦ Bhaalgorn</b> (♦ Battleship)</td>
<td><details>
<summary>Click to toggle showing the 73 attributes.</summary><b>mass:</b> None <b>=></b> 102725000.0<br><b>hp:</b> None <b>=></b> 11625.0<br><b>speedFactor:</b> None <b>=></b> -55.0<br><b>maxVelocity:</b> None <b>=></b> 114.7254961<br><b>capacity:</b> None <b>=></b> 675.0<br><b>speed:</b> None <b>=></b> 7244.218385<br><b>maxRange:</b> None <b>=></b> 136620.0<br><b>rechargeRate:</b> None <b>=></b> 865500.0<br><b>damageMultiplier:</b> None <b>=></b> 84.48647234<br><b>agility:</b> None <b>=></b> 0.084375<br><b>maxTargetRange:</b> None <b>=></b> 181545.9832<br><b>energyNeutralizerAmount:</b> None <b>=></b> 1050.0<br><b>kineticDamageResonance:</b> None <b>=></b> 0.402<br><b>thermalDamageResonance:</b> None <b>=></b> 0.402<br><b>explosiveDamageResonance:</b> None <b>=></b> 0.402<br><b>emDamageResonance:</b> None <b>=></b> 0.402<br><b>emDamage:</b> None <b>=></b> 20.0<br><b>explosiveDamage:</b> None <b>=></b> 0.0<br><b>kineticDamage:</b> None <b>=></b> 0.0<br><b>thermalDamage:</b> None <b>=></b> 12.0<br><b>falloff:</b> None <b>=></b> 32500.0<br><b>trackingSpeed:</b> None <b>=></b> 0.435015625<br><b>volume:</b> None <b>=></b> 486000.0<br><b>radius:</b> None <b>=></b> 400.0<br><b>maxLockedTargets:</b> None <b>=></b> 8.0<br><b>raceID:</b> None <b>=></b> 4<br><b>scanRadarStrength:</b> None <b>=></b> 33.6<br><b>scanLadarStrength:</b> None <b>=></b> 0.0<br><b>scanMagnetometricStrength:</b> None <b>=></b> 0.0<br><b>scanGravimetricStrength:</b> None <b>=></b> 0.0<br><b>gfxTurretID:</b> None <b>=></b> 3065.0<br><b>gfxBoosterID:</b> None <b>=></b> 397.0<br><b>shieldCapacity:</b> None <b>=></b> 11043.75<br><b>armorHP:</b> None <b>=></b> 36810.0<br><b>armorEmDamageResonance:</b> None <b>=></b> 0.425<br><b>armorExplosiveDamageResonance:</b> None <b>=></b> 0.34<br><b>armorKineticDamageResonance:</b> None <b>=></b> 0.31875<br><b>armorThermalDamageResonance:</b> None <b>=></b> 0.5525<br><b>shieldEmDamageResonance:</b> None <b>=></b> 0.875<br><b>shieldExplosiveDamageResonance:</b> None <b>=></b> 0.4375<br><b>shieldKineticDamageResonance:</b> None <b>=></b> 0.525<br><b>shieldThermalDamageResonance:</b> None <b>=></b> 0.7<br><b>shieldRechargeRate:</b> None <b>=></b> 1875000.0<br><b>entityKillBounty:</b> None <b>=></b> 0.0<br><b>capacitorCapacity:</b> None <b>=></b> 8554.6875<br><b>signatureRadius:</b> None <b>=></b> 400.0<br><b>entityFactionLoss:</b> None <b>=></b> 0.0<br><b>scanResolution:</b> None <b>=></b> 125.0<br><b>optimalSigRadius:</b> None <b>=></b> 40000.0<br><b>published:</b> None <b>=></b> False<br><b>behaviorWebifierDuration:</b> None <b>=></b> 5000.0<br><b>behaviorWebifierRange:</b> None <b>=></b> 30000.0<br><b>behaviorWebifierFalloff:</b> None <b>=></b> 0.0<br><b>behaviorWebifierDischarge:</b> None <b>=></b> 3.75<br><b>behaviorEnergyNeutralizerDuration:</b> None <b>=></b> 24000.0<br><b>behaviorEnergyNeutralizerRange:</b> None <b>=></b> 24000.0<br><b>behaviorEnergyNeutralizerFalloff:</b> None <b>=></b> 12000.0<br><b>behaviorEnergyNeutralizerDischarge:</b> None <b>=></b> 375.0<br><b>behaviorMicroWarpDriveDischarge:</b> None <b>=></b> 210.0<br><b>behaviorMicroWarpDriveDuration:</b> None <b>=></b> 10000.0<br><b>behaviorMicroWarpDriveMassAddition:</b> None <b>=></b> 50000000.0<br><b>behaviorMicroWarpDriveSignatureRadiusBonus:</b> None <b>=></b> 500.0<br><b>behaviorMicroWarpDriveSpeedFactor:</b> None <b>=></b> 631.25<br><b>behaviorMicroWarpDriveSpeedBoostFactor:</b> None <b>=></b> 150000000.0<br><b>basePrice:</b> None <b>=></b> 0.0<br><b>descriptionID:</b> None <b>=></b> 525625<br><b>graphicID:</b> None <b>=></b> 2122<br><b>groupID:</b> None <b>=></b> 1814<br><b>portionSize:</b> None <b>=></b> 1<br><b>soundID:</b> None <b>=></b> 20112<br><b>typeID:</b> None <b>=></b> 45055<br><b>typeNameID:</b> None <b>=></b> 525624<br><b>wreckTypeID:</b> None <b>=></b> 26470<br></details></td>
</tr>
</table>
</details>
<br>
<!--<h2 id="effectchanges">Effect Changes</h2>-->
<details id="dgmeffects">
<summary class="bigsum">Changes to Effects (15 Entries)</summary>
<table>
<tr>
<th>Effect Name</th>
<!--<th>[[title1]]</th>
<th>[[title2]]</th>-->
<th>Diff</th>
</tr>
<tr>
<td>6864 - npcBehaviorMicroWarpDrive</td>
<td><b>disallowAutoRepeat:</b> None <b>=></b> False<br><b>dischargeAttributeID:</b> None <b>=></b> 2614<br><b>displayName:</b> None <b>=></b> <br><b>durationAttributeID:</b> None <b>=></b> 2615<br><b>effectCategory:</b> None <b>=></b> 1<br><b>effectID:</b> None <b>=></b> 6864<br><b>effectName:</b> None <b>=></b> npcBehaviorMicroWarpDrive<br><b>electronicChance:</b> None <b>=></b> False<br><b>guid:</b> None <b>=></b> effects.MicroWarpDrive<br><b>isAssistance:</b> None <b>=></b> False<br><b>isOffensive:</b> None <b>=></b> False<br><b>isWarpSafe:</b> None <b>=></b> False<br><b>modifierInfo:</b> None <b>=></b> <br><b>postExpression:</b> None <b>=></b> 59<br><b>preExpression:</b> None <b>=></b> 59<br><b>propulsionChance:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> False<br><b>rangeChance:</b> None <b>=></b> False<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6853 - shipBonusTitanA1EnergyWarfareAmountBonus</td>
<td><b>disallowAutoRepeat:</b> None <b>=></b> False<br><b>displayName:</b> None <b>=></b> <br><b>effectCategory:</b> None <b>=></b> 0<br><b>effectID:</b> None <b>=></b> 6853<br><b>effectName:</b> None <b>=></b> shipBonusTitanA1EnergyWarfareAmountBonus<br><b>electronicChance:</b> None <b>=></b> False<br><b>guid:</b> None <b>=></b> <br><b>isAssistance:</b> None <b>=></b> False<br><b>isOffensive:</b> None <b>=></b> False<br><b>isWarpSafe:</b> None <b>=></b> False<br><b>modifierInfo:</b> None <b>=></b> - domain: shipID<br> func: LocationGroupModifier<br> groupID: 71<br> modifiedAttributeID: 97<br> modifyingAttributeID: 2406<br> operator: 6<br>- domain: shipID<br> func: LocationGroupModifier<br> groupID: 68<br> modifiedAttributeID: 90<br> modifyingAttributeID: 2406<br> operator: 6<br><br><b>postExpression:</b> None <b>=></b> 59<br><b>preExpression:</b> None <b>=></b> 59<br><b>propulsionChance:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> False<br><b>rangeChance:</b> None <b>=></b> False<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6855 - shipBonusDreadnoughtA1EnergyWarfareAmountBonus</td>
<td><b>disallowAutoRepeat:</b> None <b>=></b> False<br><b>displayName:</b> None <b>=></b> <br><b>effectCategory:</b> None <b>=></b> 0<br><b>effectID:</b> None <b>=></b> 6855<br><b>effectName:</b> None <b>=></b> shipBonusDreadnoughtA1EnergyWarfareAmountBonus<br><b>electronicChance:</b> None <b>=></b> False<br><b>guid:</b> None <b>=></b> <br><b>isAssistance:</b> None <b>=></b> False<br><b>isOffensive:</b> None <b>=></b> False<br><b>isWarpSafe:</b> None <b>=></b> False<br><b>modifierInfo:</b> None <b>=></b> - domain: shipID<br> func: LocationGroupModifier<br> groupID: 71<br> modifiedAttributeID: 97<br> modifyingAttributeID: 2283<br> operator: 6<br>- domain: shipID<br> func: LocationGroupModifier<br> groupID: 68<br> modifiedAttributeID: 90<br> modifyingAttributeID: 2283<br> operator: 6<br><br><b>postExpression:</b> None <b>=></b> 59<br><b>preExpression:</b> None <b>=></b> 59<br><b>propulsionChance:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> False<br><b>rangeChance:</b> None <b>=></b> False<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6856 - shipBonusDreadnoughtM1WebRangeBonus</td>
<td><b>disallowAutoRepeat:</b> None <b>=></b> False<br><b>displayName:</b> None <b>=></b> <br><b>effectCategory:</b> None <b>=></b> 0<br><b>effectID:</b> None <b>=></b> 6856<br><b>effectName:</b> None <b>=></b> shipBonusDreadnoughtM1WebRangeBonus<br><b>electronicChance:</b> None <b>=></b> False<br><b>guid:</b> None <b>=></b> <br><b>isAssistance:</b> None <b>=></b> False<br><b>isOffensive:</b> None <b>=></b> False<br><b>isWarpSafe:</b> None <b>=></b> False<br><b>modifierInfo:</b> None <b>=></b> - domain: shipID<br> func: LocationGroupModifier<br> groupID: 65<br> modifiedAttributeID: 54<br> modifyingAttributeID: 2292<br> operator: 6<br><br><b>postExpression:</b> None <b>=></b> 59<br><b>preExpression:</b> None <b>=></b> 59<br><b>propulsionChance:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> False<br><b>rangeChance:</b> None <b>=></b> False<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6641 - shipBonusRole2ArmorPlates&ShieldExtendersBonus</td>
<td><b>effectName:</b> shipBonusTitanRole2ArmorShieldModuleBonus <b>=></b> shipBonusRole2ArmorPlates&ShieldExtendersBonus<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6711 - shipBonusRole3CapitalHybridDamageBonus</td>
<td><b>effectName:</b> shipBonusTitanRole3DamageBonus <b>=></b> shipBonusRole3CapitalHybridDamageBonus<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6709 - shipBonusRole1CapitalHybridDamageBonus</td>
<td><b>effectName:</b> shipBonusDreadnoughtRole1DamageBonus <b>=></b> shipBonusRole1CapitalHybridDamageBonus<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6743 - npcBehaviorWebifier</td>
<td><b>effectName:</b> behaviorWebifier <b>=></b> npcBehaviorWebifier<br></td>
</tr>
<tr>
<td>6710 - shipBonusDreadnoughtM1WebStrengthBonus</td>
<td><b>effectName:</b> shipBonusDreadnoughtM1WebBonus <b>=></b> shipBonusDreadnoughtM1WebStrengthBonus<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6756 - npcBehaviorEnergyNeutralizer</td>
<td><b>effectName:</b> behaviorEnergyNeutralizer <b>=></b> npcBehaviorEnergyNeutralizer<br></td>
</tr>
<tr>
<td>6640 - shipBonusRole1NumWarfareLinks</td>
<td><b>effectName:</b> shipBonusTitanRole1NumWarfareLinks <b>=></b> shipBonusRole1NumWarfareLinks<br><b>modifierInfo:</b> - domain: shipID<br> func: LocationRequiredSkillModifier<br> modifiedAttributeID: 763<br> modifyingAttributeID: 2298<br> operator: 2<br> skillTypeID: 3348<br>- domain: shipID<br> func: LocationRequiredSkillModifier<br> modifiedAttributeID: 978<br> modifyingAttributeID: 2298<br> operator: 2<br> skillTypeID: 3348<br> <b>=></b> - domain: shipID<br> func: LocationRequiredSkillModifier<br> modifiedAttributeID: 763<br> modifyingAttributeID: 2298<br> operator: 2<br> skillTypeID: 3348<br>- domain: shipID<br> func: LocationRequiredSkillModifier<br> modifiedAttributeID: 978<br> modifyingAttributeID: 2298<br> operator: 2<br> skillTypeID: 3348<br><br></td>
</tr>
<tr>
<td>6852 - shipBonusTitanM1WebRangeBonus</td>
<td><b>disallowAutoRepeat:</b> None <b>=></b> False<br><b>displayName:</b> None <b>=></b> <br><b>effectCategory:</b> None <b>=></b> 0<br><b>effectID:</b> None <b>=></b> 6852<br><b>effectName:</b> None <b>=></b> shipBonusTitanM1WebRangeBonus<br><b>electronicChance:</b> None <b>=></b> False<br><b>guid:</b> None <b>=></b> <br><b>isAssistance:</b> None <b>=></b> False<br><b>isOffensive:</b> None <b>=></b> False<br><b>isWarpSafe:</b> None <b>=></b> False<br><b>modifierInfo:</b> None <b>=></b> - domain: shipID<br> func: LocationGroupModifier<br> groupID: 65<br> modifiedAttributeID: 54<br> modifyingAttributeID: 2418<br> operator: 6<br><br><b>postExpression:</b> None <b>=></b> 59<br><b>preExpression:</b> None <b>=></b> 59<br><b>propulsionChance:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> False<br><b>rangeChance:</b> None <b>=></b> False<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6848 - shipModuleFocusedWarpScramblingScript</td>
<td><b>modifierInfo:</b> - domain: targetID<br> func: ItemModifier<br> modifiedAttributeID: 104<br> modifyingAttributeID: 105<br> operator: 2<br>- domain: targetID<br> func: LocationRequiredSkillModifier<br> modifiedAttributeID: 1349<br> modifyingAttributeID: 1350<br> operator: 2<br> skillTypeID: 3454<br>- domain: targetID<br> func: ItemModifier<br> modifiedAttributeID: 1470<br> modifyingAttributeID: 1470<br> operator: 7<br>- func: EffectStopper<br> domain: target<br> effectID: 6441<br>- func: EffectStopper<br> domain: target<br> effectID: 6442<br>- domain: targetID<br> func: ItemModifier<br> modifiedAttributeID: 1973<br> modifyingAttributeID: 1974<br> operator: 2<br> <b>=></b> #Modifies warpScrambleStatus on target with attribute warpScrambleStrength<br>- domain: targetID<br> func: ItemModifier<br> modifiedAttributeID: 104<br> modifyingAttributeID: 105<br> operator: 2<br>#Modifies activationBlocked on on all items located in target requiring skill High Speed Maneuvering with attribute activationBlockedStrenght<br>- domain: targetID<br> func: LocationRequiredSkillModifier<br> modifiedAttributeID: 1349<br> modifyingAttributeID: 1350<br> operator: 2<br> skillTypeID: 3454<br>#Modifies activationBlocked on on all items located in target requiring skill Micro Jump Drive Operation with attribute activationBlockedStrenght<br>- domain: targetID<br> func: LocationRequiredSkillModifier<br> modifiedAttributeID: 1349<br> modifyingAttributeID: 1350<br> operator: 2<br> skillTypeID: 4385<br>#Modifies maxVelocityMultiplier on target with attribute maxVelocityMultiplier<br>- domain: targetID<br> func: ItemModifier<br> modifiedAttributeID: 1470<br> modifyingAttributeID: 1470<br> operator: 7<br>#Forcibly stops effect fighterAbilityMicroWarpDrive<br>- func: EffectStopper<br> domain: target<br> effectID: 6441<br>#Forcibly stops effect fighterAbilityMicroJumpDrive<br>- func: EffectStopper<br> domain: target<br> effectID: 6442<br>#Forcibly stops effect microJumpDrive<br>- func: EffectStopper<br> domain: target<br> effectID: 4921<br>#Forcibly stops effect microJumpPortalDrive<br>- func: EffectStopper<br> domain: target<br> effectID: 6208<br>#Modifies gateScrambleStatus on target with attribute gateScrambleStrength<br>- domain: targetID<br> func: ItemModifier<br> modifiedAttributeID: 1973<br> modifyingAttributeID: 1974<br> operator: 2<br><br></td>
</tr>
<tr>
<td>6851 - shipBonusRole3CapitalEnergyDamageBonus</td>
<td><b>disallowAutoRepeat:</b> None <b>=></b> False<br><b>displayName:</b> None <b>=></b> <br><b>effectCategory:</b> None <b>=></b> 0<br><b>effectID:</b> None <b>=></b> 6851<br><b>effectName:</b> None <b>=></b> shipBonusRole3CapitalEnergyDamageBonus<br><b>electronicChance:</b> None <b>=></b> False<br><b>guid:</b> None <b>=></b> <br><b>isAssistance:</b> None <b>=></b> False<br><b>isOffensive:</b> None <b>=></b> False<br><b>isWarpSafe:</b> None <b>=></b> False<br><b>modifierInfo:</b> None <b>=></b> - domain: shipID<br> func: LocationRequiredSkillModifier<br> modifiedAttributeID: 64<br> modifyingAttributeID: 2300<br> operator: 6<br> skillTypeID: 20327<br><b>postExpression:</b> None <b>=></b> 59<br><b>preExpression:</b> None <b>=></b> 59<br><b>propulsionChance:</b> None <b>=></b> False<br><b>published:</b> None <b>=></b> False<br><b>rangeChance:</b> None <b>=></b> False<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
<tr>
<td>6712 - shipBonusTitanM1WebStrengthBonus</td>
<td><b>effectName:</b> shipBonusTitanM1WebBonus <b>=></b> shipBonusTitanM1WebStrengthBonus<br><b>resistanceID:</b> None <b>=></b> 0<br></td>
</tr>
</table>
</details>
<details id="typeeffects">
<summary class="bigsum">Effect Changes per Type (5 Entries)</summary>
<table>
<tr>
<th>TypeID, Name, and Group</th>
<!--<th>[[title1]]</th>
<th>[[title2]]</th>-->
<th>Effects Changes</th>
</tr>
<tr>
<td>45056 - <b>♦ Apocalypse</b> (♦ Battleship)</td>
<td><b><u>Added Effects:</u></b><br><b>targetAttack:</b> None <b>=></b> False <br><b>npcBehaviorMicroWarpDrive:</b> None <b>=></b> False <br></td>
</tr>
<tr>
<td>42241 - <b>Molok</b> (Titan)</td>
<td><b><u>Added Effects:</u></b><br><b>shipBonusNosOverride:</b> None <b>=></b> False <br><b>shipBonusTitanM3WarpStrength:</b> None <b>=></b> False <br><b>shipBonusRole3CapitalEnergyDamageBonus:</b> None <b>=></b> False <br><b>shipBonusTitanM1WebRangeBonus:</b> None <b>=></b> False <br><b>shipBonusTitanA1EnergyWarfareAmountBonus:</b> None <b>=></b> False <br><b><u>Removed Effects:</u></b><br><b>shipBonusTitanA1DamageBonus:</b> False <b>=></b> None <br><b>shipBonusTitanA2CapNeed:</b> False <b>=></b> None <br></td>
</tr>
<tr>
<td>42243 - <b>Chemosh</b> (Dreadnought)</td>
<td><b><u>Added Effects:</u></b><br><b>shipBonusNosOverride:</b> None <b>=></b> False <br><b>shipBonusRole3CapitalEnergyDamageBonus:</b> None <b>=></b> False <br><b>shipBonusDreadnoughtA1EnergyWarfareAmountBonus:</b> None <b>=></b> False <br><b>shipBonusDreadnoughtM1WebRangeBonus:</b> None <b>=></b> False <br><b><u>Removed Effects:</u></b><br><b>shipBonusDreadnoughtA1DamageBonus:</b> False <b>=></b> None <br><b>shipBonusDreadnoughtA2ArmorResists:</b> False <b>=></b> None <br><b>shipBonusDreadnoughtA3CapNeed:</b> False <b>=></b> None <br></td>
</tr>
<tr>
<td>45057 - <b>Amarr CA Cruiser</b> (Mission Amarr Empire Cruiser)</td>
<td><b><u>Added Effects:</u></b><br><b>targetAttack:</b> None <b>=></b> True <br><b>entityArmorRepairingMedium:</b> None <b>=></b> False <br></td>
</tr>
<tr>
<td>45055 - <b>♦ Bhaalgorn</b> (♦ Battleship)</td>
<td><b><u>Added Effects:</u></b><br><b>targetAttack:</b> None <b>=></b> False <br><b>npcBehaviorWebifier:</b> None <b>=></b> False <br><b>npcBehaviorEnergyNeutralizer:</b> None <b>=></b> False <br><b>npcBehaviorMicroWarpDrive:</b> None <b>=></b> False <br></td>
</tr>
</table>
</details>
<br>
<!--<h2 id="stringchanges">String Changes</h2>-->
<details id="stringchanges">
<summary class="bigsum">String Changes (68 Entries)</summary>
<table>
<tr>
<th>Key</th>
<th>Chaos_Previous</th>
<th>Chaos_Next</th>
<th>Diff</th>
<th>Notes</th>
</tr>
<tr class="">
<td>501059</td>
<td width="355px">Can fit <a href=showinfo:23735>Clone Vat Bay</a></td>
<td width="355px">Can fit a <a href=showinfo:23735>Clone Vat Bay</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501060</td>
<td width="355px">Can fit <a href=showinfo:23953>Jump Portal Generator</a></td>
<td width="355px">Can fit a <a href=showinfo:23953>Jump Portal Generator</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501061</td>
<td width="355px">Can fit <a href=showinfo:24563>Doomsday</a> devices</td>
<td width="355px">Can fit a <a href=showinfo:24563>Doomsday</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501294</td>
<td width="355px">Can fit <a href=showinfo:23735>Clone Vat Bay</a></td>
<td width="355px">Can fit a <a href=showinfo:23735>Clone Vat Bay</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501295</td>
<td width="355px">Can fit <a href=showinfo:23953>Jump Portal Generator</a></td>
<td width="355px">Can fit a <a href=showinfo:23953>Jump Portal Generator</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501296</td>
<td width="355px">Can fit <a href=showinfo:24563>Doomsday</a> devices</td>
<td width="355px">Can fit a <a href=showinfo:24563>Doomsday</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501511</td>
<td width="355px">Can fit <a href=showinfo:23735>Clone Vat Bay</a></td>
<td width="355px">Can fit a <a href=showinfo:23735>Clone Vat Bay</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501512</td>
<td width="355px">Can fit <a href=showinfo:23953>Jump Portal Generator</a></td>
<td width="355px">Can fit a <a href=showinfo:23953>Jump Portal Generator</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501513</td>
<td width="355px">Can fit <a href=showinfo:24563>Doomsday</a> devices</td>
<td width="355px">Can fit a <a href=showinfo:24563>Doomsday</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501740</td>
<td width="355px">Can fit <a href=showinfo:23735>Clone Vat Bay</a></td>
<td width="355px">Can fit a <a href=showinfo:23735>Clone Vat Bay</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501741</td>
<td width="355px">Can fit <a href=showinfo:23953>Jump Portal Generator</a></td>
<td width="355px">Can fit a <a href=showinfo:23953>Jump Portal Generator</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501742</td>
<td width="355px">Can fit <a href=showinfo:24563>Doomsday</a> devices</td>
<td width="355px">Can fit a <a href=showinfo:24563>Doomsday</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501932</td>
<td width="355px">Can fit <a href=showinfo:20280>Siege modules</a></td>
<td width="355px">Can fit a <a href=showinfo:20280>Siege module</a></td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a></span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501933</td>
<td width="355px">Can fit <a href=showinfo:20280>Siege modules</a></td>
<td width="355px">Can fit a <a href=showinfo:20280>Siege module</a></td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a></span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501934</td>
<td width="355px">Can fit <a href=showinfo:20280>Siege modules</a></td>
<td width="355px">Can fit a <a href=showinfo:20280>Siege module</a></td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a></span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>501935</td>
<td width="355px">Can fit <a href=showinfo:20280>Siege modules</a></td>
<td width="355px">Can fit a <a href=showinfo:20280>Siege module</a></td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a></span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>517511</td>
<td width="355px">Can fit <a href=showinfo:24563>Doomsday</a> devices</td>
<td width="355px">Can fit a <a href=showinfo:24563>Doomsday</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:24563>Doomsday</a> </span><del style="background:#ffe6e6;">devices</del><ins style="background:#e6ffe6;">module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>517512</td>
<td width="355px">Can fit <a href=showinfo:23953>Jump Portal Generator</a></td>
<td width="355px">Can fit a <a href=showinfo:23953>Jump Portal Generator</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23953>Jump Portal Generator</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>517513</td>
<td width="355px">Can fit <a href=showinfo:23735>Clone Vat Bay</a></td>
<td width="355px">Can fit a <a href=showinfo:23735>Clone Vat Bay</a> module</td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:23735>Clone Vat Bay</a></span><ins style="background:#e6ffe6;"> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>517514</td>
<td width="355px">Can fit three <a href=showinfo:3348>Command Burst</a> modules</td>
<td width="355px">Can use three <a href=showinfo:3348>Command Burst</a> modules</td>
<td><span>Can </span><del style="background:#ffe6e6;">fit</del><ins style="background:#e6ffe6;">use</ins><span> three <a href=showinfo:3348>Command Burst</a> modules</span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>517536</td>
<td width="355px">Can fit <a href=showinfo:20280>Siege modules</a></td>
<td width="355px">Can fit a <a href=showinfo:20280>Siege module</a></td>
<td><span>Can fit </span><ins style="background:#e6ffe6;">a </ins><span><a href=showinfo:20280>Siege module</span><del style="background:#ffe6e6;">s</del><span></a></span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>522343</td>
<td width="355px">No Fighters Simulated</td>
<td width="355px">No Fighters Simulated in Fighter Bay</td>
<td><span>No Fighters Simulated</span><ins style="background:#e6ffe6;"> in Fighter Bay</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>522897</td>
<td width="355px">Can fit one <a href=showinfo:43658>Phenomena Generator</a> module</td>
<td width="355px">Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</td>
<td><span>Can fit </span><del style="background:#ffe6e6;">one</del><ins style="background:#e6ffe6;">a</ins><span> <a href=showinfo:436</span><del style="background:#ffe6e6;">58</del><ins style="background:#e6ffe6;">62</ins><span>>Phenomena Generator</a> module</span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>522898</td>
<td width="355px">Can fit one <a href=showinfo:43664>Phenomena Generator</a> module</td>
<td width="355px">Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</td>
<td><span>Can fit </span><del style="background:#ffe6e6;">one</del><ins style="background:#e6ffe6;">a</ins><span> <a href=showinfo:4366</span><del style="background:#ffe6e6;">4</del><ins style="background:#e6ffe6;">2</ins><span>>Phenomena Generator</a> module</span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>522899</td>
<td width="355px">Can fit one <a href=showinfo:43660>Phenomena Generator</a> module</td>
<td width="355px">Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</td>
<td><span>Can fit </span><del style="background:#ffe6e6;">one</del><ins style="background:#e6ffe6;">a</ins><span> <a href=showinfo:4366</span><del style="background:#ffe6e6;">0</del><ins style="background:#e6ffe6;">2</ins><span>>Phenomena Generator</a> module</span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>522900</td>
<td width="355px">Can fit one <a href=showinfo:43662>Phenomena Generator</a> module</td>
<td width="355px">Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</td>
<td><span>Can fit </span><del style="background:#ffe6e6;">one</del><ins style="background:#e6ffe6;">a</ins><span> <a href=showinfo:43662>Phenomena Generator</a> module</span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>523048</td>
<td width="355px">Can fit one <a href=showinfo:43664>Minmatar</a> or <a href=showinfo:43662>Gallente</a> Phenomena Generator module</td>
<td width="355px">Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</td>
<td><span>Can fit </span><del style="background:#ffe6e6;">one <a href=showinfo:43664>Minmatar</a> or</del><ins style="background:#e6ffe6;">a</ins><span> <a href=showinfo:43662></span><del style="background:#ffe6e6;">Gallente</a> </del><span>Phenomena Generator</span><ins style="background:#e6ffe6;"></a></ins><span> module</span></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525624</td>
<td width="355px"></td>
<td width="355px">♦ Bhaalgorn</td>
<td><ins style="background:#e6ffe6;">♦ Bhaalgorn</ins></td>
<td class="mini">Item name for typeID 45055 (♦ Battleship)</td>
</tr>
<tr class="">
<td>525625</td>
<td width="355px"></td>
<td width="355px">Named after a child-devouring demon of Amarrian legend, the Bhaalgorn is the pride and joy of the Blood Raider cabal. Though it is known to be based on an Armageddon blueprint, the design's origin remains shrouded in mystery. Those of a superstitious persuasion whisper in the dark of eldritch ceremonies and arcane rituals, but for most people, the practical aspect of the matter will more than suffice: you see one of these blood-red horrors looming on the horizon, it's time to make yourself scarce.</td>
<td><ins style="background:#e6ffe6;">Named after a child-devouring demon of Amarrian legend, the Bhaalgorn is the pride and joy of the Blood Raider cabal. Though it is known to be based on an Armageddon blueprint, the design's origin remains shrouded in mystery. Those of a superstitious persuasion whisper in the dark of eldritch ceremonies and arcane rituals, but for most people, the practical aspect of the matter will more than suffice: you see one of these blood-red horrors looming on the horizon, it's time to make yourself scarce.</ins></td>
<td class="mini">Item description for "♦ Bhaalgorn" (typeID 45055)</td>
</tr>
<tr class="">
<td>525626</td>
<td width="355px"></td>
<td width="355px">♦ Apocalypse</td>
<td><ins style="background:#e6ffe6;">♦ Apocalypse</ins></td>
<td class="mini">Item name for typeID 45056 (♦ Battleship)</td>
</tr>
<tr class="">
<td>525627</td>
<td width="355px"></td>
<td width="355px">In days past, only those in high favor with the Emperor could hope to earn the reward of commanding one of the majestic and powerful Apocalypse class battleships. In latter years, even though now in full market circulation, these golden, metallic monstrosities are still feared and respected as enduring symbols of Amarrian might.</td>
<td><ins style="background:#e6ffe6;">In days past, only those in high favor with the Emperor could hope to earn the reward of commanding one of the majestic and powerful Apocalypse class battleships. In latter years, even though now in full market circulation, these golden, metallic monstrosities are still feared and respected as enduring symbols of Amarrian might.</ins></td>
<td class="mini">Item description for "♦ Apocalypse" (typeID 45056)</td>
</tr>
<tr class="">
<td>525628</td>
<td width="355px"></td>
<td width="355px">Manage Fighters</td>
<td><ins style="background:#e6ffe6;">Manage Fighters</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525629</td>
<td width="355px"></td>
<td width="355px">{[numeric]numSquadrons, decimalPlaces=0} {[numeric]numSquadrons -> "Full Squadron", "Full Squadrons"}</td>
<td><ins style="background:#e6ffe6;">{[numeric]numSquadrons, decimalPlaces=0} {[numeric]numSquadrons -> "Full Squadron", "Full Squadrons"}</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525630</td>
<td width="355px"></td>
<td width="355px">{[numeric]numSquadrons, decimalPlaces=0} {[numeric]numSquadrons -> "Partial Squadron", "Partial Squadrons"}</td>
<td><ins style="background:#e6ffe6;">{[numeric]numSquadrons, decimalPlaces=0} {[numeric]numSquadrons -> "Partial Squadron", "Partial Squadrons"}</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525631</td>
<td width="355px"></td>
<td width="355px">Amarr CA Cruiser</td>
<td><ins style="background:#e6ffe6;">Amarr CA Cruiser</ins></td>
<td class="mini">Item name for typeID 45057 (Mission Amarr Empire Cruiser)</td>
</tr>
<tr class="">
<td>525632</td>
<td width="355px"></td>
<td width="355px">A cruiser of the Amarr empire.</td>
<td><ins style="background:#e6ffe6;">A cruiser of the Amarr empire.</ins></td>
<td class="mini">Item description for "Amarr CA Cruiser" (typeID 45057)</td>
</tr>
<tr class="">
<td>525633</td>
<td width="355px"></td>
<td width="355px">Simulated</td>
<td><ins style="background:#e6ffe6;">Simulated</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525637</td>
<td width="355px"></td>
<td width="355px">Vintage Frigate Blueprints</td>
<td><ins style="background:#e6ffe6;">Vintage Frigate Blueprints</ins></td>
<td class="mini">Item name for typeID 45060 (Special Edition Commodities)</td>
</tr>
<tr class="">
<td>525638</td>
<td width="355px"></td>
<td width="355px">This set of blueprints was almost lost to the ages, and is now very valuable in certain circles. Only partially complete due to data degradation, it details an Imperial frigate of unknown class, roughly the same dimensions and mass as the Punisher. Also included are partial details on a proprietary antimatter reactor design, as well as instructions for proper radioactive decontamination and disposal of slaves used to construct and install it in the vessel's chassis.</td>
<td><ins style="background:#e6ffe6;">This set of blueprints was almost lost to the ages, and is now very valuable in certain circles. Only partially complete due to data degradation, it details an Imperial frigate of unknown class, roughly the same dimensions and mass as the Punisher. Also included are partial details on a proprietary antimatter reactor design, as well as instructions for proper radioactive decontamination and disposal of slaves used to construct and install it in the vessel's chassis.</ins></td>
<td class="mini">Item description for "Vintage Frigate Blueprints" (typeID 45060)</td>
</tr>
<tr class="">
<td>525639</td>
<td width="355px"></td>
<td width="355px">Subspace Energy & You</td>
<td><ins style="background:#e6ffe6;">Subspace Energy & You</ins></td>
<td class="mini">Item name for typeID 45061 (Special Edition Commodities)</td>
</tr>
<tr class="">
<td>525640</td>
<td width="355px"></td>
<td width="355px">This instructional holoreel package details the finer points of working with the conversion of subspace energy, and provides relevant health and safety recommendations to reduce potential exposure to harmful electromagnetic fields. For full clarification, the package also includes examples of what may happen should those with metallic augmentations be careless around ultra high voltage electrical equipment and strong magnetic fields. Viewer discretion is advised.</td>
<td><ins style="background:#e6ffe6;">This instructional holoreel package details the finer points of working with the conversion of subspace energy, and provides relevant health and safety recommendations to reduce potential exposure to harmful electromagnetic fields. For full clarification, the package also includes examples of what may happen should those with metallic augmentations be careless around ultra high voltage electrical equipment and strong magnetic fields. Viewer discretion is advised.</ins></td>
<td class="mini">Item description for "Subspace Energy & You" (typeID 45061)</td>
</tr>
<tr class="">
<td>525641</td>
<td width="355px"></td>
<td width="355px">Replica Gold Magnate Decorative Plating</td>
<td><ins style="background:#e6ffe6;">Replica Gold Magnate Decorative Plating</ins></td>
<td class="mini">Item name for typeID 45062 (Special Edition Commodities)</td>
</tr>
<tr class="">
<td>525642</td>
<td width="355px"></td>
<td width="355px">This is a scale model of a section of decorative plating designed for the port side propulsion pod of a Gold Magnate. As intricately detailed as the real thing, it comes with its own stand for display. With only 1337 numbered issues of this piece produced in celebration of the ascension of Her Holiness Empress Catiz I to the throne, each one is highly valued by collectors across the cluster. Laser cut from the finest pure gold the Empire has to offer, these pieces of art are crafted from left over materials from the production of actual decorative plating now in service on Gold Magnates with the Imperial Guard.</td>
<td><ins style="background:#e6ffe6;">This is a scale model of a section of decorative plating designed for the port side propulsion pod of a Gold Magnate. As intricately detailed as the real thing, it comes with its own stand for display. With only 1337 numbered issues of this piece produced in celebration of the ascension of Her Holiness Empress Catiz I to the throne, each one is highly valued by collectors across the cluster. Laser cut from the finest pure gold the Empire has to offer, these pieces of art are crafted from left over materials from the production of actual decorative plating now in service on Gold Magnates with the Imperial Guard.</ins></td>
<td class="mini">Item description for "Replica Gold Magnate Decorative Plating" (typeID 45062)</td>
</tr>
<tr class="">
<td>525644</td>
<td width="355px"></td>
<td width="355px">bonus to Stasis effect resistance</td>
<td><ins style="background:#e6ffe6;">bonus to Stasis effect resistance</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525645</td>
<td width="355px"></td>
<td width="355px">Can fit a <a href=showinfo:24563>Doomsday</a> module</td>
<td><ins style="background:#e6ffe6;">Can fit a <a href=showinfo:24563>Doomsday</a> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525646</td>
<td width="355px"></td>
<td width="355px">Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</td>
<td><ins style="background:#e6ffe6;">Can fit a <a href=showinfo:43662>Phenomena Generator</a> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525647</td>
<td width="355px"></td>
<td width="355px">Can fit a <a href=showinfo:23953>Jump Portal Generator</a> module</td>
<td><ins style="background:#e6ffe6;">Can fit a <a href=showinfo:23953>Jump Portal Generator</a> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525648</td>
<td width="355px"></td>
<td width="355px">Can fit a <a href=showinfo:23735>Clone Vat Bay</a> module</td>
<td><ins style="background:#e6ffe6;">Can fit a <a href=showinfo:23735>Clone Vat Bay</a> module</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525649</td>
<td width="355px"></td>
<td width="355px">Can use three <a href=showinfo:3348>Command Burst</a> modules</td>
<td><ins style="background:#e6ffe6;">Can use three <a href=showinfo:3348>Command Burst</a> modules</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525650</td>
<td width="355px"></td>
<td width="355px">bonus to <a href=showinfo:3348>Command Burst</a> area of effect range</td>
<td><ins style="background:#e6ffe6;">bonus to <a href=showinfo:3348>Command Burst</a> area of effect range</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525651</td>
<td width="355px"></td>
<td width="355px">bonus to Armor Plates and Shield Extenders</td>
<td><ins style="background:#e6ffe6;">bonus to Armor Plates and Shield Extenders</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525652</td>
<td width="355px"></td>
<td width="355px">bonus to <a href=showinfo:20327>Capital Energy Turret</a> damage</td>
<td><ins style="background:#e6ffe6;">bonus to <a href=showinfo:20327>Capital Energy Turret</a> damage</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525653</td>
<td width="355px"></td>
<td width="355px">bonus to Sensor Dampener resistance</td>
<td><ins style="background:#e6ffe6;">bonus to Sensor Dampener resistance</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525654</td>
<td width="355px"></td>
<td width="355px">bonus to Weapon Disruption resistance</td>
<td><ins style="background:#e6ffe6;">bonus to Weapon Disruption resistance</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525655</td>
<td width="355px"></td>
<td width="355px">bonus to Stasis effect resistance</td>
<td><ins style="background:#e6ffe6;">bonus to Stasis effect resistance</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525656</td>
<td width="355px"></td>
<td width="355px">increase to Remote Electronic Assistance impedance</td>
<td><ins style="background:#e6ffe6;">increase to Remote Electronic Assistance impedance</ins></td>
<td class="mini"></td>
</tr>
<tr class="">
<td>525658</td>
<td width="355px"></td>
<td width="355px"><a href=showinfo:3423>Energy Nosferatu</a> fitted to this ship will drain targeted ship's capacitor regardless of your own capacitor level</td>
<td><ins style="background:#e6ffe6;"><a href=showinfo:3423>Energy Nosferatu</a> fitted to this ship will drain targeted ship's capacitor regardless of your own capacitor level</ins></td>