This repository was archived by the owner on Jun 19, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1023 lines (992 loc) · 40.5 KB
/
Copy pathindex.html
File metadata and controls
1023 lines (992 loc) · 40.5 KB
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 class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Eve UI</title>
<link rel="stylesheet" href="css/style.css" />
<meta name="description" content="" />
<meta property="og:title" content="" />
<meta property="og:type" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:image:alt" content="" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="icon.png" />
<link rel="manifest" href="site.webmanifest" />
<meta name="theme-color" content="#fafafa" />
<!-- CSS Reset -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css"
integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Halfmoon CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/css/halfmoon.min.css"
rel="stylesheet"
integrity="sha256-RjeFzczeuZHCyS+Gvz+kleETzBF/o84ZRHukze/yv6o="
crossorigin="anonymous"
/>
<!-- Halfmoon core themes -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/css/cores/halfmoon.cores.css"
rel="stylesheet"
integrity="sha256-MAzAVJMU/ze52ZHcA8CeqRrCOVndMZlHwNeS2c73vP4="
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/topcoat/0.8.0/css/topcoat-desktop-dark.min.css"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body data-bs-theme="dark" data-bs-core="modern" class="p-1">
<main class="container">
<div
class="eve-panel card text-body mx-auto shadow-lg bg-body-tertiary container-fluid p-0"
>
<header
class="card-header bg-secondary bg-opacity-25 rounded-0 text-bg-secondary rounded d-flex justify-content-between align-items-center border-bottom border-secondary p-0"
>
<hgroup class="position-relative top-0 start-0 pt-1 px-3">
<h6 class="small d-inline-block">Corax</h6>
<small class="text-muted"
>(<i class="text-warning">Destroyer</i>): Information</small
>
</hgroup>
<div
class="position-absolute ms-auto btn-group position-relative end-0 top-0 p-0 px-2"
>
<button
class="btn btn-outline-secondary shadow-sm bg-secondary bg-opacity-100 bg-gradient p-1 px-3"
title="Minimize"
>
➖
</button>
<button
class="btn btn-outline-danger shadow-sm bg-danger bg-opacity-100 p-1 px-3"
title="Close"
>
✖️
</button>
</div>
</header>
<div class="card-body bg-body-secondary p-0">
<header class="d-flex align-items-center mb-2">
<img
src="https://images.evetech.net/types/32876/render"
class="m-2"
width="128"
alt="Corax"
/>
<hgroup class="mx-3">
<h1 class="d-inline-block">Corax</h1>
<small class="text-muted"
>(<i class="text-warning">Destroyer</i>): Information</small
>
</hgroup>
</header>
<!-- Tabs -->
<div class="overflow-auto">
<menu
class="nav nav-tabs flex-nowrap"
id="coraxTabs"
role="tablist"
>
<li class="nav-item" role="presentation">
<button
class="nav-link rounded-0"
id="traits-tab"
data-bs-toggle="tab"
data-bs-target="#traits-pane"
type="button"
role="tab"
aria-controls="traits-pane"
aria-selected="false"
>
Traits
</button>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link active rounded-0"
id="desc-tab"
data-bs-toggle="tab"
data-bs-target="#desc-pane"
type="button"
role="tab"
aria-controls="desc-pane"
aria-selected="true"
>
Description
</button>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link rounded-0"
id="attributes-tab"
data-bs-toggle="tab"
data-bs-target="#attributes-pane"
type="button"
role="tab"
aria-controls="attributes-pane"
aria-selected="false"
>
Attributes
</button>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link rounded-0"
id="fitting-tab"
data-bs-toggle="tab"
data-bs-target="#fitting-pane"
type="button"
role="tab"
aria-controls="fitting-pane"
aria-selected="false"
>
Fitting
</button>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link rounded-0"
id="requirements-tab"
data-bs-toggle="tab"
data-bs-target="#requirements-pane"
type="button"
role="tab"
aria-controls="requirements-pane"
aria-selected="false"
>
Requirements
</button>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link rounded-0"
id="mastery-tab"
data-bs-toggle="tab"
data-bs-target="#mastery-pane"
type="button"
role="tab"
aria-controls="mastery-pane"
aria-selected="false"
>
Mastery
</button>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link rounded-0"
id="variations-tab"
data-bs-toggle="tab"
data-bs-target="#variations-pane"
type="button"
role="tab"
aria-controls="variations-pane"
aria-selected="false"
>
Variations
</button>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link rounded-0"
id="industry-tab"
data-bs-toggle="tab"
data-bs-target="#industry-pane"
type="button"
role="tab"
aria-controls="industry-pane"
aria-selected="false"
>
Industry
</button>
</li>
<li class="nav-item" role="presentation">
<button
class="nav-link rounded-0"
id="skins-tab"
data-bs-toggle="tab"
data-bs-target="#skins-pane"
type="button"
role="tab"
aria-controls="skins-pane"
aria-selected="false"
>
Skins
</button>
</li>
</menu>
</div>
<!-- Tab Content -->
<div class="overflow-auto">
<div class="tab-content mt-3 p-0" id="coraxTabsContent">
<!-- Traits -->
<article
class="tab-pane fade"
id="traits-pane"
role="tabpanel"
aria-labelledby="traits-tab"
tabindex="0"
>
<h6 class="text-info">Ship Characteristics:</h6>
<div class="mb-3 d-flex gap-2 align-items-center">
<span class="border p-2">🛠️</span>
<span class="border p-2">🚀</span>
<span class="border p-2">🛡️</span>
</div>
<h6 class="text-primary">
Caldari Destroyer bonuses ( <small class="text-secondary">per skill level</small> ):
</h6>
<ul class="mb-3">
<li>
<strong class="text-primary">5%</strong> bonus to
<i class=""
><strong>kinetic</strong> <a href="#" data-bs-toggle="tooltip" data-bs-title="Light Missile">Light Missile</a></i
>
and <i class="text-warning">Rocket</i> damage
</li>
<li>
<strong class="text-primary">10%</strong> bonus to
<i class="text-warning">Light Missile</i> and
<i class="text-warning">Rocket</i> explosion velocity
</li>
</ul>
<h6 class="text-info">Role Bonus:</h6>
<ul>
<li>
<strong class="text-primary">50%</strong> bonus to
<i class="text-warning">Light Missile</i> and
<i class="text-warning">Rocket</i> max velocity
</li>
</ul>
</article>
<!-- Description -->
<article
class="tab-pane fade show active p-2"
id="desc-pane"
role="tabpanel"
aria-labelledby="desc-tab"
tabindex="0"
>
<p class="p-1">
The Corax adheres to the well-established Caldari design
philosophy that there is strength in numbers, and that the
messages sent to an enemy should be strong and unequivocal.
This applies equally to peace talks as it does to actual
engagements on the battlefield - there should be no doubt in
the strength of Caldari spirit, nor the fact that when one
blow has been struck, others are going to follow.
</p>
<p class="p-1">
As such, the Corax does not pepper its opponents with pellets
from a gun, nor does it toast them with continuous beams of
light. Instead, it delivers strong, hard-hitting payloads at a
pace that's not only steady, but rapid enough to rock its
targets and knock them off-balance.
</p>
</article>
<!-- Attributes -->
<article
class="tab-pane fade my-1"
id="attributes-pane"
role="tabpanel"
aria-labelledby="attributes-tab"
tabindex="0"
>
<!-- STRUCTURE -->
<section class="mt-3 attribute-section">
<h4
class="p-2 fw-semibold mb-2 border-bottom bg-secondary bg-opacity-25"
>
Structure
</h4>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/2_64_9.png" width="32" />Structure
Hitpoints</span
><span>750 <abbr title="Hit Points">HP</abbr></span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img
src="./img/icons/3_64_13.png"
width="32"
/>Capacity</span
><span>450 <abbr title="Cubic Meters">m³</abbr></span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img
src="./img/icons/2_64_10.png"
width="32"
/>Mass</span
><span>1,750,000 <abbr title="Kilograms">kg</abbr></span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img
src="./img/icons/2_64_9.png"
width="32"
/>Volume</span
><span
>52,000 <abbr title="Cubic Meters">m³</abbr> (5,000
<abbr title="Cubic Meters">m³</abbr> Packaged)</span
>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/22_32_24.png" width="32" />Inertia
Modifier</span
><span>2.7x</span>
</div>
<div
class="d-flex border bg-dark border-secondary-subtle my-3"
style="height: 32px"
>
<img
src="./img/icons/22_32_20.png"
width="32"
height="32"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body em"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill em"
style="--val: 33%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
style="width: 33%"
>33%</span
>
</div>
<img
src="./img/icons/22_32_18.png"
width="32"
height="32"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start thermal"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill thermal"
style="--val: 33%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>33%</span
>
</div>
<img
src="./img/icons/22_32_17.png"
width="32"
height="32"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start kinetic"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill kinetic"
style="--val: 33%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>33%</span
>
</div>
<img
src="./img/icons/22_32_19.png"
width="32"
height="32"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start explosive"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill explosive"
style="--val: 33%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>33%</span
>
</div>
</div>
</section>
<hr />
<!-- ARMOR -->
<section class="mt-3 attribute-section">
<h4
class="p-2 fw-semibold mb-2 border-bottom bg-secondary bg-opacity-25"
>
Armor
</h4>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/1_64_9.png" width="32" />Armor
Hitpoints</span
><span>750 <abbr title="Hit Points">HP</abbr></span>
</div>
<div
class="d-flex border bg-dark border-secondary-subtle my-3"
style="height: 32px"
>
<img
src="./img/icons/22_32_20.png"
width="32"
height="32"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body em"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill em"
style="--val: 56%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
style="width: 56%"
>56%</span
>
</div>
<img
src="./img/icons/22_32_18.png"
width="32"
height="32"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start thermal"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill thermal"
style="--val: 45%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>45%</span
>
</div>
<img
src="./img/icons/22_32_17.png"
width="32"
height="32"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start kinetic"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill kinetic"
style="--val: 25%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>25%</span
>
</div>
<img
src="./img/icons/22_32_19.png"
width="32"
height="32"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start explosive"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill explosive"
style="--val: 10%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>10%</span
>
</div>
</div>
</section>
<hr />
<!-- SHIELD -->
<section class="mt-3 attribute-section">
<h4
class="p-2 fw-semibold mb-2 border-bottom bg-secondary bg-opacity-25"
>
Shield
</h4>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/1_64_13.png" width="32" /> Shield
Capacity</span
><span>1,000 <abbr title="Hit Points">HP</abbr></span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/22_32_16.png" width="32" /> Shield
recharge time</span
><span>625.0 <abbr title="Seconds">s</abbr></span>
</div>
<div class="d-flex my-3" style="height: 32px">
<img
src="./img/icons/22_32_20.png"
width="32"
height="32"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Electromagnetic"
class="border-start ms-2"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill"
>
<div class="resistance-bar w-100 h-100">
<div class="resistance-fill em" style="--val: 0%"></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>0%</span
>
</div>
<img
src="./img/icons/22_32_18.png"
width="32"
height="32"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Thermal"
class="border-start"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill border-start"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill thermal"
style="--val: 50%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>50%</span
>
</div>
<img
src="./img/icons/22_32_17.png"
width="32"
height="32"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Kinetic"
class="border-start"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill border-start"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill kinetic"
style="--val: 40%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>40%</span
>
</div>
<img
src="./img/icons/22_32_19.png"
width="32"
height="32"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Electromagnetic"
class="border-start"
/>
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start explosive"
>
<div class="resistance-bar w-100 h-100">
<div
class="resistance-fill explosive"
style="--val: 50%"
></div>
</div>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>50%</span
>
</div>
</div>
</section>
<hr />
<!-- CAPACITOR -->
<section class="mt-3 attribute-section">
<h4
class="p-2 fw-semibold mb-2 border-bottom bg-secondary bg-opacity-25"
>
Capacitor
</h4>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/1_64_5.png" width="32" /> Capacitor
Capacity</span
><span>500.0 <abbr title="Gigajoules">GJ</abbr></span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/22_32_16.png" width="32" />
Capacitor Recharge Time</span
><span>320 <abbr title="Seconds">s</abbr></span>
</div>
</section>
<hr />
<!-- TARGETING -->
<section class="mt-3 attribute-section">
<h4
class="p-2 fw-semibold mb-2 border-bottom bg-secondary bg-opacity-25"
>
Targeting
</h4>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/22_32_15.png" width="32" />Max
Targeting Range</span
><span>45.00 <abbr title="Kilometers">km</abbr></span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/22_32_23.png" width="32" /> Max
Locked Targets</span
><span>7</span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/22_32_14.png" width="32" />
Signature Radius</span
><span>69 <abbr title="Meters">m</abbr></span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/22_32_15.png" width="32" /> Scan
Resolution</span
><span>475 <abbr title="Millimeters">mm</abbr></span>
</div>
<div
class="d-flex justify-content-between small pb-1"
>
<div
class="d-flex w-100 my-3"
style="height: 32px"
>
<img src="./img/icons/22_32_27.png" width="32" />
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary em"
>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>-</span
>
</div>
<img src="./img/icons/22_32_26.png" width="32" />
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start thermal"
>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>-</span
>
</div>
<img src="./img/icons/22_32_25.png" width="32" />
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start kinetic"
>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>12 points</span
>
</div>
<img src="./img/icons/22_32_28.png" width="32" />
<div
class="d-flex align-items-center justify-content-center position-relative flex-fill bg-body-secondary border-start explosive"
>
<span
class="position-absolute text-center fs-6 top-50 start-50 translate-middle small text-shadow"
>-</span
>
</div>
</div>
</div>
</section>
<hr />
<!-- PROPULSION -->
<section class="mt-3 attribute-section">
<h4
class="p-2 fw-semibold mb-2 border-bottom bg-secondary bg-opacity-25"
>
Propulsion
</h4>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/22_32_13.png" wisth="32" /> Max
Velocity</span
><span>235 m/sec</span>
</div>
<div class="d-flex justify-content-between p-1">
<span
><img src="./img/icons/76_64_16.png" width="32" /> Ship
Warp Speed</span
><span>4.50 AU/s</span>
</div>
</section>
</article>
<!-- Fitting -->
<article
class="tab-pane fade"
id="fitting-pane"
role="tabpanel"
aria-labelledby="fitting-tab"
tabindex="0"
>
<section class="mb-4">
<dl class="row">
<dt class="col-8 d-flex align-items-center gap-2">
[💻] CPU Output
</dt>
<dd class="col-4 text-end">200.0 tf</dd>
<dt class="col-8 d-flex align-items-center gap-2">
[⚡] Powergrid Output
</dt>
<dd class="col-4 text-end">39.0 MW</dd>
<dt class="col-8 d-flex align-items-center gap-2">
[💎] Calibration
</dt>
<dd class="col-4 text-end">400 points</dd>
</dl>
</section>
<section class="mb-4">
<dl class="row">
<dt class="col-8 d-flex align-items-center gap-2">
<img src="./img/icons/8_64_11.png" />High Power Slots
</dt>
<dd class="col-4 text-end">3</dd>
<dt class="col-8 d-flex align-items-center gap-2">
<img src="./img/icons/8_64_10.png" />Medium Power Slots
</dt>
<dd class="col-4 text-end">4</dd>
<dt class="col-8 d-flex align-items-center gap-2">
<img src="./img/icons/8_64_9.png" />Low Power Slots
</dt>
<dd class="col-4 text-end">2</dd>
<dt class="col-8 d-flex align-items-center gap-2">
<img src="./img/icons/8_64_11.png" />Small Rig Slots
</dt>
<dd class="col-4 text-end">3</dd>
</dl>
</section>
</article>
<!-- Requirements -->
<article
class="tab-pane fade"
id="requirements-pane"
role="tabpanel"
aria-labelledby="requirements-tab"
tabindex="0"
>
<ul class="list-unstyled">
<li class="d-flex justify-content-between align-items-center">
<span>✅ Caldari Destroyer I</span>
<span class="d-flex gap-1">
<span
class="bg-secondary"
style="width: 12px; height: 12px"
></span>
</span>
</li>
<li
class="ms-4 d-flex justify-content-between align-items-center"
>
<span>✅ Caldari Frigate III</span>
<span class="d-flex gap-1">
<span
class="bg-secondary"
style="width: 12px; height: 12px"
></span>
<span
class="bg-secondary"
style="width: 12px; height: 12px"
></span>
<span
class="bg-secondary"
style="width: 12px; height: 12px"
></span>
</span>
</li>
<li
class="ms-5 d-flex justify-content-between align-items-center"
>
<span>✅ Spaceship Command I</span>
<span class="d-flex gap-1">
<span
class="bg-secondary"
style="width: 12px; height: 12px"
></span>
</span>
</li>
</ul>
</article>
<!-- Mastery -->
<article
class="tab-pane fade"
id="mastery-pane"
role="tabpanel"
aria-labelledby="mastery-tab"
tabindex="0"
></article>
<!-- Variations -->
<article
class="tab-pane fade"
id="variations-pane"
role="tabpanel"
aria-labelledby="variations-tab"
tabindex="0"
>
<div class="mb-2 fw-bold border-bottom border-secondary">
Tech I
</div>
<div
class="d-flex justify-content-between align-items-center py-1"
>
<div class="d-flex align-items-center gap-2">
<img
src="https://images.evetech.net/types/32876/render"
width="32"
/>
<span>Corax</span>
</div>
<i class="text-secondary">ⓘ</i>
</div>
<div class="mt-3 mb-2 fw-bold border-bottom border-secondary">
Tech II
</div>
<div
class="d-flex justify-content-between align-items-center py-1"
>
<div class="d-flex align-items-center gap-2">
<img
src="https://images.evetech.net/types/37481/render"
width="32"
/>
<span>Stork</span>
</div>
<i class="text-secondary">ⓘ</i>
</div>
</article>
<!-- Industry -->
<article
class="tab-pane fade"
id="industry-pane"
role="tabpanel"
aria-labelledby="industry-tab"
tabindex="0"
>
<h6>Reprocessed Materials</h6>
<ul class="list-group list-group-flush">
<li class="list-group-item bg-dark text-light">
<img
src="https://images.evetech.net/types/34/icon"
width="32"
/>Tritanium (57,000 Units)
</li>
<li class="list-group-item bg-dark text-light">
<img
src="https://images.evetech.net/types/35/icon"
width="32"
/>Pyerite (24,000 Units)
</li>
<li class="list-group-item bg-dark text-light">
<img
src="https://images.evetech.net/types/36/icon"
width="32"
/>Mexallon (8,400 Units)
</li>
<li class="list-group-item bg-dark text-light">
<img
src="https://images.evetech.net/types/37/icon"
width="32"
/>Isogen (1,590 Units)
</li>
<li class="list-group-item bg-dark text-light">
<img
src="https://images.evetech.net/types/38/icon"
width="32"
/>Nocxium (7 Units)
</li>
<li class="list-group-item bg-dark text-light">
<img
src="https://images.evetech.net/types/39/icon"
width="32"
/>Zydrine (14 Units)
</li>
<li class="list-group-item bg-dark text-light">
<img
src="https://images.evetech.net/types/40/icon"
width="32"
/>Megacyte (14 Units)
</li>
</ul>
<h6 class="mt-3">Required For</h6>
<ul class="list-group list-group-flush">
<li class="list-group-item bg-dark text-light">
<img
src="https://images.evetech.net/types/37617/bpc"
/>Stork Blueprint
</li>
</ul>
</article>
<!-- Skins -->
<article
class="tab-pane fade"