-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerated_index.html
More file actions
1176 lines (1170 loc) · 73.5 KB
/
Copy pathgenerated_index.html
File metadata and controls
1176 lines (1170 loc) · 73.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 lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.20/css/dataTables.bootstrap4.min.css">
<title>Combat Report</title>
<style>
img.icon {
width: 24px;
height: 24px;
margin-right: 5px;
}
</style>
</head>
<body>
<div class="container-fluid">
<h1>Combat Report</h1>
<dl class="row">
<dt class="col-2">Recording started at</dt>
<dd class="col-10">240</dd>
<dt class="col-2">Recording ended at</dt>
<dd class="col-10">24234</dd>
<dt class="col-2">Point of View</dt>
<dd class="col-10"><!-- POINTOFVIEW --></dd>
</dl>
<nav id="table-tab">
<div class="nav nav-tabs" role="tablist">
<a class="nav-item nav-link active" data-toggle="tab" href="#nav-damage" role="tab"
aria-controls="nav-damage" aria-selected="true">Damage Stats</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-defense" role="tab"
aria-controls="nav-defence" aria-selected="true">Defensive Stats</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-support" role="tab"
aria-controls="nav-support" aria-selected="true">Support Stats</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-gameplay" role="tab"
aria-controls="nav-gameplay" aria-selected="true">Gameplay Stats</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-boons" role="tab" aria-controls="nav-boons"
aria-selected="true">Boon Stats</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-healing" role="tab"
aria-controls="nav-healing" aria-selected="true">Healing Stats</a>
</div>
</nav>
<div class="tab-content">
<div class="tab-pane fade show active" id="nav-damage" role="tabpanel" aria-labelledby="nav-damage-tab">
<table class="table table-striped" id="table-damagestats">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th>Combat Time</th>
<th>Total DPS</th>
<th>All Damage</th>
<th>Power</th>
<th>Condi</th>
<th>Target Damage</th>
<th>Power</th>
<th>Condi</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="nav-defense" role="tabpanel" aria-labelledby="nav-defense-tab">
<table class="table table-striped" id="table-defensestats">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip" title="Damage Taken">Dmg Taken</th>
<th data-toggle="tooltip" title="Damage absorbed by barrier">Dmg Barrier</th>
<th data-toggle="tooltip" title="Number of times blocked an attack">Blocked</th>
<th data-toggle="tooltip" title="Number of times was invulnerable to damage">Invulned</th>
<th data-toggle="tooltip" title="Number of times interrupted">Interrupted</th>
<th data-toggle="tooltip" title="Number of evades">Evaded</th>
<th data-toggle="tooltip" title="Number of dodge + mirage cloak">Dodges</th>
<th data-toggle="tooltip" title="Number of hits missed against">Missed</th>
<th data-toggle="tooltip" title="Times downed">Downed</th>
<th data-toggle="tooltip" title="Times died">Dead</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="nav-support" role="tabpanel" aria-labelledby="nav-support-tab">
<table class="table table-striped" id="table-supportstats">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th>Condi Cleanse on Others</th>
<th>Condi Cleanse on Self</th>
<th>Boon Strips</th>
<th>Resurrects</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="nav-gameplay" role="tabpanel" aria-labelledby="nav-gameplay-tab">
<table class="table table-striped" id="table-gameplaystats">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip"
title="Number of fights from the log you participated in; used for averages">
<img src="https://wiki.guildwars2.com/images/9/9d/PvP_Server_Browser.png" alt="Fights"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Percent time hits critical">
<img src="https://wiki.guildwars2.com/images/9/95/Critical_Chance.png" alt="Crits"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Percent time hits while flanking">
<img src="https://wiki.guildwars2.com/images/b/bb/Hunter%27s_Tactics.png" alt="Flank"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Percent time hits while glancing">
<img src="https://wiki.guildwars2.com/images/f/f9/Weakness.png" alt="Glance"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Number of hits while blinded">
<img src="https://wiki.guildwars2.com/images/3/33/Blinded.png" alt="Miss"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Number of hits used to interupt">
<img src="https://wiki.guildwars2.com/images/7/79/Daze.png" alt="Interupts"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Times the enemy was invulnerable to attacks">
<img src="https://wiki.guildwars2.com/images/e/eb/Determined.png" alt="Ivuln"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Times the enemy evaded an attack">
<img src="https://wiki.guildwars2.com/images/e/e2/Evade.png" alt="Evaded"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Times the enemy blocked an attack">
<img src="https://wiki.guildwars2.com/images/e/e5/Aegis.png" alt="Blocked"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Number of times downed target">
<img src="https://wiki.guildwars2.com/images/c/c6/Downed_enemy.png" alt="Downed"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Number of times killed target">
<img src="https://wiki.guildwars2.com/images/4/4a/Ally_death_%28interface%29.png"
alt="Killed" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Time wasted(in seconds) interupting skill casts">
<img src="https://wiki.guildwars2.com/images/b/b3/Out_Of_Health_Potions.png"
alt="Wasted" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Time saved(in seconds) interupting skill casts">
<img src="https://wiki.guildwars2.com/images/e/eb/Ready.png" alt="Saved"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Times weapon swapped">
<img src="https://wiki.guildwars2.com/images/c/ce/Weapon_Swap_Button.png" alt="Swap"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Average Distance to the center of the squad">
<img src="https://wiki.guildwars2.com/images/e/ef/Commander_arrow_marker.png"
alt="Stack Center" class="icon icon-hover">
</th>
<th v-if="hasCommander" data-toggle="tooltip" title="Average Distance to the commander">
<img src="https://wiki.guildwars2.com/images/5/54/Commander_tag_%28blue%29.png"
alt="Stack Commander" class="icon icon-hover">
</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="nav-boons" role="tabpanel" aria-labelledby="nav-boons-tab">
<h2>Boons</h2>
<nav id="table-boonsub-tab">
<div class="nav nav-tabs" role="tablist">
<a class="nav-item nav-link active" data-toggle="tab" href="#nav-boon-uptime" role="tab"
aria-controls="nav-boon-uptime" aria-selected="true">Uptime</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-boon-self" role="tab"
aria-controls="nav-boonself" aria-selected="true">Generation Self</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-boon-group" role="tab"
aria-controls="nav-boongroup" aria-selected="true">Generation Group</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-boon-offgroup" role="tab"
aria-controls="nav-boonoffgroup" aria-selected="true">Generation Off-Group</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-boon-squad" role="tab"
aria-controls="nav-boonsquad" aria-selected="true">Generation Squad</a>
</div>
</nav>
<div class="tab-content">
<div class="tab-pane fade show active" id="nav-boon-uptime" role="tabpanel"
aria-labelledby="nav-boon-uptime-tab">
<table class="oldtable table table-striped">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip"
title="Might, Max Stack(s) 25, Condition Damage: +30, Power: +30">
<img src="https://wiki.guildwars2.com/images/7/7c/Might.png" alt="Might"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Fury, Max Stack(s) 9, Critical Chance: +20%">
<img src="https://wiki.guildwars2.com/images/4/46/Fury.png" alt="Fury"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Quickness, Max Stack(s) 5, Attack Speed: +33.3333%">
<img src="https://wiki.guildwars2.com/images/b/b4/Quickness.png" alt="Quickness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Alacrity, Max Stack(s) 9, Skill Cooldown Reduction: +25%">
<img src="https://wiki.guildwars2.com/images/4/4c/Alacrity.png" alt="Alacrity"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Protection, Max Stack(s) 5, Incoming Physical Damage: -33%">
<img src="https://wiki.guildwars2.com/images/6/6c/Protection.png"
alt="Protection" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Regeneration, Max Stack(s) 5, Healing Formula: (0.125 * Healing Power + 130), Healing Formula: (0.025 * Healing Power + 26)">
<img src="https://wiki.guildwars2.com/images/5/53/Regeneration.png"
alt="Regeneration" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Vigor, Max Stack(s) 5, Endurance Regeneration: +50%">
<img src="https://wiki.guildwars2.com/images/f/f4/Vigor.png" alt="Vigor"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Aegis, Max Stack(s) 9">
<img src="https://wiki.guildwars2.com/images/e/e5/Aegis.png" alt="Aegis"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Stability, Max Stack(s) 25">
<img src="https://wiki.guildwars2.com/images/a/ae/Stability.png" alt="Stability"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Swiftness, Max Stack(s) 9, Movement Speed: +33%, Movement Speed: +66%">
<img src="https://wiki.guildwars2.com/images/a/af/Swiftness.png" alt="Swiftness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resistance, Max Stack(s) 99, Duration Cap: 30 seconds">
<img src="https://wiki.guildwars2.com/images/4/4b/Resistance.png"
alt="Resistance" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resolution, Max Stack(s) 99, Duration Cap: 30 seconds, Incoming Condition Damage (Mult): -33%">
<img src="https://wiki.guildwars2.com/images/0/06/Resolution.png"
alt="Resolution" class="icon icon-hover">
</th>
</tr>
</thead>
<tbody>
<!-- Player Boon Uptime Stats -->
</tbody>
</table>
</div>
<div class="tab-pane" id="nav-boon-self" role="tabpanel" aria-labelledby="nav-boonself-tab">
<table class="oldtable table table-striped">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip"
title="Might, Max Stack(s) 25, Condition Damage: +30, Power: +30">
<img src="https://wiki.guildwars2.com/images/7/7c/Might.png" alt="Might"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Fury, Max Stack(s) 9, Critical Chance: +20%">
<img src="https://wiki.guildwars2.com/images/4/46/Fury.png" alt="Fury"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Quickness, Max Stack(s) 5, Attack Speed: +33.3333%">
<img src="https://wiki.guildwars2.com/images/b/b4/Quickness.png" alt="Quickness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Alacrity, Max Stack(s) 9, Skill Cooldown Reduction: +25%">
<img src="https://wiki.guildwars2.com/images/4/4c/Alacrity.png" alt="Alacrity"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Protection, Max Stack(s) 5, Incoming Physical Damage: -33%">
<img src="https://wiki.guildwars2.com/images/6/6c/Protection.png"
alt="Protection" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Regeneration, Max Stack(s) 5, Healing Formula: (0.125 * Healing Power + 130), Healing Formula: (0.025 * Healing Power + 26)">
<img src="https://wiki.guildwars2.com/images/5/53/Regeneration.png"
alt="Regeneration" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Vigor, Max Stack(s) 5, Endurance Regeneration: +50%">
<img src="https://wiki.guildwars2.com/images/f/f4/Vigor.png" alt="Vigor"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Aegis, Max Stack(s) 9">
<img src="https://wiki.guildwars2.com/images/e/e5/Aegis.png" alt="Aegis"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Stability, Max Stack(s) 25">
<img src="https://wiki.guildwars2.com/images/a/ae/Stability.png" alt="Stability"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Swiftness, Max Stack(s) 9, Movement Speed: +33%, Movement Speed: +66%">
<img src="https://wiki.guildwars2.com/images/a/af/Swiftness.png" alt="Swiftness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resistance, Max Stack(s) 99, Duration Cap: 30 seconds">
<img src="https://wiki.guildwars2.com/images/4/4b/Resistance.png"
alt="Resistance" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resolution, Max Stack(s) 99, Duration Cap: 30 seconds, Incoming Condition Damage (Mult): -33%">
<img src="https://wiki.guildwars2.com/images/0/06/Resolution.png"
alt="Resolution" class="icon icon-hover">
</th>
</tr>
</thead>
<tbody>
<!-- Player Boon Self Stats -->
</tbody>
</table>
</div>
<div class="tab-pane fade show" id="nav-boon-group" role="tabpanel"
aria-labelledby="nav-boongroup-tab">
<table class="oldtable table table-striped">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip"
title="Might, Max Stack(s) 25, Condition Damage: +30, Power: +30">
<img src="https://wiki.guildwars2.com/images/7/7c/Might.png" alt="Might"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Fury, Max Stack(s) 9, Critical Chance: +20%">
<img src="https://wiki.guildwars2.com/images/4/46/Fury.png" alt="Fury"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Quickness, Max Stack(s) 5, Attack Speed: +33.3333%">
<img src="https://wiki.guildwars2.com/images/b/b4/Quickness.png" alt="Quickness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Alacrity, Max Stack(s) 9, Skill Cooldown Reduction: +25%">
<img src="https://wiki.guildwars2.com/images/4/4c/Alacrity.png" alt="Alacrity"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Protection, Max Stack(s) 5, Incoming Physical Damage: -33%">
<img src="https://wiki.guildwars2.com/images/6/6c/Protection.png"
alt="Protection" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Regeneration, Max Stack(s) 5, Healing Formula: (0.125 * Healing Power + 130), Healing Formula: (0.025 * Healing Power + 26)">
<img src="https://wiki.guildwars2.com/images/5/53/Regeneration.png"
alt="Regeneration" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Vigor, Max Stack(s) 5, Endurance Regeneration: +50%">
<img src="https://wiki.guildwars2.com/images/f/f4/Vigor.png" alt="Vigor"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Aegis, Max Stack(s) 9">
<img src="https://wiki.guildwars2.com/images/e/e5/Aegis.png" alt="Aegis"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Stability, Max Stack(s) 25">
<img src="https://wiki.guildwars2.com/images/a/ae/Stability.png" alt="Stability"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Swiftness, Max Stack(s) 9, Movement Speed: +33%, Movement Speed: +66%">
<img src="https://wiki.guildwars2.com/images/a/af/Swiftness.png" alt="Swiftness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resistance, Max Stack(s) 99, Duration Cap: 30 seconds">
<img src="https://wiki.guildwars2.com/images/4/4b/Resistance.png"
alt="Resistance" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resolution, Max Stack(s) 99, Duration Cap: 30 seconds, Incoming Condition Damage (Mult): -33%">
<img src="https://wiki.guildwars2.com/images/0/06/Resolution.png"
alt="Resolution" class="icon icon-hover">
</th>
</tr>
</thead>
<tbody>
<!-- Player Boon Group Stats -->
</tbody>
</table>
</div>
<div class="tab-pane fade show" id="nav-boon-offgroup" role="tabpanel"
aria-labelledby="nav-boonoffgroup-tab">
<table class="oldtable table table-striped">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip"
title="Might, Max Stack(s) 25, Condition Damage: +30, Power: +30">
<img src="https://wiki.guildwars2.com/images/7/7c/Might.png" alt="Might"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Fury, Max Stack(s) 9, Critical Chance: +20%">
<img src="https://wiki.guildwars2.com/images/4/46/Fury.png" alt="Fury"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Quickness, Max Stack(s) 5, Attack Speed: +33.3333%">
<img src="https://wiki.guildwars2.com/images/b/b4/Quickness.png" alt="Quickness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Alacrity, Max Stack(s) 9, Skill Cooldown Reduction: +25%">
<img src="https://wiki.guildwars2.com/images/4/4c/Alacrity.png" alt="Alacrity"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Protection, Max Stack(s) 5, Incoming Physical Damage: -33%">
<img src="https://wiki.guildwars2.com/images/6/6c/Protection.png"
alt="Protection" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Regeneration, Max Stack(s) 5, Healing Formula: (0.125 * Healing Power + 130), Healing Formula: (0.025 * Healing Power + 26)">
<img src="https://wiki.guildwars2.com/images/5/53/Regeneration.png"
alt="Regeneration" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Vigor, Max Stack(s) 5, Endurance Regeneration: +50%">
<img src="https://wiki.guildwars2.com/images/f/f4/Vigor.png" alt="Vigor"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Aegis, Max Stack(s) 9">
<img src="https://wiki.guildwars2.com/images/e/e5/Aegis.png" alt="Aegis"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Stability, Max Stack(s) 25">
<img src="https://wiki.guildwars2.com/images/a/ae/Stability.png" alt="Stability"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Swiftness, Max Stack(s) 9, Movement Speed: +33%, Movement Speed: +66%">
<img src="https://wiki.guildwars2.com/images/a/af/Swiftness.png" alt="Swiftness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resistance, Max Stack(s) 99, Duration Cap: 30 seconds">
<img src="https://wiki.guildwars2.com/images/4/4b/Resistance.png"
alt="Resistance" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resolution, Max Stack(s) 99, Duration Cap: 30 seconds, Incoming Condition Damage (Mult): -33%">
<img src="https://wiki.guildwars2.com/images/0/06/Resolution.png"
alt="Resolution" class="icon icon-hover">
</th>
</tr>
</thead>
<tbody>
<!-- Player Boon OffGroup Stats -->
</tbody>
</table>
</div>
<div class="tab-pane fade show" id="nav-boon-squad" role="tabpanel"
aria-labelledby="nav-boonsquad-tab">
<table class="oldtable table table-striped">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip"
title="Might, Max Stack(s) 25, Condition Damage: +30, Power: +30">
<img src="https://wiki.guildwars2.com/images/7/7c/Might.png" alt="Might"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Fury, Max Stack(s) 9, Critical Chance: +20%">
<img src="https://wiki.guildwars2.com/images/4/46/Fury.png" alt="Fury"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Quickness, Max Stack(s) 5, Attack Speed: +33.3333%">
<img src="https://wiki.guildwars2.com/images/b/b4/Quickness.png" alt="Quickness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Alacrity, Max Stack(s) 9, Skill Cooldown Reduction: +25%">
<img src="https://wiki.guildwars2.com/images/4/4c/Alacrity.png" alt="Alacrity"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Protection, Max Stack(s) 5, Incoming Physical Damage: -33%">
<img src="https://wiki.guildwars2.com/images/6/6c/Protection.png"
alt="Protection" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Regeneration, Max Stack(s) 5, Healing Formula: (0.125 * Healing Power + 130), Healing Formula: (0.025 * Healing Power + 26)">
<img src="https://wiki.guildwars2.com/images/5/53/Regeneration.png"
alt="Regeneration" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Vigor, Max Stack(s) 5, Endurance Regeneration: +50%">
<img src="https://wiki.guildwars2.com/images/f/f4/Vigor.png" alt="Vigor"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Aegis, Max Stack(s) 9">
<img src="https://wiki.guildwars2.com/images/e/e5/Aegis.png" alt="Aegis"
class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Stability, Max Stack(s) 25">
<img src="https://wiki.guildwars2.com/images/a/ae/Stability.png" alt="Stability"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Swiftness, Max Stack(s) 9, Movement Speed: +33%, Movement Speed: +66%">
<img src="https://wiki.guildwars2.com/images/a/af/Swiftness.png" alt="Swiftness"
class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resistance, Max Stack(s) 99, Duration Cap: 30 seconds">
<img src="https://wiki.guildwars2.com/images/4/4b/Resistance.png"
alt="Resistance" class="icon icon-hover">
</th>
<th data-toggle="tooltip"
title="Resolution, Max Stack(s) 99, Duration Cap: 30 seconds, Incoming Condition Damage (Mult): -33%">
<img src="https://wiki.guildwars2.com/images/0/06/Resolution.png"
alt="Resolution" class="icon icon-hover">
</th>
</tr>
</thead>
<tbody>
<!-- Player Boon Squad Stats -->
</tbody>
</table>
</div>
</div>
</div>
<div class="tab-pane" id="nav-healing" role="tabpanel" aria-labelledby="nav-healing-tab">
<h2>Healing Stats</h2>
<nav id="table-healing-tab">
<div class="nav nav-tabs" role="tablist">
<a class="nav-item nav-link active" data-toggle="tab" href="#nav-healing-outgoing" role="tab"
aria-controls="nav-healing-outgoing" aria-selected="true">Outgoing Healing Stats</a>
<a class="nav-item nav-link" data-toggle="tab" href="#nav-healing-incoming" role="tab"
aria-controls="nav-healing-incoming" aria-selected="true">Incoming Healing Stats</a>
</div>
</nav>
<div class="tab-content">
<div class="tab-pane fade show active" id="nav-healing-outgoing" role="tabpanel"
aria-labelledby="nav-healing-outgoing-tab">
<table class="table table-striped" id="table-healing-outgoing">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip" title="All">
Target <img
src="https://wiki.guildwars2.com/images/thumb/f/f3/Healing.png/20px-Healing.png"
alt="All" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Healing Power">
Target <img src="https://wiki.guildwars2.com/images/8/81/Healing_Power.png"
alt="Healing Power" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Conversion">
Target <img src="https://wiki.guildwars2.com/images/4/4a/Litany_of_Wrath.png"
alt="Conversion" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Downed Healing">
Target <img src="https://wiki.guildwars2.com/images/3/3d/Downed_ally.png"
alt="Downed Healing" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="All">
All <img
src="https://wiki.guildwars2.com/images/thumb/f/f3/Healing.png/20px-Healing.png"
alt="All" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Healing Power">
All <img src="https://wiki.guildwars2.com/images/8/81/Healing_Power.png"
alt="Healing Power" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Conversion">
All <img src="https://wiki.guildwars2.com/images/4/4a/Litany_of_Wrath.png"
alt="Conversion" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Downed Healing">
All <img src="https://wiki.guildwars2.com/images/3/3d/Downed_ally.png"
alt="Downed Healing" class="icon icon-hover">
</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="nav-healing-incoming" role="tabpanel"
aria-labelledby="nav-healingincoming-tab">
<table class="table table-striped" id="table-healing-incoming">
<thead>
<tr>
<th data-toggle="tooltip" title="Starting Group" style="width: 32px;">Grp</th>
<th style="width: 32px;"> </th>
<th>Name</th>
<th>Account</th>
<th data-toggle="tooltip" title="Healed">
<img src="https://wiki.guildwars2.com/images/thumb/f/f3/Healing.png/20px-Healing.png"
alt="Healed" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Healing Power Healed">
<img src="https://wiki.guildwars2.com/images/8/81/Healing_Power.png"
alt="Healing Power Healed" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Conversion Healed">
<img src="https://wiki.guildwars2.com/images/4/4a/Litany_of_Wrath.png"
alt="Conversion Healed" class="icon icon-hover">
</th>
<th data-toggle="tooltip" title="Downed Healed">
<img src="https://wiki.guildwars2.com/images/3/3d/Downed_ally.png"
alt="Downed Healing" class="icon icon-hover">
</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
<div>
<h2>Individual Fight Details</h2>
<div class="btn-group" role="group" aria-label="Links to the individual fights">
<!-- Fight Links -->
</div>
<!-- Player Summaries -->
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.20/js/dataTables.bootstrap4.min.js"></script>
<script>
function buildHealingData() {
data = [];
//for (const [key, value] of Object.entries(playerData)) {
// data.push({
// group: value.group, profession: value.profession, name: key, account: value.account,
// incomingConversion: value.healing.incomingConversion,
// incomingDowned: value.healing.incomingDowned,
// incomingHealed: value.healing.incomingHealed,
// incomingHealingPower: value.healing.incomingHealingPower,
// outgoingAll: value.healing.outgoingAll,
// outgoingAllConversion: value.healing.outgoingAllConversion,
// outgoingAllDowned: value.healing.outgoingAllDowned,
// outgoingAllHealingPower: value.healing.outgoingAllHealingPower,
// outgoingTargetAll: value.healing.outgoingTargetAll,
// outgoingTargetConversion: value.healing.outgoingTargetConversion,
// outgoingTargetDowned: value.healing.outgoingTargetDowned,
// outgoingTargetHealingPower: value.healing.outgoingTargetHealingPower
// });
//}
return data;
}
function getProfIcon(prof) {
switch (prof) {
case 'Warrior':
return 'https://wiki.guildwars2.com/images/4/43/Warrior_tango_icon_20px.png';
case 'Berserker':
return 'https://wiki.guildwars2.com/images/d/da/Berserker_tango_icon_20px.png';
case 'Spellbreaker':
return 'https://wiki.guildwars2.com/images/e/ed/Spellbreaker_tango_icon_20px.png';
case 'Guardian':
return 'https://wiki.guildwars2.com/images/8/8c/Guardian_tango_icon_20px.png';
case 'Dragonhunter':
return 'https://wiki.guildwars2.com/images/c/c9/Dragonhunter_tango_icon_20px.png';
case 'DragonHunter':
return 'https://wiki.guildwars2.com/images/c/c9/Dragonhunter_tango_icon_20px.png';
case 'Firebrand':
return 'https://wiki.guildwars2.com/images/0/02/Firebrand_tango_icon_20px.png';
case 'Revenant':
return 'https://wiki.guildwars2.com/images/b/b5/Revenant_tango_icon_20px.png';
case 'Herald':
return 'https://wiki.guildwars2.com/images/6/67/Herald_tango_icon_20px.png';
case 'Renegade':
return 'https://wiki.guildwars2.com/images/7/7c/Renegade_tango_icon_20px.png';
case 'Engineer':
return 'https://wiki.guildwars2.com/images/2/27/Engineer_tango_icon_20px.png';
case 'Scrapper':
return 'https://wiki.guildwars2.com/images/3/3a/Scrapper_tango_icon_200px.png';
case 'Holosmith':
return 'https://wiki.guildwars2.com/images/2/28/Holosmith_tango_icon_20px.png';
case 'Ranger':
return 'https://wiki.guildwars2.com/images/4/43/Ranger_tango_icon_20px.png';
case 'Druid':
return 'https://wiki.guildwars2.com/images/d/d2/Druid_tango_icon_20px.png';
case 'Soulbeast':
return 'https://wiki.guildwars2.com/images/7/7c/Soulbeast_tango_icon_20px.png';
case 'Thief':
return 'https://wiki.guildwars2.com/images/7/7a/Thief_tango_icon_20px.png';
case 'Daredevil':
return 'https://wiki.guildwars2.com/images/e/e1/Daredevil_tango_icon_20px.png';
case 'Deadeye':
return 'https://wiki.guildwars2.com/images/c/c9/Deadeye_tango_icon_20px.png';
case 'Elementalist':
return 'https://wiki.guildwars2.com/images/a/aa/Elementalist_tango_icon_20px.png';
case 'Tempest':
return 'https://wiki.guildwars2.com/images/4/4a/Tempest_tango_icon_20px.png';
case 'Weaver':
return 'https://wiki.guildwars2.com/images/f/fc/Weaver_tango_icon_20px.png';
case 'Mesmer':
return 'https://wiki.guildwars2.com/images/6/60/Mesmer_tango_icon_20px.png';
case 'Chronomancer':
return 'https://wiki.guildwars2.com/images/f/f4/Chronomancer_tango_icon_20px.png';
case 'Mirage':
return 'https://wiki.guildwars2.com/images/d/df/Mirage_tango_icon_20px.png';
case 'Necromancer':
return 'https://wiki.guildwars2.com/images/4/43/Necromancer_tango_icon_20px.png';
case 'Reaper':
return 'https://wiki.guildwars2.com/images/1/11/Reaper_tango_icon_20px.png';
case 'Scourge':
return 'https://wiki.guildwars2.com/images/0/06/Scourge_tango_icon_20px.png';
case 'Sword':
return 'https://wiki.guildwars2.com/images/0/07/Crimson_Antique_Blade.png';
}
return '';
}
function nameFunction(data, type) {
if (type === 'display') {
//return '<a href=\"#' + playerData[data].identifier + '\">' + data + '</a>';
return '<a href=\"#' + playerData["name"] + '\">' + data + '</a>';
}
return data;
}
function professionFunction(data, type) {
if (type === 'display') {
return '<img src=\"' + getProfIcon(data) + '\" alt=\"' + data + '\" class=\"icon icon-hover" data-toggle="tooltip" title=\"' + data + '\" />';
}
return data;
}
function formatPercent(number, digits = 2) {
// return (Math.round(number * 100) / 100).toFixed(2);
return new Intl.NumberFormat('en-US', { minimumFractionDigits: digits, maximumFractionDigits: digits }).format(number)
}
var playerArray = [];
var playerData = [{'name': 'test', 'group': '0'}];
playerArray = playerData
console.log(playerArray)
console.log(playerData)
//
$(document).ready(function () {
$.extend($.fn.dataTable.defaults, {
searching: false,
ordering: true,
paging: false,
info: false,
retrieve: true,
autoWidth: false,
dom: "t"
});
$('#table-damagestats').DataTable({
data: playerArray,
order: [[5, "desc"]],
columns: [
{ data: 'group' },
{
data: 'profession',
render: professionFunction
},
{
data: 'name',
render: nameFunction
},
{ data: 'account' },
{
data: 'timeInCombat',
render: function (data, type) {
if (type === 'display') {
var seconds = Math.floor(data / 1000);
if (seconds < 60) {
return '<span title=\"' + data + 'ms\" data-toggle="tooltip">' + seconds + 's</span>';
}
var minutes = Math.floor(seconds / 60);
seconds = seconds % 60;
if (minutes < 60) {
return '<span title=\"' + data + '\ms" data-toggle="tooltip">' + minutes + 'm ' + seconds + 's</span>';
}
hours = Math.floor(minutes / 60);
minutes = minutes % 60;
return '<span title=\"' + data + '\ms" data-toggle="tooltip">' + hours + 'h ' + minutes + 'm ' + seconds + 's</span>';
}
return data;
}
},
{ data: 'dps' },
{ data: 'damage.allDamage' },
{ data: 'damage.power' },
{ data: 'damage.condi' },
{ data: 'damage.targetDamage' },
{ data: 'damage.targetPower' },
{ data: 'damage.targetCondi' }
]
});
var healingData = buildHealingData();
$('#table-tab').tab('show');
$('nav.players').tab('show');
$('#nav-boons').tab();
$('#table-healing-outgoing').DataTable({
data: healingData,
order: [[4, "desc"]],
columns: [
{ data: 'group' },
{
data: 'profession',
render: professionFunction
},
{
data: 'name',
render: nameFunction
},
{ data: 'account' },
{ data: 'outgoingTargetAll' },
{ data: 'outgoingTargetHealingPower' },
{ data: 'outgoingTargetConversion' },
{ data: 'outgoingTargetDowned' },
{ data: 'outgoingAll' },
{ data: 'outgoingAllHealingPower' },
{ data: 'outgoingAllConversion' },
{ data: 'outgoingAllDowned' }
]
});
$('#table-healing-incoming').DataTable({
data: healingData,
order: [[4, "desc"]],
columns: [
{ data: 'group' },
{
data: 'profession',
render: professionFunction
},
{
data: 'name',
render: nameFunction
},
{ data: 'account' },
{ data: 'incomingHealed' },
{ data: 'incomingHealingPower' },
{ data: 'incomingConversion' },
{ data: 'incomingDowned' }
]
});
$('#table-defensestats').DataTable({
data: playerArray,
order: [[4, "desc"]],
columns: [
{ data: 'group' },
{
data: 'profession',
render: professionFunction
},
{
data: 'name',
render: nameFunction
},
{ data: 'account' },
{ data: 'defense.damageTaken' },
{ data: 'defense.damageBarrier' },
{ data: 'defense.blocked' },
{ data: 'defense.invulned' },
{ data: 'defense.interrupted' },
{ data: 'defense.evaded' },
{ data: 'defense.dodges' },
{ data: 'defense.missed' },
{ data: 'defense.downed' },
{ data: 'defense.dead' },
]
});
$('#table-supportstats').DataTable({
data: playerArray,
order: [[4, "desc"]],
columns: [
{ data: 'group' },
{
data: 'profession',
render: professionFunction
},
{
data: 'name',
render: nameFunction
},
{ data: 'account' },
{ data: 'support.cleanseOnOther' },
{ data: 'support.cleanseOnSelf' },
{ data: 'support.boonStrips' },
{ data: 'support.resurrects' },
]
});
$('#table-gameplaystats').DataTable({
data: playerArray,
order: [[5, "desc"]],
columns: [
{ data: 'group' },
{
data: 'profession',
render: professionFunction
},
{
data: 'name',
render: nameFunction
},
{ data: 'account' },
{ data: 'numberOfFights' },
{
data: 'gameplay.critPercent',
render: function (data, type, row) {
if (type === "display") {
return '<span data-toggle=\"tooltip\" title=\"' + row.gameplay.critableHits + ' out of ' + row.gameplay.criticalHits + ' critable hit(s) \">' + data + '</span>';
}
return data;
}
},
{
data: 'gameplay.flankPercent',
render: function (data, type, row) {
if (type === "display") {
return '<span data-toggle=\"tooltip\" title=\"' + row.gameplay.flanking + ' out of ' + row.gameplay.criticalHits + ' critable hit(s) \">' + data + '</span>';
}
return data;
}
},
{
data: 'gameplay.glancePercent',
render: function (data, type, row) {
if (type === "display") {
return '<span data-toggle=\"tooltip\" title=\"' + row.gameplay.glancing + ' out of ' + row.gameplay.criticalHits + ' critable hit(s) \">' + data + '</span>';
}
return data;
}
},
{ data: 'gameplay.blined' },
{ data: 'gameplay.interrupted' },
{ data: 'gameplay.invulnerable' },
{ data: 'gameplay.evaded' },
{ data: 'gameplay.blocked' },
{ data: 'gameplay.downed' },
{ data: 'gameplay.killed' },
{
data: 'gameplay.wasted',
render: function (data, type) {
if (type === "display") {
return formatPercent(data, 3);
}
return data;
}
},
{
data: 'gameplay.saved',
render: function (data, type) {
if (type === "display") {
return formatPercent(data, 3);
}
return data;
}