-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdata.html
420 lines (418 loc) · 18.7 KB
/
data.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/gutools.css" rel="stylesheet">
<link href="css/fr.css" rel="stylesheet">
<link rel="Shortcut Icon" href="favicon.ico" type="image/x-icon">
<title data-localize="Flight Rising Tool">Flight Rising Tool</title>
<style type="text/css">
th[data-order="asc"]:after
{
content: "\e155";
position: relative;
left: 5px;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
}
th[data-order="desc"]:after
{
content: "\e156";
position: relative;
left: 5px;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
}
table thead tr th {
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<div id="top" class="page_head panel panel-default">
<div class="panel-heading">
<h2><strong data-localize="Flight Rising Tool">Flight Rising</strong>.<strong data-localize="Data">Data</strong></strong></h2>
<h5>#<span data-localize="Data description">Data table.</span>
</div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a target="_blank" title="To my blog" data-toggle="tooltip" data-placement="bottom" class="navbar-brand" href="/">
<span class="glyphicon glyphicon-home" aria-hidden="true"></span>
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a data-localize="Breeding Tool" href="index.html" role="button" aria-haspopup="true" aria-expanded="false">Breeding Tool</a>
</li>
<li>
<a data-localize="Breeding Card" href="card.html" role="button" aria-haspopup="true" aria-expanded="false">Breeding Card</a>
</li>
<li class="active">
<a data-localize="Data" href="data.html" role="button" aria-haspopup="true" aria-expanded="false">Data</a>
</li>
<li>
<a data-localize="Family Tree" href="family-tree.html" role="button" aria-haspopup="true" aria-expanded="false">Family Tree <span class="badge badge-pill badge-dark">BETA</span></a>
</li>
<li>
<a data-localize="Github Repository" href="https://github.com/JiYouMCC/FlightRisingTool" target="_blank" role="button" aria-haspopup="true" aria-expanded="false">Github Repository</a>
</li>
<li>
<a data-localize="Find me in FR" href="http://flightrising.com/main.php?p=view&tab=userpage&id=200704" target="_blank" role="button" aria-haspopup="true" aria-expanded="false">Find me in FR</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"><span class="glyphicon glyphicon-globe" aria-hidden="true"></span> <span data-localize="Language">English</span><span class="caret"></span></a>
<ul id="dropdown_language" class="dropdown-menu"></ul>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="row">
<div class="col-md-9">
<h3>Common Lists</h3>
<h4><strong data-localize="Gender List">Gender List</strong></h4>
<div class="table-responsive">
<table id="gender_list" class="table table-condensed table-striped">
<thead><tr><th data-localize="Name">Name</th></tr></thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Odds List">Odds List</strong></h4>
<div class="table-responsive">
<table id="odd_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Cooldown">Cooldown</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Breed List">Breed List</strong></h4>
<div class="table-responsive">
<table id="breed_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h4><strong data-localize="Ancient Breed List">Ancient Breed List</strong></h4>
<div class="table-responsive">
<table id="ancient_breed_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h4><strong data-localize="Color List">Color List</strong></h4>
<div class="table-responsive">
<table id="color_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th>Hex</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h3>Modern Gene Lists</h3>
<h4><strong data-localize="Primary Gene List">Primary Gene List</strong></h4>
<div class="table-responsive">
<table id="primary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h4><strong data-localize="Secondary Gene List">Secondary Gene List</strong></h4>
<div class="table-responsive">
<table id="secondary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Tertiary Gene List">Tertiary Gene List</strong></h4>
<div class="table-responsive">
<table id="tertiary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h3>Gaoler Gene Lists</h3>
<h4><strong data-localize="Gaoler Primary Gene List">Gaoler Primary Gene List</strong></h4>
<div class="table-responsive">
<table id="gaoler_primary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h4><strong data-localize="Gaoler Secondary Gene List">Gaoler Secondary Gene List</strong></h4>
<div class="table-responsive">
<table id="gaoler_secondary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Gaoler Tertiary Gene List">Gaoler Tertiary Gene List</strong></h4>
<div class="table-responsive">
<table id="gaoler_tertiary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h3>Banescale Gene Lists</h3>
<h4><strong data-localize="Banescale Primary Gene List">Banescale Primary Gene List</strong></h4>
<div class="table-responsive">
<table id="banescale_primary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h4><strong data-localize="Banescale Secondary Gene List">Banescale Secondary Gene List</strong></h4>
<div class="table-responsive">
<table id="banescale_secondary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Banescale Tertiary Gene List">Banescale Tertiary Gene List</strong></h4>
<div class="table-responsive">
<table id="banescale_tertiary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h3>Veilspun Gene Lists</h3>
<h4><strong data-localize="Veilspun Primary Gene List">Veilspun Primary Gene List</strong></h4>
<div class="table-responsive">
<table id="veilspun_primary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h4><strong data-localize="Veilspun Secondary Gene List">Veilspun Secondary Gene List</strong></h4>
<div class="table-responsive">
<table id="veilspun_secondary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Veilspun Tertiary Gene List">Veilspun Tertiary Gene List</strong></h4>
<div class="table-responsive">
<table id="veilspun_tertiary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h3>Aberration Gene Lists</h3>
<h4><strong data-localize="Aberration Primary Gene List">Aberration Primary Gene List</strong></h4>
<div class="table-responsive">
<table id="aberration_primary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h4><strong data-localize="Aberration Secondary Gene List">Aberration Secondary Gene List</strong></h4>
<div class="table-responsive">
<table id="aberration_secondary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Aberration Tertiary Gene List">Aberration Tertiary Gene List</strong></h4>
<div class="table-responsive">
<table id="aberration_tertiary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h3>Undertide Gene Lists</h3>
<h4><strong data-localize="Undertide Primary Gene List">Undertide Primary Gene List</strong></h4>
<div class="table-responsive">
<table id="undertide_primary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<h4><strong data-localize="Undertide Secondary Gene List">Undertide Secondary Gene List</strong></h4>
<div class="table-responsive">
<table id="undertide_secondary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Undertide Tertiary Gene List">Undertide Tertiary Gene List</strong></h4>
<div class="table-responsive">
<table id="undertide_tertiary_gene_list" class="table table-condensed table-striped">
<thead>
<tr>
<th data-localize="Name">Name</th><th data-localize="Odds">Odds</th><th data-localize="Price">Price</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h3>Rate Lists</h3>
<h4><strong data-localize="Breed Role List">Breed Rate List</strong></h4>
<div class="table-responsive">
<table id="breed_rule_list" class="table table-condensed table-striped">
<thead>
<tr>
<th><span data-localize="Odds">Odds</span> I</th>
<th><span data-localize="Odds">Odds</span> II</th>
<th><span data-localize="Rate">Rate</span> I</th>
<th><span data-localize="Rate">Rate</span> II</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<h4><strong data-localize="Gene Role List">Gene Rate List</strong></h4>
<div class="table-responsive">
<table id="gene_rule_list" class="table table-condensed table-striped">
<thead>
<tr>
<th><span data-localize="Odds">Odds</span> I</th>
<th><span data-localize="Odds">Odds</span> II</th>
<th><span data-localize="Rate">Rate</span> I</th>
<th><span data-localize="Rate">Rate</span> II</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<div class="col-md-3">
<div id="stand"></div>
<div id="affix-nav" class="hidden-xs hidden-sm">
<div class="panel panel-default">
<div class="panel-body">
<a title="放我出去!放我出去!" data-toggle="tooltip" data-placement="bottom" target="_blank" href="http://flightrising.com/main.php?dragon=19880223"><img class="img-responsive center-block" src="img/cup.png"></a>
</div>
</div>
<div class="panel panel-default">
<ol id="affix-nav-ul" class="nav nav-stacked" role="tablist">
<li id="nav_top"><a href="#top"><span class="glyphicon glyphicon-triangle-top"></span></a></li>
<li id="nav_bottom"><a href="#bottom"><span class="glyphicon glyphicon-triangle-bottom"></span></a></li>
</ol>
</div>
</div>
</div>
</div>
<div id="bottom" class="page_footer panel panel-default">
<div class="panel-footer">
<h5>
<span><strong>Powered By</strong> <a target="_blank" href="https://pages.github.com/">Github Pages</a>.</span><span><strong>Last Update</strong> 2022-02-15.</span>
</h5>
</div>
</div>
</div>
<script src="lib/js.cookie.min.js"></script>
<script src="lib/jquery.min.js"></script>
<script src="lib/bootstrap.min.js"></script>
<!-- <script src="lib/jquery.localize.min.js"></script> -->
<script src="lib/tinysort.min.js"></script>
<script src="js/fr_data.js"></script>
<script src="js/fr_tool.js"></script>
<script src="js/data.js"></script>
<script src="js/language.js"></script>
</body>
</html>