-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
171 lines (158 loc) · 12 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<title>OPTC Supports</title>
<link rel="stylesheet" type="text/css" href="index.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tagify/3.21.5/tagify.min.css" integrity="sha512-91wa7heHLbuVdMrSXbWceVZva6iWDFlkFHnM+9Sc+oXFpTgw1FCqdnuaGBJfDVuNSNl0DwDmeGeJSORB0HyLZQ==" crossorigin="anonymous" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Piebandit, AndreMantas">
<meta name="keywords" content="OPTC, One Piece Treasure Cruise, Database, Supports">
<meta name="description" content="OPTC Supports">
<meta charset="utf-8">
</head>
<body>
<div class="nav-fill">
<ul class="nav nav-tabs nav-fill" role="tablist">
<li class="nav-item">
<a class="nav-link" id="atk-tab" data-toggle="tab" href="#atkContainer" role="tab" aria-controls="home" aria-selected="false">ATK Boosting Supports</a>
</li>
<li class="nav-item">
<a class="nav-link" id="hp-tab" data-toggle="tab" href="#hpContainer" role="tab" aria-controls="hpContainer" aria-selected="false">HP Boosting Supports</a>
</li>
<li class="nav-item">
<a class="nav-link" id="rcv-tab" data-toggle="tab" href="#rcvContainer" role="tab" aria-controls="rcvContainer" aria-selected="false">RCV Boosting Supports</a>
</li>
<li class="nav-item">
<a class="nav-link active" id="other-tab" data-toggle="tab" href="#otherContainer" role="tab" aria-controls="otherContainer" aria-selected="true">All Other Supports</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade" id="atkContainer" role="tabpanel" aria-labelledby="atk-tab">
<table id="atkSupportUnits" class="table table-striped table-hover table-bordered">
<thead>
<tr>
<th colspan="2" class="text-center">Support Unit Details</th>
<th colspan="3" class="text-center">ATK Boost (with 100 CC)</th>
<th colspan="1">Supported Units</th>
</tr>
<tr>
<th class="sortable text-nowrap" data-field="id" data-source="atk">Unit# <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap w-auto" data-field="name" data-source="atk">Unit Name <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="atkBoost" data-source="atk">Base <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="atkBoostLimit" data-source="atk">LB <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="atkBoostLimitEx" data-source="atk">LBex <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="w-50 pt-0 pb-0"><input id="atkFilterSupported" class="form-control pt-0 pb-0 w-100" type="text" placeholder="Filter"></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="tab-pane fade" id="hpContainer" role="tabpanel" aria-labelledby="hp-tab">
<table id="hpSupportUnits" class="table table-striped">
<thead>
<tr>
<th colspan="2" class="text-center">Support Unit Details</th>
<th colspan="3" class="text-center">HP Boost (with 100 CC)</th>
<th colspan="1">Supported Units</th>
</tr>
<tr>
<th class="sortable text-nowrap" data-field="id" data-source="hp">Unit# <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap w-auto" data-field="name" data-source="hp">Unit Name <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="hpBoost" data-source="hp">Base <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="hpBoostLimit" data-source="hp">LB <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="hpBoostLimitEx" data-source="hp">LBex <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="w-50 pt-0 pb-0"><input id="hpFilterSupported" class="form-control pt-0 pb-0 w-100" type="text" placeholder="Filter"></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="tab-pane fade" id="rcvContainer" role="tabpanel" aria-labelledby="rcv-tab">
<table id="rcvSupportUnits" class="table table-striped">
<thead>
<tr>
<th colspan="2" class="text-center">Support Unit Details</th>
<th colspan="3" class="text-center">RCV Boost (with 100 CC)</th>
<th colspan="1">Supported Units</th>
</tr>
<tr>
<th class="sortable text-nowrap" data-field="id" data-source="rcv">Unit# <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap w-auto" data-field="name" data-source="rcv">Unit Name <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="rcvBoost" data-source="rcv">Base <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="rcvBoostLimit" data-source="rcv">LB <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap" data-field="rcvBoostLimitEx" data-source="rcv">LBex <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="w-50 pt-0 pb-0"><input id="rcvFilterSupported" class="form-control pt-0 pb-0 w-100" type="text" placeholder="Filter"></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="tab-pane fade show active" id="otherContainer" role="tabpanel" aria-labelledby="other-tab">
<table id="otherSupportUnits" class="table table-striped">
<thead>
<tr>
<th class="sortable text-nowrap" data-field="id" data-source="other">Unit# <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="sortable text-nowrap w-auto" data-field="name" data-source="other">Unit Name <i class="fa fa-arrows-v" aria-hidden="true"></i></th>
<th class="w-auto align-bottom min-input-col-width">
<div class="input-group flex-nowrap">
<div class="input-group-prepend">
<span class="input-group-text" id="addon-wrapping-1">Lvl 5 Support</span>
</div>
<input id="otherFilterSupportEffect" class="form-control w-100" type="text" label="otherEffectFilteredLabel" placeholder="Filter">
</div>
</th>
<th class="w-auto align-bottom min-input-col-width"><div class="input-group flex-nowrap"> <div class="input-group-prepend"> <span class="input-group-text" id="addon-wrapping">Supported Units</span> </div> <input id="otherFilterSupported" class="form-control w-100" type="text" label="otherFilteredLabel" placeholder="Filter"> </div> </th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<div class="version-info text-nowrap w-auto align-right">
<i id="theme" title="Switch theme" class="fa fa-moon-o" aria-hidden="true"></i>
</div>
<div id="changelogModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="changelogModalLabel" aria-hidden="true" data-keyboard="true">
<div class="modal-dialog modal-dialog-scrollable modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Changelog</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" id="changelog">
</div>
</div>
</div>
</div>
<!-- External Libraries -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tagify/3.21.5/jQuery.tagify.min.js" integrity="sha512-CX1+EQRkL9EC4OeJ7Hk24R0R3Hg6yy6yrOvZxlj/Mr7pjrxhzrzcScR1PM03y12uljYh+0nMDk5ckHlgCjR9iw==" crossorigin="anonymous"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163456907-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-163456907-1');
</script>
<!-- OPTC-DB data -->
<script type="text/javascript" src="common/js/utils.js" ></script>
<script type="text/javascript" src="common/js/unitUtils.js" ></script>
<script type="text/javascript" src="common/data/units.js" ></script>
<script type="text/javascript" src="common/data/details.js" ></script>
<script type="text/javascript" src="common/data/matchers.js" ></script>
<script type="text/javascript" src="common/data/festival.js" ></script>
<script type="text/javascript" src="common/data/aliases.js" ></script>
<!-- local scripts -->
<script src="js/theme.js"></script>
<script src="js/table-populator.js"></script>
<script src="js/changelog.js"></script>
</body>
</html>