-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrandoms.html
1585 lines (1576 loc) · 102 KB
/
randoms.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
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>
<meta charset="UTF-8" />
<title>Pokémon Damage Calculator</title>
<link type="text/css" rel="stylesheet" href="./js/vendor/select2/select2.css" />
<link type="text/css" rel="stylesheet" href="./css/main.css?05932931" />
<link type="text/css" rel="stylesheet" href="./css/vendor/bootstrap.css" />
</head>
<body>
<nav><div class="header"><div class="header-inner">
<ul class="nav">
<li><a class="button nav-first" href="https://battling.p-insurgence.com"><img src="./img/insurgencelogo.png" href="https://p-insurgence.com/" style="height:40px">Battle</a></li>
<li><a class="button" href="https://forums.p-insurgence.com/">Forums</a></li>
<li><a class="button" href="https://discord.p-insurgence.com/">Discord</a></li>
<li><a class="button nav-last" href="https://github.com/AWildNoob/insurgence-damagecalc/">GitHub</a></li>
</ul>
<div style="clear:both"></div>
</div></div></nav>
<div class="wrapper">
<div aria-label="Settings" role="region">
<span class="title-text" style="margin-right:18em">Pokémon Insurgence Damage Calculator</span>
<span class="genSelection" aria-labelledby="selectGenInstruction" role="radiogroup" title="Select the generation.">
<span class="visually-hidden" id="selectGenInstruction">Select the generation.</span>
<input class="gen visually-hidden" type="radio" name="gen" value="6" id="gen6" checked="checked" />
</span>
<span class="notationSelection" aria-labelledby="selectNotationInstruction" role="radiogroup" title="Select the output notation.">
<span class="visually-hidden" id="selectNotationInstruction">Select the output notation.</span>
<input class="notation visually-hidden" type="radio" name="notation" id="pixels" value="px" /><label class="btn btn-small btn-left" for="pixels">48th</label>
<input class="notation visually-hidden" type="radio" name="notation" id="percentage" value="%" /><label class="btn btn-small btn-right" for="percentage">100%</label>
</span>
<span class="modeSelection" aria-labelledby="selectModeInstruction" role="radiogroup" title="Select the calculator's mode of function.">
<span class="visually-hidden" id="selectModeInstruction">Select the calculator's mode of function.</span>
<input class="mode visually-hidden" type="radio" name="mode" id="one-vs-one" /><label class="btn 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-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-mid" for="all-vs-one">All vs One</label>
<input class="mode visually-hidden" type="radio" name="mode" id="randoms" checked="checked" /><label class="btn btn-right" for="randoms">Random Battles</label>
</span>
</div>
<hr />
<div aria-label="Move selection" class="move-result-group" role="region" title="Select a move to show detailed results.">
<div aria-labelledby="resultHeaderL" class="move-result-subgroup" role="radiogroup">
<div class="result-move-header"><span id="resultHeaderL">Pokémon 1's Moves (select one to show detailed results)</span>
</div>
<div>
<input class="result-move visually-hidden" type="radio" name="resultMove" id="resultMoveL1" checked="checked" aria-describedby="resultDamageL1" />
<label class="btn btn-xxxwide btn-top" for="resultMoveL1">Loading...</label>
<span id="resultDamageL1">??? - ???%</span>
</div>
<div>
<input class="result-move visually-hidden" type="radio" name="resultMove" id="resultMoveL2" aria-describedby="resultDamageL2" />
<label class="btn btn-xxxwide btn-mid" for="resultMoveL2">Loading...</label>
<span id="resultDamageL2">??? - ???%</span>
</div>
<div>
<input class="result-move visually-hidden" type="radio" name="resultMove" id="resultMoveL3" aria-describedby="resultDamageL3" />
<label class="btn btn-xxxwide btn-mid" for="resultMoveL3">Loading...</label>
<span id="resultDamageL3">??? - ???%</span>
</div>
<div>
<input class="result-move visually-hidden" type="radio" name="resultMove" id="resultMoveL4" aria-describedby="resultDamageL4" />
<label class="btn btn-xxxwide btn-bottom" for="resultMoveL4">Loading...</label>
<span id="resultDamageL4">??? - ???%</span>
</div>
</div>
<div aria-labelledby="resultHeaderR" class="move-result-subgroup" role="radiogroup">
<div class="result-move-header"><span id="resultHeaderR">Pokémon 2's Moves (select one to show detailed results)</span>
</div>
<div>
<input class="result-move visually-hidden" type="radio" name="resultMove" id="resultMoveR1" aria-describedby="resultDamageR1" />
<label class="btn btn-xxxwide btn-top" for="resultMoveR1">Loading...</label>
<span id="resultDamageR1">??? - ???%</span>
</div>
<div>
<input class="result-move visually-hidden" type="radio" name="resultMove" id="resultMoveR2" aria-describedby="resultDamageR2" />
<label class="btn btn-xxxwide btn-mid" for="resultMoveR2">Loading...</label>
<span id="resultDamageR2">??? - ???%</span>
</div>
<div>
<input class="result-move visually-hidden" type="radio" name="resultMove" id="resultMoveR3" aria-describedby="resultDamageR3" />
<label class="btn btn-xxxwide btn-mid" for="resultMoveR3">Loading...</label>
<span id="resultDamageR3">??? - ???%</span>
</div>
<div>
<input class="result-move visually-hidden" type="radio" name="resultMove" id="resultMoveR4" aria-describedby="resultDamageR4" />
<label class="btn btn-xxxwide btn-bottom" for="resultMoveR4">Loading...</label>
<span id="resultDamageR4">??? - ???%</span>
</div>
</div>
</div>
<div aria-label="Calculation results" class="main-result-group" role="region">
<div class="big-text"><span id="mainResult">Loading...</span>
</div>
<div class="small-text"><span id="damageValues">(If you see this message for more than a few seconds, try enabling JavaScript.)</span>
</div>
</div>
<div aria-label="Pokémon 1" class="panel" role="region">
<fieldset class="poke-info" id="p1">
<legend align="center">Pokémon 1</legend>
<input type="text" class="set-selector calc-trigger" />
<span id="importedSetsOptions" style="width:auto; display:none">
<input type="checkbox" id="importedSets" /> Only show imported sets <br />
<button id="clearSets">Clear Custom Sets</button>
</span>
<div class="info-group top">
<div>
<label>Type</label>
<select aria-label="type1" class="type1 terrain-trigger calc-trigger"></select>
<select aria-label="type2" class="type2 terrain-trigger calc-trigger"></select>
<small class="right">(<a class="analysis" target="_blank" href="">Smogon analysis</a>)</small>
</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 for="levelL1">Level</label>
<input class="level calc-trigger" id="levelL1" value="100" />
</div>
<div class="hide">
<label for="weightL1">Weight (kg)</label>
<input class="weight calc-trigger" id="weightL1" value="10.0" />
</div>
</div>
<div class="info-group">
<table>
<thead>
<tr>
<th></th>
<th scope="col">Base</th>
<th class="gen-specific g3 g4 g5 g6 g7 g8" scope="col">IVs</th>
<th class="gen-specific g3 g4 g5 g6 g7 g8" scope="col">EVs</th>
<th class="gen-specific g1 g2 hide" scope="col">DVs</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr class="hp">
<th scope="row">
<label>HP</label>
</th>
<td>
<input class="base calc-trigger" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="ivs calc-trigger" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="evs calc-trigger" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs calc-trigger" value="15" disabled="disabled" />
</td>
<td><span class="total">341</span>
</td>
<td></td>
</tr>
<tr class="at">
<th scope="row">
<label>Attack</label>
</th>
<td>
<input class="base calc-trigger" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="ivs calc-trigger" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="evs calc-trigger" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs calc-trigger" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost calc-trigger">
<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">
<th scope="row">
<label>Defense</label>
</th>
<td>
<input class="base calc-trigger" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="ivs calc-trigger" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="evs calc-trigger" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs calc-trigger" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost calc-trigger">
<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 g8">
<th scope="row">
<label>Sp. Atk</label>
</th>
<td>
<input class="base calc-trigger" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="ivs calc-trigger" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="evs calc-trigger" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs calc-trigger" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost calc-trigger">
<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 g8">
<th scope="row">
<label>Sp. Def</label>
</th>
<td>
<input class="base calc-trigger" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="ivs calc-trigger" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="evs calc-trigger" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs calc-trigger" value="15" disabled="disabled" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost calc-trigger">
<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">
<th scope="row">
<label>Special</label>
</th>
<td>
<input class="base calc-trigger" value="100" />
</td>
<td>
<input class="dvs calc-trigger" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost calc-trigger">
<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">
<th scope="row">
<label>Speed</label>
</th>
<td>
<input class="base calc-trigger" value="100" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="ivs calc-trigger" value="31" />
</td>
<td class="gen-specific g3 g4 g5 g6 g7 g8">
<input class="evs calc-trigger" type="number" min="0" max="252" step="4" value="0" />
</td>
<td class="gen-specific g1 g2 hide">
<input class="dvs calc-trigger" value="15" />
</td>
<td><span class="total">236</span>
</td>
<td>
<select class="boost calc-trigger">
<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>
<td><span class="totalMod">---</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="info-group info-selectors">
<div class="gen-specific g3 g4 g5 g6 g7 g8">
<label for="natureL1">Nature</label>
<select class="nature calc-trigger" id="natureL1">
<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 g8">
<label for="abilityL1">Ability</label>
<select class="ability terrain-trigger calc-trigger" id="abilityL1"></select>
<input hidden type="checkbox" title= "Is this ability active?" class="abilityToggle calc-trigger">
</div>
<div class="gen-specific g2 g3 g4 g5 g6 g7 g8">
<label for="itemL1">Item</label>
<select class="item terrain-trigger calc-trigger" id="itemL1"></select>
</div>
<div class="pool">
<div class="ability-pool gen-specific g3 g4 g5 g6 g7 g8">
<div>Ability Pool</div>
<small class="extraSetAbilities"></small>
</div>
<div class="item-pool gen-specific g2 g3 g4 g5 g6 g7 g8">
<div>Item Pool</div>
<small class="extraSetItems"></small>
</div>
</div>
<div>
<label for="statusL1">Status</label>
<select class="status calc-trigger" id="statusL1">
<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 aria-label="Toxic counter" class="toxic-counter calc-trigger 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 for="currentHpL1">Current HP</label>
<input class="current-hp calc-trigger" id="currentHpL1" value="341" />/<span class="max-hp">341</span> (
<input class="percent-hp calc-trigger" value="100" />%)
<input class="visually-hidden max calc-trigger btn-input" type="checkbox" id="maxL" />
<label class="btn btn-xwide gen-specific g8" for="maxL"
title="Use the corresponding Max Move?">Dynamax</label>
<br />
<br />
Health <div class="hpbar"></div>
</div>
<div hidden id="criticalHitInstruction">Force this attack to be a critical hit?</div>
<div hidden id="zMoveInstruction">Make this attack a Z-move?</div>
<div class="move1">
<select class="move-selector calc-trigger small-select"></select>
<input class="move-bp calc-trigger" value="50" />
<select class="move-type calc-trigger"></select>
<select class="move-cat calc-trigger gen-specific g4 g5 g6 g7 g8">
<option value="Physical">Physical</option>
<option value="Special">Special</option>
</select>
<input aria-describedby="criticalHitInstruction" class="move-crit calc-trigger visually-hidden" type="checkbox" id="critR1" />
<label class="btn crit-btn" for="critR1" title="Force this attack to be a critical hit?">Crit</label>
<input aria-describedby="zMoveInstruction" class="move-z calc-trigger visually-hidden" type="checkbox" id="zR1"/>
<label class="btn z-btn gen-specific g7 g8" for="zR1" title="Make this attack a Z-move?">Z</label>
<select class="move-hits calc-trigger 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 successfully and consecutively used while holding Metronome before this turn?">
<option value="0">Never</option>
<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="aura-blast calc-trigger hide" title="How many charges does the user have?">
<option value="1">1 hit</option>
<option value="2">2 hits</option>
<option value="3">3 hits</option>
<option value="4">4 hits</option>
<option value="5">5 hits</option>
<option value="6">6 hits</option>
<option value="7">7 hits</option>
</select>
<select class="dynamic-fury calc-trigger hide" title="How many charges does the user have?">
<option value="1">1 hit</option>
<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>
</div>
<div class="move2">
<select class="move-selector calc-trigger small-select"></select>
<input class="move-bp calc-trigger" value="0" />
<select class="move-type calc-trigger"></select>
<select class="move-cat calc-trigger gen-specific g4 g5 g6 g7 g8">
<option value="Physical">Physical</option>
<option value="Special">Special</option>
</select>
<input aria-describedby="criticalHitInstruction" class="move-crit calc-trigger visually-hidden" type="checkbox" id="critR2" />
<label class="btn crit-btn" for="critR2" title="Force this attack to be a critical hit?">Crit</label>
<input aria-describedby="zMoveInstruction" class="move-z calc-trigger visually-hidden" type="checkbox" id="zR2"/>
<label class="btn z-btn gen-specific g7 g8" for="zR2" title="Make this attack a Z-move?">Z</label>
<select class="move-hits calc-trigger 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 successfully and consecutively used while holding Metronome before this turn?">
<option value="0">Never</option>
<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="aura-blast calc-trigger hide" title="How many charges does the user have?">
<option value="1">1 hit</option>
<option value="2">2 hits</option>
<option value="3">3 hits</option>
<option value="4">4 hits</option>
<option value="5">5 hits</option>
<option value="6">6 hits</option>
<option value="7">7 hits</option>
</select>
<select class="dynamic-fury calc-trigger hide" title="How many charges does the user have?">
<option value="1">1 hit</option>
<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>
</div>
<div class="move3">
<select class="move-selector calc-trigger small-select"></select>
<input class="move-bp calc-trigger" value="0" />
<select class="move-type calc-trigger"></select>
<select class="move-cat calc-trigger gen-specific g4 g5 g6 g7 g8">
<option value="Physical">Physical</option>
<option value="Special">Special</option>
</select>
<input aria-describedby="criticalHitInstruction" class="move-crit calc-trigger visually-hidden" type="checkbox" id="critR3" />
<label class="btn crit-btn" for="critR3" title="Force this attack to be a critical hit?">Crit</label>
<input aria-describedby="zMoveInstruction" class="move-z calc-trigger visually-hidden" type="checkbox" id="zR3"/>
<label class="btn z-btn gen-specific g7 g8" for="zR3" title="Make this attack a Z-move?">Z</label>
<select class="move-hits calc-trigger 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 successfully and consecutively used while holding Metronome before this turn?">
<option value="0">Never</option>
<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="aura-blast calc-trigger hide" title="How many charges does the user have?">
<option value="1">1 hit</option>
<option value="2">2 hits</option>
<option value="3">3 hits</option>
<option value="4">4 hits</option>
<option value="5">5 hits</option>
<option value="6">6 hits</option>
<option value="7">7 hits</option>
</select>
<select class="dynamic-fury calc-trigger hide" title="How many charges does the user have?">
<option value="1">1 hit</option>
<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>
</div>
<div class="move4">
<select class="move-selector calc-trigger small-select"></select>
<input class="move-bp calc-trigger" value="0" />
<select class="move-type calc-trigger"></select>
<select class="move-cat calc-trigger gen-specific g4 g5 g6 g7 g8">
<option value="Physical">Physical</option>
<option value="Special">Special</option>
</select>
<input aria-describedby="criticalHitInstruction" class="move-crit calc-trigger visually-hidden" type="checkbox" id="critR4" />
<label class="btn crit-btn" for="critR4" title="Force this attack to be a critical hit?">Crit</label>
<input aria-describedby="zMoveInstruction" class="move-z calc-trigger visually-hidden" type="checkbox" id="zR4"/>
<label class="btn z-btn gen-specific g7 g8" for="zR4" title="Make this attack a Z-move?">Z</label>
<select class="move-hits calc-trigger 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 successfully and consecutively used while holding Metronome before this turn?">
<option value="0">Never</option>
<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="aura-blast calc-trigger hide" title="How many charges does the user have?">
<option value="1">1 hit</option>
<option value="2">2 hits</option>
<option value="3">3 hits</option>
<option value="4">4 hits</option>
<option value="5">5 hits</option>
<option value="6">6 hits</option>
<option value="7">7 hits</option>
</select>
<select class="dynamic-fury calc-trigger hide" title="How many charges does the user have?">
<option value="1">1 hit</option>
<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>
</div>
<div class="pool move-pool gen-specific g1 g2 g3 g4 g5 g6 g7 g8">
<div>Move Pool</div>
<small class="extraSetMoves"></small>
</div>
</fieldset>
</div>
<div class="panel">
<div aria-label="Field information" role="region">
<fieldset class="field-info">
<legend align="center">Field</legend>
<div aria-labelledby="selectBattleFormatInstruction" class="gen-specific g3 g4 g5 g6 g7 g8" 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 aria-labelledby="selectTerrainInstruction" class="gen-specific g6 g7 g8" role="group" title="Select the current terrain.">
<span class="visually-hidden" id="selectTerrainInstruction">Select the current terrain.</span>
<input class="visually-hidden terrain-trigger calc-trigger" type="checkbox" name="terrain" value="Electric" id="electric" /><label class="btn btn-xxxwide btn-left" for="electric">Electric Terrain</label>
<input class="visually-hidden terrain-trigger calc-trigger" type="checkbox" name="terrain" value="Grassy" id="grassy" /><label class="btn btn-xxxwide btn-mid" for="grassy">Grassy Terrain</label>
<input class="visually-hidden terrain-trigger calc-trigger" type="checkbox" name="terrain" value="Misty" id="misty" /><label class="btn btn-xxxwide btn-right" for="misty">Misty Terrain</label>
<input class="visually-hidden terrain-trigger calc-trigger" type="checkbox" name="terrain" value="Psychic" id="psychic" /><label class="btn btn-xxxwide btn-mid" for="psychic">Psychic Terrain</label>
</div>
<hr class="gen-specific g6 g7 g8" />
<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 g8" 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 g8" 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-xxxwide btn-left" for="harsh-sunshine">Harsh Sunshine</label>
<input class="visually-hidden calc-trigger" type="radio" name="weather" value="Heavy Rain" id="heavy-rain" />
<label class="btn btn-xxxwide 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-xxxwide 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 g8" style="margin: 5px auto;">
<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" style="width:6em; margin-right:0px" title="Is gravity in effect?">Gravity</label>
<span hidden id="sleetInstruction">Is Sleet in effect?</span>
<input aria-describedby="sleetInstruction" class="visually-hidden calc-trigger" type="checkbox" id="sleet" />
<label class="btn" for="sleet" style="width:6em; margin-left:0px" title="Is Sleet in effect?">Sleet</label>
</div>
<hr class="gen-specific g2 g3 g4 g5 g6 g7 g8" />
<table class="field">
<thead>
<tr>
<th scope="col"><div class="visually-hidden">Pokémon 1's side</div></th>
<th scope="col"><div class="visually-hidden">Pokémon 2's side</div></th>
</tr>
</thead>
<tbody>
<tr class="gen-specific g4 g5 g6 g7 g8">
<div hidden id="selectStealthRockInstruction">Is Stealth Rock affecting this side of the field?</div>
<td><div class="left" title="Is Stealth Rock affecting this side of the field?">
<input aria-describedby="selectStealthRockInstruction" class="visually-hidden calc-trigger" type="checkbox" id="srL" />
<label class="btn btn-xwide" for="srL">Stealth Rock</label>
</div></td>
<td><div class="right" title="Is Stealth Rock affecting this side of the field?">
<input aria-describedby="selectStealthRockInstruction" class="visually-hidden calc-trigger" type="checkbox" id="srR" />
<label class="btn btn-xwide" for="srR">Stealth Rock</label>
</div></td>
</tr>
<tr class="gen-specific g4 g5 g6 g7 g8">
<div hidden id="selectFoundryStealthRockInstruction">Is Stealth Rock affecting this side of the field?</div>
<td><div class="left" title="Is Foundry Stealth Rock affecting this side of the field?">
<input aria-describedby="selectFoundryStealthRockInstruction" class="visually-hidden calc-trigger" type="checkbox" id="foundrysrL" />
<label class="btn btn-xwide" for="foundrysrL">Foundry</label>
</div></td>
<td><div class="right" title="Is Foundry Stealth Rock affecting this side of the field?">
<input aria-describedby="selectFoundryStealthRockInstruction" class="visually-hidden calc-trigger" type="checkbox" id="foundrysrR" />
<label class="btn btn-xwide" for="foundrysrR">Foundry</label>
</div></td>
</tr>
<tr class="gen-specific g8">
<div hidden id="selectSteelsurgeInstruction">Is Steelsurge affecting this side of the field?</div>
<td><div class="left" title="Is Steelsurge affecting this side of the field?">
<input aria-describedby="selectSteelsurgeInstruction" class="visually-hidden calc-trigger" type="checkbox" id="steelsurgeL" />
<label class="btn btn-xwide" for="steelsurgeL">Steelsurge</label>
</div></td>
<td><div class="right" title="Is Steelsurge affecting this side of the field?">
<input aria-describedby="selectSteelsurgeInstruction" class="visually-hidden calc-trigger" type="checkbox" id="steelsurgeR" />
<label class="btn btn-xwide" for="steelsurgeR">Steelsurge</label>
</div></td>
</tr>
<tr class="gen-specific g3 g4 g5 g6 g7 g8">
<div hidden id="selectSpikeInstruction">Are there Spikes on this side of the field?</div>
<td><div aria-labelledby="selectSpikeInstruction" class="left" role="radiogroup" title="Are there Spikes on this side of the field?">
<input class="visually-hidden 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="visually-hidden calc-trigger" type="radio" name="spikesL" value="1" id="spikesL1" />
<label class="btn btn-xsmall btn-mid" for="spikesL1">1</label>
<input class="visually-hidden calc-trigger" type="radio" name="spikesL" value="2" id="spikesL2" />
<label class="btn btn-xsmall btn-mid" for="spikesL2">2</label>
<input class="visually-hidden calc-trigger" type="radio" name="spikesL" value="3" id="spikesL3" />
<label class="btn btn-wide btn-right" for="spikesL3">3 Spikes</label>
</div></td>
<td><div aria-labelledby="selectSpikeInstruction" class="right" role="radiogroup" title="Are there Spikes on this side of the field?">
<input class="visually-hidden calc-trigger" type="radio" name="spikesR" value="3" id="spikesR3" />
<label class="btn btn-wide btn-left" for="spikesR3">3 Spikes</label>
<input class="visually-hidden calc-trigger" type="radio" name="spikesR" value="2" id="spikesR2" />
<label class="btn btn-xsmall btn-mid" for="spikesR2">2</label>
<input class="visually-hidden calc-trigger" type="radio" name="spikesR" value="1" id="spikesR1" />
<label class="btn btn-xsmall btn-mid" for="spikesR1">1</label>
<input class="visually-hidden calc-trigger" type="radio" name="spikesR" value="0" id="spikesR0" checked="checked" />
<label class="btn btn-xsmall btn-right" for="spikesR0">0</label>
</div></td>
</tr>
<tr class="gen-specific g2">
<td><div class="left" title="Are there Spikes on this side of the field?">
<input aria-describedby="selectSpikeInstruction" class="visually-hidden calc-trigger" type="checkbox" id="gscSpikesL" />
<label class="btn" for="gscSpikesL">Spikes</label>
</div></td>
<td><div class="right" title="Are there Spikes on this side of the field?">
<input aria-describedby="selectSpikeInstruction" class="visually-hidden calc-trigger" type="checkbox" id="gscSpikesR" />
<label class="btn" for="gscSpikesR">Spikes</label>
</div></td>
</tr>
<tr>
<td><div class="left" title="Is this Pokémon protected by Reflect and/or Light Screen?">
<div hidden id="selectScreenInstruction">Is this Pokémon protected by Reflect and/or Light Screen?</div>
<input aria-describedby="selectScreenInstruction" class="visually-hidden calc-trigger" type="checkbox" id="reflectL" />
<label class="btn btn-left" for="reflectL">Reflect</label>
<input aria-describedby="selectScreenInstruction" class="visually-hidden calc-trigger" type="checkbox" id="lightScreenL" />
<label class="btn btn-xwide btn-right" for="lightScreenL">Light Screen</label>
</div></td>
<td><div class="right" title="Is this Pokémon protected by Reflect and/or Light Screen?">
<input aria-describedby="selectScreenInstruction" class="visually-hidden calc-trigger" type="checkbox" id="lightScreenR" />
<label class="btn btn-xwide btn-left" for="lightScreenR">Light Screen</label>
<input aria-describedby="selectScreenInstruction" class="visually-hidden calc-trigger" type="checkbox" id="reflectR" />
<label class="btn btn-right" for="reflectR">Reflect</label>
</div></td>
</tr>
<tr class="gen-specific g2 g3 g4 g5 g6 g7 g8">
<td><div class="left" title="Is this Pokémon protected?">
<div hidden id="selectProtectInstruction">Is this Pokémon protected?</div>
<input aria-describedby="selectProtectInstruction" class="visually-hidden calc-trigger" type="checkbox" id="protectL" />
<label class="btn btn-wide" for="protectL">Protect</label>
</div></td>
<td><div class="right" title="Is this Pokémon protected?">
<input aria-describedby="selectProtectInstruction" class="visually-hidden calc-trigger" type="checkbox" id="protectR" />
<label class="btn btn-wide" for="protectR">Protect</label>
</div></td>
</tr>
<tr>
<td><div class="left" title="Has this Pokémon been affected by Leech Seed?">
<div hidden id="selectLeechSeedInstruction">Has this Pokémon been affected by Leech Seed?</div>
<input aria-describedby="selectLeechSeedInstruction" class="visually-hidden calc-trigger" type="checkbox" id="leechSeedL" />
<label class="btn btn-wide" for="leechSeedL">Leech Seed</label>
</div></td>
<td><div class="right" title="Has this Pokémon been affected by Leech Seed?">
<input aria-describedby="selectLeechSeedInstruction" class="visually-hidden calc-trigger" type="checkbox" id="leechSeedR" />
<label class="btn btn-wide" for="leechSeedR">Leech Seed</label>
</div></td>
</tr>
<tr class="gen-specific g2 g3 g4 g5 g6 g7 g8">
<td><div class="left" title="Has this Pokémon been revealed with Foresight or Odor Sleuth?">
<div hidden id="selectRevealInstruction">Has this Pokémon been revealed with Foresight or Odor Sleuth?</div>
<input aria-describedby="selectRevealInstruction" class="visually-hidden calc-trigger" type="checkbox" id="foresightL" />
<label class="btn btn-wide" for="foresightL">Foresight</label>
</div></td>
<td><div class="right" title="Has this Pokémon been revealed with Foresight or Odor Sleuth?">
<input aria-describedby="selectRevealInstruction" class="visually-hidden calc-trigger" type="checkbox" id="foresightR" />
<label class="btn btn-wide" for="foresightR">Foresight</label>
</div></td>
</tr>
<tr class="gen-specific g3 g4 g5 g6 g7 g8">
<td><div class="left" title="Has this Pokémon's power been boosted by an ally's Helping Hand?">
<div hidden id="selectHelpingHandInstruction">Has this Pokémon's power been boosted by an ally's Helping Hand?</div>
<input aria-describedby="selectHelpingHandInstruction" class="visually-hidden calc-trigger" type="checkbox" id="helpingHandL" />
<label class="btn btn-xxwide" for="helpingHandL">Helping Hand</label>
</div></td>
<td><div class="right" title="Has this Pokémon's power been boosted by an ally's Helping Hand?">
<input aria-describedby="selectHelpingHandInstruction" class="visually-hidden calc-trigger" type="checkbox" id="helpingHandR" />
<label class="btn btn-xxwide" for="helpingHandR">Helping Hand</label>
</div></td>
</tr>
<tr class="gen-specific g4 g5 g6 g7 g8">
<td><div class="left" title="Has this Pokémon's speed been boosted by Tailwind?">
<div hidden id="selectTailwindInstruction">Has this Pokémon's power been boosted by an ally's Helping Hand?</div>
<input aria-describedby="selectTailwindInstruction" class="visually-hidden calc-trigger" type="checkbox" id="tailwindL" />
<label class="btn btn-xxwide" for="tailwindL">Tailwind</label>
</div></td>
<td><div class="right" title="Has this Pokémon's speed been boosted by Tailwind?">
<input aria-describedby="selectTailwindInstruction" class="visually-hidden calc-trigger" type="checkbox" id="tailwindR" />
<label class="btn btn-xxwide" for="tailwindR">Tailwind</label>
</div></td>
</tr>
<tr class="gen-specific g5 g6 g7 g8">
<td><div class="left" title="Is the Pokémon protected by an ally's Friend Guard?">
<div hidden id="selectFriendGuardInstruction">Is the Pokémon protected by an ally's Friend Guard?</div>
<input aria-describedby="selectFriendGuardInstruction" class="visually-hidden calc-trigger" type="checkbox" id="friendGuardL" />
<label class="btn btn-xxwide" for="friendGuardL">Friend Guard</label>
</div></td>
<td><div class="right" title="Is the Pokémon protected by an ally's Friend Guard?">
<input aria-describedby="selectFriendGuardInstruction" class="visually-hidden calc-trigger" type="checkbox" id="friendGuardR" />
<label class="btn btn-xxwide" for="friendGuardR">Friend Guard</label>
</div></td>
</tr>
<tr class="gen-specific g7 g8">
<td><div class="left" title="Is the Pokémon protected by an ally's Aurora Veil?">
<div hidden id="selectAuroraVeilInstruction">Is the Pokémon protected by an ally's Aurora Veil?</div>
<input aria-describedby="selectAuroraVeilInstruction" class="visually-hidden calc-trigger" type="checkbox" id="auroraVeilL" />
<label class="btn btn-xxwide" for="auroraVeilL">Aurora Veil</label>
</div></td>
<td><div class="right" title="Is the Pokémon protected by an ally's Aurora Veil?">
<input aria-describedby="selectAuroraVeilInstruction" class="visually-hidden calc-trigger" type="checkbox" id="auroraVeilR" />
<label class="btn btn-xxwide" for="auroraVeilR">Aurora Veil</label>
</div></td>
</tr>
<tr class="gen-specific g7">
<td><div class="left" title="Has the Pokémon boosted all its stats one stage?">
<div hidden id="selectStatBoostInstruction">Has the Pokémon boosted all its stats one stage?</div>
<input aria-describedby="selectStatBoostInstruction" class="visually-hidden calc-trigger" type="checkbox" id="StatBoostL" />
<label class="btn btn-xxwide" for="StatBoostL">+1 All Stats</label>
</div></td>
<td><div class="right" title="Has the Pokémon boosted all its stats one stage?">
<input aria-describedby="selectStatBoostInstruction" class="visually-hidden calc-trigger" type="checkbox" id="StatBoostR" />
<label class="btn btn-xxwide" for="StatBoostR">+1 All Stats</label>
</div></td>
</tr>
<tr class="gen-specific g7 g8">
<td><div class="left" title="Is the Pokémon boosted by an ally's Battery ability?">
<div hidden id="selectBatteryInstruction">Is the Pokémon boosted by an ally's Battery ability?</div>
<input aria-describedby="selectBatteryInstruction" class="visually-hidden calc-trigger" type="checkbox" id="batteryL" />
<label class="btn btn-xxwide" for="batteryL">Battery</label>
</div></td>
<td><div class="right" title="Is the Pokémon boosted by an ally's Battery ability?">
<input aria-describedby="selectBatteryInstruction" class="visually-hidden calc-trigger" type="checkbox" id="batteryR" />
<label class="btn btn-xxwide" for="batteryR">Battery</label>
</div></td>
</tr>
<tr class="gen-specific g2 g3 g4 g5 g6 g7 g8">
<td><div class="left" title="Is the defending Pokémon switching out?">
<div hidden id="selectSwitchingInstruction">Is the defending Pokémon switching out?</div>
<input aria-describedby="selectSwitchingInstruction" class="visually-hidden calc-trigger" type="checkbox" id="switchingL" />
<label class="btn btn-xxwide" for="switchingL">Switching Out</label>
</div></td>
<td><div class="right" title="Is the defending Pokémon switching out?">
<input aria-describedby="selectSwitchingInstruction" class="visually-hidden calc-trigger" type="checkbox" id="switchingR" />
<label class="btn btn-xxwide" for="switchingR">Switching Out</label>
</div></td>
</tr>
<tr>
<td><div class="left" title="Export the leftmost Pokémon set">
<button id="exportL">Export</button>
</div></td>
<td><div class="right" title="Export the rightmost Pokémon set">
<button id="exportR">Export</button>
</div></td>
</tr>
</tbody>
</table>
</fieldset>
</div>
</div>
<div aria-label="Pokémon 2" role="region" class="panel">
<fieldset class="poke-info" id="p2">
<legend align="center">Pokémon 2</legend>
<input type="text" class="set-selector calc-trigger" />
<div class="info-group top">
<div>
<label>Type</label>
<select aria-label="Type 1" class="type1 terrain-trigger calc-trigger"></select>
<select aria-label="Type 2" class="type2 terrain-trigger calc-trigger"></select>
<small class="right">(<a class="analysis" target="_blank" href="">Smogon analysis</a>)</small>
</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 for="levelR1">Level</label>
<input class="level calc-trigger" id="levelR1" value="100" />
</div>
<div class="hide">
<label for="weightR1">Weight (kg)</label>
<input class="weight calc-trigger" id="weightR1" value="10.0" />
</div>
</div>
<div class="info-group">
<table>
<thead>
<tr>
<th></th>
<th scope="col">Base</th>
<th class="gen-specific g3 g4 g5 g6 g7 g8" scope="col">IVs</th>
<th class="gen-specific g3 g4 g5 g6 g7 g8" scope="col">EVs</th>
<th class="gen-specific g1 g2 hide" scope="col">DVs</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr class="hp">
<th scope="row">