-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel.html
More file actions
1480 lines (1410 loc) · 59.4 KB
/
level.html
File metadata and controls
1480 lines (1410 loc) · 59.4 KB
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>
<!-- saved from url=(0035)http://spongem.com/ajglz/ys/ys.html -->
<html xmlns="http://www.w3.org/1999/xhtml" class=""><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>성유물 계산기</title>
<style type="text/css">
.link {
color: #03F;
text-decoration: none;
}
body {
margin: 0px;
padding: 0px;
overflow-x: hidden;
background:#FFF
}
hr.fgx {
border: 1px dashed #2E9FCC;
}
.wb {
font-size: 80%;
}
p.t {
font-size: 140%;
font-weight: 800;
color: #1F4499;
text-align: center;
font-family:"NanumBarunGothic"
}
p.lt {
color: #1F4499;
font-weight: 800;
}
table.gridtable {
font-family: verdana,arial,sans-serif;
font-size:11px;
color:#333333;
border-width: 1px;
border-color: #666666;
border-collapse: collapse;
}
table.gridtable th {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #dedede;
}
table.gridtable td {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #ffffff;
}
.td-3{width:250px;}
.tip{
margin-left:60px;
margin-right:60px;
}
input[type="text"]{
border-radius:4px;
border:solid 1px #AAAAAA;
font-family:"黑体";
padding: 5px;
}
button {
color: #444444;
background: #F3F3F3;
border: 1px #DADADA solid;
padding: 5px 10px;
border-radius: 2px;
font-size: 10pt;
outline: none;
}
button:hover {
border: 1px #C6C6C6 solid;
box-shadow: 1px 1px 1px #EAEAEA;
color: #333333;
background: #F7F7F7;
}
button:active {
box-shadow: inset 1px 1px 1px #DFDFDF;
}
/* Blue button as seen on translate.google.com*/
button.blue {
color: white;
background: #4C8FFB;
border: 1px #3079ED solid;
box-shadow: inset 0 1px 0 #80B0FB;
}
button.blue:hover {
border: 1px #2F5BB7 solid;
box-shadow: 0 1px 1px #EAEAEA, inset 0 1px 0 #5A94F1;
background: #3F83F1;
}
button.blue:active {
box-shadow: inset 0 2px 5px #2370FE;
}
/* Orange button as seen on blogger.com*/
button.orange {
color: white;
border: 1px solid #FB8F3D;
background: -webkit-linear-gradient(top, #FDA251, #FB8F3D);
background: -moz-linear-gradient(top, #FDA251, #FB8F3D);
background: -ms-linear-gradient(top, #FDA251, #FB8F3D);
}
button.orange:hover {
border: 1px solid #EB5200;
background: -webkit-linear-gradient(top, #FD924C, #F9760B);
background: -moz-linear-gradient(top, #FD924C, #F9760B);
background: -ms-linear-gradient(top, #FD924C, #F9760B);
box-shadow: 0 1px #EFEFEF;
}
button.orange:active {
box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
}
/* Red Google Button as seen on drive.google.com */
button.red {
background: -webkit-linear-gradient(top, #DD4B39, #D14836);
background: -moz-linear-gradient(top, #DD4B39, #D14836);
background: -ms-linear-gradient(top, #DD4B39, #D14836);
border: 1px solid #DD4B39;
color: white;
text-shadow: 0 1px 0 #C04131;
}
button.red:hover {
background: -webkit-linear-gradient(top, #DD4B39, #C53727);
background: -moz-linear-gradient(top, #DD4B39, #C53727);
background: -ms-linear-gradient(top, #DD4B39, #C53727);
border: 1px solid #AF301F;
}
button.red:active {
box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
background: -webkit-linear-gradient(top, #D74736, #AD2719);
background: -moz-linear-gradient(top, #D74736, #AD2719);
background: -ms-linear-gradient(top, #D74736, #AD2719);
}
</style>
<link type="text/css" rel="stylesheet" charset="UTF-8" href="./level_files/translateelement.css"></head>
<body>
<p class="t">성유물 계산기 4.1 업데이트</p>
<p align="center" class="wb"><a href="https://bbs.nga.cn/read.php?tid=26655137">NGA 원문</a></p>
<p align="center" class="wb"><a href="https://arca.live/b/genshinacademia?target=all&keyword=%EC%84%B1%EC%9C%A0%EB%AC%BC+%EA%B3%84%EC%82%B0%EA%B8%B0+%EC%82%AC%EC%9A%A9%EC%84%A4%EB%AA%85%EC%84%9C">한국어 사용설명서</p>
<p align="center" class="wb"><a>원저자: NGA-pressure_pressure</a></p>
<p align="center" class="wb"><a>20~25점: 잘키웠다, 26~30점: 졸업</a></p>
<p align="center" class="wb"><a>캐릭터 상세 창 -> 성유물 창 -> 성유물 자세히 클릭</a></p>
<hr class="fgx">
<p align="center">캐릭터:
<select id="Char" onchange="SetCharL()">
<optgroup label="바람">
<option>벤티</option>
<option>진</option>
<option>소</option>
<option>바람행자</option>
<option>설탕</option>
<option>카에데하라 카즈하</option>
<option>사유</option>
<option>시카노인 헤이조</option>
<option>방랑자</option>
<option>파루잔</option>
<option>리넷</option>
</optgroup>
<optgroup label="물">
<option>타르탈리아</option>
<option>모나</option>
<option>행추</option>
<option>바바라</option>
<option>산고노미야 코코미</option>
<option>카미사토 아야토</option>
<option>야란</option>
<option>캔디스</option>
<option>닐루</option>
<option>느비예트</option>
</optgroup>
<optgroup label="불">
<option>다이루크</option>
<option>클레</option>
<option>호두</option>
<option>베넷</option>
<option>향릉</option>
<option>엠버</option>
<option>신염</option>
<option>연비</option>
<option>요이미야</option>
<option>토마</option>
<option>데히야</option>
<option>리니</option>
</optgroup>
<optgroup label="얼음">
<option>치치</option>
<option>감우</option>
<option>유라</option>
<option>중운</option>
<option>디오나</option>
<option>케이아</option>
<option>로자리아</option>
<option>카미사토 아야카</option>
<option>에일로이</option>
<option>신학</option>
<option>레일라</option>
<option>미카</option>
<option>프레미네</option>
<option>라이오슬리</option>
</optgroup>
<optgroup label="번개">
<option>각청</option>
<option>피슬</option>
<option>북두</option>
<option>레이저</option>
<option>리사</option>
<option>라이덴 쇼군</option>
<option>쿠죠 사라</option>
<option>야에 미코</option>
<option>쿠키 시노부</option>
<option>도리</option>
<option>사이노</option>
</optgroup>
<optgroup label="바위">
<option>종려</option>
<option>알베도</option>
<option>바위행자</option>
<option>응광</option>
<option>노엘</option>
<option>아라타키 이토</option>
<option>고로</option>
<option>운근</option>
</optgroup>
<optgroup label="풀">
<option>타이나리</option>
<option>콜레이</option>
<option>풀행자</option>
<option>나히다</option>
<option>알하이탐</option>
<option>요요</option>
<option>백출</option>
<option>카베</option>
<option>키라라</option>
</optgroup>
</select>
</p>
<p align="center">레벨:
<select id="Level" onchange="SetChar(0)">
<option value="2">90렙</option>
<option value="1">80 돌파</option>
</select>
</p>
<p align="center" class="lt">——성유물 주 옵션——</p>
<p align="center">시계:
<select id="A1" onchange="SetChar(0)">
<option value="1">HP%</option>
<option value="2">공격력%</option>
<option value="3">방어력%</option>
<option value="4">원소 마스터리</option>
<option value="5">원소 충전 효율</option>
</select>
성배:
<select id="A2" onchange="SetChar(0)">
<option value="1">HP%</option>
<option value="2">공격력%</option>
<option value="3">방어력%</option>
<option value="4">원소 마스터리</option>
<option value="8">피해 보너스</option>
</select>
왕관:
<select id="A3" onchange="SetChar(0)">
<option value="1">HP%</option>
<option value="2">공격력%</option>
<option value="3">방어력%</option>
<option value="4">원소 마스터리</option>
<option value="6">치명타 확률</option>
<option value="7">치명타 피해</option>
<option value="9">치유 보너스</option>
</select>
</p>
<p align="center" class="lt">——무기 기초 공격력——</p>
<p align="center"><input type="number" id="QQ" value="0" onchange="SetCharS('QQ')"></p>
<p align="center" id="WeaponList">
<select id="Weapon" onchange="SetWeapon()">
<option value="0">무기 선택</option>
<option value="674">천공의 날개</option>
<option value="608">아모스/극지/비뢰/종탄노</option>
<option value="565">제례/사냥꾼/흑암</option>
<option value="510">녹활/유야/바람꽃/절현/청록/왕실/담월</option>
<option value="454">페보/강철궁/파마궁</option>
</select>
</p>
<p align="center" class="lt">——성유물 세부사항——</p>
<p align="center">+HP 최대치:<input type="text" id="T1" value="0" onchange="SetCharS('T1')"></p>
<p align="center">+공격력:<input type="text" id="T2" value="0" onchange="SetCharS('T2')"></p>
<p align="center">+방어력:<input type="text" id="T3" value="0" onchange="SetCharS('T3')"></p>
<p align="center">+원소 마스터리:<input type="text" id="T4" value="0" onchange="SetCharS('T4')"> </p>
<p align="center">+치명타 확률%:<input type="text" id="T5" value="0" onchange="SetCharS('T5')"> </p>
<p align="center">+치명타 피해%:<input type="text" id="T6" value="0" onchange="SetCharS('T6')"> </p>
<p align="center">+원소 충전 효율%:<input type="text" id="T7" value="0" onchange="SetCharS('T7')"> </p>
<p align="center" class="lt">——결과——</p>
<p id="result2" align="center"></p>
<p id="result" align="center">세부사항을 입력해주세요</p>
<p> </p>
<p align="center" id="setlabel">프리셋:
<select id="Sets" onchange="SetChar(2)">
<option >1</option>
</select>
<button type="button" onclick="addset()">결과 저장하기</button>
</p>
</div>
<div id="buttonlabel" align="center"><button type="button" onclick="remove()" class="red">결과 초기화</button></div>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</body>
<script>
var r=[0,0,0,0,0,0,0];
var cc=[0,0,0,0,0,0,0];
var ShowLoad=""
var setsum=1
var onloading=true
var charcache
var lastcheck=-1;
var lastcheckstr="";
function userobject(name){
switch(name){
case "벤티":
this.lv80a={baseHP:9791.154310719692,baseDEF:621.6392653943294,baseATK:244.60097321190642,energyRecharge:31.999999284744263},this.lv90={baseHP:10531.48386939941,baseDEF:668.6423311858234,baseATK:263.09622679515087,energyRecharge:31.999999284744263}
this.mode=11
this.Etype=1
break;
case "진":
this.lv80a={baseHP:13662.07554812677,baseDEF:714.5278892422866,baseATK:222.3645244843292,healing:22.14999943971634},this.lv90={baseHP:14695.093513910891,baseDEF:768.55440212143,baseATK:239.17839184791592,healing:22.14999943971634}
this.mode=3
this.Etype=1
break;
case "소":
this.lv80a={baseHP:11840.465424213122,baseDEF:743.1090066680572,baseATK:324.65219912465363,critRate:24.200000166893005},this.lv90={baseHP:12735.747672248981,baseDEF:799.2965799245794,baseATK:349.2004441320678,critRate:24.200000166893005}
this.mode=0
this.Etype=1
break;
case "바람행자":
this.lv80a={baseHP:10121.775421069935,baseDEF:635.2536499864582,baseATK:197.68778471910082,percentATK:23.999999463558197},this.lv90={baseHP:10874.91499475576,baseDEF:682.5215109506607,baseATK:212.39719698963927,percentATK:23.999999463558197}
this.mode=11
this.Etype=1
break;
case "설탕":
this.lv80a={baseHP:8603.508985277615,baseDEF:654.3112699264966,baseATK:158.1502227076462,anemoDamage:23.999999463558197},this.lv90={baseHP:9243.677602744545,baseDEF:702.9971676649075,baseATK:169.91775205143585,anemoDamage:23.999999463558197}
this.mode=9
this.Etype=1
break;
case "타르탈리아":
this.lv80a={baseHP:12182.017518934357,baseDEF:757.3995351761696,baseATK:280.1793016694992,hydroDamage:28.79999876022339},this.lv90={baseHP:13103.125224382035,baseDEF:814.6676368990447,baseATK:301.3647742375979,hydroDamage:28.79999876022339}
this.mode=1
this.Etype=2
break;
case "모나":
this.lv80a={baseHP:9677.303449718864,baseDEF:607.3486917354603,baseATK:266.83742193948365,energyRecharge:31.999999284744263},this.lv90={baseHP:10409.024522594642,baseDEF:653.2712256159284,baseATK:287.0140617423858,energyRecharge:31.999999284744263}
this.mode=2
this.Etype=2
break;
case "행추":
this.lv80a={baseHP:9514.46903624275,baseDEF:705.1315610686324,baseATK:187.8033969635344,percentATK:23.999999463558197},this.lv90={baseHP:10222.420237524027,baseDEF:757.5988870539913,baseATK:201.77733869931944,percentATK:23.999999463558197}
this.mode=2
this.Etype=2
break;
case "바바라":
this.lv80a={baseHP:9109.597725532774,baseDEF:622.5485987243992,baseATK:148.26583495207979,percentHP:23.999999463558197},this.lv90={baseHP:9787.423311600985,baseDEF:668.8711049900703,baseATK:159.29789376111603,percentHP:23.999999463558197}
this.mode=8
this.Etype=2
break;
case "다이루크":
this.lv80a={baseHP:12068.166902074154,baseDEF:728.8184330091881,baseATK:311.3103343406219,critRate:24.200000166893005},this.lv90={baseHP:12980.666121717892,baseDEF:783.9254743546844,baseATK:334.84974830517604,critRate:24.200000166893005}
this.mode=1
this.Etype=3
break;
case "클레":
this.lv80a={baseHP:9563.45283285866,baseDEF:571.6222874802552,baseATK:289.0738706670609,pyroDamage:28.79999876022339},this.lv90={baseHP:10286.565419930499,baseDEF:614.8434950278315,baseATK:310.93189668962077,pyroDamage:28.79999876022339}
this.mode=1
this.Etype=3
break;
case "호두":
this.lv80a={baseHP:14459.029866148194,baseDEF:814.5617700277107,baseATK:98.95221210261116,critDamage:88.40000033378601},this.lv90={baseHP:15552.307232559891,baseDEF:876.1519925053435,baseATK:106.43438284689182,critDamage:88.40000033378601}
this.mode=6
this.Etype=3
break;
case "베넷":
this.lv80a={baseHP:11538.82421229023,baseDEF:717.8366544678356,baseATK:177.9190053932707,energyRecharge:26.669999957084656},this.lv90={baseHP:12397.403338391683,baseDEF:771.2493414536075,baseATK:191.15747659430235,energyRecharge:26.669999957084656}
this.mode=2
this.Etype=3
break;
case "향릉":
this.lv80a={baseHP:10121.775421069935,baseDEF:622.5485987243992,baseATK:209.54904563010496,elementalMastery:96},this.lv90={baseHP:10874.91499475576,baseDEF:668.8711049900703,baseATK:225.14102222725342,elementalMastery:96}
this.mode=2
this.Etype=3
break;
case "엠버":
this.lv80a={baseHP:8805.94451856229,baseDEF:559.0232276222378,baseATK:207.5721762893645,percentATK:23.999999463558197},this.lv90={baseHP:9461.175943635753,baseDEF:600.6189477914886,baseATK:223.01705909465636,percentATK:23.999999463558197}
this.mode=1
this.Etype=3
break;
case "신염":
this.lv80a={baseHP:10425.428383899794,baseDEF:743.2467569919536,baseATK:231.29469811137278,percentATK:23.999999463558197},this.lv90={baseHP:11201.162118580367,baseDEF:798.5501533747884,baseATK:248.50470956988465,percentATK:23.999999463558197}
this.mode=23
this.Etype=3
break;
case "연비":
this.lv80a={baseHP:8704.726873990265,baseDEF:546.3181629210012,baseATK:223.38718351124407,pyroDamage:23.999999463558197},this.lv90={baseHP:9352.426895260462,baseDEF:586.9685252407799,baseATK:240.00881822685915,pyroDamage:23.999999463558197}
this.mode=1
this.Etype=3
break;
case "치치":
this.lv80a={baseHP:11498.913573632512,baseDEF:857.4334312203828,baseATK:266.83742193948365,healing:22.14999943971634},this.lv90={baseHP:12368.370364256552,baseDEF:922.2652425417473,baseATK:287.0140617423858,healing:22.14999943971634}
this.mode=0
this.Etype=4
break;
case "감우":
this.lv80a={baseHP:9108.050365417846,baseDEF:585.9128611391243,baseATK:311.3103343406219,critDamage:88.40000033378601},this.lv90={baseHP:9796.729009273928,baseDEF:630.2146005977265,baseATK:334.84974830517604,critDamage:88.40000033378601}
this.mode=1
this.Etype=4
break;
case "유라":
this.lv80a={baseHP:12295.867657523078,baseDEF:698.0937476574509,baseATK:317.9812667326378,critDamage:88.40000033378601},this.lv90={baseHP:13225.583793659927,baseDEF:750.8776498723164,baseATK:342.0250962186219,critDamage:88.40000033378601}
this.mode=10
this.Etype=4
break;
case "중운":
this.lv80a={baseHP:10222.993309782585,baseDEF:603.4909787843608,baseATK:207.5721762893645,percentATK:23.999999463558197},this.lv90={baseHP:10983.664287271677,baseDEF:648.3954482758236,baseATK:223.01705909465636,percentATK:23.999999463558197}
this.mode=1
this.Etype=4
break;
case "디오나":
this.lv80a={baseHP:8907.16240727494,baseDEF:559.0232276222378,baseATK:197.68778471910082,cryoDamage:23.999999463558197},this.lv90={baseHP:9569.92523615167,baseDEF:600.6189477914886,baseATK:212.39719698963927,cryoDamage:23.999999463558197}
this.mode=8
this.Etype=4
break;
case "케이아":
this.lv80a={baseHP:10830.29969460977,baseDEF:736.8942170119408,baseATK:207.5721762893645,energyRecharge:26.669999957084656},this.lv90={baseHP:11636.159044503409,baseDEF:791.7249344700394,baseATK:223.01705909465636,energyRecharge:26.669999957084656}
this.mode=1
this.Etype=4
break;
case "로자리아":
this.lv80a={baseHP:11437.60632357758,baseDEF:660.6638099065094,baseATK:223.38718351124407,percentATK:23.999999463558197},this.lv90={baseHP:12288.654045875766,baseDEF:709.8223865696564,baseATK:240.00881822685915,percentATK:23.999999463558197}
this.mode=1
this.Etype=4
break;
case "각청":
this.lv80a={baseHP:12182.017518934357,baseDEF:743.1090066680572,baseATK:300.1920912161522,critDamage:88.40000033378601},this.lv90={baseHP:13103.125224382035,baseDEF:799.2965799245794,baseATK:322.890810348541,critDamage:88.40000033378601}
this.mode=0
this.Etype=5
break;
case "피슬":
this.lv80a={baseHP:8552.899918850977,baseDEF:552.670702901014,baseATK:227.34095180049735,percentATK:23.999999463558197},this.lv90={baseHP:9189.302834416274,baseDEF:593.7937441455288,baseATK:244.256775675296,percentATK:23.999999463558197}
this.mode=3
this.Etype=5
break;
case "북두":
this.lv80a={baseHP:12146.13013794995,baseDEF:603.4909787843608,baseATK:209.54904563010496,electroDamage:23.999999463558197},this.lv90={baseHP:13049.897586040897,baseDEF:648.3954482758236,baseATK:225.14102222725342,electroDamage:23.999999463558197}
this.mode=0
this.Etype=5
break;
case "레이저":
this.lv80a={baseHP:11133.952901580255,baseDEF:698.7790210886196,baseATK:217.45656023023366,physicalDamage:30.000001192092896},this.lv90={baseHP:11962.406412468641,baseDEF:750.7736681492424,baseATK:233.63691357027892,physicalDamage:30.000001192092896}
this.mode=0
this.Etype=5
break;
case "리사":
this.lv80a={baseHP:8907.16240727494,baseDEF:533.6130829609756,baseATK:215.47968326009868,elementalMastery:96},this.lv90={baseHP:9569.92523615167,baseDEF:573.318087431282,baseATK:231.51294280828733,elementalMastery:96}
this.mode=0
this.Etype=5
break;
case "종려":
this.lv80a={baseHP:13662.07554812677,baseDEF:685.9467419245484,baseATK:233.482737404026,geoDamage:28.79999876022339},this.lv90={baseHP:14695.093513910891,baseDEF:737.81219098164,baseATK:251.1372978774416,geoDamage:28.79999876022339}
this.mode=5
this.Etype=6
break;
case "알베도":
this.lv80a={baseHP:12295.867657523078,baseDEF:814.5617700277107,baseATK:233.48275266281507,geoDamage:28.79999876022339},this.lv90={baseHP:13225.583793659927,baseDEF:876.1519925053435,baseATK:251.13731313623066,geoDamage:28.79999876022339}
this.mode=4
this.Etype=6
break;
case "바위행자":
this.lv80a={baseHP:10121.775421069935,baseDEF:635.2536499864582,baseATK:197.68778471910082,percentATK:23.999999463558197},this.lv90={baseHP:10874.91499475576,baseDEF:682.5215109506607,baseATK:212.39719698963927,percentATK:23.999999463558197}
this.mode=3
this.Etype=6
break;
case "응광":
this.lv80a={baseHP:9109.597725532774,baseDEF:533.6130829609756,baseATK:197.68778471910082,geoDamage:23.999999463558197},this.lv90={baseHP:9787.423311600985,baseDEF:573.318087431282,baseATK:212.39719698963927,geoDamage:23.999999463558197}
this.mode=0
this.Etype=6
break;
case "노엘":
this.lv80a={baseHP:11235.17054615228,baseDEF:743.2467569919536,baseATK:177.9190053932707,percentDEF:30.000001192092896},this.lv90={baseHP:12071.155460843933,baseDEF:798.5501533747884,baseATK:191.15747659430235,percentDEF:30.000001192092896}
this.mode=7
this.Etype=6
break;
case "카에데하라 카즈하":
this.lv80a={baseHP:12410,baseDEF:750,baseATK:276,elementalMastery:115.2},this.lv90={baseHP:13348,baseDEF:807,baseATK:297,elementalMastery:115.2}
this.mode=12
this.Etype=1
break;
case "카미사토 아야카":
this.lv80a={baseHP:11954,baseDEF:729,baseATK:318,critDamage:88.4},this.lv90={baseHP:12858,baseDEF:784,baseATK:342,critDamage:88.4}
this.mode=10
this.Etype=4
break;
case "사유":
this.lv80a={baseHP:11033,baseDEF:693,baseATK:227,elementalMastery:96},this.lv90={baseHP:11854,baseDEF:745,baseATK:244,elementalMastery:96}
this.mode=3
this.Etype=1
break;
case "요이미야":
this.lv80a={baseHP:9450,baseDEF:572,baseATK:300,critRate:24.2},this.lv90={baseHP:10164,baseDEF:615,baseATK:323,critRate:24.2}
this.mode=1
this.Etype=3
break;
case "쿠죠 사라":
this.lv80a={baseHP:8907,baseDEF:584,baseATK:182},this.lv90={baseHP:9570,baseDEF:628,baseATK:195}
this.mode=3
this.Etype=5
break;
case "라이덴 쇼군":
this.lv80a={baseHP:12000,baseDEF:734,baseATK:314},this.lv90={baseHP:12907,baseDEF:789,baseATK:337}
this.mode=13
this.Etype=5
break;
case "산고노미야 코코미":
this.lv80a={baseHP:12524,baseDEF:611,baseATK:218},this.lv90={baseHP:13471,baseDEF:657,baseATK:234}
this.mode=14
this.Etype=2
break;
case "에일로이":
this.lv80a={baseHP:10133,baseDEF:629,baseATK:217},this.lv90={baseHP:10899,baseDEF:676,baseATK:234}
this.mode=1
this.Etype=4
break;
case "토마":
this.lv80a={baseHP:9616,baseDEF:699,baseATK:188},this.lv90={baseHP:10331,baseDEF:751,baseATK:202}
this.mode=15
this.Etype=3
break;
case "아라타키 이토":
this.lv80a={baseHP:12740,baseDEF:865,baseATK:178},this.lv90={baseHP:13703,baseDEF:930,baseATK:191}
this.mode=7
this.Etype=6
break;
case "고로":
this.lv80a={baseHP:8907,baseDEF:603,baseATK:170},this.lv90={baseHP:9570,baseDEF:648,baseATK:183}
this.mode=16
this.Etype=6
break;
case "신학":
this.lv80a={baseHP:12080,baseDEF:772,baseATK:282},this.lv90={baseHP:12993,baseDEF:830,baseATK:304}
this.mode=17
this.Etype=4
break;
case "운근":
this.lv80a={baseHP:9919,baseDEF:684,baseATK:178},this.lv90={baseHP:10657,baseDEF:734,baseATK:191}
this.mode=16
this.Etype=6
break;
case "야에 미코":
this.lv80a={baseHP:9643,baseDEF:529,baseATK:316},this.lv90={baseHP:10372,baseDEF:569,baseATK:340}
this.mode=18
this.Etype=5
case "카미사토 아야토":
this.lv80a={baseHP:12751,baseDEF:715,baseATK:278},this.lv90={baseHP:13715,baseDEF:769,baseATK:299}
this.mode=20
this.Etype=2
break;
case "번개행자":
this.lv80a={baseHP:10121.775421069935,baseDEF:635.2536499864582,baseATK:197.68778471910082,percentATK:23.999999463558197},this.lv90={baseHP:10874.91499475576,baseDEF:682.5215109506607,baseATK:212.39719698963927,percentATK:23.999999463558197}
this.mode=19
this.Etype=5
break;
case "야란":
this.lv80a={baseHP:13434,baseDEF:509,baseATK:227,percentATK:23.999999463558197},this.lv90={baseHP:14450,baseDEF:548,baseATK:244,percentATK:23.999999463558197}
this.mode=21
this.Etype=2
break;
case "쿠키 시노부":
this.lv80a={baseHP:11438,baseDEF:699,baseATK:198,percentATK:23.999999463558197},this.lv90={baseHP:12289,baseDEF:751,baseATK:212.39719698963927,percentATK:23.999999463558197}
this.mode=22
this.Etype=5
break;
case "시카노인 헤이조":
this.lv80a={baseHP:9919,baseDEF:637,baseATK:210},this.lv90={baseHP:10657,baseDEF:684,baseATK:225}
this.mode=0
this.Etype=1
break;
case "타이나리":
this.lv80a={baseHP:10087,baseDEF:585.91,baseATK:249.05},this.lv90={baseHP:10850,baseDEF:630.21,baseATK:267.88}
this.mode=24
this.Etype=7
break;
case "콜레이":
this.lv80a={baseHP:9110,baseDEF:559.02,baseATK:185.83},this.lv90={baseHP:9787,baseDEF:600.62,baseATK:199.65}
this.mode=25
this.Etype=7
break;
case "풀행자":
this.lv80a={baseHP:10121.775421069935,baseDEF:635.2536499864582,baseATK:197.68778471910082,percentATK:23.999999463558197},this.lv90={baseHP:10874.91499475576,baseDEF:682.5215109506607,baseATK:212.39719698963927,percentATK:23.999999463558197}
this.mode=25
this.Etype=7
break;
case "도리":
this.lv80a={baseHP:11539,baseDEF:673.37,baseATK:207.57},this.lv90={baseHP:12397,baseDEF:723.47,baseATK:223.02}
this.mode=15
this.Etype=5
break;
case "사이노":
this.lv80a={baseHP:11613,baseDEF:798.84,baseATK:798.84},this.lv90={baseHP:12491,baseDEF:859.24,baseATK:318.11}
this.mode=2
this.Etype=5
break;
case "캔디스":
this.lv80a={baseHP:10122,baseDEF:635.25,baseATK:197.69},this.lv90={baseHP:10875,baseDEF:682.52,baseATK:212.4}
this.mode=15
this.Etype=2
break;
case "닐루":
this.lv80a={baseHP:14117,baseDEF:677.37,baseATK:213.47},this.lv90={baseHP:15185,baseDEF:728.59,baseATK:229.61}
this.mode=26
this.Etype=2
break;
case "나히다":
this.lv80a={baseHP:9632,baseDEF:585.91,baseATK:277.96},this.lv90={baseHP:10360,baseDEF:630.21,baseATK:298.97}
this.mode=27
this.Etype=7
break;
case "레일라":
this.lv80a={baseHP:10324,baseDEF:609.84,baseATK:201.64},this.lv90={baseHP:11092,baseDEF:655.22,baseATK:216.65}
this.mode=15
this.Etype=4
break;
case "방랑자":
this.lv80a={baseHP:9450,baseDEF:564.48,baseATK:304.64},this.lv90={baseHP:10164,baseDEF:607.16,baseATK:327.67}
this.mode=0
this.Etype=1
break;
case "파루잔":
this.lv80a={baseHP:8907,baseDEF:584.43,baseATK:182.86},this.lv90={baseHP:9570,baseDEF:627.92,baseATK:196.47}
this.mode=19
this.Etype=1
break;
case "알하이탐":
this.lv80a={baseHP:12410,baseDEF:726.67,baseATK:291.3},this.lv90={baseHP:13348,baseDEF:781.62,baseATK:313.32}
this.mode=29
this.Etype=7
break;
case "요요":
this.lv80a={baseHP:11438,baseDEF:698.78,baseATK:197.69},this.lv90={baseHP:12289,baseDEF:750.77,baseATK:212.4}
this.mode=22
this.Etype=7
break;
case "데히야":
this.lv80a={baseHP:14573,baseDEF:583.77,baseATK:246.82},this.lv90={baseHP:15675,baseDEF:627.91,baseATK:265.49}
this.mode=28
this.Etype=3
break;
case "미카":
this.lv80a={baseHP:11640,baseDEF:552.67,baseATK:158.15},this.lv90={baseHP:12506,baseDEF:593.79,baseATK:169.92}
this.mode=15
this.Etype=4
break;
case "백출":
this.lv80a={baseHP:12410,baseDEF:464.44,baseATK:179.0},this.lv90={baseHP:13348,baseDEF:499.56,baseATK:192.54}
this.mode=15
this.Etype=7
break;
case "카베":
this.lv80a={baseHP:11134,baseDEF:698.78,baseATK:217.46},this.lv90={baseHP:11962,baseDEF:750.77,baseATK:233.64}
this.mode=12
this.Etype=7
break;
case "키라라":
this.lv80a={baseHP:11336,baseDEF:508.2,baseATK:207.57},this.lv90={baseHP:12180,baseDEF:546.02,baseATK:223.02}
this.mode=15
this.Etype=7
break;
case "리니":
this.lv80a={baseHP:10247,baseDEF:500.17,baseATK:295.74},this.lv90={baseHP:11021,baseDEF:537.99,baseATK:318.11}
this.mode=1
this.Etype=3
break;
case "리넷":
this.lv80a={baseHP:11539,baseDEF:662.57,baseATK:215.48},this.lv90={baseHP:12397,baseDEF:711.87,baseATK:231.51}
this.mode=3
this.Etype=1
break;
case "프레미네":
this.lv80a={baseHP:11235,baseDEF:659.39,baseATK:237.23},this.lv90={baseHP:12071,baseDEF:708.46,baseATK:254.88}
this.mode=2
this.Etype=4
break;
case "느비예트":
this.lv80a={baseHP:13662,baseDEF:535.9,baseATK:193.68},this.lv90={baseHP:14695,baseDEF:576.42,baseATK:208.32}
this.mode=21
this.Etype=2
break;
case "라이오슬리":
this.lv80a={baseHP:12637,baseDEF:709.53,baseATK:289.07},this.lv90={baseHP:13593,baseDEF:763.17,baseATK:310.93}
this.mode=0
this.Etype=4
break;
default:
break;
}
}
function SetCharS(n){
if (isNaN(GetE(n))){
document.getElementById(n).value="0"
}else{
document.getElementById(n).value=GetE(n).toString()
}
SetChar(0)
}
function SetCharL(){
var temp
var temphtml='프리셋:<select id="Sets" onchange="SetChar(2)"><option>1</option>'
var temphtml2='</select> <button type="button" onclick="addset()">결과 저장하기</button>'
var temphtml3=' <button type="button" onclick="SetChar(1)">결과 복사하기</button>'
setsum=1
for (var i =2;i<=10; i++) {
temp=window.localStorage.getItem("ys"+document.getElementById('Char').value +i.toString())
if (temp!=null && temp!=""){
setsum+=1
temphtml+='<option>'+i.toString()+'</option>'
}
}
console.log(document.getElementById('Char').value)
if(onloading!=true){window.localStorage.setItem("ysbjjsq",document.getElementById('Char').value)}
document.getElementById('setlabel').innerHTML=temphtml+temphtml2+temphtml3
SetChar(2)
}
function addset(){
setsum+=1
var temphtml='프리셋:<select id="Sets" onchange="SetChar(2)">'
var temphtml2='</select> <button type="button" onclick="addset()">결과 저장하기</button>'
var temphtml3=' <button type="button" onclick="SetChar(1)">결과 복사하기</button>'
for (var i =1;i<=setsum; i++) {
temphtml+='<option>'+i.toString()+'</option>'
}
document.getElementById('setlabel').innerHTML=temphtml+temphtml2+temphtml3
document.getElementById('Sets').options[setsum-1].selected=true
document.getElementById('Level').options[0].selected=true;
document.getElementById('A1').options[1].selected=true;
document.getElementById('A2').options[4].selected=true;
document.getElementById('A3').options[5].selected=true;
document.getElementById('QQ').value="0"
document.getElementById('T1').value="0"
document.getElementById('T2').value="0"
document.getElementById('T3').value="0"
document.getElementById('T4').value="0"
document.getElementById('T5').value="0"
document.getElementById('T6').value="0"
document.getElementById('T7').value="0"
document.getElementById('result2').innerHTML=""
document.getElementById('result').innerHTML="세부사항을 입력해주세요"
window.location.href='#page1'
}
function remove(){
var temp=document.getElementById('Sets').value
var temp2="-프리셋"+temp
var temp3
if(temp=='1'){
temp=''
temp2=""
window.localStorage.removeItem('ys'+document.getElementById('Char').value);
}else{
for (var i =parseInt(temp);i<=setsum; i++) {
temp3=window.localStorage.getItem("ys"+document.getElementById('Char').value +(i+1).toString())
if (temp3!="" && temp3!=null){
window.localStorage.setItem("ys"+document.getElementById('Char').value +i.toString(),temp3)
}else{
window.localStorage.removeItem('ys'+document.getElementById('Char').value + i.toString());
}
}
}
alert("已清除本地储存里"+document.getElementById('Char').value+temp2+"的数据!")
SetCharL()
}
function Save(name){
var temp=document.getElementById('Sets').value
if(temp=='1'){temp=''}
n=document.getElementById('Level').value+"/"+document.getElementById('QQ').value+"/"+document.getElementById('T1').value+"/"+document.getElementById('T2').value+"/"+document.getElementById('T3').value+"/"+document.getElementById('T4').value+"/"+document.getElementById('T5').value+"/"+document.getElementById('T6').value+"/"+document.getElementById('T7').value+"/"
n=n+document.getElementById('A1').value+"/"+document.getElementById('A2').value+"/"+document.getElementById('A3').value+"/"
n=n+r[0].toFixed(1).toString()+"/"+r[1].toFixed(1).toString()+"/"+r[2].toFixed(1).toString()+"/"+r[3].toFixed(1).toString()+"/"+r[5].toFixed(1).toString()+"/"+r[6].toFixed(1).toString()+"/"+r[4].toFixed(1).toString()
if (ShowLoad==""){
n=n+"/0100110"
}else{
n=n+"/"+ShowLoad
}
window.localStorage.setItem("ys"+name+temp,n)
}
function Load(){
var temp=document.getElementById('Sets').value
if(temp=='1'){temp=''}
n=window.localStorage.getItem("ys"+document.getElementById('Char').value+temp)
if(n!=null){
temp=n.split("/");
document.getElementById('Level').options[2-parseInt(temp[0])].selected=true;
document.getElementById('QQ').value=temp[1]
document.getElementById('T1').value=temp[2]
document.getElementById('T2').value=temp[3]
document.getElementById('T3').value=temp[4]
document.getElementById('T4').value=temp[5]
document.getElementById('T5').value=temp[6]
document.getElementById('T6').value=temp[7]
document.getElementById('T7').value=temp[8]
for (var i =0;i<=6; i++) {
if(i<=4){if(document.getElementById('A1').options[i].value==parseInt(temp[9])){document.getElementById('A1').options[i].selected=true}}
if(i<=4){if(document.getElementById('A2').options[i].value==parseInt(temp[10])){document.getElementById('A2').options[i].selected=true}}
if(document.getElementById('A3').options[i].value==parseInt(temp[11])){document.getElementById('A3').options[i].selected=true}
}
ShowLoad=temp[19]
if (ShowLoad=="" || ShowLoad==undefined){
ShowLoad="0100110"
}
return true
}else{
document.getElementById('Level').options[0].selected=true;
document.getElementById('A1').options[1].selected=true;
document.getElementById('A2').options[4].selected=true;
document.getElementById('A3').options[5].selected=true;
document.getElementById('QQ').value="0"
document.getElementById('T1').value="0"
document.getElementById('T2').value="0"
document.getElementById('T3').value="0"
document.getElementById('T4').value="0"
document.getElementById('T5').value="0"
document.getElementById('T6').value="0"
document.getElementById('T7').value="0"
ShowLoad=""
return false
}
}
function SetChar(mtype){
var nt=document.getElementById('Char').value
var J = new userobject(nt);
var hp;
var df;
var atk;
var a=[0,0,0,0,0,0,0];
var sx=["바","물","불","얼","번","바","풀"] // 1: 바람 / 6: 바위
var fileexist=true
var weapont
res=""
res1=""
res2=""
res3=""
res4=""
res5=""
//武器类型point
var it2=[' 요이미야 엠버 타르탈리아 디오나 피슬 감우 쿠죠 사라 에일로이 벤티 고로 야란 타이나리 콜레이 파루잔 리니 ',' 바바라 클레 리사 모나 응광 설탕 연비 산고노미야 코코미 야에 미코 시카노인 헤이조 나히다 방랑자 백출 느비예트 라이오슬리 ',' 소 라이덴 쇼군 호두 로자리아 향릉 종려 토마 신학 운근 캔디스 사이노 요요 미카 ',' 북두 다이루크 레이저 노엘 유라 사유 중운 신염 아라타키 이토 도리 데히야 카베 프레미네 ',' 알베도 카미사토 아야카 베넷 케이아 각청 카에데하라 카즈하 치치 진 행추 바람행자 바위행자 번개행자 카미사토 아야토 쿠키 시노부 풀행자 닐루 레일라 알하이탐 키라라 리넷 '];
for (var i =0;i<=4; i++) {
if (it2[i].indexOf(" "+document.getElementById('Char').value+" ")>=0){
weapont=i
break;
}
}
if (mtype==2){
fileexist=Load()
//武器库point
var it=['<select id="Weapon" onchange="SetWeapon()"><option value="0">무기 선택</option><option value="674">기초공 674 (천날 등)</option><option value="608">기초공 608 (대마술/아모스/극지/비뢰/종탄노 등)</option><option value="542">기초공 542 (약수/사냥꾼 등)</option><option value="565">기초공 565 (제례/뒷골목/노을 등)</option><option value="510">기초공 510 (녹활/바람꽃/절현/담월 등)</option><option value="454">기초공 454 (페보/강철궁/파마궁 등)</option></select>','<select id="Weapon" onchange="SetWeapon()"><option value="0">무기 선택</option><option value="674">기초공 674 (현금흐름/두루마리/툴레이툴라 등)</option><option value="608">기초공 608 (카구라/자물쇠/사풍/도넛 등)</option><option value="542">기초공 542 (법전/천일밤 등)</option><option value="565">기초공 565 (하쿠신/만국/뒷골목 등)</option><option value="510">기초공 510 (호박/저녁별/페보/음유시인 등)</option><option value="454">기초공 454 (제례/도도코 등)</option></select>','<select id="Weapon" onchange="SetWeapon()"><option value="0">무기 선택</option><option value="741">기초공 741 (식재 등)</option><option value="674">기초공 674 (화박연/마루 등)</option><option value="608">기초공 608 (예초/호마/관홍 등)<option value="542">기초공 542 (적사지 등)</option><option value="620">기초공 620 (지느러미 등)</option><option value="565">기초공 565 (페보/천암/유월창 등)</option><option value="510">기초공 510 (어획 등)</option><option value="454">기초공 454 (결창/용학 등)</option></select>','<select id="Weapon" onchange="SetWeapon()"><option value="0">무기 선택</option><option value="741">기초공 741 (송뢰 등)</option><option value="674">기초공 674 (긍지 등)</option><option value="608">기초공 608 (무공/늑말/갈바등 등)</option><option value="542">기초공 542 (쇄석 등)</option><option value="565">기초공 565 (설장/고화 등)</option><option value="510">기초공 510 (백영검/이무기/천암/아쿠오마루 등)</option><option value="454">기초공 454 (페보/진주해황 등)</option></select>','<select id="Weapon" onchange="SetWeapon()"><option value="0">무기 선택</option><option value="674">기초공 674 (매검/회광 등)</option><option value="608">기초공 608 (후츠/참봉/서약/천공검 등)</option><option value="542">기초공 542 (반암/성현/잎가빛 등)</option><option value="620">기초공 620 (뒷골목 등)</option><option value="565">기초공 565 (참암 등)</option><option value="510">기초공 510 (부식/칠흑검/크시포스/용포/꽃잎비 등)</option><option value="454">기초공 454 (방추/아메노마/제례/페보 등)</option><option value="401">기초공 401 (여명신검 등)</option></select>'];
document.getElementById('WeaponList').innerHTML=it[weapont]
}
if (document.getElementById('Level').value=="1"){
hp=J.lv80a["baseHP"]
df=J.lv80a["baseDEF"]
atk=J.lv80a["baseATK"]+GetE("QQ")
res3="80 돌파 "+document.getElementById('Char').value+","
}
else{
hp=J.lv90["baseHP"]
df=J.lv90["baseDEF"]
atk=J.lv90["baseATK"]+GetE("QQ")
res3="90렙 "+document.getElementById('Char').value+","
}
for (var i =1;i<=3; i++) {
a[document.getElementById('A'+i.toString()).value-1]=a[document.getElementById('A'+i.toString()).value-1]+1
switch(document.getElementById('A'+i.toString()).value-1){
case 0:
res4=res4+"체";
break;
case 1:
res4=res4+"공";
break;
case 2:
res4=res4+"방";
break;
case 3:
res4=res4+"원마";
break;
case 4:
res4=res4+"원충";
break;
case 5:
res4=res4+"치";
break;
case 6:
res4=res4+"치";
break;
case 7:
res4=res4+sx[J.Etype-1];
break;
case 8:
res4=res4+"치유";
break;
default:
break;
}
}
r[0]=((GetE("T1")-4780)/hp-0.466*a[0])/0.05 //生命
r[1]=((GetE("T2")-311)/atk-0.466*a[1])/0.05 //攻击
r[2]=(GetE("T3")/df-0.583*a[2])/0.062 //防御
r[3]=(GetE("T4")-187*a[3])/19.75 //精通
r[5]=(GetE("T5")-31.1*a[5])/3.3 //暴击
r[6]=(GetE("T6")-62.2*a[6])/6.6 //爆伤
r[4]=(GetE("T7")-51.8*a[4])/5.5 //充能
if(r[5]<0 && r[6]>0){
document.getElementById('A3').options[5].selected=true
r[6]=(GetE("T6")-62.2*(a[6]+1))/6.6
r[5]=(GetE("T5")-31.1*(a[5]-1))/3.3
res4=res4[0]+res4[1]+"爆"
}
if(r[5]>0 && r[6]<0){
document.getElementById('A3').options[4].selected=true
r[6]=(GetE("T6")-62.2*(a[6]-1))/6.6
r[5]=(GetE("T5")-31.1*(a[5]+1))/3.3
res4=res4[0]+res4[1]+"暴"
}
var temppp=GetE("T5")*2+GetE("T6")
res3=res3+"성유물 주옵 "+res4+",치확치피 "+temppp.toFixed(1).toString()+"점"
if(r[0]+r[1]+r[2]+r[3]+r[4]+r[5]+r[6] > 53){res=res+"<p><font size='1' color='red'>*성유물 세부사항 값이 올바르지 않을 수 있습니다.</font></p>"}
for (var i =1;i<=6; i++) {
if(r[i]<0){res=res+"<p><font size='1' color='red'>*성유물의 속성이나 세부사항 값이 올바르지 않을 수 있습니다.</font></p><p><font size='1' color='red'>(4성 성유물은 계산이 불가능합니다.)</font></p>";i=7}
}
if(GetE("QQ")>741 || GetE("QQ")<=0){res=res+"<p><font size='1' color='red'>*무기 기초 공격력 데이터가 올바르지 않을 수 있습니다.</font></p>"}
if(J.mode!=6 && J.mode!=7 && J.mode!=13 && J.mode!=14 && J.mode!=16 && J.mode!=18 && J.mode!=21 && J.mode!=24 && J.mode!=25 && J.mode!=26 && J.mode!=27 && J.mode!=29){res1=res1+"<p>공 치명:<font size='4'>"+(r[5]+r[1]+r[6]).toFixed(1).toString()+"</font>점</p>"}
//胡桃、诺埃尔、雷电将军、珊瑚宫心海、五郎、八重神子、야란、草系、닐루、나히다、알하이탐不显示默认的这一条
var tempshowload
switch(J.mode){
case 0://一般通用
{tempshowload="0100110"}
break;
case 1://火水冰通用
res1=res1+"<p>공 원마 치명:<font size='4'>"+(r[5]+r[1]+r[6]+r[3]).toFixed(1).toString()+"</font>점</p>"
{tempshowload="0101110"}