-
Notifications
You must be signed in to change notification settings - Fork 0
/
Magic_3.html
1142 lines (1120 loc) · 59.4 KB
/
Magic_3.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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>传奇道士技能一览表_传奇道士等级列表 _道士技能伤害详解_176传奇道士全部技能</title>
<meta name="keywords" content="热血传奇道士一览表,176传奇道士全部技能介绍" />
<meta name="description" content="热血传奇道士属性一览表,复古176传奇道士等级列表,176传奇道士全部技能介绍" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="stylesheet" href="./static/ruchu/bootstrap.min.css">
<link rel="stylesheet" href="./static/ruchu/mir.css">
<style>
.dropdown-submenu .dropdown-menu {
top: 0;
left: 100%; /* 使子菜单向右弹出 */
margin-top: -6px; /* 微调位置 */
}
</style>
</head>
<body>
<nav id="fpb-c28" class="navbar navbar-expand-md sticky-top"><a id="fpb-c28" class="navbar-brand" href="http://ruchu888.ysepan.com/">传奇补丁</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<div id=fpb-c28 class="pl-3">
<a id=fpb-c28 class="dropdown-item" href="/">首页</a>
</div>
<ul class="navbar-nav mr-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">系统</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">属性表</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="content_6.html">战士属性表</a></li>
<li><a class="dropdown-item" href="content_7.html">法师属性表</a></li>
<li><a class="dropdown-item" href="content_8.html">道士属性表</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="content.html">界面</a></li>
<li><a class="dropdown-item" href="content_2.html">热键</a></li>
<li><a class="dropdown-item" href="content_3.html">命令</a></li>
<li><a class="dropdown-item" href="content_5.html">属性中英对照</a></li>
<li><a class="dropdown-item" href="content_4.html">经验列表</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">地图</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">比奇地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Map_1.html">比奇省</a></li>
<li><a class="dropdown-item" href="MapList.html">兽人古墓</a></li>
<li><a class="dropdown-item" href="MapList_2.html">天然洞穴</a></li>
<li><a class="dropdown-item" href="MapList_3.html">比奇矿区</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">沃玛地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Map_2.html">沃玛森林</a></li>
<li><a class="dropdown-item" href="MapList_4.html">沃玛自然洞穴</a></li>
<li><a class="dropdown-item" href="MapList_5.html">沃玛寺庙</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">毒蛇地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Map_3.html">毒蛇山谷</a></li>
<li><a class="dropdown-item" href="MapList_6.html">毒蛇矿区</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">盟重地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Map_4.html">盟重省</a></li>
<li><a class="dropdown-item" href="MapList_7.html">蜈蚣洞</a></li>
<li><a class="dropdown-item" href="MapList_8.html">未知暗殿</a></li>
<li><a class="dropdown-item" href="MapList_9.html">石墓</a></li>
<li><a class="dropdown-item" href="MapList_10.html">香石古墓</a></li>
<li><a class="dropdown-item" href="MapList_11.html">祖玛寺庙</a></li>
<li><a class="dropdown-item" href="Map_5.html">沙巴克密道</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">白日门区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Map_6.html">白日门</a></li>
<li><a class="dropdown-item" href="Map_7.html">丛林迷宫</a></li>
<li><a class="dropdown-item" href="MapList_12.html">赤月峡谷</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">封魔谷区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Map_9.html">封魔谷</a></li>
<li><a class="dropdown-item" href="MapList_13.html">封魔殿</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">苍月地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Map_8.html">苍月岛</a></li>
<li><a class="dropdown-item" href="MapList_14.html">尸魔洞</a></li>
<li><a class="dropdown-item" href="MapList_15.html">骨魔洞</a></li>
<li><a class="dropdown-item" href="MapList_16.html">牛魔寺庙</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">其他地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="MapList_17.html">六件新衣</a></li>
</ul>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">怪物</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">比奇地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Monster.html">比奇省</a></li>
<li><a class="dropdown-item" href="Monster_2.html">兽人古墓</a></li>
<li><a class="dropdown-item" href="Monster_4.html">天然洞穴</a></li>
<li><a class="dropdown-item" href="Monster_3.html">比奇矿区</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">沃玛地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Monster_5.html">沃玛森林</a></li>
<li><a class="dropdown-item" href="Monster_6.html">沃玛自然洞穴</a></li>
<li><a class="dropdown-item" href="Monster_7.html">沃玛寺庙</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">毒蛇地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Monster_8.html">毒蛇山谷</a></li>
<li><a class="dropdown-item" href="Monster_9.html">毒蛇矿区</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">盟重地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Monster_12.html">盟重省</a></li>
<li><a class="dropdown-item" href="Monster_10.html">蜈蚣洞</a></li>
<li><a class="dropdown-item" href="Monster_11.html">未知暗殿</a></li>
<li><a class="dropdown-item" href="Monster_13.html">石墓</a></li>
<li><a class="dropdown-item" href="Monster_14.html">香石古墓</a></li>
<li><a class="dropdown-item" href="Monster_15.html">祖玛寺庙</a></li>
<li><a class="dropdown-item" href="Monster_16.html">沙巴克密道</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">白日门区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Monster_17.html">白日门</a></li>
<li><a class="dropdown-item" href="Monster_18.html">丛林迷宫</a></li>
<li><a class="dropdown-item" href="Monster_19.html">赤月峡谷</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">封魔地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Monster_20.html">封魔谷</a></li>
<li><a class="dropdown-item" href="Monster_21.html">封魔殿</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">苍月地区</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Monster_22.html">苍月岛</a></li>
<li><a class="dropdown-item" href="Monster_23.html">尸魔洞</a></li>
<li><a class="dropdown-item" href="Monster_24.html">骨魔洞</a></li>
<li><a class="dropdown-item" href="Monster_25.html">牛魔寺庙</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="Monster_26.html">BOSS</a></li>
<li><a class="dropdown-item" href="Monster_27.html">生物系</a></li>
<li><a class="dropdown-item" href="Monster_28.html">不死系</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">物品</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">武器</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Item.html">通用</a></li>
<li><a class="dropdown-item" href="Item_2.html">战士</a></li>
<li><a class="dropdown-item" href="Item_3.html">法师</a></li>
<li><a class="dropdown-item" href="Item_4.html">道士</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">盔甲</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Item_5.html">通用</a></li>
<li><a class="dropdown-item" href="Item_6.html">战士</a></li>
<li><a class="dropdown-item" href="Item_7.html">法师</a></li>
<li><a class="dropdown-item" href="Item_8.html">道士</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="Item_9.html">头盔</a></li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">项链</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Item_10.html">通用</a></li>
<li><a class="dropdown-item" href="Item_11.html">战士</a></li>
<li><a class="dropdown-item" href="Item_12.html">法师</a></li>
<li><a class="dropdown-item" href="Item_13.html">道士</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">手镯</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Item_14.html">通用</a></li>
<li><a class="dropdown-item" href="Item_15.html">战士</a></li>
<li><a class="dropdown-item" href="Item_16.html">法师</a></li>
<li><a class="dropdown-item" href="Item_17.html">道士</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">戒指</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Item_18.html">通用</a></li>
<li><a class="dropdown-item" href="Item_19.html">战士</a></li>
<li><a class="dropdown-item" href="Item_20.html">法师</a></li>
<li><a class="dropdown-item" href="Item_21.html">道士</a></li>
</ul>
</li>
<li><a class="dropdown-item" href="Suit.html">套装</a></li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">消耗品</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Item_22.html">恢复消耗品</a></li>
<li><a class="dropdown-item" href="Item_24.html">增强消耗品</a></li>
<li><a class="dropdown-item" href="Item_23.html">特殊消耗品</a></li>
<li><a class="dropdown-item" href="Item_25.html">矿石</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#">技能书</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Item_26.html">战士</a></li>
<li><a class="dropdown-item" href="Item_27.html">法师</a></li>
<li><a class="dropdown-item" href="Item_28.html">道士</a></li>
</ul>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">合成</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Merge.html">材料&消耗品</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">技能</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="Magic.html">战士技能</a></li>
<li><a class="dropdown-item" href="Magic_2.html">法师技能</a></li>
<li><a class="dropdown-item" href="Magic_3.html">道士技能</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">任务</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="content_9.html">祈福项链任务</a></li>
<li><a class="dropdown-item" href="content_10.html">初级装备任务</a></li>
<li><a class="dropdown-item" href="content_11.html">传说中的罗刹任务</a></li>
<li><a class="dropdown-item" href="content_12.html">技巧项链任务</a></li>
<li><a class="dropdown-item" href="content_13.html">特殊戒指与手套</a></li>
<li><a class="dropdown-item" href="content_14.html">神秘商店任务</a></li>
<li><a class="dropdown-item" href="content_15.html">攻击神水金砖</a></li>
<li><a class="dropdown-item" href="content_16.html">命运之刃任务</a></li>
<li><a class="dropdown-item" href="content_17.html">破馆珍剑任务</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">爆率</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="stditem.html">物品查询</a></li>
<li><a class="dropdown-item" href="guaiwu.html">怪物查询</a></li>
<li><a class="dropdown-item" href="map.html">地图查询</a></li>
<li><a class="dropdown-item" href="npc.html">NPC查询</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown">资料</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="content_18.html">蜈蚣洞走法传送图</a></li>
<li><a class="dropdown-item" href="content_19.html">祖玛阁怎么走图解</a></li>
<li><a class="dropdown-item" href="content_20.html">石墓阵走法图解</a></li>
<li><a class="dropdown-item" href="content_21.html">幻境迷宫走法图解</a></li>
<li><a class="dropdown-item" href="content_22.html">圣域走法图解</a></li>
<li><a class="dropdown-item" href="content_23.html">赤月走法传送图</a></li>
<li><a class="dropdown-item" href="content_25.html">沙巴克秘密通道走法</a></li>
<li><a class="dropdown-item" href="content_24.html">道士3、4级毒伤害</a></li>
<li><a class="dropdown-item" href="content_26.html">技能等级对照表</a></li>
<li><a class="dropdown-item" href="content_27.html">法师宝宝属性表</a></li>
<li><a class="dropdown-item" href="content_28.html">道士骷髅神兽属性</a></li>
<li><a class="dropdown-item" href="content_29.html">传奇怪物属性表</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<div id=fpb-c60 class="container-fluid">
<div id=fpb-c60 class="row flex-nowra pt-2">
<div id=fpb-c60 class="col-lg-2 col-xl-1 d-none d-lg-block text-nowrap left" style="border: 2px solid #decdcd;border-radius: 10px;background-color: rgb(255 246 250);" style="border: 2px solid #decdcd;border-radius: 10px;background-color: rgb(255 246 250);" style="border: 2px solid #decdcd;border-radius: 10px;background-color: rgb(255 246 250);">
<div id=fpb-c30 class="container text-center text-nowrap p-0">
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-12">武器</div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item.html">通用</a></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-warrior"><a id=fpb-c30 href="Item_2.html">战士</a></span></div>
</div>
<div id=fpb-c30 class="row border-bottom">
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-wizard"><a id=fpb-c30 href="Item_3.html">法师</a></span></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-taoist"><a id=fpb-c30 href="Item_4.html">道士</a></span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-12"><span id=fpb-c30>盔甲</span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_5.html">通用</a></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-warrior"><a id=fpb-c30 href="Item_6.html">战士</a></span></div>
</div>
<div id=fpb-c30 class="row border-bottom">
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-wizard"><a id=fpb-c30 href="Item_7.html">法师</a></span></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-taoist"><a id=fpb-c30 href="Item_8.html">道士</a></span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-12"><span id=fpb-c30>项链</span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_10.html">通用</a></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-warrior"><a id=fpb-c30 href="Item_11.html">战士</a></span></div>
</div>
<div id=fpb-c30 class="row border-bottom">
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-wizard"><a id=fpb-c30 href="Item_12.html">法师</a></span></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-taoist"><a id=fpb-c30 href="Item_13.html">道士</a></span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-12"><span id=fpb-c30>手镯&手套</span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_14.html">通用</a></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-warrior"><a id=fpb-c30 href="Item_15.html">战士</a></span></div>
</div>
<div id=fpb-c30 class="row border-bottom">
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-wizard"><a id=fpb-c30 href="Item_16.html">法师</a></span></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-taoist"><a id=fpb-c30 href="Item_17.html">道士</a></span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-12"><span id=fpb-c30>戒指</span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_18.html">通用</a></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-warrior"><a id=fpb-c30 href="Item_19.html">战士</a></span></div>
</div>
<div id=fpb-c30 class="row border-bottom">
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-wizard"><a id=fpb-c30 href="Item_20.html">法师</a></span></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-taoist"><a id=fpb-c30 href="Item_21.html">道士</a></span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-12"><span id=fpb-c30>其他</span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_9.html">头盔</a></div>
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_29.html">勋章</a></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_30.html">毒符</a></div>
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_31.html">书籍</a></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_32.html">消耗品</a></div>
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_22.html">矿石</a></div>
</div>
<div id=fpb-c30 class="row border-bottom">
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_33.html">制药</a></div>
<div id=fpb-c30 class="col-lg-6"><a id=fpb-c30 href="Item_34.html">杂物</a></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-12"><span id=fpb-c30>技能</span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-warrior"><a id=fpb-c30 href="Magic.html">战士</a></span></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-wizard"><a id=fpb-c30 href="Magic_2.html">法师</a></span></div>
</div>
<div id=fpb-c30 class="row">
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30 class="text-taoist"><a id=fpb-c30 href="Magic_3.html">道士</a></span></div>
<div id=fpb-c30 class="col-lg-6"><span id=fpb-c30><a id=fpb-c30 href="Item_31.html">书籍</a></span></div>
</div>
</div>
</div>
<div class="col-12 col-lg-10 col-xl-9 bg-grey main">
<div><img src="./files/magic/2.jpg" alt="道士治愈术介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/2.png" alt="道士治愈术技能"> <b class="selectable">治愈术</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 释放精神之力治疗自己或目标,未选中目标或目标无效时治疗自己
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">7</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">7</td>
<td class="align-middle text-nowrap">500</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">11</td>
<td class="align-middle text-nowrap">1500</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">16</td>
<td class="align-middle text-nowrap">3000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/4.jpg" alt="道士精神力战法介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/4.png" alt="道士精神力战法技能"> <b class="selectable">精神力战法</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 根据修炼等级的不同,可以提高挥砍时的命中率
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">9</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">0</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">9</td>
<td class="align-middle text-nowrap">1000</td>
<td class="align-middle text-nowrap">0</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">准确 + 3</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">13</td>
<td class="align-middle text-nowrap">4000</td>
<td class="align-middle text-nowrap">0</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">准确 + 5</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">19</td>
<td class="align-middle text-nowrap">8000</td>
<td class="align-middle text-nowrap">0</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">准确 + 8</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/6.jpg" alt="道士施毒术介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/6.png" alt="道士施毒术技能"> <b class="selectable">施毒术</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 配合特殊药粉使目标中毒,灰色毒粉(绿毒减血)、黄色毒粉(红毒减防减耐久),技能等级影响毒药的有效时间
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">14</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">14</td>
<td class="align-middle text-nowrap">1000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">17</td>
<td class="align-middle text-nowrap">2000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">20</td>
<td class="align-middle text-nowrap">4000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/13.jpg" alt="道士灵魂火符介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/13.png" alt="道士灵魂火符技能"> <b class="selectable">灵魂火符</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 将精神之力附着在护身符上,远程攻击目标
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">18</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">60</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">18</td>
<td class="align-middle text-nowrap">2000</td>
<td class="align-middle text-nowrap">60</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">21</td>
<td class="align-middle text-nowrap">4000</td>
<td class="align-middle text-nowrap">60</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">24</td>
<td class="align-middle text-nowrap">6000</td>
<td class="align-middle text-nowrap">60</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/17.jpg" alt="道士召唤骷髅介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/17.png" alt="道士召唤骷髅技能"> <b class="selectable">召唤骷髅</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 使用护身符从地狱的深处召唤骷髅,骷髅初始等级与技能等级相同
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">19</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">19</td>
<td class="align-middle text-nowrap">2000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">23</td>
<td class="align-middle text-nowrap">4000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">26</td>
<td class="align-middle text-nowrap">8000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/18.jpg" alt="道士隐身术介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/18.png" alt="道士隐身术技能"> <b class="selectable">隐身术</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 在自身周围释放精神之力,使非反隐身怪物无法察觉你的存在
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">20</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">20</td>
<td class="align-middle text-nowrap">3000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">23</td>
<td class="align-middle text-nowrap">6000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">26</td>
<td class="align-middle text-nowrap">9000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/19.jpg" alt="道士集体隐身术介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/19.png" alt="道士集体隐身术技能"> <b class="selectable">集体隐身术</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 让3X3范围内的友方单位不会被非反隐身怪物察觉
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">21</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">21</td>
<td class="align-middle text-nowrap">2000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">25</td>
<td class="align-middle text-nowrap">4000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">29</td>
<td class="align-middle text-nowrap">8000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/14.jpg" alt="道士幽灵盾介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/14.png" alt="道士幽灵盾技能"> <b class="selectable">幽灵盾</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 为5X5范围内友方单位增加魔法防御(MAC),有效时间随技能的等级而延长
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">22</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">22</td>
<td class="align-middle text-nowrap">5000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">+ 持续时间</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">24</td>
<td class="align-middle text-nowrap">10000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">+ 持续时间</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">26</td>
<td class="align-middle text-nowrap">15000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">+ 持续时间</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/15.jpg" alt="道士神圣战甲术介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/15.png" alt="道士神圣战甲术技能"> <b class="selectable">神圣战甲术</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 为5X5范围内友方单位增加防御(AC),有效时间随技能的等级而延长
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">25</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">25</td>
<td class="align-middle text-nowrap">5000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">+ 持续时间</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">27</td>
<td class="align-middle text-nowrap">10000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">+ 持续时间</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">29</td>
<td class="align-middle text-nowrap">15000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">+ 持续时间</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/28.jpg" alt="道士心灵启示介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/28.png" alt="道士心灵启示技能"> <b class="selectable">心灵启示</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 显示目标的血量(包括玩家和怪物),2级以上技能必定成功
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">26</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">26</td>
<td class="align-middle text-nowrap">4000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">30</td>
<td class="align-middle text-nowrap">8000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">35</td>
<td class="align-middle text-nowrap">12000</td>
<td class="align-middle text-nowrap">40</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/16.jpg" alt="道士困魔咒介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/16.png" alt="道士困魔咒技能"> <b class="selectable">困魔咒</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 困住怪物,可困住等级不高于道士等级+1级的怪物,当有人走进这个圈时咒语失效
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>
<th class="text-nowrap">点数</th>
<th class="text-nowrap">延迟</th>
<th class="text-nowrap">法力消耗</th>
<th class="text-nowrap">其他</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-nowrap">Level 0</td>
<td class="align-middle text-nowrap">28</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 1</td>
<td class="align-middle text-nowrap">28</td>
<td class="align-middle text-nowrap">3000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 2</td>
<td class="align-middle text-nowrap">30</td>
<td class="align-middle text-nowrap">6000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
<tr>
<td class="align-middle text-nowrap">Level 3</td>
<td class="align-middle text-nowrap">32</td>
<td class="align-middle text-nowrap">12000</td>
<td class="align-middle text-nowrap">50</td>
<td class="align-middle text-nowrap">-</td>
<td class="align-middle text-nowrap">-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div><img src="./files/magic/29.jpg" alt="道士群体治疗术介绍" class="float-left mr-2 rounded ng-lazyloaded"> <img class="rounded ng-lazyloaded" src="./files/skills/29.png" alt="道士群体治疗术技能"> <b class="selectable">群体治疗术</b><br>
<span> [ 职业: 道士 ]</span><br>
说明: 治疗3X3范围内单位的血量,治疗效果随等级增长
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover text-center">
<thead>
<tr>
<th class="text-nowrap">技能等级</th>
<th class="text-nowrap">等级</th>