-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhonkalculate.html
770 lines (761 loc) · 50.7 KB
/
honkalculate.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>A Pokémon Calculator</title>
<link type="text/css" rel="stylesheet" href="./bootstrap.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.datatables.net/1.10.4/css/jquery.dataTables.min.css" />
<link type="text/css" rel="stylesheet" href="https://cdn.datatables.net/colvis/1.1.1/css/dataTables.colVis.css" />
<link type="text/css" rel="stylesheet" href="./select2/select2.css" />
<link type="text/css" rel="stylesheet" href="./shared_controls.css?d0dc62b1" />
</head>
<body>
<div class="wrapper">
<div>
<span class="title-text">Battle Tree Damage Calculator</span>
<span title="Select the generation.">
<input class="gen visually-hidden" type="radio" name="gen" value="3" id="gen3" /><label class="btn btn-small btn-left" for="gen3">ADV</label>
<input class="gen visually-hidden" type="radio" name="gen" value="4" id="gen4" /><label class="btn btn-small btn-mid" for="gen4">DPP</label>
<input class="gen visually-hidden" type="radio" name="gen" value="5" id="gen5" /><label class="btn btn-small btn-mid" for="gen5">B/W</label>
<input class="gen visually-hidden" type="radio" name="gen" value="6" id="gen6" /><label class="btn btn-small btn-mid" for="gen6">ORAS</label>
<input class="gen visually-hidden" type="radio" name="gen" value="7" id="gen7" checked="checked" /><label class="btn btn-small btn-right" for="gen7">USUM</label>
</span>
<span title="Select the calculator's mode of function.">
<input class="mode visually-hidden" type="radio" name="mode" id="one-vs-one" /><label class="btn btn-wide btn-left" for="one-vs-one">One vs One</label>
<input class="mode visually-hidden" type="radio" name="mode" id="one-vs-all" /><label class="btn btn-wide btn-mid" for="one-vs-all">One vs All</label>
<input class="mode visually-hidden" type="radio" name="mode" id="all-vs-one" /><label class="btn btn-wide btn-right" for="all-vs-one">All vs One</label>
</span>
</div>
<hr />
<div>
<span class="title-text">Check one of All Sets, 40+/Common (DPP/ORAS/USUM), or Maison/Battle Hall), then press Honkalculate: </span>
<span class="tiers" title="Select the tier(s)/format.">
<input class="visually-hidden" type="checkbox" name="tier" id="Maison" /><label class="btn btn-left" for="Maison">All sets</label>
<input class="visually-hidden" type="checkbox" name="tier" id="Common" /><label class="btn btn-mid" for="Common">40+</label>
<input class="visually-hidden" type="checkbox" name="tier" id="40+" /><label class="btn btn-right" for="40+">Hall</label>
</span>
</div>
</div>
<div class="panel-group" id="accordion">
<fieldset class="panel panel-default poke-info" id="p1">
<legend class="panel-heading panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">> Pokemon</a>
</legend>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
<input type="text" class="set-selector" />
<div class="info-group">
<div>
<label>Type</label>
<select class="type1 terrain-trigger"></select>
<select class="type2 terrain-trigger"></select>
</div>
<div class="hide">
<label>Forme</label>
<select class="forme calc-trigger"></select>
</div>
<div class="hide">
<label>Gender</label>
<select class="gender calc-trigger"><option></option><option selected="selected">Male</option><option>Female</option></select>
</div>
<div>
<label>Level</label>
<input class="level" value="50" />
</div>
<div>
<label>Foe Level</label>
<input id="leveloverride" value="50" />
</div>
<div>
<label>Foe IVs</label>
<input id="ivsoverridehonk" value="31" />
</div>
<div class="hide">
<label>Foe IVs hidden for making hack work</label>
<input class="ivsoverride" id="ivsoverride" value="31" />
</div>
<div class="hide">
<label>Weight (kg)</label>
<input class="weight" value="10.0" />
</div>
</div>
<div class="info-group">
<table>
<tr>
<th></th>
<th>Base</th>
<th class="gen-specific g3 g4 g5 g6 g7">IVs</th>
<th class="gen-specific g3 g4 g5 g6 g7">EVs</th>
<th class="gen-specific g1 g2 hide">DVs</th>
<th></th>
<th></th>
</tr>
<tr class="hp">
<td>
<label>HP</label>
</td>
<td>
<input class="base" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="ivs" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="evs" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs" value="15" disabled="disabled" />
</td>
<td><span class="total">341</span>
</td>
<td></td>
</tr>
<tr class="at">
<td>
<label>Attack</label>
</td>
<td>
<input class="base" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="ivs" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="evs" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost">
<option value="6">+6</option>
<option value="5">+5</option>
<option value="4">+4</option>
<option value="3">+3</option>
<option value="2">+2</option>
<option value="1">+1</option>
<option value="0" selected="selected">--</option>
<option value="-1">-1</option>
<option value="-2">-2</option>
<option value="-3">-3</option>
<option value="-4">-4</option>
<option value="-5">-5</option>
<option value="-6">-6</option>
</select>
</td>
</tr>
<tr class="df">
<td>
<label>Defense</label>
</td>
<td>
<input class="base" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="ivs" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="evs" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost">
<option value="6">+6</option>
<option value="5">+5</option>
<option value="4">+4</option>
<option value="3">+3</option>
<option value="2">+2</option>
<option value="1">+1</option>
<option value="0" selected="selected">--</option>
<option value="-1">-1</option>
<option value="-2">-2</option>
<option value="-3">-3</option>
<option value="-4">-4</option>
<option value="-5">-5</option>
<option value="-6">-6</option>
</select>
</td>
</tr>
<tr class="sa gen-specific g2 g3 g4 g5 g6 g7">
<td>
<label>Sp. Atk</label>
</td>
<td>
<input class="base" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="ivs" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="evs" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost">
<option value="6">+6</option>
<option value="5">+5</option>
<option value="4">+4</option>
<option value="3">+3</option>
<option value="2">+2</option>
<option value="1">+1</option>
<option value="0" selected="selected">--</option>
<option value="-1">-1</option>
<option value="-2">-2</option>
<option value="-3">-3</option>
<option value="-4">-4</option>
<option value="-5">-5</option>
<option value="-6">-6</option>
</select>
</td>
</tr>
<tr class="sd gen-specific g2 g3 g4 g5 g6 g7">
<td>
<label>Sp. Def</label>
</td>
<td>
<input class="base" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="ivs" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="evs" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs" value="15" disabled="disabled" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost">
<option value="6">+6</option>
<option value="5">+5</option>
<option value="4">+4</option>
<option value="3">+3</option>
<option value="2">+2</option>
<option value="1">+1</option>
<option value="0" selected="selected">--</option>
<option value="-1">-1</option>
<option value="-2">-2</option>
<option value="-3">-3</option>
<option value="-4">-4</option>
<option value="-5">-5</option>
<option value="-6">-6</option>
</select>
</td>
</tr>
<tr class="sl gen-specific g1 hide">
<td>
<label>Special</label>
</td>
<td>
<input class="base" value="100" />
</td>
<td>
<input class="dvs" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost">
<option value="6">+6</option>
<option value="5">+5</option>
<option value="4">+4</option>
<option value="3">+3</option>
<option value="2">+2</option>
<option value="1">+1</option>
<option value="0" selected="selected">--</option>
<option value="-1">-1</option>
<option value="-2">-2</option>
<option value="-3">-3</option>
<option value="-4">-4</option>
<option value="-5">-5</option>
<option value="-6">-6</option>
</select>
</td>
</tr>
<tr class="sp">
<td>
<label>Speed</label>
</td>
<td>
<input class="base" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="ivs" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7">
<input class="evs" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost">
<option value="6">+6</option>
<option value="5">+5</option>
<option value="4">+4</option>
<option value="3">+3</option>
<option value="2">+2</option>
<option value="1">+1</option>
<option value="0" selected="selected">--</option>
<option value="-1">-1</option>
<option value="-2">-2</option>
<option value="-3">-3</option>
<option value="-4">-4</option>
<option value="-5">-5</option>
<option value="-6">-6</option>
</select>
</td>
</tr>
</table>
</div>
<div class="info-group info-selectors">
<div class="gen-specific g3 g4 g5 g6 g7">
<label>Nature</label>
<select class="nature">
<option value="Adamant">Adamant (+Atk, -SpA)</option>
<option value="Bashful">Bashful</option>
<option value="Bold">Bold (+Def, -Atk)</option>
<option value="Brave">Brave (+Atk, -Spe)</option>
<option value="Calm">Calm (+SpD, -Atk)</option>
<option value="Careful">Careful (+SpD, -SpA)</option>
<option value="Docile">Docile</option>
<option value="Gentle">Gentle (+SpD, -Def)</option>
<option value="Hardy" selected="selected">Hardy</option>
<option value="Hasty">Hasty (+Spe, -Def)</option>
<option value="Impish">Impish (+Def, -SpA)</option>
<option value="Jolly">Jolly (+Spe, -SpA)</option>
<option value="Lax">Lax (+Def, -SpD)</option>
<option value="Lonely">Lonely (+Atk, -Def)</option>
<option value="Mild">Mild (+SpA, -Def)</option>
<option value="Modest">Modest (+SpA, -Atk)</option>
<option value="Naive">Naive (+Spe, -SpD)</option>
<option value="Naughty">Naughty (+Atk, -SpD)</option>
<option value="Quiet">Quiet (+SpA, -Spe)</option>
<option value="Quirky">Quirky</option>
<option value="Rash">Rash (+SpA, -SpD)</option>
<option value="Relaxed">Relaxed (+Def, -Spe)</option>
<option value="Sassy">Sassy (+SpD, -Spe)</option>
<option value="Serious">Serious</option>
<option value="Timid">Timid (+Spe, -Atk)</option>
</select>
</div>
<div class="gen-specific g3 g4 g5 g6 g7">
<label>Ability</label>
<select class="ability terrain-trigger"></select>
</div>
<div class="gen-specific g2 g3 g4 g5 g6 g7">
<label>Item</label>
<select class="item terrain-trigger"></select>
</div>
<div>
<label>Status</label>
<select class="status">
<option value="Healthy">Healthy</option>
<option value="Poisoned">Poisoned</option>
<option value="Badly Poisoned">Badly Poisoned</option>
<option value="Burned">Burned</option>
<option value="Paralyzed">Paralyzed</option>
<option value="Asleep">Asleep</option>
<option value="Frozen">Frozen</option>
</select>
<select class="toxic-counter hide">
<option value="1">1/16</option>
<option value="2">2/16</option>
<option value="3">3/16</option>
<option value="4">4/16</option>
<option value="5">5/16</option>
<option value="6">6/16</option>
<option value="7">7/16</option>
<option value="8">8/16</option>
<option value="9">9/16</option>
<option value="10">10/16</option>
<option value="11">11/16</option>
<option value="12">12/16</option>
<option value="13">13/16</option>
<option value="14">14/16</option>
<option value="15">15/16</option>
</select>
</div>
</div>
<div class="info-group">
<label>Current HP</label>
<input class="current-hp" value="341" />/<span class="max-hp">341</span> (
<input class="percent-hp" value="100" />%)
<br />
<br />
Health <div class="hpbar"></div>
</div>
<div class="move1">
<select class="move-selector small-select"></select>
<input class="move-bp" value="50" />
<select class="move-type"></select>
<select class="move-cat gen-specific g4 g5 g6 g7">
<option value="Physical">Physical</option>
<option value="Special">Special</option>
</select>
<input class="move-crit visually-hidden" type="checkbox" id="critL1" />
<label class="btn crit-btn" for="critL1" title="Force this attack to be a critical hit?">Crit</label>
<input class="move-z visually-hidden" type="checkbox" id="zL1"/>
<label class="btn z-btn gen-specific g7" for="zL1" title="Make this attack a Z-move?">Z</label>
<select class="move-hits hide">
<option value="2">2 hits</option>
<option value="3">3 hits</option>
<option value="4">4 hits</option>
<option value="5">5 hits</option>
</select>
<select class="stat-drops calc-trigger hide" title="How many times was this move used in a row?">>
<option value="1">Once</option>
<option value="2">Twice</option>
<option value="3">3 times</option>
<option value="4">4 times</option>
<option value="5">5 times</option>
</select>
<select class="metronome calc-trigger hide" title="How many times was this move used while holding Metronome?">
<option value="1">Once</option>
<option value="2">Twice</option>
<option value="3">3 times</option>
<option value="4">4 times</option>
<option value="5">5 times</option>
</select>
</div>
<div class="move2">
<select class="move-selector small-select"></select>
<input class="move-bp" value="0" />
<select class="move-type"></select>
<select class="move-cat gen-specific g4 g5 g6 g7">
<option value="Physical">Physical</option>
<option value="Special">Special</option>
</select>
<input class="move-crit visually-hidden" type="checkbox" id="critL2" />
<label class="btn crit-btn" for="critL2" title="Force this attack to be a critical hit?">Crit</label>
<input class="move-z visually-hidden" type="checkbox" id="zL2"/>
<label class="btn z-btn gen-specific g7" for="zL2" title="Make this attack a Z-move?">Z</label>
<select class="move-hits hide">
<option value="2">2 hits</option>
<option value="3">3 hits</option>
<option value="4">4 hits</option>
<option value="5">5 hits</option>
</select>
<select class="stat-drops calc-trigger hide" title="How many times was this move used in a row?">>
<option value="1">Once</option>
<option value="2">Twice</option>
<option value="3">3 times</option>
<option value="4">4 times</option>
<option value="5">5 times</option>
</select>
<select class="metronome calc-trigger hide" title="How many times was this move used while holding Metronome?">
<option value="1">Once</option>
<option value="2">Twice</option>
<option value="3">3 times</option>
<option value="4">4 times</option>
<option value="5">5 times</option>
</select>
</div>
<div class="move3">
<select class="move-selector small-select"></select>
<input class="move-bp" value="0" />
<select class="move-type"></select>
<select class="move-cat gen-specific g4 g5 g6 g7">
<option value="Physical">Physical</option>
<option value="Special">Special</option>
</select>
<input class="move-crit visually-hidden" type="checkbox" id="critL3" />
<label class="btn crit-btn" for="critL3" title="Force this attack to be a critical hit?">Crit</label>
<input class="move-z visually-hidden" type="checkbox" id="zL3"/>
<label class="btn z-btn gen-specific g7" for="zL3" title="Make this attack a Z-move?">Z</label>
<select class="move-hits hide">
<option value="2">2 hits</option>
<option value="3">3 hits</option>
<option value="4">4 hits</option>
<option value="5">5 hits</option>
</select>
<select class="stat-drops calc-trigger hide" title="How many times was this move used in a row?">>
<option value="1">Once</option>
<option value="2">Twice</option>
<option value="3">3 times</option>
<option value="4">4 times</option>
<option value="5">5 times</option>
</select>
<select class="metronome calc-trigger hide" title="How many times was this move used while holding Metronome?">
<option value="1">Once</option>
<option value="2">Twice</option>
<option value="3">3 times</option>
<option value="4">4 times</option>
<option value="5">5 times</option>
</select>
</div>
<div class="move4">
<select class="move-selector small-select"></select>
<input class="move-bp" value="0" />
<select class="move-type"></select>
<select class="move-cat gen-specific g4 g5 g6 g7">
<option value="Physical">Physical</option>
<option value="Special">Special</option>
</select>
<input class="move-crit visually-hidden" type="checkbox" id="critL4" />
<label class="btn crit-btn" for="critL4" title="Force this attack to be a critical hit?">Crit</label>
<input class="move-z visually-hidden" type="checkbox" id="zL4"/>
<label class="btn z-btn gen-specific g7" for="zL4" title="Make this attack a Z-move?">Z</label>
<select class="move-hits hide">
<option value="2">2 hits</option>
<option value="3">3 hits</option>
<option value="4">4 hits</option>
<option value="5">5 hits</option>
</select>
<select class="stat-drops calc-trigger hide" title="How many times was this move used in a row?">>
<option value="1">Once</option>
<option value="2">Twice</option>
<option value="3">3 times</option>
<option value="4">4 times</option>
<option value="5">5 times</option>
</select>
<select class="metronome calc-trigger hide" title="How many times was this move used while holding Metronome?">
<option value="1">Once</option>
<option value="2">Twice</option>
<option value="3">3 times</option>
<option value="4">4 times</option>
<option value="5">5 times</option>
</select>
</div>
</div>
</div>
</fieldset>
<fieldset class="panel panel-default field-info">
<legend class="panel-heading panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">> Field</a>
</legend>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
<div class="gen-specific g3 g4 g5 g6 g7" role="radiogroup" style="width: 10.6em; margin: 0 auto 5px;" title="Select the battle format.">
<span class="visually-hidden" id="selectBattleFormatInstruction">Select the battle format.</span>
<input class="visually-hidden calc-trigger" type="radio" name="format" value="Singles" id="singles-format" checked="checked" />
<label class="btn btn-left" for="singles-format">Singles</label>
<input class="visually-hidden calc-trigger" type="radio" name="format" value="Doubles" id="doubles-format" />
<label class="btn btn-right" for="doubles-format">Doubles</label>
</div>
<div class="gen-specific g6 g7" style="width: 22.0em; margin: 5px auto;" title="Select the current terrain.">
<input class="btn-input terrain-trigger calc-trigger" type="radio" name="terrain" value="" id="noterrain" checked="checked" /><label class="btn btn-small btn-left" for="noterrain">None</label>
<input class="btn-input terrain-trigger calc-trigger" type="radio" name="terrain" value="Electric" id="electric" /><label class="btn btn-small btn-mid" for="electric">Electric</label>
<input class="btn-input terrain-trigger calc-trigger" type="radio" name="terrain" value="Grassy" id="grassy" /><label class="btn btn-small btn-mid" for="grassy">Grassy</label>
<input class="btn-input terrain-trigger calc-trigger" type="radio" name="terrain" value="Misty" id="misty" /><label class="btn btn-small btn-mid" for="misty">Misty</label>
<input class="btn-input terrain-trigger calc-trigger" type="radio" name="terrain" value="Psychic" id="psychic" /><label class="btn btn-small btn-right" for="psychic">Psychic</label>
</div>
<hr class="gen-specific g6 g7" />
<div aria-labelledby="selectWeatherInstruction" role="radiogroup">
<span class="visually-hidden" id="selectWeatherInstruction">Select the current weather condition.</span>
<div class="gen-specific g3 g4 g5 g6 g7" style="width: 22.2em; margin: 5px auto;" title="Select the current weather condition.">
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="" id="clear" checked="checked" />
<label class="btn btn-small btn-left" for="clear">None</label>
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="Sun" id="sun" />
<label class="btn btn-small btn-mid" for="sun">Sun</label>
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="Rain" id="rain" />
<label class="btn btn-small btn-mid" for="rain">Rain</label>
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="Sand" id="sand" />
<label class="btn btn-small btn-mid" for="sand">Sand</label>
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="Hail" id="hail" />
<label class="btn btn-small btn-right" for="hail">Hail</label>
</div>
<div class="gen-specific g6 g7" style="width: 21.1em; margin: 5px auto;" title="Select the current weather condition.">
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="Harsh Sunshine" id="harsh-sunshine" />
<label class="btn btn-wide btn-left" for="harsh-sunshine">Harsh Sun</label>
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="Heavy Rain" id="heavy-rain" />
<label class="btn btn-wide btn-mid" for="heavy-rain">Heavy Rain</label>
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="Strong Winds" id="strong-winds" />
<label class="btn btn-xwide btn-right" for="strong-winds">Strong Winds</label>
</div>
</div>
<div aria-labelledby="selectGscWeatherInstruction" class="gen-specific g2 hide" role="radiogroup" style="width: 17.8em; margin: 0 auto 5px;" title="Select the current weather condition.">
<span class="visually-hidden" id="selectGscWeatherInstruction">Select the current weather condition.</span>
<input class="visually-hidden calc-trigger" type="radio" name="gscWeather" value="" id="gscClear" checked="checked" />
<label class="btn btn-small btn-left" for="gscClear">None</label>
<input class="visually-hidden calc-trigger" type="radio" name="gscWeather" value="Sun" id="gscSun" />
<label class="btn btn-small btn-mid" for="gscSun">Sun</label>
<input class="visually-hidden calc-trigger" type="radio" name="gscWeather" value="Rain" id="gscRain" />
<label class="btn btn-small btn-mid" for="gscRain">Rain</label>
<input class="visually-hidden calc-trigger" type="radio" name="gscWeather" value="Sand" id="gscSand" />
<label class="btn btn-small btn-right" for="gscSand">Sand</label>
</div>
<div class="gen-specific g4 g5 g6 g7" style="width: 5.3em; margin: 5px auto;" title="Is gravity in effect?">
<span hidden id="gravityInstruction">Is gravity in effect?</span>
<input aria-describedby="gravityInstruction" class="visually-hidden calc-trigger" type="checkbox" id="gravity" />
<label class="btn" for="gravity">Gravity</label>
</div>
<hr class="gen-specific g2 g3 g4 g5 g6 g7" />
<div class="btn-group gen-specific g7">
<div class="left" title="Is this Pokemon protecting?">
<input class="btn-input calc-trigger" type="checkbox" id="protectL" /><label class="btn btn-xwide" for="protectL">Protect</label>
</div>
<div class="right" title="Is this Pokemon protecting?">
<input class="btn-input calc-trigger" type="checkbox" id="protectR" /><label class="btn btn-xwide" for="protectR">Protect</label>
</div>
</div>
<div class="btn-group gen-specific g4 g5 g6 g7 g7">
<div class="left" title="Is Stealth Rock affecting this side of the field?">
<input class="btn-input calc-trigger" type="checkbox" id="srL" /><label class="btn btn-xwide" for="srL">Stealth Rock</label>
</div>
<div class="right" title="Is Stealth Rock affecting this side of the field?">
<input class="btn-input calc-trigger" type="checkbox" id="srR" /><label class="btn btn-xwide" for="srR">Stealth Rock</label>
</div>
</div>
<div class="btn-group gen-specific g3 g4 g5 g6 g7 g7">
<div class="left" title="Are there Spikes on this side of the field?">
<input class="btn-input calc-trigger" type="radio" name="spikesL" value="0" id="spikesL0" checked="checked" /><label class="btn btn-xsmall btn-left" for="spikesL0">0</label>
<input class="btn-input calc-trigger" type="radio" name="spikesL" value="1" id="spikesL1" /><label class="btn btn-xsmall btn-mid" for="spikesL1">1</label>
<input class="btn-input calc-trigger" type="radio" name="spikesL" value="2" id="spikesL2" /><label class="btn btn-xsmall btn-mid" for="spikesL2">2</label>
<input class="btn-input calc-trigger" type="radio" name="spikesL" value="3" id="spikesL3" /><label class="btn btn-wide btn-right" for="spikesL3">3 Spikes</label>
</div>
<div class="right" title="Are there Spikes on this side of the field?">
<input class="btn-input calc-trigger" type="radio" name="spikesR" value="0" id="spikesR0" checked="checked" /><label class="btn btn-xsmall btn-left" for="spikesR0">0</label>
<input class="btn-input calc-trigger" type="radio" name="spikesR" value="1" id="spikesR1" /><label class="btn btn-xsmall btn-mid" for="spikesR1">1</label>
<input class="btn-input calc-trigger" type="radio" name="spikesR" value="2" id="spikesR2" /><label class="btn btn-xsmall btn-mid" for="spikesR2">2</label>
<input class="btn-input calc-trigger" type="radio" name="spikesR" value="3" id="spikesR3" /><label class="btn btn-wide btn-right" for="spikesR3">3 Spikes</label>
</div>
</div>
<div class="btn-group gen-specific g2">
<div class="left" title="Are there Spikes on this side of the field?">
<input class="btn-input calc-trigger" type="checkbox" id="gscSpikesL" /><label class="btn" for="gscSpikesL">Spikes</label>
</div>
<div class="right" title="Are there Spikes on this side of the field?">
<input class="btn-input calc-trigger" type="checkbox" id="gscSpikesR" /><label class="btn" for="gscSpikesR">Spikes</label>
</div>
</div>
<div class="btn-group">
<div class="left" title="Is this Pokemon protected by Reflect and/or Light Screen?">
<input class="btn-input calc-trigger" type="checkbox" id="reflectL" /><label class="btn btn-left" for="reflectL">Reflect</label>
<input class="btn-input calc-trigger" type="checkbox" id="lightScreenL" /><label class="btn btn-xwide btn-right" for="lightScreenL">Light Screen</label>
</div>
<div class="right" title="Is this Pokemon protected by Reflect and/or Light Screen?">
<input class="btn-input calc-trigger" type="checkbox" id="reflectR" /><label class="btn btn-left" for="reflectR">Reflect</label>
<input class="btn-input calc-trigger" type="checkbox" id="lightScreenR" /><label class="btn btn-xwide btn-right" for="lightScreenR">Light Screen</label>
</div>
</div>
<div class="btn-group gen-specific g7">
<div class="left" title="Is this Pokemon protected by Aurora Veil?">
<input class="btn-input calc-trigger" type="checkbox" id="auroraVeilL" /><label class="btn btn-wide" for="auroraVeilL">Aurora Veil</label>
</div>
<div class="right" title="Is this Pokemon protected by Aurora Veil?">
<input class="btn-input calc-trigger" type="checkbox" id="auroraVeilR" /><label class="btn btn-wide" for="auroraVeilR">Aurora Veil</label>
</div>
</div>
<div class="btn-group gen-specific g2 g3 g4 g5 g6 g7">
<div class="left" title="Has this Pokemon been revealed with Foresight or Odor Sleuth?">
<input class="btn-input calc-trigger" type="checkbox" id="foresightL" /><label class="btn btn-wide" for="foresightL">Foresight</label>
</div>
<div class="right" title="Has this Pokemon been revealed with Foresight or Odor Sleuth?">
<input class="btn-input calc-trigger" type="checkbox" id="foresightR" /><label class="btn btn-wide" for="foresightR">Foresight</label>
</div>
</div>
<div class="btn-group gen-specific g3 g4 g5 g6 g7">
<div class="left" title="Has this Pokemon's power been boosted by an ally's Helping Hand?">
<input class="btn-input calc-trigger" type="checkbox" id="helpingHandL" /><label class="btn btn-xxwide" for="helpingHandL">Helping Hand</label>
</div>
<div class="right" title="Has this Pokemon's power been boosted by an ally's Helping Hand?">
<input class="btn-input calc-trigger" type="checkbox" id="helpingHandR" /><label class="btn btn-xxwide" for="helpingHandR">Helping Hand</label>
</div>
</div>
<div class="btn-group gen-specific g7">
<div class="left" title="Has this Pokemon's power been boosted by an ally's Battery?">
<input class="btn-input calc-trigger" type="checkbox" id="batteryL" /><label class="btn btn-xxwide" for="batteryL">Battery</label>
</div>
<div class="right" title="Has this Pokemon's power been boosted by an ally's Battery?">
<input class="btn-input calc-trigger" type="checkbox" id="batteryR" /><label class="btn btn-xxwide" for="batteryR">Battery</label>
</div>
</div>
<div class="btn-group gen-specific g5 g6 g7 g7">
<div class="left" title="Is this Pokemon protected by an ally's Friend Guard?">
<input class="btn-input calc-trigger" type="checkbox" id="friendGuardL" /><label class="btn btn-xxwide" for="friendGuardL">Friend Guard</label>
</div>
<div class="right" title="Is this Pokemon protected by an ally's Friend Guard?">
<input class="btn-input calc-trigger" type="checkbox" id="friendGuardR" /><label class="btn btn-xxwide" for="friendGuardR">Friend Guard</label>
</div>
</div>
<div class="btn-group gen-specific g6 g7">
<div class="left" title="Has this Pokemon used Minimize?">
<input class="btn-input calc-trigger" type="checkbox" id="minimL" /><label class="btn btn-xwide" for="minimL">Minimize</label>
</div>
<div class="right" title="Has this Pokemon used Minimize?">
<input class="btn-input calc-trigger" type="checkbox" id="minimR" /><label class="btn btn-xwide" for="minimR">Minimize</label>
</div>
</div>
<div class="btn-group gen-specific g7">
<div class="left" title="Has this Pokemon boosted all its stats one stage?">
<input class="btn-input calc-trigger" type="checkbox" id="StatBoostL" /><label class="btn btn-xwide" for="StatBoostL"><img src="docs/kommo-o.png"><br>+1 All Stats</label>
</div>
</div>
<div class="btn-group gen-specific g7">
<div class="left" title="Has this Pokemon used Extreme Evoboost?">
<input class="btn-input calc-trigger" type="checkbox" id="evoL" /><label class="btn btn-xwide" for="evoL"><img src="docs/eevee.png"><br>Extreme Evoboost</label>
</div>
</div>
</fieldset>
</div>
<div>
<fieldset class="panel holder-0">
<legend class="panel-heading panel-title">Damage Results</legend>
<table class="hide display" id="holder-2">
<thead>
<tr>
<th></th>
<th>Best Move</th>
<th>Damage (%)</th>
<th>Damage (px)</th>
<th>KO Chance</th>
<th>Type 1</th>
<th>Type 2</th>
<th>Ability</th>
<th>Item</th>
<th>Speed</th>
</tr>
</thead>
</table>
</fieldset>
</div>
<script type="text/javascript">
var linkExtension = '.html';
</script>
<!-- jquery.dataTables is incompatible with newer versions of jQuery -->
<script type="text/javascript" src="./js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> <!-- to be replaced (probably) -->
<script type="text/javascript" src="https://cdn.datatables.net/1.10.4/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/colvis/1.1.1/js/dataTables.colVis.min.js"></script>
<script type="text/javascript" src="./js/lodash.min.js"></script>
<script type="text/javascript" src="./select2/select2.min.js"></script>
<script type="text/javascript" src="./js/data/pokedex.js?877351a7"></script>
<script type="text/javascript" src="./js/data/setdex_sm.js?efec2a98"></script>
<script type="text/javascript" src="./js/data/setdex_xy.js?ec3b06ee"></script>
<script type="text/javascript" src="./js/data/setdex_bw.js?ddb6a887"></script>
<script type="text/javascript" src="./js/data/setdex_dpp.js?062d5c1e"></script>
<script type="text/javascript" src="./js/data/setdex_rse.js?5f1d09b7"></script>
<script type="text/javascript" src="./js/data/setdex_gsc.js?35ddf684"></script>
<script type="text/javascript" src="./js/data/setdex_rby.js?eb4a9c36"></script>
<script type="text/javascript" src="./js/data/stat_data.js?6dd50d73"></script>
<script type="text/javascript" src="./js/data/type_data.js?b9e89839"></script>
<script type="text/javascript" src="./js/data/nature_data.js?0b9893dd"></script>
<script type="text/javascript" src="./js/data/ability_data.js?a85b6f9d"></script>
<script type="text/javascript" src="./js/data/item_data.js?68432129"></script>
<script type="text/javascript" src="./js/data/move_data.js?aba22b97"></script>
<script type="text/javascript" src="./js/shared_controls.js?33e7aebe"></script>
<script type="text/javascript" src="./js/honkalculate_controls.js?73972a70"></script>
<script type="text/javascript" src="./js/damage.js?3e247d38"></script>
<script type="text/javascript" src="./js/damage_dpp.js?27014f8e"></script>
<script type="text/javascript" src="./js/damage_rse.js?21519192"></script>
<script type="text/javascript" src="./js/damage_gsc.js?5697bf01"></script>
<script type="text/javascript" src="./js/damage_rby.js?b4efa273"></script>
<script type="text/javascript" src="./js/ko_chance.js?8f66782c"></script>
<script type="text/javascript" src="./js/moveset_import_honk.js?144c830b"></script>
</body>
</html>