-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSampleOutput.html
117 lines (113 loc) · 7.1 KB
/
SampleOutput.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
<div class="EventFilter">
<ul class="list-group" style="width: 400px; padding: 10px">
<li class="list-group-item">
<input class="form-check-input me-1 EventFilterCheckbox" type="checkbox" id="SimulationStartedEventCheckbox" checked>
<label class="form-check-label" for="SimulationStartedEventCheckbox">SimulationStartedEvent (1)</label>
</li>
<li class="list-group-item">
<input class="form-check-input me-1 EventFilterCheckbox" type="checkbox" id="RallyingCryEventCheckbox" checked>
<label class="form-check-label" for="RallyingCryEventCheckbox">RallyingCryEvent (1)</label>
</li>
<li class="list-group-item">
<input class="form-check-input me-1 EventFilterCheckbox" type="checkbox" id="ChallengingShoutEventCheckbox" checked>
<label class="form-check-label" for="ChallengingShoutEventCheckbox">ChallengingShoutEvent (1)</label>
</li>
</ul>
</div>
<div class="accordion" id="accordionExample" style="width: 1000px; padding: 10px">
<div class="accordion-item SimulationStartedEvent">
<div class="accordion-header">
<button class="accordion-button collapsed py-2" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" style="padding-left: 5px">
<span class="px-2 fw-semibold bg-success-subtle border border-success-subtle rounded-2 mx-2">0.0</span>SimulationStartedEvent
</button>
</div>
<div id="collapseOne" class="accordion-collapse collapse">
<div class="accordion-body">
<code>[ No log data for this event ]</code>
</div>
</div>
</div>
<div class="accordion-item RallyingCryEvent">
<div class="accordion-header">
<button class="accordion-button collapsed py-2" type="button" data-bs-toggle="collapse" data-bs-target="#123" style="padding-left: 5px">
<span class="px-2 fw-semibold bg-success-subtle border border-success-subtle rounded-2 mx-2">0.0</span>RallyingCryEvent - Increasing Movement Speed and Resource Generation for 6 seconds
</button>
</div>
<div id="123" class="accordion-collapse collapse">
<div class="accordion-body">
<code>
Duration Increase from Booming Voice = 1.24x with 3 skill points<br/>
Created AuraAppliedEvent for Rallying Cry for 7.44 seconds<br/>
Created AuraAppliedEvent for Rallying Cry Cooldown for 25.00 seconds<br/>
Enhanced Rallying Cry created AuraAppliedEvent for Unstoppable for 7.44 seconds<br/>
Gutteral Yell created GutteralYellProcEvent<br/>
Raid Leader created RaidLeaderProcEvent for 7.44 seconds<br/>
Strategic Rallying Cry created FortifyGeneratedEvent for 4.00 Fortify<br/>
Tactical Rallying Cry created FuryGeneratedEvent for 20.00 Fury<br/>
Aspect of Echoing Fury created AspectOfEchoingFuryProcEvent for 4 Fury per second for 7.44 seconds<br/>
Bold Chieftain's Aspect reduced Rallying Cry cooldown by 5.70 seconds<br/>
</code>
</div>
</div>
</div>
<div class="accordion-item ChallengingShoutEvent">
<div class="accordion-header">
<button class="accordion-button collapsed py-2" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" style="padding-left: 5px">
<span class="px-2 fw-semibold bg-success-subtle border border-success-subtle rounded-2 mx-2">0.0</span>ChallengingShoutEvent - Challenging Shout active for 7.44 seconds
</button>
</div>
<div id="collapseThree" class="accordion-collapse collapse">
<div class="accordion-body">
<code>
Duration Increase from Booming Voice = 1.24x with 3 skill points<br/>
Booming Voice duration multiplier = 1.24x<br/>
Created AuraAppliedEvent for Challenging Shout expiring in 7.44 seconds<br/>
Created AuraAppliedEvent for Challenging Shout cooldown for 25 seconds<br/>
Created AuraAppliedEvent for Taunt on Enemy #1 for 7.44 seconds<br/>
Created AuraAppliedEvent for Taunt on Enemy #2 for 7.44 seconds<br/>
Created AuraAppliedEvent for Taunt on Enemy #3 for 7.44 seconds<br/>
Gutteral Yell created GutteralYellProcEvent<br/>
Raid Leader created RaidLeaderProcEvent for 7.44 seconds<br/>
Aspect of Echoing Fury created AspectOfEchoingFuryProcEvent for 4 Fury per second for 7.44 seconds<br/>
Bold Chieftain's Aspect reduced Challenging Shout cooldown by 5.70 seconds<br/>
</code>
</div>
</div>
</div>
</div>
<script>
document.querySelectorAll('.EventFilterCheckbox').forEach(function (checkbox) {
checkbox.addEventListener('change', function (event) {
var eventClass = event.target.id.replace('Checkbox', '');
var eventElements = document.querySelectorAll('.' + eventClass);
if (event.target.checked) {
eventElements.forEach(function (eventElement) {
eventElement.style.display = 'block';
});
} else {
eventElements.forEach(function (eventElement) {
eventElement.style.display = 'none';
});
}
});
});
</script>
<style>
.EventFilter, .accordion {
height: 100vh;
float: left;
overflow-y: scroll;
}
</style>
</body>
</html>