-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_weapon_model.html
1807 lines (1425 loc) · 252 KB
/
data_weapon_model.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="zh-cmn-hans">
<head>
<meta charset="utf-8" />
<meta name="renderer" content="webkit" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
<link rel="shortcut icon" type="image/x-icon" href="../static/icon/favicon.ico">
<script src="../static/cjs/_xj.plugins.setting.js?ver=2022-12-16T05:16:20UTC+8"></script>
<meta name="viewport" xj-viewport="{minWidth:1280}" content="width=device-width,initial-scale=1" />
<script src="../static/plugin/xj.viewport/0.3.2/dist/xj.viewport.min.js"></script>
<script src="../static/plugin/xj.storage/0.2.2/dist/xj.storage.min.js"></script>
<script src="../static/plugin/xj.operate/0.6.0/dist/xj.operate.min.js"></script>
<link rel="stylesheet" href="../static/plugin/xj.ripple/0.5.0/dist/xj.ripple.min.css" />
<script src="../static/plugin/xj.ripple/0.5.0/dist/xj.ripple.min.js"></script>
<link rel="stylesheet" href="../static/plugin/xj.focus/0.4.0/dist/xj.focus.min.css" />
<script src="../static/plugin/xj.focus/0.4.0/dist/xj.focus.min.js"></script>
<link rel="stylesheet" href="../static/plugin/xj.base/0.4.0/dist/xj.base.min.css" />
<script src="../static/plugin/xj.base/0.4.0/dist/xj.base.min.js"></script>
<script>document.addEventListener('DOMContentLoaded',
function(){ FastClick.attach(document.body) }, false);</script>
<script src="../static/plugin/fastclick/1.0.6/lib/fastclick.min.js"></script>
<link rel="stylesheet" href="../static/plugin/fortawesome/6.4.2/css/all.min.css" />
<script src="../static/plugin/jquery/3.7.1/dist/jquery.min.js"></script>
<script src="../static/plugin/xjArrive/0.3.2/dist/xjArrive.min.js"></script>
<link id="prism-theme-white" rel="stylesheet" href="../static/plugin/prismjs/1.25.0/themes/material-light.min.css" />
<link id="prism-theme-black" rel="alternate stylesheet" href="../static/plugin/prismjs/1.25.0/themes/okaidia.min.css" />
<script data-manual="prevent prism auto highlight pre or code" src="../static/plugin/prismjs/1.25.0/prism.min.js"></script>
<link rel="stylesheet" href="../static/plugin/xjDemo/0.1.0/dist/xjDemo.min.css" />
<script src="../static/plugin/xjDemo/0.1.0/dist/xjDemo.min.js"></script>
<link rel="stylesheet" href="../static/plugin/xjScroll/0.4.0/dist/xjScroll.min.css" />
<script src="../static/plugin/xjScroll/0.4.0/dist/xjScroll.min.js"></script>
<link rel="stylesheet" href="../static/plugin/xjDir/0.2.0/dist/xjDir.min.css" />
<script src="../static/plugin/xjDir/0.2.0/dist/xjDir.min.js"></script>
<link rel="stylesheet" href="../static/cjs/_global.css?time=2024-11-28T02:38:24UTC+8" />
<script src="../static/cjs/_global.js?time=2024-11-28T02:38:24UTC+8"></script>
<meta name="description" content="这是铁骑少女这款 PC 游戏的攻略百科, 包含了游戏玩法和各种数据, 无论你是新手玩家或资深大佬, 在这里都应该能够有所收获. 這是鐵騎少女這款 PC 遊戲的攻略百科, 包含了遊戲玩法和各種數據, 無論你是新手玩家或資深大佬, 在這裡都應該能夠有所收穫. This is a guide encyclopedia for the PC game Cavalry Girls, which includes gameplay and various data, whether you are a novice player or a seasoned expert, you should be able to gain something from here. これは鉄騎少女という PC ゲームの攻略百科で, ゲームの遊び方や様々なデータが含まれており, 初心者でもベテランでも, ここでは収穫があるはずだ." />
<meta name="kyewords" content="铁骑少女, 鐵騎少女, Cavalry Girls, 鉄騎少女, 攻略, 百科, encyclopedia, guide, wiki, xjwiki" />
<title>武器配件</title>
</head>
<body>
<div id="pub_size"><div id="pub_size_winx"></div><div id="pub_size_winy"></div></div>
<div id="pub_pack">
<div id="pub_side">
<div class="xjScroll" id="xjScroll01" xjScroll="{manual:true, native:true, barsShow:false, barsHide:0,
resizeCallbackType:'none', operateAfter:setDirPositionY, scrollCallback:getDirPositionY, }" style="width:100%;">
<div class="xjDir" id="xjDir01" xjDir="{createRipple:false, }" style="padding:8px;width:100%;border-right:none;font-family:inherit;">
<ul>
<li><a href="../index.html"><i class="xjDir-icon"><img style="display:inline-block;vertical-align:top;height:54px;border:0;" src="../static/icon/logo01.png"></i></a></li>
<script>
// jQuery 的 :contains 筛选是模糊匹配的, 所以它也会匹配到包目标含文本参数的其他节点
// 为了更精准, 所以这里改成使用 filter() 方法进行过滤, 以实现全匹配才选中节点的效果
dirRepeatAnchor.find('a').filter(function(){ return (this.textContent.trim
() === document.title) }).parents('li').addClass('xjDir-active');
$(document.currentScript).replaceWith(dirRepeatAnchor);
</script>
</ul>
</div>
</div>
<script>
let ele_pub_size = document.getElementById('pub_size');
let isMobile = /Mobile|Android|IOS|iPhone|iPad/i.test(navigator.userAgent);
let setDirMinHeight = function(){ $('#xjScroll01').css('height', ele_pub_size.clientHeight) };
$(window).on('resize', function(){ setDirMinHeight() }); if(isMobile === true){ $(window).on('scroll', setDirMinHeight) };
setDirMinHeight();
let setDirPositionY = function(returnObject){ if(xj.storage.sessionStorage.get('dirPositionY') !== null){ returnObject.scrollY(parseInt(xj.storage.sessionStorage.get('dirPositionY'))) } };
let getDirPositionY = function(returnObject){ xj.storage.sessionStorage.set('dirPositionY', returnObject.scrollY()) };
$('#xjScroll01').xjScroll({});
</script>
</div>
<div id="pub_wrap">
<div id="pub_head">
<h1 id="pub_headText"><a class="a-unset" href=""><span>武器配件</span><small>(强化改造)</small></a></h1>
<form id="pub_headForm" target="_blank" enctype="text/plain" title="Press Enter For Search" action="https://github.com/xjwiki/cavalryGirls/search">
<input id="pub_headFormText" class="input-plain" type="search" name="q" autocomplete="off" placeholder="Search" value="" />
<button id="pub_headFormIcon" class="fas fa-search" onclick="this.parentElement.submit()"></button>
</form>
<a id="pub_headCode" class="button" title="Get Source from GitHub" target="_blank"
href="https://github.com/xjwiki/cavalryGirls/">
<i class="fab fa-github"></i></a>
<span id="pub_headLang">
<button id="pub_headLangIcon" type="button"
title="Select Your Adept Lang" onclick="this.focus()"><i class="fas fa-globe"></i></button>
<div id="pub_headLangMenu">
<a class="a-unset" href="">简体中文</a>
<a class="a-unset" href="javascript:void(0)" style="opacity:0.5;cursor:not-allowed;">繁體中文</a>
<a class="a-unset" href="javascript:void(0)" style="opacity:0.5;cursor:not-allowed;">English</a>
<a class="a-unset" href="javascript:void(0)" style="opacity:0.5;cursor:not-allowed;">日本語</a>
</div>
</span>
</div>
<div id="pub_main">
<section><h2 id="heading01">01. 基本信息</h2>
<p>
01. 以下是武器配件的列表, 分为 <code>远程(185)</code>/<code>近战(30)</code>/<code>肩扛(26)</code>, 共 <code>241</code> 种, 但融合配件不在这, 它们位于 <a href="data_weapon_fusion.html">武器融合.html</a>; <br />
02. 武器不能安装重复的配件, 但同类配件的不同等级可以并存, 武器能装多少个配件取决于 <code>配件极限</code>, 详情请查阅 <a href="data_weapon_list.html">武器列表.html</a>; <br />
03. 表格的属性较多, 有些属性的含义也较为复杂, 这里不好展开解释, 因此 XJ 在本页后面做了详细的描述, 详情请查阅 <a href="#heading02"># 属性解析</a>; <br />
04. 某些配件的效果描述是比较模糊的, 可能会存在一些理解的问题, 如果你想了解更多的内容或具体算法, 可查阅后面的 <a href="#heading03"># 额外拓展</a>; <br />
</p>
<p style="display:flex;justify-content:space-between;align-items:center;">
<label style="display:inline-flex;flex:0 0 auto;width:228px;"><span style="flex:0 0 auto;width:80px">配件等级: </span><select id="attrSelect01" class="needsclick select-unset" xj-focus="{ontabAlways:true}" style="flex:1 1 auto;width:148px;"></select></label>
<label style="display:inline-flex;flex:0 0 auto;width:228px;"><span style="flex:0 0 auto;width:80px">物品类型: </span><select id="attrSelect02" class="needsclick select-unset" xj-focus="{ontabAlways:true}" style="flex:1 1 auto;width:148px;"></select></label>
<label style="display:inline-flex;flex:0 0 auto;width:228px;"><span style="flex:0 0 auto;width:80px">归属种类: </span><select id="attrSelect03" class="needsclick select-unset" xj-focus="{ontabAlways:true}" style="flex:1 1 auto;width:148px;"></select></label>
<label style="display:inline-flex;flex:0 0 auto;width:228px;"><span style="flex:0 0 auto;width:80px">原型研发: </span><select id="attrSelect04" class="needsclick select-unset" xj-focus="{ontabAlways:true}" style="flex:1 1 auto;width:148px;"></select></label>
</p>
<p style="display:flex;justify-content:space-between;align-items:center;">
<label style="display:inline-flex;flex:0 0 auto;width:228px;">
<span style="flex:0 0 auto;width:80px">名称描述: </span>
<input id="nameInput01" class="input-unset" type="text" style="flex:1 1 auto;width:116px;" placeholder="空" />
<button id="nameCheck01" class="button-unset" type="button" style="flex:0 0 auto;width:32px;margin-left:-1px;font-size:14px;color:#999;"><i class="fas fa-magnifying-glass"></i></button>
</label>
<span style="display:inline-flex;flex:0 0 auto;width:472px;color:#999;">(可以搜索名称或描述, 多关键词用空格隔开)</span>
<span style="display:inline-flex;flex:0 0 auto;width:228px;">
<span style="flex:0 0 auto;color:#999;">│</span>
<button style="flex:0 0 auto;width:74px;margin-left:auto;order:1;"
id="resetButton" class="button-unset" type="button" xj-focus="{ontabAlways:true}">清空</button>
</span>
</p>
<table originalSort="1" id="powerTable01" class="powerTable table-xs table-hover showPart01"style="width:960px;line-height:14px;">
<thead>
<tr>
<th sorttype="string" style="width: 65px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">配件图片<i class="icon fa fa-sort" style="margin-left:0;"></i></span><span
style="position:absolute;top:0;bottom:2px;left:0;width:5px;background-image:linear-gradient(180deg, #31c2cf 0%, #31c2cf 75%, #31c2cf 75%, #31c2cf 75%, #31c2cf 75%, #31c2cf 100%);"></span></th>
<th sorttype="number" style="width: 32px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">配件序号<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="string" style="width: 96px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">配件名称<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="number" style="width: 40px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">项目代码<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="number" style="width: 40px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">参考价格<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="number" style="width: 40px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">配件等级<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="number" style="width: 40px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">默认排序<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="number" style="width: 40px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">解锁天数<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="string" style="width: 80px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">物品类型<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="string" style="width: 80px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">归属种类<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="string" style="width: 80px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">原型研发<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="string" style="width: 80px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">合成材料<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="string" style="width: 80px;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">出现条件<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
<th sorttype="string" style="width: auto;padding-top:6px;"><span style="writing-mode:vertical-lr;letter-spacing:2px;">文本描述<i class="icon fa fa-sort" style="margin-left:0;"></i></span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<hr />
</section>
<section><h2 id="heading02">02. 属性解析</h2>
<p>00. 由于排版和理解等因素, 所以配件列表的各项属性与游戏内部描述并不完全一致, 而下面的这些内容就是关于这些属性的具体解析; </p>
<p>————</p>
<p>01. 配件图片: 不同等级的同类配件, 图片都是一样的, 只是右下角的罗马数字递增而已, 图片左侧的彩条并非程序生成的, 它们就是图像的一部分, 不同类型的配件, 颜色也不同, 远程是青色, 近战是蓝色, 暗杀模块和肩扛模块是后来新增的内容, 因而是绿色和墨绿色;</p>
<p>02. 配件序号: 就是配件列表的默认排序, 你可以通过排序参数得知配件的总数, 实际上 XJ 并没有使用配件数据表的默认排序, 而是根据配件的相关性进行了自定义的排序, 微调了其中某些内容, 将不可升级的模块聚到了一起, 这样在查阅的时候也便于比对它们的区别;</p>
<p>03. 配件名称: 配件在升级后, 尾缀一般都会有变化, 但也有些是没规律的, 所以你通过图片右下角的罗马数字判断配件的等级会更快一点, 但由于不同配件的可升级次数也不同, 所以你往往要在整备机体界面右键它们, 才能知道配件是否已升到顶级, 这还是挺不方便的;</p>
<p>————</p>
<p>04. 项目代码: 配件的下级代码为当前配件代码 <code>+1</code>, 例如: 差速机(2001)/差速机+(2002)/高级差速机(2003)/制式差速机(2004), 目前配件的代码位于 <code>1401 ~ 2365</code> 之间, 但并非这个范围之内的所有数值都是配件, 如果想你制作配件模组, 最好仔细检查, 避免重复;</p>
<p>05. 参考价格: 这是配件在采购部购买的价格, 当配件被拖到回收栏, 可选择要获得资金还是获得废料, 如果要资金就能得到一半的参考价格, 如果要废料则是得到一半的合成材料, 一般购入低级配件合成高级配件更有性价比, 但采购部卖什么东西我们也没法控制就是了;</p>
<p>06. 配件等级: <code>-1</code> 表示满级, <code>-2</code> 表示不可升级, 高一级的配件都是用两个低一级的配件合成, 这就意味着如果你想合成第 <code>N</code> 级配件, 就需要 <code>2</code> 的 <code>N-1</code> 次方个初级配件, 例如说你想合成第 <code>4</code> 级的差速机, 那你就需要 <code>2</code> 的 <code>4-1</code> 次方既 <code>8</code> 个差速机;</p>
<p>07. 默认排序: 这是配件在游戏物品栏内的排序 id, 它会把上下级关系的配件放在一起, 让我们的查找变得更加方便, 这个排序就显得更合理, 而不会像武器那样是按照等级而不是同类进行排序, 其实排序与代码也有关系, 武器就是代码的不连续才导致了乱糟糟的序列;</p>
<p>08. 解锁天数: 配件的解锁时间, 解锁后采购部才可能售卖, 也能在合成车间合成, 否则那个物品就不可见(下方写着随天数解锁), 也就没法被点击到, 不过剧情模式下合成车间需要到第 24 天才开放, 所以尽管有些配件的解锁天数小于 24, 但此时就算解锁了也没法合成;</p>
<p>09. 物品类型: 游戏中的物品可分为远程/近战/投掷/书籍/强化等多个种类, 当前页仅展示了其中的远程强化/近战强化/肩扛强化共三类, 这个属性主要是决定配件究竟是用于远程还是近战或是肩扛, 可发现远程的数量大约是近战的六倍, 关于近战方面还是有些许单调呢;</p>
<p>10. 归属种类: 归属种类决定配件可以安装到什么武器上, 得拥有对应标签的配件才可以被装进对应标签的武器, 但也有些配件的条件很宽松, 如大弹鼓就什么远程武器都能装(如果你在做模组, 这项属性不填则表示没有标签限制, 也就是说任意武器都可以装备这个配件);</p>
<p>11. 原型研发: 既这件武器的初始研发者究竟是谁, 目前的研发单位仅是文本设定, 并没有什么实际意义, 所以这个属性不重要, 但值得一提的是, 武器的原型研发和配件的原型研发没有任何的重叠部分, 这就显得有些奇怪了, 难道说开发武器和配件的不能是同一个机构;</p>
<p>————</p>
<p>12. 合成材料: 既合成初级配件所需要的材料, 高级配件是用两个低级配件升级而来, 升级机制可查看"06. 配件等级", 也存在部分配件如"高级能量弹"无法合成, 只能在采购部购买, 合成材料是通过在解体厂拆解敌方机体回收获得的, 详情可到 <a href="./data_manage_material.html">回收废料.html</a> 查看细节;</p>
<p>13. 出现条件: 拥有过这里的某件物品(进过物品栏即可, 卖掉或拆解都行), 采购部才可能售卖, 某些低级物品作为条件时, 也许拥有过高级版也行, Unlock 既默认已解锁而 - 则代表不会在采购部出现, 但是采购部会不会卖还跟权重有关, 可到 <a href="./data_others_priority.html">商品权重.html</a> 查看细节;</p>
<p>14. 文本描述: 使用文字描述配件特性, 值得注意的是, <code>%</code> 单位和 <code>P</code> 单位的数据, 算法并不同, 如差速机可让射击间隔 <code>-5%</code>, 假设射击间隔为 <code>1</code> 秒, 则结果为 <code>1*(1-5%)=0.95</code> 秒, 如暴击模块可让暴击概率 <code>+4P</code>, 假设暴击概率为 <code>10</code>, 则结果为 <code>10+4=14</code>;</p>
<hr />
</section>
<section><h2 id="heading03">03. 额外拓展</h2>
<p>配件获取: 并非所有配件都能自己合成, 在远程配件中只有 <code>1</code> 种既高级能量弹模块(2088)无法合成, 但近战配件却有 <code>5</code> 种无法合成, 分别为近战高温模块(2200) / 近战相位模块(2201) / 暗杀效率模块(2218) / 暗杀隐匿模块(2221) / 暗杀广度模块(2224), 这些模块仅能在采购部里购买到, 但采购部是否刷出这类东西也是随机的, 如果你是想达成全图鉴的解锁, 那就得时刻留意采购部的新品情况了;</p>
<p>拆卸折损: 将配件拖曳到武器的配件槽即可安装, 反之从配件槽拖放回空的物品栏位则是拆卸, 但拆卸这种行为有时会损害到武器, 也就是会降低武器的耐久度, 根据实测, 价格 <code>>=30</code> 的配件, 拆卸时就会损害到武器, 耐久度降低值等于配件价格的十分之一(向下取整), 例如战术燃烧榴弹发射器(2363)价格为 <code>75</code>, 那么拆卸就会造成武器 <code>7%</code> 的损耗, 尽管维修武器也花不了多少钱, 但还是要慎重操作;</p>
<p>元素影响: 各类武器都有一些施加元素影响的配件, 例如动能类武器使用的火焰模块(2033)或高爆类武器使用的火焰炸弹模块(2159), 这类配件的目的都在于为攻击附加元素伤害, 当他们单独存在的时候, 作用非常有限, 但如果两种或更多元素混合, 往往可以造成极大的影响, 例如: <code>燃烧+寒冷=融化(抵抗-80%)</code> / <code>燃烧+电磁=超载(范围麻痹)</code>, 这部分的系统较为复杂, 更多的细节可查阅 <a href="./data_others_parlance.html">术语提示.html</a>;</p>
<p>过穿现象: 在众多的配件中, 滞留弹(2295)是比较特殊的, 它影响的是过穿概率, 过穿表现为子弹只会造成 <code>20%</code> 的伤害, 但子弹击中目标后不会消失, 而是在目标身后出现, 直到打中下个敌人或消失, 触发算法为: <code>随机数 = 0 ~ 99</code>, <code>过穿修正 = 我方 20, 敌人 1</code>, <code>if(子弹伤害 > 400 && 被击中的机体当前生命 < 子弹伤害 * 过穿修正){ if(随机数 < ((伤害 / 20) * (1 - (子弹过穿概率默认0 - 滞留弹配件效果) / 100)) && 机体抵抗 < 穿甲概率){ 触发过穿 } }</code>, 触发过穿不一定是好事, 例如说高斯狙击步枪, 它的子弹伤害很高, 也就导致它的过穿概率也很高, 结果就是触发过穿之后, 只能造成五分之一的伤害值, 这在面对群集的敌人时也许是好事, 因为可以造成直线的 AOE 伤害, 但在面对某些精英敌人时, 就不尽人意了, 此时我们就可以选择安装滞留弹系列的配件, 来降低过穿触发的概率;</p>
<hr />
</section>
<style>/* 表格样式 */
#powerTable01 .hideTr{display:none;}
/* 归属种类 */
#powerTable01 tr > td:nth-of-type(10){position:relative;cursor:default;}
#powerTable01 tr > td:nth-of-type(10) > span:nth-of-type(1){display:inline-block;width:70px;vertical-align:top;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:underline;}
#powerTable01 tr > td:nth-of-type(10) > span:nth-of-type(2){display:none;position:absolute;top:50%;right:100%;transform:translate(-8px, -50%);pointer-events:none;padding:8px;border-radius:4px;z-index:32;color:#fff;background-color:rgba(0,0,0,0.75);text-align:center;white-space:normal;min-width:152px;}
#powerTable01 tr > td:nth-of-type(10) > span:nth-of-type(2)::after{position:absolute;top:50%;left:100%;transform:translate(0px, -50%);width:0;height:0;border:8px solid transparent;border-right:0;border-left-color:rgba(0,0,0,0.75);content:"";}
#powerTable01 tr > td:nth-of-type(10):hover > span:nth-of-type(2), #powerTable01 tr > td:nth-of-type(10):active > span:nth-of-type(2){display:block;}
/* 原形研发 */
#powerTable01 tr > td:nth-of-type(11){position:relative;cursor:default;}
#powerTable01 tr > td:nth-of-type(11) > span:nth-of-type(1){display:inline-block;width:70px;vertical-align:top;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:underline;}
#powerTable01 tr > td:nth-of-type(11) > span:nth-of-type(2){display:none;position:absolute;top:50%;right:100%;transform:translate(-8px, -50%);pointer-events:none;padding:8px;border-radius:4px;z-index:32;color:#fff;background-color:rgba(0,0,0,0.75);text-align:center;white-space:normal;min-width:152px;}
#powerTable01 tr > td:nth-of-type(11) > span:nth-of-type(2)::after{position:absolute;top:50%;left:100%;transform:translate(0px, -50%);width:0;height:0;border:8px solid transparent;border-right:0;border-left-color:rgba(0,0,0,0.75);content:"";}
#powerTable01 tr > td:nth-of-type(11):hover > span:nth-of-type(2), #powerTable01 tr > td:nth-of-type(11):active > span:nth-of-type(2){display:block;}
/* 合成材料 */
#powerTable01 tr > td:nth-of-type(12){position:relative;cursor:default;}
#powerTable01 tr > td:nth-of-type(12) > span:nth-of-type(1){display:inline-block;width:70px;vertical-align:top;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:underline;}
#powerTable01 tr > td:nth-of-type(12) > span:nth-of-type(2){display:none;position:absolute;top:50%;right:100%;transform:translate(-8px, -50%);pointer-events:none;padding:8px;border-radius:4px;z-index:32;color:#fff;background-color:rgba(0,0,0,0.75);text-align:center;white-space:normal;min-width:232px;}
#powerTable01 tr > td:nth-of-type(12) > span:nth-of-type(2)::after{position:absolute;top:50%;left:100%;transform:translate(0px, -50%);width:0;height:0;border:8px solid transparent;border-right:0;border-left-color:rgba(0,0,0,0.75);content:"";}
#powerTable01 tr > td:nth-of-type(12):hover > span:nth-of-type(2), #powerTable01 tr > td:nth-of-type(12):active > span:nth-of-type(2){display:block;}
/* 出现条件 */
#powerTable01 tr > td:nth-of-type(13){position:relative;cursor:default;}
#powerTable01 tr > td:nth-of-type(13) > span:nth-of-type(1){display:inline-block;width:70px;vertical-align:top;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:underline;}
#powerTable01 tr > td:nth-of-type(13) > span:nth-of-type(2){display:none;position:absolute;top:50%;right:100%;transform:translate(-8px, -50%);pointer-events:none;padding:8px;border-radius:4px;z-index:32;color:#fff;background-color:rgba(0,0,0,0.75);text-align:center;white-space:normal;min-width:232px;}
#powerTable01 tr > td:nth-of-type(13) > span:nth-of-type(2)::after{position:absolute;top:50%;left:100%;transform:translate(0px, -50%);width:0;height:0;border:8px solid transparent;border-right:0;border-left-color:rgba(0,0,0,0.75);content:"";}
#powerTable01 tr > td:nth-of-type(13):hover > span:nth-of-type(2), #powerTable01 tr > td:nth-of-type(13):active > span:nth-of-type(2){display:block;}
</style>
<script>/* 数据注解 */
/*
ColorPlus = Cluster = '', MaxPile = 1, DebugHide = 0,
CargoPiles = CargoPilesMax = CargoPilesFusion = CargoPilesFusionMax = 0,
肩扛供弹匣1, 肩部助力扭矩, 肩扛武器爆炸伤害模块1, 肩扛武器爆炸穿透模块1, 这四个模块的解锁天数都是由变量 $StrategyOpenDay 控制
这个变量是一个事件, 代表战略武器的解锁, 目前剧情模式下, 四个难度都是在第二十二天执行了这个事件, 也就相当于模块的解锁天数是 22
————
Func 是函数, 已经和 description 结合起来, 这部分的数据没意义, 就删掉了
MaxPile 属性是堆叠数, 只有礼物和书本等项目能够堆叠, 配件该项都是 1, 并没有意义, 所以删掉了
ColorPlus 属性是物品名称的特殊色, 只有敌方机甲回收的废料有这个属性, 配件该项都是 '', 并没有意义, 所以删掉了
Cluster 属性是物品的群组信息, 只有融合的配件有这个属性, 用于判断同类项配件不得重复安装, 配件该项都是空, 并没有意义, 所以删掉了
CargoPiles, CargoPilesMax, CargoPilesFusion, CargoPilesFusionMax 是武器配件槽位和融合槽位的数据, 只有武器才拥有, 其它的物品该属性没有任何意义, 所以删掉了
观察 ItemsCount 数据发现, 尽管出现条件可能都是空, 但有些高级物品是不会在采购部出现的, 因此修改了出现条件的内容, 1=没有限制, 0=不会出现
由于空间放不下, 所以出现条件被精简了, 删掉了高级物品, 只保留低级物品, 所以遇到条件为低级物品时, 意味着如果拥有过物品的高级版本也能解锁
*/
// 配件数据
let tbodyArray01 = [
// 高亮, 配件图片, 配件序号, 配件名称, 项目代码, 参考价格, 配件等级, 默认排序, 解锁天数, 物品类型, 归属种类, 原型研发, 合成材料, 出现条件, 文本描述, ],
// Active, Image, Number, Name, Items, Price, Level, ResolveID, Day, Type, Tag, Company, Syns, NeedWeapon, Description, ], //01
[1, 2001, '001', '差速机', 2001, 10, 1, 251, 0, 'WeaponModel', 'NormalWeapon|ShotWeapon|ExploWeapon', 'Main2_3', '40001_3|40002_1|40006_2|40005_1', '-', '-', ],
[1, 2002, '002', '差速机+', 2002, 25, 2, 252, 0, 'WeaponModel', 'NormalWeapon|ShotWeapon|ExploWeapon', 'Main2_3', '-', '2001_2004', '-', ],
[1, 2003, '003', '高级差速机', 2003, 50, 3, 253, 31, 'WeaponModel', 'NormalWeapon|ShotWeapon|ExploWeapon', 'Main2_3', '-', '2001_2004', '-', ],
[1, 2004, '004', '制式差速机', 2004, 100, -1, 254, 62, 'WeaponModel', 'NormalWeapon|ShotWeapon|ExploWeapon', 'Main2_3', '-', '2001_2004', '-', ], //01
[0, 2013, '005', '大弹鼓', 2013, 10, 1, 263, 0, 'WeaponModel', 'RangedWeapon', 'Main2_8', '40001_1|40002_3|40006_2|40005_1', '-', '-', ],
[0, 2014, '006', '大弹鼓+', 2014, 25, 2, 264, 0, 'WeaponModel', 'RangedWeapon', 'Main2_8', '-', '2013_2016', '-', ],
[0, 2015, '007', '高级弹鼓', 2015, 50, 3, 265, 0, 'WeaponModel', 'RangedWeapon', 'Main2_8', '-', '2013_2016', '-', ],
[0, 2016, '008', '制式弹鼓', 2016, 100, -1, 266, 0, 'WeaponModel', 'RangedWeapon', 'Main2_8', '-', '2013_2016', '-', ], //01
[1, 2005, '009', '收束器', 2005, 10, 1, 255, 0, 'WeaponModel', 'NormalWeapon|ShotWeapon|ExploWeapon', 'Main2_8', '40001_1|40002_2|40006_1|40011_1|40005_1', '-', '-', ],
[1, 2006, '010', '收束器+', 2006, 25, 2, 256, 0, 'WeaponModel', 'NormalWeapon|ShotWeapon|ExploWeapon', 'Main2_8', '-', '2005_2008|10002|10003|10008|10020|10023|10025|10102|10103|10108|10120|10123|10125|10202|10203|10220|10223|10225|10303|10320', '-', ],
[1, 2007, '011', '高级收束器', 2007, 50, 3, 257, 31, 'WeaponModel', 'NormalWeapon|ShotWeapon|ExploWeapon', 'Main2_8', '-', '2005_2008|2250_2252', '-', ],
[1, 2008, '012', '制式收束器', 2008, 100, -1, 258, 62, 'WeaponModel', 'NormalWeapon|ShotWeapon|ExploWeapon', 'Main2_8', '-', '2005_2008|2250_2252', '-', ], //01
[0, 2009, '013', '弹仓', 2009, 10, 1, 259, 0, 'WeaponModel', 'ShotWeapon', 'Main2_3', '40001_2|40002_1|40006_1|40011_1|40005_1', '10002|10003|10008|10020|10023|10025|10102|10103|10108|10120|10123|10125|10202|10203|10220|10223|10225|10303|10320', '-', ],
[0, 2010, '014', '弹仓+', 2010, 25, 2, 260, 0, 'WeaponModel', 'ShotWeapon', 'Main2_3', '-', '2009_2012', '-', ],
[0, 2011, '015', '高级弹仓', 2011, 50, 3, 261, 31, 'WeaponModel', 'ShotWeapon', 'Main2_3', '-', '2009_2012', '-', ],
[0, 2012, '016', '制式弹仓', 2012, 100, -1, 262, 62, 'WeaponModel', 'ShotWeapon', 'Main2_3', '-', '2009_2012', '-', ], //01
[1, 2029, '017', '硬弹头模块', 2029, 10, 1, 279, 0, 'WeaponModel', 'NormalWeapon', 'Main2_11', '40002_1|40003_3|40007_1', '2029_2032|10004|10005|10015|10024', '-', ],
[1, 2030, '018', '硬弹头模块+', 2030, 20, 2, 280, 25, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2029_2032', '-', ],
[1, 2031, '019', '高级硬弹头模块', 2031, 40, 3, 281, 50, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2029_2032', '-', ],
[1, 2032, '020', '制式硬弹头模块', 2032, 80, -1, 282, 70, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2029_2032', '-', ], //01
[0, 2021, '021', '尖头弹', 2021, 10, 1, 271, 0, 'WeaponModel', 'NormalWeapon', 'Main2_2', '40001_2|40002_3|40003_1|40007_1|40005_1', '-', '-', ],
[0, 2022, '022', '尖头弹+', 2022, 20, 2, 272, 0, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2021_2024', '-', ],
[0, 2023, '023', '高级尖头弹', 2023, 40, 3, 273, 31, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2021_2024', '-', ],
[0, 2024, '024', '制式尖头弹', 2024, 80, -1, 274, 62, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2021_2024', '-', ], //01
[1, 2025, '025', '杀伤模块', 2025, 25, 1, 275, 0, 'WeaponModel', 'NormalWeapon', 'Main2_11', '40001_5|40003_2|40007_3|40004_2|40005_3', '-', '-', ],
[1, 2026, '026', '杀伤模块+', 2026, 50, 2, 276, 11, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2025_2028', '-', ],
[1, 2027, '027', '高级杀伤模块', 2027, 100, 3, 277, 31, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2025_2028', '-', ],
[1, 2028, '028', '制式杀伤模块', 2028, 200, -1, 278, 62, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2025_2028', '-', ], //01
[0, 2017, '029', '换弹模块', 2017, 10, 1, 267, 0, 'WeaponModel', 'RangedWeapon', 'Main2_3', '40001_2|40002_2|40006_1|40007_1|40005_1', '-', '-', ],
[0, 2018, '030', '换弹模块+', 2018, 20, 2, 268, 0, 'WeaponModel', 'RangedWeapon', 'Main2_3', '-', '2017_2020', '-', ],
[0, 2019, '031', '高级换弹模块', 2019, 40, 3, 269, 0, 'WeaponModel', 'RangedWeapon', 'Main2_3', '-', '2017_2020', '-', ],
[0, 2020, '032', '制式换弹模块', 2020, 80, -1, 270, 0, 'WeaponModel', 'RangedWeapon', 'Main2_3', '-', '2017_2020', '-', ], //01
[1, 2282, '033', '战术握把', 2282, 40, 1, 389, 0, 'WeaponModel', 'Rail', 'Main2_10', '40001_4|40002_1|40007_3|40005_1', '-', '-', ],
[1, 2283, '034', '战术握把+', 2283, 45, 2, 390, 11, 'WeaponModel', 'Rail', 'Main2_10', '-', '-', '-', ],
[1, 2284, '035', '高级战术握把', 2284, 100, 3, 391, 33, 'WeaponModel', 'Rail', 'Main2_10', '-', '-', '-', ],
[1, 2285, '036', '制式战术握把', 2285, 200, -1, 392, 66, 'WeaponModel', 'Rail', 'Main2_10', '-', '-', '-', ], //01
[0, 2033, '037', '火焰模块', 2033, 30, 1, 283, 0, 'WeaponModel', 'NormalWeapon', 'Main2_5', '40002_1|40003_2|40015_1', '10006|10021|10022|10106|10121|10122|10206|10221|10222|10306|10321|10322|10406', '-', ],
[0, 2034, '038', '火焰模块+', 2034, 70, 2, 284, 30, 'WeaponModel', 'NormalWeapon', 'Main2_5', '-', '2033_2035', '-', ],
[0, 2035, '039', '火焰模块++', 2035, 150, -1, 285, 60, 'WeaponModel', 'NormalWeapon', 'Main2_5', '-', '2033_2035', '-', ], //01
[1, 2036, '040', '电磁模块', 2036, 30, 1, 286, 0, 'WeaponModel', 'NormalWeapon', 'Main2_5', '40002_1|40003_2|40017_1', '10006|10021|10022|10106|10121|10122|10206|10221|10222|10306|10321|10322|10406', '-', ],
[1, 2037, '041', '电磁模块+', 2037, 70, 2, 287, 30, 'WeaponModel', 'NormalWeapon', 'Main2_5', '-', '2036_2038', '-', ],
[1, 2038, '042', '电磁模块++', 2038, 150, -1, 288, 60, 'WeaponModel', 'NormalWeapon', 'Main2_5', '-', '2036_2038', '-', ], //01
[0, 2039, '043', '冰冻模块', 2039, 30, 1, 289, 0, 'WeaponModel', 'NormalWeapon', 'Main2_5', '40002_1|40003_2|40016_1', '10006|10021|10022|10106|10121|10122|10206|10221|10222|10306|10321|10322|10406', '-', ],
[0, 2040, '044', '冰冻模块+', 2040, 70, 2, 290, 30, 'WeaponModel', 'NormalWeapon', 'Main2_5', '-', '2039_2041', '-', ],
[0, 2041, '045', '冰冻模块++', 2041, 150, -1, 291, 60, 'WeaponModel', 'NormalWeapon', 'Main2_5', '-', '2039_2041', '-', ], //01
[1, 2074, '046', '穿甲模块1', 2074, 10, 1, 300, 6, 'WeaponModel', 'NormalWeapon', 'Main2_2', '40001_1|40002_1|40003_4|40005_1', '-', '-', ],
[1, 2075, '047', '穿甲模块2', 2075, 25, 2, 301, 25, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2074_2077', '-', ],
[1, 2076, '048', '穿甲模块3', 2076, 80, 3, 302, 45, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2074_2077', '-', ],
[1, 2077, '049', '穿甲模块4', 2077, 150, -1, 303, 70, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2074_2077', '-', ], //01
[0, 2155, '050', '爆炸伤害模块1', 2155, 15, 1, 339, 0, 'WeaponModel', 'ExploWeapon', 'Main2_9', '40001_1|40003_1|40010_1', '10007|10008|10026|10107|10108|10126', '-', ],
[0, 2156, '051', '爆炸伤害模块2', 2156, 25, 2, 340, 32, 'WeaponModel', 'ExploWeapon', 'Main2_9', '-', '10007|10008|10026|10107|10108|10126', '-', ],
[0, 2157, '052', '爆炸伤害模块3', 2157, 80, 3, 341, 32, 'WeaponModel', 'ExploWeapon', 'Main2_9', '-', '10007|10008|10026|10107|10108|10126', '-', ],
[0, 2158, '053', '爆炸伤害模块4', 2158, 150, -1, 342, 34, 'WeaponModel', 'ExploWeapon', 'Main2_9', '-', '10007|10008|10026|10107|10108|10126', '-', ], //01
[1, 2084, '054', '能量弹模块1', 2084, 20, 1, 310, 37, 'WeaponModel', 'NormalWeapon', 'Main2_7', '40001_5|40002_5|40003_2|40026_2|40005_1', '-', '-', ],
[1, 2085, '055', '能量弹模块2', 2085, 35, 2, 311, 39, 'WeaponModel', 'NormalWeapon', 'Main2_7', '-', '2084_2091', '-', ],
[1, 2086, '056', '能量弹模块3', 2086, 70, 3, 312, 41, 'WeaponModel', 'NormalWeapon', 'Main2_7', '-', '2084_2091', '-', ],
[1, 2087, '057', '能量弹模块4', 2087, 120, -1, 313, 43, 'WeaponModel', 'NormalWeapon', 'Main2_7', '-', '2084_2091', '-', ], //01
[0, 2088, '058', '高级能量弹模块1', 2088, 40, 1, 314, 40, 'WeaponModel', 'NormalWeapon', 'Main2_7', '-', '2085_2091', '-', ],
[0, 2089, '059', '高级能量弹模块2', 2089, 70, 2, 315, 51, 'WeaponModel', 'NormalWeapon', 'Main2_7', '-', '2088_2091', '-', ],
[0, 2090, '060', '高级能量弹模块3', 2090, 150, 3, 316, 69, 'WeaponModel', 'NormalWeapon', 'Main2_7', '-', '2088_2091', '-', ],
[0, 2091, '061', '高级能量弹模块4', 2091, 250, -1, 317, 75, 'WeaponModel', 'NormalWeapon', 'Main2_7', '-', '2088_2091', '-', ], //01
[1, 2066, '062', '暴击模块', 2066, 10, 1, 292, 0, 'WeaponModel', 'NormalWeapon', 'Main2_2', '40001_1|40003_1|40004_2', '10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ],
[1, 2067, '063', '暴击模块+', 2067, 25, 2, 293, 30, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2066_2069', '-', ],
[1, 2068, '064', '高级暴击模块', 2068, 80, 3, 294, 60, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2066_2069', '-', ],
[1, 2069, '065', '制式暴击模块', 2069, 150, -1, 295, 0, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2066_2069', '-', ], //01
[0, 2070, '066', '暴伤模块', 2070, 10, 1, 296, 0, 'WeaponModel', 'NormalWeapon', 'Main2_2', '40001_1|40003_1|40004_2', '2066_2069|10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ],
[0, 2071, '067', '暴伤模块+', 2071, 25, 2, 297, 22, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2070_2073', '-', ],
[0, 2072, '068', '高级暴伤模块', 2072, 80, 3, 298, 45, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2070_2073', '-', ],
[0, 2073, '069', '制式暴伤模块', 2073, 150, -1, 299, 62, 'WeaponModel', 'NormalWeapon', 'Main2_2', '-', '2070_2073', '-', ], //01
[1, 2096, '070', '分裂模块', 2096, 20, 1, 322, 18, 'WeaponModel', 'NormalWeapon', 'Main2_10', '40001_4|40003_3|40020_2|40005_1', '-', '-', ],
[1, 2097, '071', '分裂模块+', 2097, 50, 2, 323, 36, 'WeaponModel', 'NormalWeapon', 'Main2_10', '-', '2096_2099', '-', ],
[1, 2098, '072', '高级分裂模块', 2098, 160, 3, 324, 54, 'WeaponModel', 'NormalWeapon', 'Main2_10', '-', '2096_2099', '-', ],
[1, 2099, '073', '制式分裂模块', 2099, 300, -1, 325, 72, 'WeaponModel', 'NormalWeapon', 'Main2_10', '-', '2096_2099', '-', ], //01
[0, 2092, '074', '爆炸模块', 2092, 20, 1, 318, 18, 'WeaponModel', 'NormalWeapon', 'Main2_9', '40001_4|40003_3|40010_2', '2092_2095|10004|10005|10015', '-', ],
[0, 2093, '075', '爆炸模块+', 2093, 50, 2, 319, 36, 'WeaponModel', 'NormalWeapon', 'Main2_9', '-', '2092_2095', '-', ],
[0, 2094, '076', '高级爆炸模块', 2094, 160, 3, 320, 54, 'WeaponModel', 'NormalWeapon', 'Main2_9', '-', '2092_2095', '-', ],
[0, 2095, '077', '制式爆炸模块', 2095, 300, -1, 321, 72, 'WeaponModel', 'NormalWeapon', 'Main2_9', '-', '2092_2095', '-', ], //01
[1, 2250, '078', '稳定器', 2250, 15, 1, 357, 0, 'WeaponModel', 'RangedWeapon', 'Main2_10', '40001_3|40002_1|40007_2|40005_1', '-', '-', ],
[1, 2251, '079', '稳定器2', 2251, 35, 2, 358, 40, 'WeaponModel', 'RangedWeapon', 'Main2_10', '-', '2005_2008|2250_2252', '-', ],
[1, 2252, '080', '稳定器3', 2252, 75, -1, 359, 65, 'WeaponModel', 'RangedWeapon', 'Main2_10', '-', '2005_2008|2250_2252', '-', ], //01
[0, 2259, '081', '线圈模块', 2259, 50, 1, 366, 17, 'WeaponModel', 'ElectricWeapon', 'Main2_7', '40026_2|40019_3|40018_3', '10031_10035|10131_10134', '-', ],
[0, 2260, '082', '线圈模块+', 2260, 100, 2, 367, 35, 'WeaponModel', 'ElectricWeapon', 'Main2_7', '-', '10031_10035|10131_10134', '-', ],
[0, 2261, '083', '线圈模块++', 2261, 150, -1, 368, 55, 'WeaponModel', 'ElectricWeapon', 'Main2_7', '-', '10031_10035|10131_10134', '-', ], //01
[1, 2106, '084', '暴击分裂模块', 2106, 20, 1, 332, 18, 'WeaponModel', 'NormalWeapon', 'Main2_11', '40001_1|40003_1|40004_2|40020_2', '2106_2109|2096|2066|2070', '-', ],
[1, 2107, '085', '暴击分裂模块+', 2107, 50, 2, 333, 18, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2106_2109', '-', ],
[1, 2108, '086', '暴击分裂模块++', 2108, 160, -1, 334, 18, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2106_2109', '-', ], //01
[0, 2100, '087', '斩首模块', 2100, 30, 1, 326, 32, 'WeaponModel', 'NormalWeapon', 'Main2_11', '40001_5|40002_6|40003_2|40004_5', '2100_2102|10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ],
[0, 2101, '088', '斩首模块+', 2101, 70, 2, 327, 45, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2100_2102', '-', ],
[0, 2102, '089', '斩首模块++', 2102, 150, -1, 328, 66, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2100_2102', '-', ], //01
[1, 2103, '090', '首攻模块', 2103, 30, 1, 329, 32, 'WeaponModel', 'NormalWeapon', 'Main2_11', '40001_5|40002_9|40003_2|40004_4', '2103_2105|10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ],
[1, 2104, '091', '首攻模块+', 2104, 70, 2, 330, 45, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2103_2105', '-', ],
[1, 2105, '092', '首攻模块++', 2105, 150, -1, 331, 66, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2103_2105', '-', ], //01
[0, 2118, '093', '斩杀模块', 2118, 30, 1, 336, 32, 'WeaponModel', 'NormalWeapon', 'Main2_3', '40001_7|40002_6|40003_1|40004_5', '2118_2120|10004|10005|10015', '-', ],
[0, 2119, '094', '斩杀模块+', 2119, 70, 2, 337, 32, 'WeaponModel', 'NormalWeapon', 'Main2_3', '-', '2118_2120|10004|10005|10015', '-', ],
[0, 2120, '095', '斩杀模块++', 2120, 150, -1, 338, 32, 'WeaponModel', 'NormalWeapon', 'Main2_3', '-', '2118_2120|10004|10005|10015', '-', ], //01
[1, 2162, '096', '磁通量放大器1', 2162, 25, 1, 346, 0, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '40013_4|40014_3|40002_1|40007_1', '10027_10035|10127_10134|10031_10035|10131_10134', '-', ],
[1, 2163, '097', '磁通量放大器2', 2163, 40, 2, 347, 17, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134|10031_10035|10131_10134', '-', ],
[1, 2164, '098', '磁通量放大器3', 2164, 70, 3, 348, 40, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134|10031_10035|10131_10134', '-', ],
[1, 2165, '099', '磁通量放大器4', 2165, 135, -1, 349, 65, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134|10031_10035|10131_10134', '-', ], //01
[0, 2166, '100', '增效透镜模块1', 2166, 25, 1, 350, 0, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '40013_3|40014_4|40002_1|40006_1', '10027_10035|10127_10134|10031_10035|10131_10134', '-', ],
[0, 2167, '101', '增效透镜模块2', 2167, 40, 2, 351, 17, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134|10031_10035|10131_10134', '-', ],
[0, 2168, '102', '增效透镜模块3', 2168, 70, 3, 352, 40, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134|10031_10035|10131_10134', '-', ],
[0, 2169, '103', '增效透镜模块4', 2169, 135, -1, 353, 65, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134|10031_10035|10131_10134', '-', ], //01
[1, 2253, '104', '维护模块', 2253, 50, 1, 360, 0, 'WeaponModel', 'RangedWeapon', 'Main2_4', '40001_10|40002_10|40006_5|40007_5', '-', '-', ],
[1, 2254, '105', '维护模块2', 2254, 100, -1, 361, 55, 'WeaponModel', 'RangedWeapon', 'Main2_4', '-', '-', '-', ], //01
[0, 2255, '106', '内爆模块', 2255, 25, 1, 362, 31, 'WeaponModel', 'ExploWeapon', 'Main2_9', '40002_2|40006_1|40007_1|40010_1|40028_2', '10007|10008|10026|10107|10108|10126', '-', ],
[0, 2256, '107', '内爆模块+', 2256, 50, -1, 363, 31, 'WeaponModel', 'ExploWeapon', 'Main2_9', '-', '10007|10008|10026|10107|10108|10126', '-', ], //01
[1, 2257, '108', '对工事模块', 2257, 25, 1, 364, 16, 'WeaponModel', 'NormalWeapon', 'Main2_1', '40001_5|40003_4|40006_1|40007_1|40028_2', '-', '-', ],
[1, 2258, '109', '对工事模块+', 2258, 50, -1, 365, 30, 'WeaponModel', 'NormalWeapon', 'Main2_1', '-', '2257_2258', '-', ], //01
[0, 2276, '110', '战术脚架', 2276, 40, 1, 383, 0, 'WeaponModel', 'MG', 'Main2_10', '40001_10|40002_4|40007_6|40005_2', '10013|10014|10024|10113|10114|10124|10213|10224|10324|10424', '-', ],
[0, 2277, '111', '战术脚架+', 2277, 80, -1, 384, 36, 'WeaponModel', 'MG', 'Main2_10', '-', '10013|10014|10024|10113|10114|10124|10213|10224|10324|10424', '-', ], //01
[1, 2278, '112', '战术手电', 2278, 15, 1, 385, 68, 'WeaponModel', 'Rail', 'Main2_10', '40013_1|40014_1|40007_1|40008_1', '-', '-', ],
[1, 2279, '113', '战术手电+', 2279, 30, -1, 386, 68, 'WeaponModel', 'Rail', 'Main2_10', '-', '-', '-', ], //01
[0, 2280, '114', '战术照明灯', 2280, 10, 1, 387, 68, 'WeaponModel', 'Rail', 'Main2_12', '40013_1|40014_1|40007_1|40008_1', '-', '-', ],
[0, 2281, '115', '战术照明灯+', 2281, 20, -1, 388, 68, 'WeaponModel', 'Rail', 'Main2_12', '-', '-', '-', ], //01
[1, 2270, '116', '倍镜模块', 2270, 30, 1, 377, 18, 'WeaponModel', 'NormalWeapon', 'Main2_10', '40001_3|40002_6|40006_3|40011_3|40005_3', '-', '-', ],
[1, 2271, '117', '倍镜模块+', 2271, 50, -1, 378, 42, 'WeaponModel', 'NormalWeapon', 'Main2_10', '-', '-', '-', ], //01
[0, 2268, '118', '红点瞄准器', 2268, 30, 1, 375, 15, 'WeaponModel', 'NormalWeapon', 'Main2_10', '40001_3|40002_6|40006_3|40011_3|40005_3', '-', '-', ],
[0, 2269, '119', '红点瞄准器+', 2269, 50, -1, 376, 40, 'WeaponModel', 'NormalWeapon', 'Main2_10', '-', '-', '-', ], //01
[1, 2272, '120', '战术榴弹发射器', 2272, 45, 1, 379, 20, 'WeaponModel', 'Rail', 'Main2_9', '40008_3|40009_2|40011_1|40010_3', '-', '-', ],
[1, 2273, '121', '重型战术榴弹发射器', 2273, 80, -1, 380, 60, 'WeaponModel', 'Rail', 'Main2_9', '-', '2272_2275', '-', ], //01
[0, 2274, '122', '战术外挂掷弹筒', 2274, 90, 1, 381, 35, 'WeaponModel', 'Rail', 'Main2_9', '40008_5|40009_5|40011_1|40010_7', '-', '-', ],
[0, 2275, '123', '重型战术外挂掷弹筒', 2275, 180, -1, 382, 72, 'WeaponModel', 'Rail', 'Main2_9', '-', '2272_2275', '-', ], //01
[1, 2295, '124', '滞留弹', 2295, 40, 1, 402, 0, 'WeaponModel', 'Riffle', 'Main2_11', '40001_4|40002_8|40003_10|40005_10', '10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ],
[1, 2296, '125', '滞留弹+', 2296, 80, 2, 403, 41, 'WeaponModel', 'Riffle', 'Main2_11', '-', '10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ],
[1, 2297, '126', '滞留弹++', 2297, 150, -1, 404, 77, 'WeaponModel', 'Riffle', 'Main2_11', '-', '10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ], //01
[0, 2289, '127', '弹链箱', 2289, 25, 1, 396, 0, 'WeaponModel', 'MG', 'Main2_10', '40001_2|40002_8|40006_5|40005_2', '10013|10014|10024|10113|10114|10124|10213|10224|10324|10424', '-', ],
[0, 2290, '128', '大容量弹链箱', 2290, 45, 2, 397, 18, 'WeaponModel', 'MG', 'Main2_10', '-', '10013|10014|10024|10113|10114|10124|10213|10224|10324|10424', '-', ],
[0, 2291, '129', '超大容量弹链箱', 2291, 80, -1, 398, 51, 'WeaponModel', 'MG', 'Main2_10', '-', '10013|10014|10024|10113|10114|10124|10213|10224|10324|10424', '-', ], //01
[1, 2286, '130', '供弹匣', 2286, 25, 1, 393, 0, 'WeaponModel', 'MG', 'Main2_10', '40001_5|40002_5|40006_2|40007_2|40005_3', '10013|10014|10024|10113|10114|10124|10213|10224|10324|10424', '-', ],
[1, 2287, '131', '大容量供弹匣', 2287, 45, 2, 394, 28, 'WeaponModel', 'MG', 'Main2_10', '-', '10013|10014|10024|10113|10114|10124|10213|10224|10324|10424', '-', ],
[1, 2288, '132', '全自动供弹匣', 2288, 80, -1, 395, 47, 'WeaponModel', 'MG', 'Main2_10', '-', '10013|10014|10024|10113|10114|10124|10213|10224|10324|10424', '-', ], //01
[0, 2292, '133', '4倍镜模块', 2292, 25, 1, 399, 0, 'WeaponModel', 'Riffle', 'Main2_12', '40001_5|40002_7|40003_3|40007_3|40005_2', '10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ],
[0, 2293, '134', '8倍镜模块', 2293, 45, 2, 400, 31, 'WeaponModel', 'Riffle', 'Main2_12', '-', '10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ],
[0, 2294, '135', '16倍镜模块', 2294, 80, -1, 401, 54, 'WeaponModel', 'Riffle', 'Main2_12', '-', '10004|10005|10015|10104|10105|10115|10204|10205|10215|10304|10315|10415', '-', ], //01
[1, 2078, '136', '穿甲弹模块', 2078, 10, 1, 304, 11, 'WeaponModel', 'NormalWeapon', 'Main2_11', '40001_2|40002_2|40003_3', '2074_2080', '-', ],
[1, 2079, '137', '穿甲弹模块+', 2079, 25, 2, 305, 33, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2074_2080', '-', ],
[1, 2080, '138', '穿甲弹模块++', 2080, 80, -1, 306, 55, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2074_2080', '-', ], //01
[0, 2081, '139', '圆头弹模块', 2081, 10, 1, 307, 11, 'WeaponModel', 'NormalWeapon', 'Main2_11', '40001_2|40002_2|40003_3|40005_1', '-', '-', ],
[0, 2082, '140', '圆头弹模块+', 2082, 25, 2, 308, 33, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2081_2083', '-', ],
[0, 2083, '141', '圆头弹模块++', 2083, 80, -1, 309, 55, 'WeaponModel', 'NormalWeapon', 'Main2_11', '-', '2081_2083', '-', ], //01
[1, 2265, '142', '战术刺刀', 2265, 30, 1, 372, 0, 'WeaponModel', 'Rail', 'Main2_10', '40029_2|40030_2|40008_1', '-', '-', ],
[1, 2266, '143', '战术刺刀+', 2266, 60, 2, 373, 25, 'WeaponModel', 'Rail', 'Main2_10', '-', '-', '-', ],
[1, 2267, '144', '制式战术刺刀', 2267, 120, -1, 374, 50, 'WeaponModel', 'Rail', 'Main2_10', '-', '-', '-', ], //01
[0, 2298, '145', '扼流圈', 2298, 40, 1, 405, 0, 'WeaponModel', 'ShotWeapon', 'Main2_2', '40001_4|40002_8|40006_4|40011_4|40005_4', '10002|10003|10008|10020|10023|10025|10102|10103|10108|10120|10123|10125|10202|10203|10220|10223|10225|10303|10320', '-', ],
[0, 2299, '146', '扼流圈+', 2299, 80, 2, 406, 41, 'WeaponModel', 'ShotWeapon', 'Main2_2', '-', '10002|10003|10008|10020|10023|10025|10102|10103|10108|10120|10123|10125|10202|10203|10220|10223|10225|10303|10320', '-', ],
[0, 2300, '147', '扼流圈++', 2300, 150, -1, 407, 77, 'WeaponModel', 'ShotWeapon', 'Main2_2', '-', '10002|10003|10008|10020|10023|10025|10102|10103|10108|10120|10123|10125|10202|10203|10220|10223|10225|10303|10320', '-', ], //01
[1, 2335, '148', '喷嘴', 2335, 25, 1, 408, 0, 'WeaponModel', 'SplitWeapon', 'Main2_2', '40001_3|40002_5|40006_3|40011_3|40005_3', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ],
[1, 2336, '149', '高级喷嘴', 2336, 50, 2, 409, 34, 'WeaponModel', 'SplitWeapon', 'Main2_2', '-', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ],
[1, 2337, '150', '制式喷嘴', 2337, 90, -1, 410, 66, 'WeaponModel', 'SplitWeapon', 'Main2_2', '-', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ], //01
[0, 2338, '151', '大容量罐1', 2338, 25, 1, 411, 0, 'WeaponModel', 'SplitWeapon', 'Main2_2', '40001_3|40002_5|40006_3|40011_3|40005_3', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ],
[0, 2339, '152', '大容量罐2', 2339, 50, 2, 412, 27, 'WeaponModel', 'SplitWeapon', 'Main2_2', '-', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ],
[0, 2340, '153', '大容量罐3', 2340, 90, -1, 413, 54, 'WeaponModel', 'SplitWeapon', 'Main2_2', '-', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ], //01
[1, 2341, '154', '爆破穿透模块1', 2341, 25, 1, 414, 44, 'WeaponModel', 'ExploWeapon', 'Main2_1', '40001_1|40003_1|40010_2', '10007|10008|10026|10107|10108|10126', '-', ],
[1, 2342, '155', '爆破穿透模块2', 2342, 50, 2, 415, 60, 'WeaponModel', 'ExploWeapon', 'Main2_1', '-', '2341_2343', '-', ],
[1, 2343, '156', '爆破穿透模块3', 2343, 100, -1, 416, 34, 'WeaponModel', 'ExploWeapon', 'Main2_1', '-', '2341_2343', '-', ], //01
[0, 2344, '157', '震撼模块', 2344, 25, 1, 417, 0, 'WeaponModel', 'NormalWeapon', 'Main2_1', '40001_3|40003_1|40007_2|40004_1|40005_2', '-', '-', ],
[0, 2345, '158', '震撼模块+', 2345, 50, 2, 418, 11, 'WeaponModel', 'NormalWeapon', 'Main2_12', '-', '2344_2347', '-', ],
[0, 2346, '159', '高级震撼模块', 2346, 100, 3, 419, 31, 'WeaponModel', 'NormalWeapon', 'Main2_12', '-', '2344_2347', '-', ],
[0, 2347, '160', '制式震撼模块', 2347, 200, -1, 420, 62, 'WeaponModel', 'NormalWeapon', 'Main2_12', '-', '2344_2347', '-', ], //01
[1, 2348, '161', '高温弹', 2348, 15, 1, 421, 36, 'WeaponModel', 'NormalWeapon', 'Main2_12', '40001_5|40003_2|40007_3|40004_2|40005_3', '-', '-', ],
[1, 2349, '162', '高温弹+', 2349, 30, 2, 422, 45, 'WeaponModel', 'NormalWeapon', 'Main2_12', '-', '2348_2351', '-', ],
[1, 2350, '163', '高级高温弹', 2350, 60, 3, 423, 62, 'WeaponModel', 'NormalWeapon', 'Main2_12', '-', '2348_2351', '-', ],
[1, 2351, '164', '制式高温弹', 2351, 120, -1, 424, 80, 'WeaponModel', 'NormalWeapon', 'Main2_12', '-', '2348_2351', '-', ], //01
[0, 2352, '165', '酸液罐', 2352, 50, 1, 425, 10, 'WeaponModel', 'SplitWeapon', 'Main2_3', '40001_5|40002_7|40006_5|40011_5|40005_5', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ],
[0, 2353, '166', '酸液罐+', 2353, 90, 2, 426, 20, 'WeaponModel', 'SplitWeapon', 'Main2_3', '-', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ],
[0, 2354, '167', '高级酸液罐', 2354, 180, 3, 427, 40, 'WeaponModel', 'SplitWeapon', 'Main2_3', '-', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ],
[0, 2355, '168', '制式酸液罐', 2355, 350, -1, 428, 70, 'WeaponModel', 'SplitWeapon', 'Main2_3', '-', '10010|10011|10036|10037|10110|10111|10136|10137', '-', ], //01
[1, 2358, '169', '快子跃迁模块1', 2358, 15, 1, 431, 35, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '40013_1|40001_1|40002_1|40026_1|40006_1', '10027_10035|10127_10134', '-', ],
[1, 2359, '170', '快子跃迁模块2', 2359, 25, 2, 432, 35, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134', '-', ],
[1, 2360, '171', '快子跃迁模块3', 2360, 45, 3, 433, 55, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134', '-', ],
[1, 2361, '172', '快子跃迁模块4', 2361, 85, 4, 434, 65, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134', '-', ],
[1, 2362, '173', '快子跃迁模块5', 2362, 160, -1, 435, 75, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '-', '10027_10035|10127_10134', '-', ], //01
[0, 2159, '174', '火焰炸弹模块', 2159, 90, -2, 343, 36, 'WeaponModel', 'ExploWeapon', 'Main2_9', '40001_3|40003_3|40010_6|40015_4', '10007|10008|10026|10107|10108|10126', '-', ],
[0, 2160, '175', '寒冰炸弹模块', 2160, 90, -2, 344, 37, 'WeaponModel', 'ExploWeapon', 'Main2_9', '40001_3|40003_3|40010_6|40016_4', '10007|10008|10026|10107|10108|10126', '-', ],
[0, 2161, '176', '电磁炸弹模块', 2161, 90, -2, 345, 32, 'WeaponModel', 'ExploWeapon', 'Main2_9', '40001_3|40003_3|40010_6|40017_4', '10007|10008|10026|10107|10108|10126', '-', ], //01
[1, 2170, '177', '激光火焰模块', 2170, 100, -2, 354, 17, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '40013_10|40014_8|40015_8', '10027_10035|10127_10134', '-', ],
[1, 2171, '178', '激光寒冰模块', 2171, 100, -2, 355, 17, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '40013_10|40014_8|40016_8', '10027_10035|10127_10134', '-', ],
[1, 2172, '179', '激光电磁模块', 2172, 100, -2, 356, 17, 'WeaponModel', 'LaserWeapon|ElectricWeapon', 'Main2_7', '40013_10|40014_8|40017_8', '10027_10035|10127_10134', '-', ], //01
[0, 2363, '180', '战术燃烧榴弹发射器', 2363, 75, -2, 436, 30, 'WeaponModel', 'Rail', 'Main2_3', '40008_3|40009_2|40011_1|40010_3|40015_7', '2272_2275', '-', ],
[0, 2364, '181', '战术冷冻榴弹发射器', 2364, 75, -2, 437, 50, 'WeaponModel', 'Rail', 'Main2_3', '40008_3|40009_2|40011_1|40010_3|40016_7', '2272_2275', '-', ],
[0, 2365, '182', '战术电磁榴弹发射器', 2365, 75, -2, 438, 80, 'WeaponModel', 'Rail', 'Main2_3', '40008_3|40009_2|40011_1|40010_3|40017_7', '2272_2275', '-', ], //01
[1, 2356, '183', '射线增温透镜', 2356, 50, -2, 429, 50, 'WeaponModel', 'LaserWeapon', 'Main2_7', '40013_5|40014_4|40017_4', '10027_10035|10127_10134', '-', ],
[1, 2109, '184', '暴击爆炸模块', 2109, 50, -2, 335, 18, 'WeaponModel', 'NormalWeapon', 'Main2_3', '40001_3|40003_2|40004_5|40010_5', '2092|2066|2070', '-', ],
[1, 2357, '185', '电磁聚能电感', 2357, 50, -2, 430, 65, 'WeaponModel', 'ElectricWeapon', 'Main2_7', '40013_3|40001_3|40002_3|40026_3|40006_4', '10031_10035|10131_10134', '-', ], //01
[0, 2200, '186', '近战高温模块', 2200, 15, -2, 543, 18, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_7', '-', '-', '-', ],
[0, 2201, '187', '近战相位模块', 2201, 25, -2, 544, 21, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_7', '-', '2200_2201', '-', ], //01
[1, 2202, '188', '近战能量模块1', 2202, 15, 1, 545, 6, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '40002_1|40027_2|40029_1', '-', '-', ],
[1, 2203, '189', '近战能量模块2', 2203, 35, 2, 546, 20, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '-', '2202_2204', '-', ],
[1, 2204, '190', '近战能量模块3', 2204, 75, -1, 547, 40, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '-', '2202_2204', '-', ], //01
[0, 2205, '191', '近战力量模块1', 2205, 15, 1, 548, 6, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '40002_1|40026_2|40029_2', '-', '-', ],
[0, 2206, '192', '近战力量模块2', 2206, 35, 2, 549, 20, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '-', '2205_2207', '-', ],
[0, 2207, '193', '近战力量模块3', 2207, 75, -1, 550, 40, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '-', '2205_2207', '-', ], //01
[1, 2215, '194', '近战火焰模块', 2215, 80, -2, 558, 36, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_7', '40009_3|40028_5|40029_5|40015_8', '2215_2217', '-', ],
[1, 2216, '195', '近战冰冻模块', 2216, 40, -2, 559, 36, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_7', '40009_2|40028_2|40029_2|40016_6', '2215_2217', '-', ],
[1, 2217, '196', '近战电磁模块', 2217, 60, -2, 560, 36, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_7', '40009_2|40028_4|40029_4|40017_8', '2215_2217', '-', ], //01
[0, 2208, '197', '居合芯片', 2208, 40, -2, 551, 15, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_6', '40029_4|40008_2|40002_5', '2202_2207', '-', ],
[0, 2209, '198', '撤步芯片', 2209, 30, -2, 552, 25, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_6', '40029_3|40008_2|40002_3', '2208_2210', '-', ],
[0, 2210, '199', '旋斩芯片', 2210, 50, -2, 553, 35, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_6', '40029_4|40008_2|40002_5|40032_1', '2208_2210', '-', ], //01
[1, 2262, '200', '高频震动模块1', 2262, 25, 1, 369, 13, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_7', '40001_1|40007_1|40030_3|40028_3', '10052_10059', '-', ],
[1, 2263, '201', '高频震动模块2', 2263, 50, 2, 370, 26, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_7', '-', '10052_10059', '-', ],
[1, 2264, '202', '高频震动模块3', 2264, 100, -1, 371, 39, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_7', '-', '10052_10059', '-', ], //01
[0, 2211, '203', '近战换弹模块', 2211, 15, 1, 554, 6, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '40002_2|40006_1|40029_1|40030_1', '-', '-', ],
[0, 2212, '204', '近战换弹模块+', 2212, 25, 2, 555, 36, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '-', '2211_2214', '-', ],
[0, 2213, '205', '近战高级换弹模块', 2213, 80, 3, 556, 64, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '-', '2211_2214', '-', ],
[0, 2214, '206', '近战制式换弹模块', 2214, 150, -1, 557, 92, 'CloseWeaponModel', 'MeeleeWeapon', 'Main2_3', '-', '2211_2214', '-', ], //01
[1, 2218, '207', '暗杀效率模块1', 2218, 55, 1, 561, 1, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ],
[1, 2219, '208', '暗杀效率模块2', 2219, 120, 2, 562, 8, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ],
[1, 2220, '209', '暗杀效率模块3', 2220, 200, -1, 563, 15, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ], //01
[0, 2221, '210', '暗杀隐匿模块1', 2221, 55, 1, 564, 3, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ],
[0, 2222, '211', '暗杀隐匿模块2', 2222, 120, 2, 565, 8, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ],
[0, 2223, '212', '暗杀隐匿模块3', 2223, 200, -1, 566, 15, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ], //01
[1, 2224, '213', '暗杀广度模块1', 2224, 55, 1, 567, 4, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ],
[1, 2225, '214', '暗杀广度模块2', 2225, 120, 2, 568, 8, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ],
[1, 2226, '215', '暗杀广度模块3', 2226, 200, -1, 569, 15, 'CloseWeaponModel', 'Dagger', 'Main2_5', '-', '10065|10165', '-', ], //01
[0, 1404, '216', '肩部助力扭矩', 1404, 8, 1, 574, 22, 'HangShoulderModel', 'ShoulderWeapon', 'Main_2', '40002_2|40005_1|40023_1', '1250_1257', '-', ],
[0, 1405, '217', '肩部助力扭矩+', 1405, 15, -1, 575, 60, 'HangShoulderModel', 'ShoulderWeapon', 'Main_2', '-', '1250_1257', '-', ], //01
[1, 1419, '218', '肩扛武器齐射模块1', 1419, 15, 1, 589, 35, 'HangShoulderModel', 'NormalWeapon|RocketWeapon', 'Main_2', '40001_1|40002_5|40006_3|40005_2', '1250|1251|1254|1255', '-', ],
[1, 1420, '219', '肩扛武器齐射模块2', 1420, 28, 2, 590, 60, 'HangShoulderModel', 'NormalWeapon|RocketWeapon', 'Main_2', '-', '1250|1251|1254|1255', '-', ],
[1, 1421, '220', '肩扛武器齐射模块3', 1421, 50, 3, 591, 70, 'HangShoulderModel', 'NormalWeapon|RocketWeapon', 'Main_2', '-', '1250|1251|1254|1255', '-', ],
[1, 1422, '221', '肩扛武器齐射模块4', 1422, 90, -1, 592, 80, 'HangShoulderModel', 'NormalWeapon|RocketWeapon', 'Main_2', '-', '1250|1251|1254|1255', '-', ], //01
[0, 1414, '222', '肩扛武器穿甲模块1', 1414, 10, 1, 584, 35, 'HangShoulderModel', 'NormalWeapon', 'Main_2', '40001_1|40002_1|40003_4|40005_1', '1254|1255', '-', ],
[0, 1415, '223', '肩扛武器穿甲模块2', 1415, 15, 2, 585, 60, 'HangShoulderModel', 'NormalWeapon', 'Main_2', '-', '1254|1255', '-', ],
[0, 1416, '224', '肩扛武器穿甲模块3', 1416, 25, 3, 586, 70, 'HangShoulderModel', 'NormalWeapon', 'Main_2', '-', '1254|1255', '-', ],
[0, 1417, '225', '肩扛武器穿甲模块4', 1417, 40, 4, 587, 80, 'HangShoulderModel', 'NormalWeapon', 'Main_2', '-', '1254|1255', '-', ],
[0, 1418, '226', '肩扛武器穿甲模块5', 1418, 75, -1, 588, 80, 'HangShoulderModel', 'NormalWeapon', 'Main_2', '-', '1254|1255', '-', ], //01
[1, 1406, '227', '肩扛武器爆炸伤害模块1', 1406, 15, 1, 576, 22, 'HangShoulderModel', 'ExploWeapon', 'Main_2', '40001_1|40003_1|40010_1', '1250_1253', '-', ],
[1, 1407, '228', '肩扛武器爆炸伤害模块2', 1407, 25, 2, 577, 60, 'HangShoulderModel', 'ExploWeapon', 'Main_2', '-', '1250_1253', '-', ],
[1, 1408, '229', '肩扛武器爆炸伤害模块3', 1408, 40, 3, 578, 70, 'HangShoulderModel', 'ExploWeapon', 'Main_2', '-', '1250_1253', '-', ],
[1, 1409, '230', '肩扛武器爆炸伤害模块4', 1409, 75, 4, 579, 80, 'HangShoulderModel', 'ExploWeapon', 'Main_2', '-', '1250_1253', '-', ],
[1, 1410, '231', '肩扛武器爆炸伤害模块5', 1410, 135, -1, 580, 80, 'HangShoulderModel', 'ExploWeapon', 'Main_2', '-', '1250_1253', '-', ], //01
[0, 1401, '232', '肩扛供弹匣1', 1401, 10, 1, 571, 22, 'HangShoulderModel', 'ShoulderWeapon', 'Main_2', '40001_1|40002_3|40006_2|40005_1', '1250_1257', '-', ],
[0, 1402, '233', '肩扛供弹匣2', 1402, 18, 2, 572, 60, 'HangShoulderModel', 'ShoulderWeapon', 'Main_2', '-', '1250_1257', '-', ],
[0, 1403, '234', '肩扛供弹匣3', 1403, 32, -1, 573, 70, 'HangShoulderModel', 'ShoulderWeapon', 'Main_2', '-', '1250_1257', '-', ], //01
[1, 1411, '235', '肩扛武器爆炸穿透模块1', 1411, 15, 1, 581, 22, 'HangShoulderModel', 'ExploWeapon', 'Main_2', '40001_1|40003_1|40010_1', '1250_1253', '-', ],
[1, 1412, '236', '肩扛武器爆炸穿透模块2', 1412, 25, 2, 582, 60, 'HangShoulderModel', 'ExploWeapon', 'Main_2', '-', '1250_1253', '-', ],
[1, 1413, '237', '肩扛武器爆炸穿透模块3', 1413, 40, -1, 583, 70, 'HangShoulderModel', 'ExploWeapon', 'Main_2', '-', '1250_1253', '-', ], //01
[0, 1423, '238', 'EMP增幅模块', 1423, 25, 1, 593, 40, 'HangShoulderModel', 'EMP', 'Main_2', '40013_3|40014_4|40002_1|40006_1', '1256|1257', '-', ],
[0, 1424, '239', 'EMP增幅模块+', 1424, 45, -1, 594, 40, 'HangShoulderModel', 'EMP', 'Main_2', '-', '1256|1257', '-', ], //01
[1, 1425, '240', 'EMP燃烧模块', 1425, 200, -2, 595, 40, 'HangShoulderModel', 'EMP', 'Main_2', '40013_18|40014_15|40015_15', '1256|1257', '-', ],
[1, 1426, '241', 'EMP寒冰模块', 1426, 150, -2, 596, 40, 'HangShoulderModel', 'EMP', 'Main_2', '40013_12|40014_10|40016_10', '1256|1257', '-', ], //01
];
// 项目名称
let ItemsNameList = {
2001 : ['差速机', '差速機', 'Differential', '差動装置', ],
2002 : ['差速机+', '差速機+', 'Differential+', '差動装置+', ],
2003 : ['高级差速机', '高級差速機', 'Advanced Differential', '上級差動装置', ],
2004 : ['制式差速机', '制式差速機', 'Standard Differential', '制式差動装置', ], //02
2013 : ['大弹鼓', '大彈鼓', 'Drum Magazine', 'ドラムマガジン', ],
2014 : ['大弹鼓+', '大彈鼓+', 'Drum Magazine+', 'ドラムマガジン+', ],
2015 : ['高级弹鼓', '高級彈鼓', 'Advanced Drum Magazine', '上級ドラムマガジン', ],
2016 : ['制式弹鼓', '制式彈鼓', 'Standard Drum Magazine', '制式ドラムマガジン', ], //02
2005 : ['收束器', '收束器', 'Choke', 'チョーク', ],
2006 : ['收束器+', '收束器+', 'Choke+', 'チョーク+', ],
2007 : ['高级收束器', '高級收束器', 'Advanced Choke', '上級チョーク', ],
2008 : ['制式收束器', '制式收束器', 'Standard Choke', '制式チョーク', ], //02
2009 : ['弹仓', '彈倉', 'Magazine', 'チューブマガジン', ],
2010 : ['弹仓+', '彈倉+', 'Magazine+', 'チューブマガジン+', ],
2011 : ['高级弹仓', '高級彈倉', 'Advanced Magazine', '上級チューブマガジン', ],
2012 : ['制式弹仓', '制式彈倉', 'Standard Magazine', '制式チューブマガジン', ], //02
2029 : ['硬弹头模块', '硬彈頭模組', 'Hard Warhead Module', '硬化弾頭モジュール', ],
2030 : ['硬弹头模块+', '硬彈頭模組+', 'Hard Warhead Module+', '硬化弾頭モジュール+', ],
2031 : ['高级硬弹头模块', '高級硬彈頭模組', 'Advanced Hard Warhead Module', '上級硬化弾頭モジュール', ],
2032 : ['制式硬弹头模块', '制式硬彈頭模組', 'Standard Hard Warhead Module', '制式硬化弾頭モジュール', ], //02
2021 : ['尖头弹', '尖頭彈', 'Spitzer Bullet', '尖頭弾', ],
2022 : ['尖头弹+', '尖頭彈+', 'Spitzer Bullet+', '尖頭弾+', ],
2023 : ['高级尖头弹', '高級尖頭彈', 'Advanced Spitzer Bullet', '上級尖頭弾', ],
2024 : ['制式尖头弹', '制式尖頭彈', 'Standard Spitzer Bullet', '制式尖頭弾', ], //02
2025 : ['杀伤模块', '殺傷模組', 'Damage Module', '殺傷モジュール', ],
2026 : ['杀伤模块+', '殺傷模組+', 'Damage Module+', '殺傷モジュール+', ],
2027 : ['高级杀伤模块', '高級殺傷模組', 'Advanced Damage Module', '上級殺傷モジュール', ],
2028 : ['制式杀伤模块', '制式殺傷模組', 'Standard Damage Module', '制式殺傷モジュール', ], //02
2017 : ['换弹模块', '換彈模組', 'Reloading Module', 'リロードモジュール', ],
2018 : ['换弹模块+', '換彈模組+', 'Reloading Module+', 'リロードモジュール+', ],
2019 : ['高级换弹模块', '高級換彈模組', 'Advanced Reloading Module', '上級リロードモジュール', ],
2020 : ['制式换弹模块', '制式換彈模組', 'Standard Reloading Module', '制式リロードモジュール', ], //02
2282 : ['战术握把', '戰術握把', 'Tactical Grip', '戦術グリップ', ],
2283 : ['战术握把+', '戰術握把+', 'Tactical Grip+', '戦術グリップ+', ],
2284 : ['高级战术握把', '高級戰術握把', 'Advanced Tactical Grip', '上級戦術グリップ', ],
2285 : ['制式战术握把', '制式戰術握把', 'Standard Tactical Grip', '制式戦術グリップ', ], //02
2033 : ['火焰模块', '火焰模組', 'Fire Module', '火炎モジュール', ],
2034 : ['火焰模块+', '火焰模組+', 'Fire Module+', '火炎モジュール+', ],
2035 : ['火焰模块++', '火焰模組++', 'Fire Module++', '火炎モジュール++', ], //02
2036 : ['电磁模块', '電磁模組', 'Electromagnetic Module', '電磁モジュール', ],
2037 : ['电磁模块+', '電磁模組+', 'Electromagnetic Module+', '電磁モジュール+', ],
2038 : ['电磁模块++', '電磁模組++', 'Electromagnetic Module++', '電磁モジュール++', ], //02
2039 : ['冰冻模块', '冰凍模組', 'Frost Module', '凍結モジュール', ],
2040 : ['冰冻模块+', '冰凍模組+', 'Frost Module+', '凍結モジュール+', ],
2041 : ['冰冻模块++', '冰凍模組++', 'Frost Module++', '凍結モジュール++', ], //02
2074 : ['穿甲模块1', '穿甲模組1', 'ArP Module 1', '装甲貫通モジュール1', ],
2075 : ['穿甲模块2', '穿甲模組2', 'ArP Module 2', '装甲貫通モジュール2', ],
2076 : ['穿甲模块3', '穿甲模組3', 'ArP Module 3', '装甲貫通モジュール3', ],
2077 : ['穿甲模块4', '穿甲模組4', 'ArP Module 4', '装甲貫通モジュール4', ], //02
2155 : ['爆炸伤害模块1', '爆炸傷害模組1', 'Explosion Damage Module 1', '爆発ダメージモジュール1', ],
2156 : ['爆炸伤害模块2', '爆炸傷害模組2', 'Explosion Damage Module 2', '爆発ダメージモジュール2', ],
2157 : ['爆炸伤害模块3', '爆炸傷害模組3', 'Explosion Damage Module 3', '爆発ダメージモジュール3', ],
2158 : ['爆炸伤害模块4', '爆炸傷害模組4', 'Explosion Damage Module 4', '爆発ダメージモジュール4', ], //02
2084 : ['能量弹模块1', '能量彈模組1', 'Energetic Bullet Module 1', 'エネルギー弾モジュール1', ],
2085 : ['能量弹模块2', '能量彈模組2', 'Energetic Bullet Module 2', 'エネルギー弾モジュール2', ],
2086 : ['能量弹模块3', '能量彈模組3', 'Energetic Bullet Module 3', 'エネルギー弾モジュール3', ],
2087 : ['能量弹模块4', '能量彈模組4', 'Energetic Bullet Module 4', 'エネルギー弾モジュール4', ], //02
2088 : ['高级能量弹模块1', '高級能量彈模組1', 'Advanced Energetic Bullet Module 1', '上級エネルギー弾モジュール1', ],
2089 : ['高级能量弹模块2', '高級能量彈模組2', 'Advanced Energetic Bullet Module 2', '上級エネルギー弾モジュール2', ],
2090 : ['高级能量弹模块3', '高級能量彈模組3', 'Advanced Energetic Bullet Module 3', '上級エネルギー弾モジュール3', ],
2091 : ['高级能量弹模块4', '高級能量彈模組4', 'Advanced Energetic Bullet Module 4', '上級エネルギー弾モジュール4', ], //02
2066 : ['暴击模块', '暴擊模組', 'Crit Module', '会心モジュール', ],
2067 : ['暴击模块+', '暴擊模組+', 'Crit Module+', '会心モジュール+', ],
2068 : ['高级暴击模块', '高級暴擊模組', 'Advanced Crit Module', '上級会心モジュール', ],
2069 : ['制式暴击模块', '制式暴擊模組', 'Standard Crit Module', '制式会心モジュール', ], //02
2070 : ['暴伤模块', '暴傷模組', 'Crit Damage Module', '会心ダメージモジュール', ],
2071 : ['暴伤模块+', '暴傷模組+', 'Crit Damage Module+', '会心ダメージモジュール+', ],
2072 : ['高级暴伤模块', '高級暴傷模組', 'Advanced Crit Damage Module', '上級会心ダメージモジュール', ],
2073 : ['制式暴伤模块', '制式暴傷模組', 'Standard Crit Damage Module', '制式会心ダメージモジュール', ], //02
2096 : ['分裂模块', '分裂模組', 'Splitter Module', '分裂モジュール', ],
2097 : ['分裂模块+', '分裂模組+', 'Splitter Module+', '分裂モジュール+', ],
2098 : ['高级分裂模块', '高級分裂模組', 'Advanced Splitter Module', '上級分裂モジュール', ],
2099 : ['制式分裂模块', '制式分裂模組', 'Standard Splitter Module', '制式分裂モジュール', ], //02
2092 : ['爆炸模块', '爆炸模組', 'Explosion Module', '爆発モジュール', ],
2093 : ['爆炸模块+', '爆炸模組+', 'Explosion Module+', '爆発モジュール+', ],
2094 : ['高级爆炸模块', '高級爆炸模組', 'Advanced Explosion Module', '上級爆発モジュール', ],
2095 : ['制式爆炸模块', '制式爆炸模組', 'Standard Explosion Module', '制式爆発モジュール', ], //02
2250 : ['稳定器', '穩定器', 'Stabilizer', 'スタビライザー', ],
2251 : ['稳定器2', '穩定器2', 'Stabilizer 2', 'スタビライザー2', ],
2252 : ['稳定器3', '穩定器3', 'Stabilizer 3', 'スタビライザー3', ], //02
2259 : ['线圈模块', '線圈模組', 'Coil Module', 'コイルモジュール', ],
2260 : ['线圈模块+', '線圈模組+', 'Coil Module+', 'コイルモジュール+', ],
2261 : ['线圈模块++', '線圈模組++', 'Coil Module++', 'コイルモジュール++', ], //02
2106 : ['暴击分裂模块', '暴擊分裂模組', 'Crit-Splitter Module', '会心分裂モジュール', ],
2107 : ['暴击分裂模块+', '暴擊分裂模組+', 'Crit-Splitter Module+', '会心分裂モジュール+', ],
2108 : ['暴击分裂模块++', '暴擊分裂模組++', 'Crit-Splitter Module++', '会心分裂モジュール++', ], //02
2100 : ['斩首模块', '斬首模組', 'Decapitation Module', '斬首モジュール', ],
2101 : ['斩首模块+', '斬首模組+', 'Decapitation Module+', '斬首モジュール+', ],
2102 : ['斩首模块++', '斬首模組++', 'Decapitation Module++', '斬首モジュール++', ], //02
2103 : ['首攻模块', '首攻模組', 'First-Attack Module', '初回攻撃モジュール', ],
2104 : ['首攻模块+', '首攻模組+', 'First-Attack Module+', '初回攻撃モジュール+', ],
2105 : ['首攻模块++', '首攻模組++', 'First-Attack Module++', '初回攻撃モジュール++', ], //02
2118 : ['斩杀模块', '斬殺模組', 'Execution Module', '即死モジュール', ],
2119 : ['斩杀模块+', '斬殺模組+', 'Execution Module+', '即死モジュール+', ],
2120 : ['斩杀模块++', '斬殺模組++', 'Execution Module++', '即死モジュール++', ], //02
2162 : ['磁通量放大器1', '磁通量放大器1', 'Magnetic Flux Amplifier 1', '磁束増幅器1', ],
2163 : ['磁通量放大器2', '磁通量放大器2', 'Magnetic Flux Amplifier 2', '磁束増幅器2', ],
2164 : ['磁通量放大器3', '磁通量放大器3', 'Magnetic Flux Amplifier 3', '磁束増幅器3', ],
2165 : ['磁通量放大器4', '磁通量放大器4', 'Magnetic Flux Amplifier 4', '磁束増幅器4', ], //02
2166 : ['增效透镜模块1', '增效透鏡模組1', 'Synergistic Lens Module 1', '強化レンズモジュール1', ],
2167 : ['增效透镜模块2', '增效透鏡模組2', 'Synergistic Lens Module 2', '強化レンズモジュール2', ],
2168 : ['增效透镜模块3', '增效透鏡模組3', 'Synergistic Lens Module 3', '強化レンズモジュール3', ],
2169 : ['增效透镜模块4', '增效透鏡模組4', 'Synergistic Lens Module 4', '強化レンズモジュール4', ], //02
2253 : ['维护模块', '維護模組', 'Maintenance Module', 'メンテナンスモジュール', ],
2254 : ['维护模块2', '維護模組2', 'Maintenance Module 2', 'メンテナンスモジュール2', ], //02
2255 : ['内爆模块', '內爆模組', 'Implosion Module', '爆縮モジュール', ],
2256 : ['内爆模块+', '內爆模組+', 'Implosion Module+', '爆縮モジュール+', ], //02
2257 : ['对工事模块', '對工事模組', 'Fortification Module', '対要塞モジュール', ],
2258 : ['对工事模块+', '對工事模組+', 'Fortification Module+', '対要塞モジュール+', ], //02
2276 : ['战术脚架', '戰術腳架', 'Tactical Bipod', '戦術スタンド', ],
2277 : ['战术脚架+', '戰術腳架+', 'Tactical Bipod+', '戦術スタンド+', ], //02
2278 : ['战术手电', '戰術手電筒', 'Tactical Flashlight', '戦術懐中電灯', ],
2279 : ['战术手电+', '戰術手電筒+', 'Tactical Flashlight+', '戦術懐中電灯+', ], //02
2280 : ['战术照明灯', '戰術照明燈', 'Tactical Light', '戦術照明灯', ],
2281 : ['战术照明灯+', '戰術照明燈+', 'Tactical Light+', '戦術照明灯+', ], //02
2270 : ['倍镜模块', '倍鏡模組', 'Magnification Module', '拡大鏡モジュール', ],
2271 : ['倍镜模块+', '倍鏡模組+', 'Magnification Module+', '拡大鏡モジュール+', ], //02
2268 : ['红点瞄准器', '紅點瞄準器', 'Red Dot Sight', 'レッドドットサイト', ],
2269 : ['红点瞄准器+', '紅點瞄準器+', 'Red Dot Sight+', 'レッドドットサイト+', ], //02
2272 : ['战术榴弹发射器', '戰術榴彈發射器', 'Tactical Grenade Launcher', '戦術グレネードランチャー', ],
2273 : ['重型战术榴弹发射器', '重型戰術榴彈發射器', 'Heavy Tactical Grenade Launcher', '重装戦術グレネードランチャー', ], //02
2274 : ['战术外挂掷弹筒', '戰術外掛投彈筒', 'Tactical External Grenade Launcher', '戦術外付けグレネードランチャー', ],
2275 : ['重型战术外挂掷弹筒', '重型戰術外掛投彈筒', 'Heavy Tactical External Grenade Launcher', '重装戦術外付けグレネードランチャー', ], //02
2295 : ['滞留弹', '滯留彈', 'Tracer Rounds', '静止弾', ],
2296 : ['滞留弹+', '滯留彈+', 'Tracer Rounds+', '静止弾+', ],
2297 : ['滞留弹++', '滯留彈++', 'Tracer Rounds++', '静止弾++', ], //02
2289 : ['弹链箱', '彈鏈箱', 'Ammunition Box', '弾帯箱', ],
2290 : ['大容量弹链箱', '大容量彈鏈箱', 'High-capacity Ammunition Box', '大容量弾帯箱', ],
2291 : ['超大容量弹链箱', '超大容量彈鏈箱', 'Ultra-high-capacity Ammunition Box', '特大容量弾帯箱', ], //02
2286 : ['供弹匣', '彈匣', 'Magazine', 'マガジン', ],
2287 : ['大容量供弹匣', '大容量彈匣', 'High-capacity Magazine', '大容量マガジン', ],
2288 : ['全自动供弹匣', '全自動彈匣', 'Full-auto Magazine', '全自動マガジン', ], //02
2292 : ['4倍镜模块', '4倍鏡模組', '4x Scope Module', '4倍拡大鏡モジュール', ],
2293 : ['8倍镜模块', '8倍鏡模組', '8x Scope Module', '8倍拡大鏡モジュール', ],
2294 : ['16倍镜模块', '16倍鏡模組', '16x Scope Module', '16倍拡大鏡モジュール', ], //02
2078 : ['穿甲弹模块', '穿甲彈模組', 'ArP Bullet Module', '徹甲弾モジュール', ],
2079 : ['穿甲弹模块+', '穿甲彈模組+', 'ArP Bullet Module+', '徹甲弾モジュール+', ],
2080 : ['穿甲弹模块++', '穿甲彈模組++', 'ArP Bullet Module++', '徹甲弾モジュール++', ], //02
2081 : ['圆头弹模块', '圓頭彈模組', 'Soft-Point Bullet Module', '円頭弾モジュール', ],
2082 : ['圆头弹模块+', '圓頭彈模組+', 'Soft-Point Bullet Module+', '円頭弾モジュール+', ],
2083 : ['圆头弹模块++', '圓頭彈模組++', 'Soft-Point Bullet Module++', '円頭弾モジュール++', ], //02
2265 : ['战术刺刀', '戰術刺刀', 'Tactical Bayonet', '戦術銃剣', ],
2266 : ['战术刺刀+', '戰術刺刀+', 'Tactical Bayonet+', '戦術銃剣+', ],
2267 : ['制式战术刺刀', '制式戰術刺刀', 'Standard Tactical Bayonet', '制式戦術銃剣', ], //02
2298 : ['扼流圈', '扼流圈', 'Choke Coil', 'チョークコイル', ],
2299 : ['扼流圈+', '扼流圈+', 'Choke Coil+', 'チョークコイル+', ],
2300 : ['扼流圈++', '扼流圈++', 'Choke Coil++', 'チョークコイル++', ], //02
2335 : ['喷嘴', '噴嘴', 'Nozzle', 'ノズル', ],
2336 : ['高级喷嘴', '高級噴嘴', 'Advanced Nozzle', '上級ノズル', ],
2337 : ['制式喷嘴', '制式噴嘴', 'Standard Nozzle', '制式ノズル', ], //02
2338 : ['大容量罐1', '大容量罐1', 'High-capacity Tank 1', '大容量タンク1', ],
2339 : ['大容量罐2', '大容量罐2', 'High-capacity Tank 2', '大容量タンク2', ],
2340 : ['大容量罐3', '大容量罐3', 'High-capacity Tank 3', '大容量タンク3', ], //02
2341 : ['爆破穿透模块1', '爆破穿透模組1', 'Blasting penetration module 1', '爆発貫通モジュール1', ],
2342 : ['爆破穿透模块2', '爆破穿透模組2', 'Blasting penetration module 2', '爆発貫通モジュール2', ],
2343 : ['爆破穿透模块3', '爆破穿透模組3', 'Blasting penetration module 3', '爆発貫通モジュール3', ], //02
2344 : ['震撼模块', '震撼模組', 'Shock module', 'ショックモジュール', ],
2345 : ['震撼模块+', '震撼模組+', 'Shock module +', 'ショックモジュール+', ],
2346 : ['高级震撼模块', '高級震撼模組', 'Advanced Shock module', '上級ショックモジュール', ],
2347 : ['制式震撼模块', '制式震撼模組', 'Standard Shock module', '制式ショックモジュール', ], //02
2348 : ['高温弹', '高溫彈', 'High-temperature bullet', '高温弾', ],
2349 : ['高温弹+', '高溫彈+', 'High-temperature bullet +', '高温弾+', ],
2350 : ['高级高温弹', '高級高溫彈', 'Advanced High-temperature bullet', '上級高温弾', ],
2351 : ['制式高温弹', '制式高溫彈', 'Standard High-temperature bullet', '制式高温弾', ], //02
2352 : ['酸液罐', '酸液罐', 'Acid tank', '酸液タンク', ],
2353 : ['酸液罐+', '酸液罐+', 'Acid tank +', '酸液タンク+', ],
2354 : ['高级酸液罐', '高級酸液罐', 'Advanced Acid tank', '上級酸液タンク', ],
2355 : ['制式酸液罐', '制式酸液罐', 'Standard Acid tank', '制式酸液タンク', ], //02
2358 : ['快子跃迁模块1', '快子躍遷模組1', 'Particle Transition Module 1', 'パーティクル遷移モジュール1', ],
2359 : ['快子跃迁模块2', '快子躍遷模組2', 'Particle Transition Module 2', 'パーティクル遷移モジュール2', ],
2360 : ['快子跃迁模块3', '快子躍遷模組3', 'Particle Transition Module 3', 'パーティクル遷移モジュール3', ],
2361 : ['快子跃迁模块4', '快子躍遷模組4', 'Particle Transition Module 4', 'パーティクル遷移モジュール4', ],
2362 : ['快子跃迁模块5', '快子躍遷模組5', 'Particle Transition Module 5', 'パーティクル遷移モジュール5', ], //02
2159 : ['火焰炸弹模块', '火焰炸彈模組', 'Fire Bomb Module', '火炎爆弾モジュール', ],
2160 : ['寒冰炸弹模块', '寒冰炸彈模組', 'Ice Bomb Module', '氷爆弾モジュール', ],
2161 : ['电磁炸弹模块', '電磁炸彈模組', 'Electromagnetic Bomb Module', '電磁爆弾モジュール', ], //02
2170 : ['激光火焰模块', '鐳射火焰模組', 'Laser Fire Module', 'レーザー火炎モジュール', ],
2171 : ['激光寒冰模块', '鐳射寒冰模組', 'Laser Frost Module', 'レーザー氷モジュール', ],
2172 : ['激光电磁模块', '鐳射電磁模組', 'Laser Electromagnetic Module', 'レーザー電磁モジュール', ], //02
2363 : ['战术燃烧榴弹发射器', '戰術燃燒榴彈發射器', 'Tactical Fire Grenade Launcher', '戦術火炎グレネードランチャー', ],
2364 : ['战术冷冻榴弹发射器', '戰術冷凍榴彈發射器', 'Tactical Ice Grenade Launcher', '戦術氷グレネードランチャー', ],
2365 : ['战术电磁榴弹发射器', '戰術電磁榴彈發射器', 'Tactical Electromagnetic Grenade Launcher', '戦術電磁グレネードランチャー', ], //02
2356 : ['射线增温透镜', '射線增溫透鏡', 'Ray heating lens', '射線増温レンズ', ],
2109 : ['暴击爆炸模块', '暴擊爆炸模組', 'Crit Explosion Module', '会心爆発モジュール', ],
2357 : ['电磁聚能电感', '電磁聚能電感', 'Electromagnetic shaped inductor', '電磁融合インダクタンス', ], //02
2200 : ['近战高温模块', '近戰高溫模組', 'Melee High Temperature Module', '近接高温モジュール', ],
2201 : ['近战相位模块', '近戰相位模組', 'Melee Phase Module', '近接位相モジュール', ], //02
2202 : ['近战能量模块1', '近戰能量模組1', 'Melee Energy Module 1', '近接エネルギーモジュール1', ],
2203 : ['近战能量模块2', '近戰能量模組2', 'Melee Energy Module 2', '近接エネルギーモジュール2', ],
2204 : ['近战能量模块3', '近戰能量模組3', 'Melee Energy Module 3', '近接エネルギーモジュール3', ], //02
2205 : ['近战力量模块1', '近戰力量模組1', 'Melee Strength Module 1', '近接パワーモジュール1', ],
2206 : ['近战力量模块2', '近戰力量模組2', 'Melee Strength Module 2', '近接パワーモジュール2', ],
2207 : ['近战力量模块3', '近戰力量模組3', 'Melee Strength Module 3', '近接パワーモジュール3', ], //02
2215 : ['近战火焰模块', '近戰火焰模組', 'Melee Fire Module', '近接火炎モジュール', ],
2216 : ['近战冰冻模块', '近戰冰凍模組', 'Melee Frost Module', '近接凍結モジュール', ],
2217 : ['近战电磁模块', '近戰電磁模組', 'Melee Electromagnetic Module', '近接電磁モジュール', ], //02
2208 : ['居合芯片', '居合晶片', 'Iaido Chip', '居合チップ', ],
2209 : ['撤步芯片', '撤步晶片', 'Step-Back Chip', 'バックステップチップ', ],
2210 : ['旋斩芯片', '旋風斬晶片', 'Whirlwind Chip', '旋風斬りチップス', ], //02
2262 : ['高频震动模块1', '高頻震動模組1', 'High-frequency vibration module 1', '高周波振動モジュール1', ],
2263 : ['高频震动模块2', '高頻震動模組2', 'High-frequency vibration module 2', '高周波振動モジュール2', ],
2264 : ['高频震动模块3', '高頻震動模組3', 'High-frequency vibration module 3', '高周波振動モジュール3', ], //02
2211 : ['近战换弹模块', '近戰換彈模組', 'Melee Reloading Module', '近接リロードモジュール', ],
2212 : ['近战换弹模块+', '近戰換彈模組+', 'Melee Reloading Module+', '近接リロードモジュール+', ],
2213 : ['近战高级换弹模块', '近戰高級換彈模組', 'Advanced Melee Reloading Module', '近接上級リロードモジュール', ],
2214 : ['近战制式换弹模块', '近戰制式換彈模組', 'Standard Melee Reloading Module', '近接制式リロードモジュール', ], //02
2218 : ['暗杀效率模块1', '暗殺效率模組1', 'Assassination Efficiency Module 1', '暗殺効率モジュール1', ],
2219 : ['暗杀效率模块2', '暗殺效率模組2', 'Assassination Efficiency Module 2', '暗殺効率モジュール2', ],
2220 : ['暗杀效率模块3', '暗殺效率模組3', 'Assassination Efficiency Module 3', '暗殺効率モジュール3', ], //02
2221 : ['暗杀隐匿模块1', '暗殺隱匿模組1', 'Assassination concealment module 1', '暗殺秘匿モジュール1', ],
2222 : ['暗杀隐匿模块2', '暗殺隱匿模組2', 'Assassination concealment module 2', '暗殺秘匿モジュール2', ],
2223 : ['暗杀隐匿模块3', '暗殺隱匿模組3', 'Assassination concealment module 3', '暗殺秘匿モジュール3', ], //02
2224 : ['暗杀广度模块1', '暗殺广度模組1', 'Assassination width module 1', '暗殺広さモジュール1', ],
2225 : ['暗杀广度模块2', '暗殺广度模組2', 'Assassination width module 2', '暗殺広さモジュール2', ],
2226 : ['暗杀广度模块3', '暗殺广度模組3', 'Assassination width module 3', '暗殺広さモジュール3', ], //02
1404 : ['肩部助力扭矩', '肩部助力扭矩', 'SMW torque', '肩射武器トルク', ],
1405 : ['肩部助力扭矩+', '肩部助力扭矩+', 'SMW torque+', '肩射武器トルク+', ], //02
1419 : ['肩扛武器齐射模块1', '肩扛武器齊射模組1', 'SMW Salvo Module 1', '肩射武器へシュート1', ],
1420 : ['肩扛武器齐射模块2', '肩扛武器齊射模組2', 'SMW Salvo Module 2', '肩射武器へシュート2', ],
1421 : ['肩扛武器齐射模块3', '肩扛武器齊射模組3', 'SMW Salvo Module 3', '肩射武器へシュート3', ],
1422 : ['肩扛武器齐射模块4', '肩扛武器齊射模組4', 'SMW Salvo Module 4', '肩射武器へシュート4', ], //02
1414 : ['肩扛武器穿甲模块1', '肩扛武器穿甲模組1', 'SMW ArP Module 1', '肩射武器装甲貫通モジュール1', ],
1415 : ['肩扛武器穿甲模块2', '肩扛武器穿甲模組2', 'SMW ArP Module 2', '肩射武器装甲貫通モジュール2', ],
1416 : ['肩扛武器穿甲模块3', '肩扛武器穿甲模組3', 'SMW ArP Module 3', '肩射武器装甲貫通モジュール3', ],
1417 : ['肩扛武器穿甲模块4', '肩扛武器穿甲模組4', 'SMW ArP Module 4', '肩射武器装甲貫通モジュール4', ],
1418 : ['肩扛武器穿甲模块5', '肩扛武器穿甲模組5', 'SMW ArP Module 5', '肩射武器装甲貫通モジュール5', ], //02
1406 : ['肩扛武器爆炸伤害模块1', '肩扛武器爆炸傷害模組1', 'SMW Explosion Damage Module 1', '肩射武器爆発ダメージモジュール1', ],
1407 : ['肩扛武器爆炸伤害模块2', '肩扛武器爆炸傷害模組2', 'SMW Explosion Damage Module 2', '肩射武器爆発ダメージモジュール2', ],
1408 : ['肩扛武器爆炸伤害模块3', '肩扛武器爆炸傷害模組3', 'SMW Explosion Damage Module 3', '肩射武器爆発ダメージモジュール3', ],
1409 : ['肩扛武器爆炸伤害模块4', '肩扛武器爆炸傷害模組4', 'SMW Explosion Damage Module 4', '肩射武器爆発ダメージモジュール4', ],
1410 : ['肩扛武器爆炸伤害模块5', '肩扛武器爆炸傷害模組5', 'SMW Explosion Damage Module 5', '肩射武器爆発ダメージモジュール5', ], //02
1401 : ['肩扛供弹匣1', '肩扛供彈匣1', 'SMW Magazine 1', '肩射武器マガジン1', ],
1402 : ['肩扛供弹匣2', '肩扛供彈匣2', 'SMW Magazine 2', '肩射武器マガジン2', ],
1403 : ['肩扛供弹匣3', '肩扛供彈匣3', 'SMW Magazine 3', '肩射武器マガジン3', ], //02
1411 : ['肩扛武器爆炸穿透模块1', '肩扛武器爆炸穿透模組1', 'SMW Blasting penetration module 1', '肩射武器爆発貫通モジュール1', ],
1412 : ['肩扛武器爆炸穿透模块2', '肩扛武器爆炸穿透模組2', 'SMW Blasting penetration module 2', '肩射武器爆発貫通モジュール2', ],
1413 : ['肩扛武器爆炸穿透模块3', '肩扛武器爆炸穿透模組3', 'SMW Blasting penetration module 3', '肩射武器爆発貫通モジュール3', ], //02
1423 : ['EMP增幅模块', 'EMP增幅模組', 'EMP amplification module', 'EMP増幅モジュール', ],
1424 : ['EMP增幅模块+', 'EMP增幅模組+', 'EMP amplification module+', 'EMP増幅モジュール+', ], //02
1425 : ['EMP燃烧模块', 'EMP燃燒模組', 'EMP combustion module', 'EMP燃焼モジュール', ],
1426 : ['EMP寒冰模块', 'EMP寒冰模組', 'EMP Ice Module', 'EMP寒氷モジュール', ], //02
10000 : ['老式步枪', '老式步槍', 'Antique Rifle', '旧式小銃', ],
10100 : ['老式步枪B2', '老式步槍B2', 'Antique Rifle B2', '旧式小銃B2', ],
10200 : ['老式步枪B2M1', '老式步槍B2M1', 'Antique Rifle B2M1', '旧式小銃B2M1', ],
10300 : ['老式步枪B2M11', '老式步槍B2M11', 'Antique Rifle B2M11', '旧式小銃B2M11', ],
10400 : ['老式步枪B2M11S', '老式步槍B2M12', 'Antique Rifle B2M12', '旧式小銃B2M12', ],
10001 : ['制式步枪', '制式步槍', 'Service Rifle', '制式小銃', ],
10101 : ['制式步枪M1', '制式步槍M1', 'Service Rifle M1', '制式小銃M1', ],
10201 : ['制式步枪M1S', '制式步槍M1S', 'Service Rifle M1S', '制式小銃M1S', ],
10301 : ['制式步枪M11S', '制式步槍M11S', 'Service Rifle M11S', '制式小銃M11S', ],
10401 : ['制式步枪M21S1', '制式步槍M21S1', 'Service Rifle M21S1', '制式小銃M21S1', ],
10002 : ['散弹枪', '散彈槍', 'Shotgun', '散弾銃', ],
10102 : ['散弹枪A1', '散彈槍A1', 'Shotgun A1', '散弾銃A1', ],
10202 : ['散弹枪A1S', '散彈槍A1S', 'Shotgun A1S', '散弾銃A1S', ],
10003 : ['泵动炮', '泵動炮', 'Pump-Action Shotgun', 'ポンプガン', ],
10103 : ['泵动炮O2', '泵動炮O2', 'Pump-Action Shotgun O2', 'ポンプガンO2', ],
10203 : ['泵动炮O2M2', '泵動炮O2M2', 'Pump-Action Shotgun O2M2', 'ポンプガンO2M2', ],
10303 : ['泵动炮O2M12', '泵動炮O2M12', 'Pump-Action Shotgun O2M12', 'ポンプガンO2M12', ],
10004 : ['重型狙', '重型狙', 'Heavy Sniper', '重狙撃銃', ],
10104 : ['重型狙M1', '重型狙M1', 'Heavy Sniper M1', '重狙撃銃M1', ],
10204 : ['重型狙M1A', '重型狙M1a', 'Heavy Sniper M1a', '重狙撃銃M1a', ],
10304 : ['超重型狙', '超重型狙', 'Super Heavy Sniper', '超重狙撃銃', ],
10005 : ['速射炮', '速射炮', 'Rapid-Firing Gun', '連射砲', ],
10105 : ['速射炮W1', '速射炮W1', 'Rapid-Firing Gun W1', '連射砲W1', ],
10205 : ['速射炮W1M', '速射炮W1m', 'Rapid-Firing Gun W1m', '連射砲W1m', ],
10006 : ['冲锋枪', '衝鋒槍', 'Submachine Gun', '短機関銃', ],
10106 : ['冲锋枪S5', '衝鋒槍S5', 'Submachine Gun S5', '短機関銃S5', ],
10206 : ['冲锋枪S5M', '衝鋒槍S5m', 'Submachine Gun S5M', '短機関銃S5m', ],
10306 : ['冲锋枪S5M1', '衝鋒槍S5M', 'Submachine Gun S5M', '短機関銃S5m', ],
10406 : ['冲锋枪S5M10', '衝鋒槍S5M10', 'Submachine Gun S5M10', '短機関銃S5M10', ],
10007 : ['加农炮', '加農炮', 'Cannon', 'カノン砲', ],
10107 : ['加农炮W1', '加農炮W1', 'Cannon W1', 'カノン砲W1', ],
10008 : ['榴散炮', '榴散炮', 'Howitzer', '榴弾砲', ],
10108 : ['榴散炮B1', '榴散炮B1', 'Howitzer B1', '榴弾砲B1', ],
10009 : ['破甲步枪', '破甲步槍', 'Armor-Piercing Rifle', '徹甲ライフル', ],
10109 : ['破甲步枪B1', '破甲步槍B1', 'Armor-Piercing Rifle B1', '徹甲ライフルB1', ],
10010 : ['喷火器', '噴火器', 'Flame Thrower', '火炎放射器', ],
10110 : ['喷火器M1', '噴火器M1', 'Flame Thrower M1', '火炎放射器M1', ],
10210 : ['高压喷火器', '高壓噴火器M1', 'High-Pressure Flame Thrower M1', '高圧火炎放射器M1', ],
10011 : ['寒冰喷雾', '寒冰噴霧', 'Frost Spray', '氷放射器', ],
10111 : ['寒冰喷雾M2', '寒冰噴霧M2', 'Frost Spray M2', '氷放射器M2', ],
10211 : ['高压寒冰喷雾', '高壓寒冰噴霧M2', 'High-Pressure Frost Spray M2', '高圧氷放射器M2', ],
10013 : ['重机枪', '重機槍', 'Heavy Machine Gun', '重機関銃', ],
10113 : ['重机枪W3', '重機槍W3', 'Heavy Machine Gun W3', '重機関銃W3', ],
10213 : ['重机枪W3M', '重機槍W3M', 'Heavy Machine Gun W3M', '重機関銃W3M', ],
10014 : ['火神炮', '火神炮', 'Vulcan Cannon', 'ガトリングガン', ],
10114 : ['火神炮W', '火神炮W', 'Vulcan Cannon W', 'ガトリングガンW', ],
10015 : ['轻型狙', '輕型狙', 'Light Sniper', '軽狙撃銃', ],
10115 : ['轻型狙M', '輕型狙M', 'Light Sniper M', '軽狙撃銃M', ],
10215 : ['轻型狙M10', '輕型狙M10', 'Light Sniper M10', '軽狙撃銃M10', ],
10315 : ['轻型狙M24', '輕型狙M24', 'Light Sniper M24', '軽狙撃銃M24', ],
10415 : ['轻型狙M45', '輕型狙M45', 'Light Sniper M45', '軽狙撃銃M45', ],
10016 : ['制式步枪B2', '制式步槍B2', 'Service Rifle B2', '制式小銃B2', ],
10116 : ['制式步枪B2A', '制式步槍B2a', 'Service Rifle B2a', '制式小銃B2a', ],
10216 : ['制式步枪B2AS', '制式步槍B2as', 'Service Rifle B2as', '制式小銃B2as', ],
10316 : ['制式步枪B2ASW', '制式步槍B2ASW', 'Service Rifle B2ASW', '制式小銃B2ASW', ],
10017 : ['制式步枪B1', '制式步槍B1', 'Service Rifle B1', '制式小銃B1', ],
10117 : ['制式步枪B1A', '制式步槍B1a', 'Service Rifle B1a', '制式小銃B1a', ],