-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1443 lines (1433 loc) · 104 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
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="us">
<link rel="icon" type="image/png" href="image_res/Favicon-32px.ico">
<link rel="image_src" href="image_res/Logo Nimbasa City Post PNG.png" />
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#">
<head>
<meta charset="UTF-8" />
<title>宝可梦伤害计算器</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="script_res/select2.css" />
<link type="text/css" rel="stylesheet" href="script_res/ap_calc.css" />
<link type="text/css" rel="stylesheet" href="script_res/nb_calc.css" />
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet">
</head>
<body class="dark">
<div class="header">
<div class="wrapper">
<div style="clear:both"></div>
</div>
</div>
<div class="wrapper">
<div>
<span class="title-text" lang="ch">宝可梦伤害计算器-VGC2024版</span>
<span class="generations" title="选择游戏世代.">
<input class="gen btn-input" type="radio" name="gen" value="1" id="gen1" />
<label class="btn btn-small btn-left" for="gen1">红绿蓝黄</label>
<input class="gen btn-input" type="radio" name="gen" value="2" id="gen2" />
<label class="btn btn-small btn-mid" for="gen2">金银水晶</label>
<input class="gen btn-input" type="radio" name="gen" value="3" id="gen3" />
<label class="btn btn-small btn-mid" for="gen3">宝石</label>
<input class="gen btn-input" type="radio" name="gen" value="4" id="gen4" />
<label class="btn btn-small btn-mid" for="gen4">珍钻白金</label>
<input class="gen btn-input" type="radio" name="gen" value="5" id="gen5" />
<label class="btn btn-small btn-mid" for="gen5">黑/白</label>
<input class="gen btn-input" type="radio" name="gen" value="6" id="gen6" />
<label class="btn btn-wide btn-mid" for="gen6">XY/宝石复刻</label>
<input class="gen btn-input" type="radio" name="gen" value="7" id="gen7" checked="checked" />
<label class="btn btn-wide btn-mid" for="gen7">(究极)日/月</label>
<input class="gen btn-input" type="radio" name="gen" value="8" id="gen8" checked="checked" />
<label class="btn btn-small btn-mid" for="gen8">剑/盾</label>
<input class="gen btn-input" type="radio" name="gen" value="9" id="gen9" checked="checked" />
<label class="btn btn-small btn-right" for="gen9">朱/紫</label>
<button class="btn btn-small" id="switchTheme">夜晚模式</button>
<input class="btn-input" style="float: right;" type="checkbox" id="switchDex" />
<label class="btn btn-small dex-change gen-specific g8 g9" for="switchDex" title="是否包括全国图鉴?">全国图鉴</label>
</span>
</div>
<hr />
<h3>更新:</h3>
<p>12/31/2023: 更新朱紫DLC2 [蓝之圆盘] 的新宝可梦+招式!
</p>
<h3>使用说明:</h3>
<p>搜索宝可梦名称:内置输入法支持,可以输入中文、拼音、英文、拼音缩写或者别名拼音。例如烈咬陆鲨可以输入"烈咬陆鲨","lieyaolusha","garchomp","lyls",或"dilong"。
</p>
<p>搜索招式名称:可以输入任意招式内汉字,或者(仅支持剑盾为止技能)中文、拼音、英文、招式属性。例如搜索雷电拳可以输入"雷","电","拳","leidian","thunder"。
</p>
<p>剑盾/朱紫默认仅包括游戏里可以使用的精灵。如果需要计算别的请点击"全国图鉴"。
</p>
问题反馈:
<a href="https://github.com/ProfessorSidon/VGC-Damage-Calculator-Chinese/issues">Github</a>
<hr />
<div class="move-result-group" title="Select a move to show detailed results.">
<div class="move-result-subgroup">
<div class="result-move-header"><span id="resultHeaderL">宝可梦#1的招式(选择一个查看详细结果)</span></div>
<div><input class="result-move btn-input" type="radio" name="resultMove" id="resultMoveL1" checked="checked" /><label class="btn btn-xxxwide btn-top" for="resultMoveL1">Hi Jump Kick</label> <span id="resultDamageL1">??? - ???%</span></div>
<div><input class="result-move btn-input" type="radio" name="resultMove" id="resultMoveL2" /><label class="btn btn-xxxwide btn-mid" for="resultMoveL2">Falcon Punch</label> <span id="resultDamageL2">??? - ???%</span></div>
<div><input class="result-move btn-input" type="radio" name="resultMove" id="resultMoveL3" /><label class="btn btn-xxxwide btn-mid" for="resultMoveL3">Suspicious Odor</label> <span id="resultDamageL3">??? - ???%</span></div>
<div><input class="result-move btn-input" type="radio" name="resultMove" id="resultMoveL4" /><label class="btn btn-xxxwide btn-bottom" for="resultMoveL4">Tombstoner</label> <span id="resultDamageL4">??? - ???%</span></div>
</div>
<div class="move-result-subgroup">
<div class="result-move-header"><span id="resultHeaderR">宝可梦#2的招式(选择一个查看详细结果)</span></div>
<div><input class="result-move btn-input" type="radio" name="resultMove" id="resultMoveR1" /><label class="btn btn-xxxwide btn-top" for="resultMoveR1">Hi Jump Kick</label> <span id="resultDamageR1">??? - ???%</span></div>
<div><input class="result-move btn-input" type="radio" name="resultMove" id="resultMoveR2" /><label class="btn btn-xxxwide btn-mid" for="resultMoveR2">Falcon Punch</label> <span id="resultDamageR2">??? - ???%</span></div>
<div><input class="result-move btn-input" type="radio" name="resultMove" id="resultMoveR3" /><label class="btn btn-xxxwide btn-mid" for="resultMoveR3">Suspicious Odor</label> <span id="resultDamageR3">??? - ???%</span></div>
<div><input class="result-move btn-input" type="radio" name="resultMove" id="resultMoveR4" /><label class="btn btn-xxxwide btn-bottom" for="resultMoveR4">Tombstoner</label> <span id="resultDamageR4">??? - ???%</span></div>
</div>
</div>
<div class="main-result-group">
<div class="big-text"><span id="mainResult" onclick="Clipboard_CopyTo(this.textContent)" title="Click to copy the result.">加载中...</span></div>
<div class="small-text"><span id="damageValues">(如果此条信息长时间显示,请尝试启用JavaScript,或者删除cookies)</span></div>
</div>
<div class="panel poke-info" id="p1">
<div class="panel-heading">
<h4 class="panel-title">宝可梦#1</h4>
</div>
<div class="panel-body">
<input type="text" class="set-selector calc-trigger" />
<div class="info-group">
<div>
<label>属性</label>
<select class="type1 terrain-trigger calc-trigger"></select>
<select class="type2 terrain-trigger calc-trigger"></select>
</div>
<div class="gen-specific g9">
<label>太晶属性</label>
<select class="tera-type calc-trigger gen-specific g9"></select>
</div>
<div class="hide">
<label>形态</label>
<select class="forme calc-trigger"></select>
</div>
<div>
<label>等级</label>
<input class="level calc-trigger" value="100" />
</div>
<div class="hide">
<label>重量 (kg)</label>
<input class="weight calc-trigger" value="10.0" />
</div>
</div>
<div class="info-group">
<table>
<tr>
<th></th>
<th>种族值</th>
<th class="gen-specific g3 g4 g5 g6 g7 g8 g9">个体值</th>
<th class="gen-specific g3 g4 g5 g6 g7 g8 g9">努力值</th>
<th class="gen-specific g1 g2 hide">动态值</th>
<th></th>
<th></th>
</tr>
<tr class="hp">
<td><label>HP</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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">
<td><label>攻击</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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">
<td><label>防御</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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 g9">
<td><label>特攻</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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 g9">
<td><label>特防</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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">
<td><label>特殊</label></td>
<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">
<td><label>速度</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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="p1-speed-mods">236</span></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td class='ev-total'> </td>
<td class='ev-left'> </td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<div class="info-group info-selectors">
<div class="gen-specific g3 g4 g5 g6 g7 g8 g9">
<label>性格</label>
<select class="nature calc-trigger">
<option value="Hardy" selected="selected">勤奋</option>
<option value="Lonely">怕寂寞 (+攻击, -防御)</option>
<option value="Adamant">固执  (+攻击, -特攻)</option>
<option value="Naughty">顽皮  (+攻击, -特防)</option>
<option value="Brave">勇敢  (+攻击, -速度)</option>
<option value="Docile">坦率</option>
<option value="Bold">大胆  (+防御, -攻击)</option>
<option value="Impish">淘气  (+防御, -特攻)</option>
<option value="Lax">乐天  (+防御, -特防)</option>
<option value="Relaxed">悠闲  (+防御, -速度)</option>
<option value="Bashful">害羞</option>
<option value="Modest">内敛  (+特攻, -攻击)</option>
<option value="Mild">慢吞吞 (+特攻, -防御)</option>
<option value="Rash">马虎  (+特攻, -特防)</option>
<option value="Quiet">冷静  (+特攻, -速度)</option>
<option value="Quirky">浮躁</option>
<option value="Calm">温和  (+特防, -攻击)</option>
<option value="Gentle">温顺  (+特防, -防御)</option>
<option value="Careful">慎重  (+特防, -特攻)</option>
<option value="Sassy">自大  (+特防, -速度)</option>
<option value="Serious">认真</option>
<option value="Timid">胆小  (+速度, -攻击)</option>
<option value="Hasty">急躁  (+速度, -防御)</option>
<option value="Jolly">爽朗  (+速度, -特攻)</option>
<option value="Naive">天真  (+速度, -特防)</option>
</select>
</div>
<div class="gen-specific g3 g4 g5 g6 g7 g8 g9">
<label>特性</label>
<select class="ability terrain-trigger calc-trigger small-select"></select>
<input class="abilityToggle calc-trigger hide" type="checkbox" title="特性是否生效?">
<select class="ability-supreme calc-trigger hide">
<option value="0">0被打倒</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>
</select>
<input class="ability-advanced calc-trigger hide" type="checkbox" title="手工选择增幅能力。">
<select class="ability-proto-quark calc-trigger hide">
<option value="0">攻击</option>
<option value="1">防御</option>
<option value="2">特攻</option>
<option value="3">特防</option>
<option value="4">速度</option>
</select>
</div>
<div class="gen-specific g2 g3 g4 g5 g6 g7 g8 g9">
<label>物品</label>
<select class="item terrain-trigger calc-trigger small-select"></select>
</div>
<div>
<label>状态</label>
<select class="status calc-trigger">
<option value="Healthy">健康</option>
<option value="Poisoned">中毒</option>
<option value="Badly Poisoned">中剧毒</option>
<option value="Burned">烧伤</option>
<option value="Paralyzed">麻痹</option>
<option value="Asleep">睡眠</option>
<option value="Frozen">冰冻</option>
</select>
<select 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>当前 HP</label>
<input class="current-hp calc-trigger" value="341" />/<span class="max-hp">341</span> (<input class="percent-hp calc-trigger" value="100" />%)
<input class="max move-max calc-trigger btn-input" type="checkbox" id="maxL" /><label class="btn btn-wide gen-specific g8" for="maxL" title="是否极巨化?">极巨化</label>
<input class="tera move-tera calc-trigger btn-input" type="checkbox" id="teraL" /><label class="btn btn-wide gen-specific g9" for="teraL" title="是否太晶化?">太晶化</label>
</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 g9">
<option value="Physical">物理</option>
<option value="Special">特殊</option>
<option value="Status">变化</option>
</select>
<input class="move-crit calc-trigger btn-input" type="checkbox" id="critL1" /><label class="btn crit-btn" for="critL1" title="强制此招式击中要害?">要害</label>
<input class="move-z calc-trigger btn-input" type="checkbox" id="zL1" /><label class="btn x-btn gen-specific g7" for="zL1" title="使用对应的Z招式?">Z招式</label>
<select class="move-hits calc-trigger hide">
<option value="2">2次命中</option>
<option value="3">3次命中</option>
<option value="4">4次命中</option>
<option value="5">5次命中</option>
</select>
<input class="move-double calc-trigger btn-input hide" type="checkbox" id="doubleL1"/><label class="double-btn btn x-btn" for="doubleL1" title="计算时取2倍威力?">翻倍</label>
<select class="move-hits2 calc-trigger hide">
<option value="1">1次命中</option>
<option value="2">2次命中</option>
</select>
<select class="move-hits3 calc-trigger hide">
<option value="1">1次命中</option>
<option value="2">2次命中</option>
<option value="3">3次命中</option>
</select>
<select class="move-pledge calc-trigger hide">
<option value="Grass Pledge">草之誓</option>
<option value="Fire Pledge">火之誓</option>
<option value="Water Pledge">水之誓</option>
</select>
<select class="move-10hits calc-trigger hide">
<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>
<option value="7">7次命中</option>
<option value="8">8次命中</option>
<option value="9">9次命中</option>
<option value="10">10次命中</option>
</select>
<select class="move-linearAddedBP calc-trigger hide">
<option value="0">0段效果</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>
<input class="move-stellar calc-trigger btn-input hide" type="checkbox" id="stellarL1" checked="checked" /><label class="stellar-btn btn x-btn" for="stellarL1" title="太晶后首次使用?">首招</label>
</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 g9">
<option value="Physical">物理</option>
<option value="Special">特殊</option>
<option value="Status">变化</option>
</select>
<input class="move-crit calc-trigger btn-input" type="checkbox" id="critL2" /><label class="btn crit-btn" for="critL2" title="强制此招式击中要害?">要害</label>
<input class="move-z calc-trigger btn-input" type="checkbox" id="zL2" /><label class="btn x-btn gen-specific g7" for="zL2" title="使用对应的Z招式?">Z招式</label>
<select class="move-hits calc-trigger hide">
<option value="2">2次命中</option>
<option value="3">3次命中</option>
<option value="4">4次命中</option>
<option value="5">5次命中</option>
</select>
<input class="move-double calc-trigger btn-input hide" type="checkbox" id="doubleL2"/><label class="double-btn btn x-btn" for="doubleL2" title="计算时取2倍威力?">翻倍</label>
<select class="move-hits2 calc-trigger hide">
<option value="1">1次命中</option>
<option value="2">2次命中</option>
</select>
<select class="move-hits3 calc-trigger hide">
<option value="1">1次命中</option>
<option value="2">2次命中</option>
<option value="3">3次命中</option>
</select>
<select class="move-pledge calc-trigger hide">
<option value="Grass Pledge">草之誓</option>
<option value="Fire Pledge">火之誓</option>
<option value="Water Pledge">水之誓</option>
</select>
<select class="move-10hits calc-trigger hide">
<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>
<option value="7">7次命中</option>
<option value="8">8次命中</option>
<option value="9">9次命中</option>
<option value="10">10次命中</option>
</select>
<select class="move-linearAddedBP calc-trigger hide">
<option value="0">0段效果</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>
<input class="move-stellar calc-trigger btn-input hide" type="checkbox" id="stellarL2" checked="checked" /><label class="stellar-btn btn x-btn" for="stellarL2" title="太晶后首次使用?">首招</label>
</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 g9">
<option value="Physical">物理</option>
<option value="Special">特殊</option>
<option value="Status">变化</option>
</select>
<input class="move-crit calc-trigger btn-input" type="checkbox" id="critL3" /><label class="btn crit-btn" for="critL3" title="强制此招式击中要害?">要害</label>
<input class="move-z calc-trigger btn-input" type="checkbox" id="zL3" /><label class="btn x-btn gen-specific g7" for="zL3" title="使用对应的Z招式?">Z招式</label>
<select class="move-hits calc-trigger hide">
<option value="2">2次命中</option>
<option value="3">3次命中</option>
<option value="4">4次命中</option>
<option value="5">5次命中</option>
</select>
<input class="move-double calc-trigger btn-input hide" type="checkbox" id="doubleL3"/><label class="double-btn btn x-btn" for="doubleL3" title="计算时取2倍威力?">翻倍</label>
<select class="move-hits2 calc-trigger hide">
<option value="1">1次命中</option>
<option value="2">2次命中</option>
</select>
<select class="move-hits3 calc-trigger hide">
<option value="1">1次命中</option>
<option value="2">2次命中</option>
<option value="3">3次命中</option>
</select>
<select class="move-pledge calc-trigger hide">
<option value="Grass Pledge">草之誓</option>
<option value="Fire Pledge">火之誓</option>
<option value="Water Pledge">水之誓</option>
</select>
<select class="move-10hits calc-trigger hide">
<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>
<option value="7">7次命中</option>
<option value="8">8次命中</option>
<option value="9">9次命中</option>
<option value="10">10次命中</option>
</select>
<select class="move-linearAddedBP calc-trigger hide">
<option value="0">0段效果</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>
<input class="move-stellar calc-trigger btn-input hide" type="checkbox" id="stellarL3" checked="checked" /><label class="stellar-btn btn x-btn" for="stellarL3" title="太晶后首次使用?">首招</label>
</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 g9">
<option value="Physical">物理</option>
<option value="Special">特殊</option>
<option value="Status">变化</option>
</select>
<input class="move-crit calc-trigger btn-input" type="checkbox" id="critL4" /><label class="btn crit-btn" for="critL4" title="强制此招式击中要害?">要害</label>
<input class="move-z calc-trigger btn-input" type="checkbox" id="zL4" /><label class="btn x-btn gen-specific g7" for="zL4" title="使用对应的Z招式?">Z招式</label>
<select class="move-hits calc-trigger hide">
<option value="2">2次命中</option>
<option value="3">3次命中</option>
<option value="4">4次命中</option>
<option value="5">5次命中</option>
</select>
<input class="move-double calc-trigger btn-input hide" type="checkbox" id="doubleL4"/><label class="double-btn btn x-btn" for="doubleL4" title="计算时取2倍威力?">翻倍</label>
<select class="move-hits2 calc-trigger hide">
<option value="1">1次命中</option>
<option value="2">2次命中</option>
</select>
<select class="move-hits3 calc-trigger hide">
<option value="1">1次命中</option>
<option value="2">2次命中</option>
<option value="3">3次命中</option>
</select>
<select class="move-pledge calc-trigger hide">
<option value="Grass Pledge">草之誓</option>
<option value="Fire Pledge">火之誓</option>
<option value="Water Pledge">水之誓</option>
</select>
<select class="move-10hits calc-trigger hide">
<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>
<option value="7">7次命中</option>
<option value="8">8次命中</option>
<option value="9">9次命中</option>
<option value="10">10次命中</option>
</select>
<select class="move-linearAddedBP calc-trigger hide">
<option value="0">0段效果</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>
<input class="move-stellar calc-trigger btn-input hide" type="checkbox" id="stellarL4" checked="checked" /><label class="stellar-btn btn x-btn" for="stellarL4" title="太晶后首次使用?">首招</label>
</div>
<input class="glaive-rush calc-trigger hide" type="checkbox" id="glaiveL" title="是否被巨剑突击影响?" />
<div class="info-group">
<input type="text" class="setCalc" id="setName1" style="width: 25%" value="个人配置">
<button type="button" onclick="savecalc1()">保存个人配置</button>
<button type="button" onclick="exportset1()">导出配置</button>
</div>
</div>
</div>
<div class="panel field-info" id="field-panel">
<div class="panel-heading">
<h4 class="panel-title">
场地
<div id="autolevel">
等级设定为:
<div class="onoffswitch" style="margin-left: 1em">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="douswitch" checked>
<label class="onoffswitch-label" for="douswitch">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
</h4>
</div>
<div class="panel-body">
<!--<img id="toge" align="center" src="image_res/toge_normal.png" height="150" alt="The Face of God, Colorized (2020)" style="display: block; margin: 0 auto;">-->
<div class="gen-specific g3 g4 g5 g6 g7 g8 g9" style="width: 11em; margin: 0 auto 5px;" title="选择战斗模式.">
<input class="btn-input calc-trigger" type="radio" name="format" value="Singles" id="singles" checked="checked" /><label class="btn btn-left" for="singles">单打</label>
<input class="btn-input calc-trigger" type="radio" name="format" value="Doubles" id="doubles" /><label class="btn btn-right" for="doubles">双打</label>
</div>
<div class="gen-specific g6 g7 g8 g9" style="width: 23.0em; margin: 5px auto;" title="选择场地状态.">
<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">无</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">电气场地</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">青草场地</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">薄雾场地</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">超能场地</label>
</div>
<hr class="gen-specific g6 g7 g8 g9" />
<div class="gen-specific g3 g4 g5 g6 g7 g8 g9" style="width: 23em; margin: 5px auto;" title="选择当前的天气状况.">
<input class="btn-input calc-trigger" type="radio" name="weather" value="" id="clear" checked="checked" /><label class="btn btn-small btn-left" for="clear">无</label>
<input class="btn-input calc-trigger" type="radio" name="weather" value="Sun" id="sun" /><label class="btn btn-small btn-mid" for="sun">晴天</label>
<input class="btn-input calc-trigger" type="radio" name="weather" value="Rain" id="rain" /><label class="btn btn-small btn-mid" for="rain">下雨</label>
<input class="btn-input calc-trigger" type="radio" name="weather" value="Sand" id="sand" /><label class="btn btn-small btn-mid" for="sand">沙暴</label>
<input class="btn-input calc-trigger" type="radio" name="weather" value="Hail" id="hail" /><label class="btn btn-small btn-right gen-specific g3 g4 g5 g6 g7 g8" for="hail">冰雹</label>
<input class="btn-input calc-trigger" type="radio" name="weather" value="Snow" id="snow" /><label class="btn btn-small btn-right gen-specific g9" for="snow">下雪</label>
</div>
<div class="gen-specific g6 g7" style="width: 23em; margin: 5px auto;" title="Select the current weather condition.">
<input class="btn-input calc-trigger" type="radio" name="weather" value="Harsh Sun" id="harsh-sun" /><label class="btn btn-wide btn-left" for="harsh-sun">日光非常猛烈</label>
<input class="btn-input calc-trigger" type="radio" name="weather" value="Heavy Rain" id="heavy-rain" /><label class="btn btn-wide btn-mid" for="heavy-rain">下大雨</label>
<input class="btn-input calc-trigger" type="radio" name="weather" value="Strong Winds" id="strong-winds" /><label class="btn btn-xwide btn-right" for="strong-winds">空气湍流</label>
</div>
<div class="gen-specific g2 hide" style="width: 23em; margin: 0 auto 5px;" title="选择当前的天气状况.">
<input class="btn-input calc-trigger" type="radio" name="gscWeather" value="" id="gscClear" checked="checked" /><label class="btn btn-small btn-left" for="gscClear">无</label>
<input class="btn-input calc-trigger" type="radio" name="gscWeather" value="Sun" id="gscSun" /><label class="btn btn-small btn-mid" for="gscSun">晴天</label>
<input class="btn-input calc-trigger" type="radio" name="gscWeather" value="Rain" id="gscRain" /><label class="btn btn-small btn-mid" for="gscRain">下雨</label>
<input class="btn-input calc-trigger" type="radio" name="gscWeather" value="Sand" id="gscSand" /><label class="btn btn-small btn-right" for="gscSand">沙暴</label>
</div>
<div class="gen-specific g6 g7 g8" style="width: 22em; margin: 5px auto;" title="选择当前的气场.">
<input class="btn-input calc-trigger" type="checkbox" name="aura" value="Aura Break" id="aura-break" /><label class="btn btn-wide btn-left" for="aura-break">气场破坏</label>
<input class="btn-input calc-trigger" type="checkbox" name="aura" value="Fairy Aura" id="fairy-aura" /><label class="btn btn-wide btn-mid" for="fairy-aura">妖精气场</label>
<input class="btn-input calc-trigger" type="checkbox" name="aura" value="Dark Aura" id="dark-aura" /><label class="btn btn-wide btn-right" for="dark-aura">暗黑气场</label>
</div>
<div class="gen-specific g9" style="width: 21em; margin: 5px auto;" title="选择当前的灾祸.">
<input class="btn-input calc-trigger" type="checkbox" name="ruin" value="Tablets of Ruin" id="tablets-of-ruin" /><label class="btn btn-xxxxwide btn-left" for="tablets-of-ruin">灾祸之简 <u>(-攻击)</u></label>
<input class="btn-input calc-trigger" type="checkbox" name="ruin" value="Vessel of Ruin" id="vessel-of-ruin" /><label class="btn btn-xxxxwide btn-right" for="vessel-of-ruin">灾祸之鼎 <u>(-特攻)</u></label>
<br />
<input class="btn-input calc-trigger" type="checkbox" name="ruin" value="Sword of Ruin" id="sword-of-ruin" /><label class="btn btn-xxxxwide btn-left" for="sword-of-ruin">灾祸之剑 <u>(-防御)</u></label>
<input class="btn-input calc-trigger" type="checkbox" name="ruin" value="Beads of Ruin" id="beads-of-ruin" /><label class="btn btn-xxxxwide btn-right" for="beads-of-ruin">灾祸之玉 <u>(-特防)</u></label>
</div>
<div class="gen-specific g4 g5 g6 g7 g8 g9" style="width: 17em; margin: 5px auto;">
<div class="gen-specific g4 g5 g6 g7 divider">
</div>
<input class="btn-input calc-trigger" type="checkbox" id="gravity" /><label class="btn" for="gravity" title="重力是否正在生效?">重力</label>
<div class="gen-specific g8 g9 divider">
<input class="btn-input calc-trigger" type="checkbox" id="neutralizingGas" /><label class="btn btn-xxwide" for="neutralizingGas" title="化学变化气体生效?">化学变化气体 </label>
</div>
</div>
</div>
<!-- Note: I know the html is clunky but it does make it look nicer so idk probably worth
I have the original code commented out anyways if I change my mind -->
<hr class="gen-specific g2 g3 g4 g5 g6 g7 g8 g9" />
<div class="btn-group gen-specific g7 g8" id="protect-field">
<div class="left" title="此宝可梦是否守住?">
<input class="btn-input calc-trigger" type="checkbox" id="protectL" /><label class="btn btn-xwide" for="protectL">守住</label>
</div>
<div class="right" title="此宝可梦是否守住?">
<input class="btn-input calc-trigger" type="checkbox" id="protectR" /><label class="btn btn-xwide" for="protectR">守住</label>
</div>
</div>
<div class="btn-group gen-specific g3 g4 g5 g6 g7 g8 g9">
<div class="left" title="此宝可梦是否受到友方的帮助加成?">
<input class="btn-input calc-trigger" type="checkbox" id="helpingHandL" /><label class="btn btn-xwide" for="helpingHandL">帮助</label>
</div>
<div class="right" title="此宝可梦是否受到友方的帮助加成?">
<input class="btn-input calc-trigger" type="checkbox" id="helpingHandR" /><label class="btn btn-xwide" for="helpingHandR">帮助</label>
</div>
</div>
<div class="btn-group gen-specific g7 g8 g9">
<div class="left" title="是否在极光幕下?">
<input class="btn-input calc-trigger" type="checkbox" id="auroraVeilL" /><label class="btn btn-xwide" for="auroraVeilL">极光幕</label>
</div>
<div class="right" title="是否在极光幕下?">
<input class="btn-input calc-trigger" type="checkbox" id="auroraVeilR" /><label class="btn btn-xwide" for="auroraVeilR">极光幕</label>
</div>
</div>
<div class="btn-group">
<div class="left" title="是否在反射壁/光墙下?">
<input class="btn-input calc-trigger" type="checkbox" id="reflectL" /><label class="btn btn-left" for="reflectL">反射壁</label>
<input class="btn-input calc-trigger" type="checkbox" id="lightScreenL" /><label class="btn btn-wide btn-right" for="lightScreenL">光墙</label>
</div>
<div class="right" title="是否在反射壁/光墙下?">
<input class="btn-input calc-trigger" type="checkbox" id="reflectR" /><label class="btn btn-left" for="reflectR">反射壁</label>
<input class="btn-input calc-trigger" type="checkbox" id="lightScreenR" /><label class="btn btn-wide btn-right" for="lightScreenR">光墙</label>
</div>
</div>
<div class="btn-group gen-specific g8">
<div class="left" title="弱点保险是否生效?">
<input class="btn-input calc-trigger" type="checkbox" id="weakL" /><label class="btn btn-xwide" for="weakL"><img src="image_res/Weakness_Policy.png"><br>弱点保险</label>
</div>
<div class="right" title="弱点保险是否生效?">
<input class="btn-input calc-trigger" type="checkbox" id="weakR" /><label class="btn btn-xwide" for="weakR"><img src="image_res/Weakness_Policy.png"><br>弱点保险</label>
</div>
</div>
<div class="btn-group gen-specific g4 g5 g6 g7 g8 g9">
<div class="left" title="是否有顺风生效?">
<input class="btn-input calc-trigger" type="checkbox" id="tailwindL" /><label class="btn btn-xwide" for="tailwindL">顺风</label>
</div>
<div class="right" title="是否有顺风生效?">
<input class="btn-input calc-trigger" type="checkbox" id="tailwindR" /><label class="btn btn-xwide" for="tailwindR">顺风</label>
</div>
</div>
<div class="btn-group gen-specific g8">
<div class="left" title="是否有超极巨地狱灭焰/炎石喷发/灰飞鞭灭/水炮轰灭生效??">
<input class="btn-input calc-trigger" type="checkbox" id="gMaxFieldL" /><label class="btn btn-xwide" for="gMaxFieldL">超极巨场地(持续伤害)</label>
</div>
<div class="right" title="是否有超极巨地狱灭焰/炎石喷发/灰飞鞭灭/水炮轰灭生效??">
<input class="btn-input calc-trigger" type="checkbox" id="gMaxFieldR" /><label class="btn btn-xwide" for="gMaxFieldR">超极巨场地(持续伤害)</label>
</div>
</div>
<div class="btn-group gen-specific g5 g6 g7 g8 g9">
<div class="left" title="此宝可梦是否受到友方的友情防守保护?">
<input class="btn-input calc-trigger" type="checkbox" id="friendGuardL" /><label class="btn btn-xwide" for="friendGuardL">友情防守</label>
</div>
<div class="right" title="此宝可梦是否受到友方的友情防守保护?">
<input class="btn-input calc-trigger" type="checkbox" id="friendGuardR" /><label class="btn btn-xwide" for="friendGuardR">友情防守</label>
</div>
</div>
<div class="btn-group gen-specific g4 g5 g6 g7 g8 g9">
<div class="left" title="是否有隐形岩位于这一侧场地?">
<input class="btn-input calc-trigger" type="checkbox" id="srL" /><label class="btn btn-xwide" for="srL">隐形岩</label>
</div>
<div class="right" title="是否有隐形岩位于这一侧场地?">
<input class="btn-input calc-trigger" type="checkbox" id="srR" /><label class="btn btn-xwide" for="srR">隐形岩</label>
</div>
</div>
<div class="btn-group gen-specific g3 g4 g5 g6 g7 g8 g9">
<div class="left" title="是否有撒菱位于这一侧场地?">
<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 撒菱</label>
</div>
<div class="right" title="是否有撒菱位于这一侧场地?">
<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 撒菱</label>
</div>
</div>
<div class="btn-group gen-specific g4 g5 g6 g7 g8" id="flower-gift">
<div class="left" title="是否受友方花之礼加成?">
<input class="btn-input calc-trigger" type="checkbox" id="flowerGiftL" /><label class="btn btn-xxwide" for="flowerGiftL">花之礼</label>
</div>
<div class="right" title="是否受友方花之礼加成?">
<input class="btn-input calc-trigger" type="checkbox" id="flowerGiftR" /><label class="btn btn-xxwide" for="flowerGiftR">花之礼</label>
</div>
</div>
<div class="btn-group gen-specific g8 g9">
<div class="left" title="友方是否持有钢之意志?">
<input class="btn-input calc-trigger" type="checkbox" id="steelySpiritL" /><label class="btn btn-xwide" for="steelySpiritL">钢之意志</label>
</div>
<div class="right" title="友方是否持有钢之意志?">
<input class="btn-input calc-trigger" type="checkbox" id="steelySpiritR" /><label class="btn btn-xwide" for="steelySpiritR">钢之意志</label>
</div>
</div>
<div class="btn-group gen-specific g8 g9">
<div class="left" title="是否受友方能量点加成?">
<input class="btn-input calc-trigger" type="checkbox" id="powerSpotL" /><label class="btn btn-xwide" for="powerSpotL">能量点</label>
</div>
<div class="right" title="是否受友方能量点加成?">
<input class="btn-input calc-trigger" type="checkbox" id="powerSpotR" /><label class="btn btn-xwide" for="powerSpotR">能量点</label>
</div>
</div>
<div class="btn-group gen-specific g7 g8 g9">
<div class="left" title="是否受到友方的蓄电池加成?">
<input class="btn-input calc-trigger" type="checkbox" id="batteryL" /><label class="btn btn-xwide" for="batteryL">蓄电池</label>
</div>
<div class="right" title="是否受到友方的蓄电池加成?">
<input class="btn-input calc-trigger" type="checkbox" id="batteryR" /><label class="btn btn-xwide" for="batteryR">蓄电池</label>
</div>
</div>
<div class="btn-group gen-specific g9">
<div class="left" title="是否受到盐腌状态?">
<input class="btn-input calc-trigger" type="checkbox" id="saltCureL" /><label class="btn btn-xwide" for="saltCureL">盐腌</label>
</div>
<div class="right" title="是否受到盐腌状态?">
<input class="btn-input calc-trigger" type="checkbox" id="saltCureR" /><label class="btn btn-xwide" for="saltCureR">盐腌</label>
</div>
</div>
<div class="btn-group gen-specific g9">
<div class="left" title="此宝可梦是否吃掉了米立龙?">
<input class="btn-input calc-trigger" type="checkbox" id="tatsuL" /><label class="btn btn-xwide" for="tatsuL"><img src="image_res/Tatsugiri.png" width="58" height="58"><br>发号施令</label>
</div>
<div class="right" title="此宝可梦是否吃掉了米立龙?">
<input class="btn-input calc-trigger" type="checkbox" id="tatsuR" /><label class="btn btn-xwide" for="tatsuR"><img src="image_res/Tatsugiri.png" width="58" height="58"><br>发号施令</label>
</div>
</div>
<div class="btn-group gen-specific g6 g7">
<div class="left" title="此宝可梦是否使用了大地掌控?">
<input class="btn-input calc-trigger" type="checkbox" id="clangL" /><label class="btn btn-xwide" for="clangL"><img src="image_res/minisprites/716.png"><br>大地掌控</label>
</div>
<div class="right" title="此宝可梦是否使用了大地掌控?">
<input class="btn-input calc-trigger" type="checkbox" id="clangR" /><label class="btn btn-xwide" for="clangR"><img src="image_res/minisprites/716.png"><br>大地掌控</label>
</div>
</div>
<div class="btn-group gen-specific g7">
<div class="left" title="此宝可梦是否使用了九彩升华齐聚顶?">
<input class="btn-input calc-trigger" type="checkbox" id="evoL" /><label class="btn btn-xwide" for="evoL"><img src="image_res/133.png"><br>九彩升华齐聚顶</label>
</div>
<div class="right" title="此宝可梦是否使用了九彩升华齐聚顶?">
<input class="btn-input calc-trigger" type="checkbox" id="evoR" /><label class="btn btn-xwide" for="evoR"><img src="image_res/133.png"><br>九彩升华齐聚顶</label>
</div>
</div>
<div class="btn-group gen-specific g2">
<div class="left" title="是否有撒菱位于这一侧场地?">
<input class="btn-input calc-trigger" type="checkbox" id="gscSpikesL" /><label class="btn" for="gscSpikesL">撒菱</label>
</div>
<div class="right" title="是否有撒菱位于这一侧场地?">
<input class="btn-input calc-trigger" type="checkbox" id="gscSpikesR" /><label class="btn" for="gscSpikesR">撒菱</label>
</div>
</div>
<div class="btn-group gen-specific g2 g3 g4 g5 g6 g7">
<div class="left" title="此宝可梦是否受到识破/气味侦测作用?">
<input class="btn-input calc-trigger" type="checkbox" id="foresightL" /><label class="btn btn-wide" for="foresightL">识破</label>
</div>
<div class="right" title="此宝可梦是否受到识破/气味侦测作用?">
<input class="btn-input calc-trigger" type="checkbox" id="foresightR" /><label class="btn btn-wide" for="foresightR">识破</label>
</div>
</div>
<p>请输入你的自定义配置.</p>
命名: <input type="text" id="spreadName" style="width: 60%" value="自定义配置">
<br>
<textarea rows="9" cols="36" id="customMon"></textarea>
<br>
<button type="button" onclick="savecustom()">保存</button> <button type="button" onclick="deletecustom()">删除自定义配置</button>
<p>你可能需要在删除你的配置后刷新页面。 如果遇到BUG,请尝试清除Cookies或者汇报错误!</p>
</div>
</div>
<div class="panel poke-info" id="p2">
<div class="panel-heading">
<h4 class="panel-title">宝可梦#2</h4>
</div>
<div class="panel-body">
<input type="text" class="set-selector calc-trigger" />
<div class="info-group">
<div>
<label>属性</label>
<select class="type1 terrain-trigger calc-trigger"></select>
<select class="type2 terrain-trigger calc-trigger"></select>
</div>
<div class="gen-specific g9">
<label>太晶属性</label>
<select class="tera-type calc-trigger gen-specific g9"></select>
</div>
<div class="hide">
<label>形态</label>
<select class="forme calc-trigger"></select>
</div>
<div>
<label>等级</label>
<input class="level calc-trigger" value="100" />
</div>
<div class="hide">
<label>重量 (kg)</label>
<input class="weight calc-trigger" value="10.0" />
</div>
</div>
<div class="info-group">
<table>
<tr>
<th></th>
<th>种族值</th>
<th class="gen-specific g3 g4 g5 g6 g7 g8 g9">个体值</th>
<th class="gen-specific g3 g4 g5 g6 g7 g8 g9">努力值</th>
<th class="gen-specific g1 g2 hide">动态值</th>
<th></th>
<th></th>
</tr>
<tr class="hp">
<td><label>HP</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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">
<td><label>攻击</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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">
<td><label>防御</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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 g9">
<td><label>特攻</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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 g9">
<td><label>特防</label></td>
<td><input class="base calc-trigger" value="100" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><input class="ivs calc-trigger" value="31" /></td>
<td class="gen-specific g3 g4 g5 g6 g7 g8 g9"><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">
<td><label>特殊</label></td>
<td><input class="base calc-trigger" value="100" /></td>