-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathother.txt
2701 lines (2701 loc) · 617 KB
/
other.txt
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
Tªn Lo¹i h×nh chÝnh Lo¹i h×nh phô Ph©n lo¹i chi tiÕt NÆng Gi¸ SÕp chång nhiÒu nhÊt Håi phôc thuéc tÝnh1 TrÞ sè phôc håi thuéc tÝnh mçi n÷a gi©y (1) Håi phôc thuéc tÝnh2 TrÞ sè phôc håi thuéc tÝnh mçi n÷a gi©y (2) Håi phôc thuéc tÝnh3 TrÞ sè phôc håi thuéc tÝnh mçi n÷a gi©y (3) Håi phôc thuéc tÝnh4 TrÞ sè phôc håi thuéc tÝnh mçi n÷a gi©y (4) Thêi gian duy tr× hiÖu lùc (Sè ch½n) Lu ( Ch÷ sè) Lu ( Ch÷ sè) HiÖn h×nh nhá trªn giao diÖn HiÖn h×nh lín trªn giao diÖn ThuyÕt minh Lu (chuçi ký tù) Khi vøt ra ngoµi sÏ hiÓn thÞ tªn File gèc CÊp "Cã thÓ giao dÞch hay kh«ng ( 0 cã thÓ giao dÞch, cã thÓ b¸n; 1 kh«ng thÓ giao dÞch kh«ng thÓ b¸n; 2 cã thÓ b¸n, kh«ng thÓ giao dÞch; 3 kh«ng thÓ b¸n, cã thÓ giao dÞch; 4 cã thÓ b¸n, sau khi mang vµo sÏ bÞ khãa)" Cã/kh«ng thÓ vøt (0 ®îc; 1 kh«ng ®îc) B¶o lu 1 B¶o lu 2 B¶o lu 3 Tiªu chÝ ph¸t triÓn Biªn hiÖu ph¸t triÓn Biªn hiÖu më khãa Biªn hiÖu kinh nghiÖm
Long Phông kÕt 2 3 1 2 2 999 \image\item\other\skius_001a1.spr \image\item\other\skius_001a0.spr Cã thÓ gäi ®ång ®éi ®Õn hç trî Tiªu hao 1
Long Hoµng lÖnh 2 3 2 2 2 999 \image\item\other\skius_002a1.spr \image\item\other\skius_002a0.spr Bang chñ dïng lÖnh nµy ®Ó gäi bang chóng. Tiªu hao 1
Cµn Kh«n kÕt 2 3 3 2 2 999 \image\item\other\skius_003a1.spr \image\item\other\skius_003a0.spr Cã thÓ dïng ®Ó trë l¹i n¬i xuÊt ph¸t. Tiªu hao 1
Thiªn PhËt Ch©u 2 3 4 0 2 999 \image\item\other\skius_004a1.spr \image\item\other\skius_004a0.spr Cã thÓ lµm thay ®æi thuéc tÝnh ngò hµnh Tiªu hao 1
¸m khÝ 2 11 0 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr §Ö tö §êng M«n lu«n ®eo bªn ngêi. Tiªu hao 1 1
C¬ quan 2 3 6 0 1 999 \image\item\other\skius_006a1.spr \image\item\other\skius_006a0.spr §Ö tö §êng M«n dïng ®Ó ®Æt bÉy Tiªu hao 1
X¸ Lîi Kim ®¬n 2 3 7 2 2 999 \image\item\other\skius_007a1.spr \image\item\other\skius_007a0.spr "§îc lµm tõ cèt phËt, cã thÓ håi sinh bÊt tö." Tiªu hao 1
Cù Tö lÖnh 2 3 8 2 2 999 \image\item\other\skius_008a1.spr \image\item\other\skius_008a0.spr N¾m gi÷ tÝn vËt nµy míi cã thÓ sö dông H¾c Tö kiÕm ph¸p. Tiªu hao 1
Mª Hån TuyÕn 2 3 9 2 2 999 \image\item\other\skius_009a1.spr \image\item\other\skius_009a0.spr "Cã thÓ ph©n rång thµnh rång, ph©n hæ thµnh hæ." Tiªu hao 1
¶nh NguyÖt phï 2 3 10 2 2 999 \image\item\other\skius_010a1.spr \image\item\other\skius_010a0.spr §Ö tö Tôc Gia Vâ §ang sö dông nhanh chãng phôc håi c«ng lùc. Tiªu hao 1
Th¸i HuyÒn Chó 2 3 11 2 2 999 \image\item\other\skius_011a1.spr \image\item\other\skius_011a0.spr Sö dông nhanh chãng phôc håi sinh lùc. Tiªu hao 1
Ph¸ Ma Chó 2 3 12 0 2 999 \image\item\other\ÆÆħÖäa1.spr \image\item\other\ÆÆħÖäa0.spr Cã thÓ qua l¹i gi÷a 2 thÕ giíi ¢m_D¬ng. Tiªu hao 1
Tô ThiÕt th¹ch 2 8 1 0 2 999 \image\item\other\ormeta_001a1.spr \image\item\other\ormeta_001a0.spr Cã thÓ chÕ t¹o Tinh ThiÕt kho¸ng th¹ch. Sinh ho¹t
Tô §ång th¹ch 2 8 2 0 2 999 \image\item\other\ormeta_002a1.spr \image\item\other\ormeta_002a0.spr Cã thÓ chÕ t¹o Tinh §ång kho¸ng th¹ch. Sinh ho¹t
Tô TÝch th¹ch 2 8 3 0 2 999 \image\item\other\ormeta_003a1.spr \image\item\other\ormeta_003a0.spr Cã thÓ chÕ t¹o B¹ch Ng©n kho¸ng th¹ch. Sinh ho¹t
Tô Ng©n th¹ch 2 8 4 0 3 999 \image\item\other\ormeta_004a1.spr \image\item\other\ormeta_004a0.spr Cã thÓ chÕ t¹o B¹ch Ng©n kho¸ng th¹ch. Sinh ho¹t
Th¸i B¹ch Tinh Th¹ch 2 8 6 0 3 999 \image\item\other\ormeta_006a1.spr \image\item\other\ormeta_006a0.spr "Mét m¶nh thiªn th¹ch, ®Ñp nh ngäc cã thÓ ph¸t s¸ng." Sinh ho¹t
HuyÒn Th¹ch 2 8 7 0 4 999 \image\item\other\ormeta_007a1.spr \image\item\other\ormeta_007a0.spr "Mét m¶nh thiªn th¹ch, ®Ñp nh ngäc cã thÓ ph¸t s¸ng." Sinh ho¹t 8
HuyÒn Méc 2 7 1 0 2 999 \image\item\other\orwood_001a1.spr \image\item\other\orwood_001a0.spr "DÎo dai, cã thÓ dïng lµm gi¸o th¬ng" Sinh ho¹t
Ch¬ng Méc 2 7 2 0 2 999 \image\item\other\orwood_002a1.spr \image\item\other\orwood_002a0.spr "BÒn ch¾c, ngêi Giang §«ng hay dïng ®Ó ®ãng thuyÒn." Sinh ho¹t
Ngäc Thô Can 2 7 3 0 2 999 \image\item\other\orwood_003a1.spr \image\item\other\orwood_003a0.spr Thæ d©n thêng dïng lµm nhµ. Sinh ho¹t
§an Thanh Méc 2 7 4 0 3 999 \image\item\other\orwood_004a1.spr \image\item\other\orwood_004a0.spr "Cùc kú dÎo dai, thæ d©n thêng ®Îo lµm cµy." Sinh ho¹t
V« Häa Méc 2 7 5 0 3 999 \image\item\other\orwood_005a1.spr \image\item\other\orwood_005a0.spr "Mïi h¬ng dÞu nhÑ cã thÓ tr¸nh ®îc tµ khÝ, thêng dïng lµm vò khÝ." Sinh ho¹t
Ba La Méc Can 2 7 6 0 3 999 \image\item\other\orwood_006a1.spr \image\item\other\orwood_006a0.spr "Hoa gièng hoa sen, ®i xa tr¨m bíc ®· nghe thÊy mïi th¬m." Sinh ho¹t
Khóc gç Bå §Ò 2 7 7 0 2 999 \image\item\other\orwood_007a1.spr \image\item\other\orwood_007a0.spr Loµi c©y g¾n liÒn víi lÞch sö ph¸t triÓn cña PhËt Gi¸o. Sinh ho¹t
Tï Thó b× 2 10 5 0 2 999 \image\item\other\orskin_005a1.spr \image\item\other\orskin_005a0.spr "Da cña mét loµi thó h×nh d¹ng gièng nh hæ, 10 n¨m míi lét x¸c mét lÇn." Sinh ho¹t
Thôy øng b× 2 10 4 0 2 999 \image\item\other\orskin_001a1.spr \image\item\other\orskin_001a0.spr "Da cña hå ly chÝn ®u«i, 10 n¨m míi lét x¸c mét lÇn." Sinh ho¹t
Ba xµ b× 2 10 3 0 3 999 \image\item\other\orskin_003a1.spr \image\item\other\orskin_003a0.spr "Da ®éc xµ, 10 n¨m míi lét x¸c mét lÇn." Sinh ho¹t
SuÊt Nhiªn b× 2 10 2 0 3 999 \image\item\other\orskin_002a1.spr \image\item\other\orskin_002a0.spr "Da ®éc xµ, 10 n¨m míi lét x¸c mét lÇn." Sinh ho¹t 8
Cuång Hïng b× 2 10 1 0 3 999 \image\item\other\orskin_004a1.spr \image\item\other\orskin_004a0.spr Cã thÓ may ¸o gi¸p chèng rÐt cùc tèt. Sinh ho¹t
§éc Lang Nguyªn B× 2 10 6 0 2 999 \image\item\other\orskin_006a1.spr \image\item\other\orskin_006a0.spr Da sãi cã thÓ may ¸o gi¸p. Sinh ho¹t
L«ng thá 2 9 1 0 1 999 \image\item\other\orsilk_001a1.spr \image\item\other\orsilk_001a0.spr Cã thÓ may thµnh trang phôc Sinh ho¹t 1
Tµm t¬ 2 9 2 0 2 999 \image\item\other\orsilk_002a1.spr \image\item\other\orsilk_002a0.spr Lo¹i t¬ næi tiÕng ë vïng Giang Nam ®îc xem lµ thîng phÈm. Sinh ho¹t 2
T¬ Ngò S¾c 2 9 3 0 3 999 \image\item\other\orsilk_003a1.spr \image\item\other\orsilk_003a0.spr §Æc s¶n cña vïng LÜnh Nam. Sinh ho¹t 3
Lang chu t¬ 2 2 52 0 4 999 \image\item\other\orsilk_009a1.spr \image\item\other\orsilk_009a0.spr MÞn mµng bÒn ch¾c Sinh ho¹t 4
Hång t¬ 2 2 53 0 5 999 \image\item\other\orsilk_012a1.spr \image\item\other\orsilk_012a0.spr "Mét lo¹i t¬ ë T©y Vùc, mµu s¾c ®á th¾m" Sinh ho¹t 5
Linh Chu t¬ 2 2 54 0 6 999 \image\item\other\orsilk_010a1.spr \image\item\other\orsilk_010a0.spr Mét lo¹i t¬ cña vïng t©y nam cã thÓ kh¸ng ®éc. Sinh ho¹t 6
Kim tµm t¬ 2 2 55 0 7 999 \image\item\other\orsilk_008a1.spr \image\item\other\orsilk_008a0.spr Mét lo¹i T¬ t»m ë Thiªn Tróc cã thÓ trõ háa thanh nhiÖt. Sinh ho¹t 7
L·nh trïng t¬ 2 9 4 0 8 999 \image\item\other\orsilk_004a1.spr \image\item\other\orsilk_004a0.spr Cã thÓ dÖt thµnh trang phôc Sinh ho¹t 8
Háa chu t¬ 2 9 5 0 9 999 \image\item\other\orsilk_005a1.spr \image\item\other\orsilk_005a0.spr Lo¹i t¬ chØ cã ë vïng Nam LÜnh Sinh ho¹t 9
B¨ng tµm t¬ 2 9 6 0 10 999 \image\item\other\orsilk_006a1.spr \image\item\other\orsilk_006a0.spr "T¬ cña mét lo¹i nhÖn trªn nói Thiªn S¬n vïng T©y Vùc, mÒm m¹i bÒn ch¾c." Sinh ho¹t 10
¤ Tµm t¬ 2 9 7 0 4 999 \image\item\other\orsilk_007a1.spr \image\item\other\orsilk_007a0.spr "Lo¹i t»m trªn nói TuyÕt S¬n, mçi n¨m chØ nh¶ t¬ mét lÇn. Dïng lµm dîc liÖu trÞ th¬ng cùc kú h÷u dông." Sinh ho¹t 8
Thiªn Tµm t¬ 2 2 56 0 10 999 \image\item\other\orsilk_011a1.spr \image\item\other\orsilk_011a0.spr Lo¹i t¬ chØ cã ë vïng Nam LÜnh Sinh ho¹t 9
T¬ Th¸i V©n 2 2 100 0 10 999 \image\item\other\²ÊÔÆË¿a1.spr \image\item\other\²ÊÔÆË¿a0.spr "Sîi t¬ Tiªn n÷ dïng ®Ó dÖt m©y trong truyÒn thuyÕt, vËt liÖu dïng ®Ó t¹o trang bÞ cao cÊp." Sinh ho¹t 10
Bæ Thiªn TuyÕn 2 2 101 0 10 999 \image\item\other\orsilk_011a1.spr \image\item\other\orsilk_011a0.spr "Sîi t¬ dïng ®Ó v¸ trêi trong truyÒn thuyÕt, vËt liÖu may phßng cô cùc kú hiÕm cã." Sinh ho¹t
Thiªn H¹t Ch©m 2 2 102 0 10 999 \image\item\other\coll_112a1.spr \image\item\other\coll_112a0.spr "Lo¹i da trong truyÒn thuyÕt, v« cïng cøng c¸p, c¸c lo¹i kim thêng kh«ng thÓ xuyªn thñng." Sinh ho¹t
Tinh ThiÕt 2 2 1 0 1 999 \image\item\other\meta_001a1.spr \image\item\other\meta_001a0.spr "§îc tinh luyÖn tõ kho¸ng th¹ch, cã thÓ lµm vò khÝ." Sinh ho¹t 1
B¸ch LuyÖn C¬ng 2 2 2 0 2 999 \image\item\other\meta_002a1.spr \image\item\other\meta_002a0.spr Nguyªn liÖu chÕ t¹o vò khÝ. Sinh ho¹t 2
¤ kim th¹ch 2 8 5 0 3 999 \image\item\other\ormeta_005a1.spr \image\item\other\ormeta_005a0.spr Dïng lµm nguyªn liÖu. Sinh ho¹t 3
Hµn thiÕt 2 2 4 0 4 999 \image\item\other\meta_004a1.spr \image\item\other\meta_004a0.spr Nguyªn liÖu chÕ t¹o vò khÝ. Sinh ho¹t 4
Th¸i b¹ch tinh kim 2 2 5 0 5 999 \image\item\other\meta_005a1.spr \image\item\other\meta_005a0.spr Nguyªn liÖu chÕ t¹o vò khÝ cùc kú quý hiÕm. Sinh ho¹t 5
HuyÒn thiÕt 2 2 6 0 6 999 \image\item\other\meta_006a1.spr \image\item\other\meta_006a0.spr Nguyªn liÖu chÕ t¹o vò khÝ cùc kú quý hiÕm. Sinh ho¹t 6
Thiªn thanh th¹ch 2 2 36 0 7 999 \image\item\other\ormeta_011a1.spr \image\item\other\ormeta_011a0.spr Nguyªn liÖu chÕ t¹o cao cÊp cùc kú quý hiÕm. . Sinh ho¹t 7
H¾c « th¹ch 2 2 37 0 8 999 \image\item\other\ormeta_010a1.spr \image\item\other\ormeta_010a0.spr "§¸ nam ch©m, nguyªn liÖu cao cÊp." Sinh ho¹t 8
H¾c ¤ tinh th¹ch 2 2 66 0 8 999 \image\item\other\ormeta_010Sa1.spr \image\item\other\ormeta_010Sa0.spr §îc tinh luyÖn l¹i tõ ®¸ nam ch©m. Sinh ho¹t 8
XÝch ¤ linh phï 2 2 69 0 1 999 \image\item\other\fu_002Sa1.spr \image\item\other\fu_002Sa0.spr Linh phï ®îc lµm tõ Gi¸m ®Þnh phï kÕt hîp víi Bå §Ò méc tr¶i qua qu¸ tr×nh phøc t¹p chÕ thµnh. Sinh ho¹t 8
XÝch thiÕt 2 2 38 0 9 999 \image\item\other\ormeta_008a1.spr \image\item\other\ormeta_008a0.spr Nguyªn liÖu cao cÊp Sinh ho¹t 9
V©n mÉu 2 2 39 0 10 999 \image\item\other\ormeta_012a1.spr \image\item\other\ormeta_012a0.spr "Tinh kho¸ng th¹ch, nguyªn liÖu cao cÊp." Sinh ho¹t 10
C¸o th¹ch 2 2 40 0 10 999 \image\item\other\ormeta_009a1.spr \image\item\other\ormeta_009a0.spr Nguyªn liÖu cao cÊp quý hiÕm. Sinh ho¹t
Tö Kim 2 2 3 0 3 999 \image\item\other\meta_003a1.spr \image\item\other\meta_003a0.spr Nguyªn liÖu cao cÊp Sinh ho¹t 3
Hån Th¹ch 2 2 103 0 10 999 \image\item\other\ormeta_006a1.spr \image\item\other\ormeta_006a0.spr "ThÇn binh lîi khÝ ®Ò cã linh hån, Hån th¹ch vÉn lµ vËt kh«ng thÓ thiÕu ®Ó chÕ t¹o ThÇn khÝ." Sinh ho¹t
M¶nh Thiªn th¹ch 2 2 7 0 4 999 \image\item\other\ÔÉÌúËéƬ(x).spr \image\item\other\ÔÉÌúËéƬ(d).spr "Nguyªn liÖu ®Ó ®óc thÇn khÝ. (VËt thªm vµo, gi¸ trÞ lµ 10, gi¸ trÞ tèi ®a lµ 6000)" ThÇn bÝ 1 0 1
Thiªn th¹ch 2 2 8 0 7 999 \image\item\other\smeta_001a1.spr \image\item\other\smeta_001a0.spr "Cuèi n¨m Êt DËu, XÝch tinh r¬i ë T©y B¾c, C«ng Th©u Ban dïng liÖt háa luyÖn thµnh tinh th¹ch, nguyªn liÖu ®Ó ®óc thÇn khÝ. (VËt thªm vµo, gi¸ trÞ lµ 40, gi¸ trÞ tèi ®a lµ 7000)" ThÇn bÝ 1 0 1
Tïng Méc 2 2 41 0 1 999 \image\item\other\orwood_009a1.spr \image\item\other\orwood_009a0.spr Hoa v¨n tù nhiªn cã thÓ dïng lµm giÊy. Sinh ho¹t 1
D¬ng Méc 2 2 42 0 2 999 \image\item\other\orwood_012a1.spr \image\item\other\orwood_012a0.spr Ngêi ph¬ng B¾c thêng sö dông. Sinh ho¹t 2
Sam Méc 2 2 43 0 3 999 \image\item\other\orwood_008a1.spr \image\item\other\orwood_008a0.spr Cã thÓ dïng lµm nguyªn liÖu Sinh ho¹t 3
ThiÕt Méc 2 2 44 0 4 999 \image\item\other\orwood_010a1.spr \image\item\other\orwood_010a0.spr Nguyªn liÖu cùc tèt. Sinh ho¹t 4
Ng« §ång 2 2 45 0 5 999 \image\item\other\orwood_011a1.spr \image\item\other\orwood_011a0.spr Cã thÓ dïng lµm nguyªn liÖu Sinh ho¹t 5
Trïng Méc 2 2 9 0 6 999 \image\item\other\wood_001a1.spr \image\item\other\wood_001a0.spr Cã thÓ dïng chÕ t¹o vò khÝ. Sinh ho¹t 6
ThiÕt Ch¬ng Méc 2 2 10 0 7 999 \image\item\other\wood_002a1.spr \image\item\other\wood_002a0.spr Cã thÓ dïng lµm nguyªn liÖu Sinh ho¹t 7
ThiÕt TuyÕn Méc 2 2 11 0 8 999 \image\item\other\wood_003a1.spr \image\item\other\wood_003a0.spr Cã thÓ dïng lµm nguyªn liÖu Sinh ho¹t 8
ThiÕt TuyÕn tinh méc 2 2 67 0 8 999 \image\item\other\wood_003Sa1.spr \image\item\other\wood_003Sa0.spr Cã thÓ dïng lµm nguyªn liÖu Sinh ho¹t 8
Ba La Méc 2 2 12 0 9 999 \image\item\other\wood_004a1.spr \image\item\other\wood_004a0.spr Nguyªn liÖu chÕ t¹o vò khÝ. Sinh ho¹t 9
§µn Méc 2 2 13 0 10 999 \image\item\other\wood_005a1.spr \image\item\other\wood_005a0.spr Mïi h¬ng cã thÓ trõ ®îc tµ ma. Nguyªn liÖu cùc kú quý hiÕm. Sinh ho¹t 10
Bå §Ò Méc 2 2 14 0 6 999 \image\item\other\wood_006a1.spr \image\item\other\wood_006a0.spr Nguyªn liÖu quý hiÕm. Sinh ho¹t 8
ThiÕt Hoa Méc 2 2 104 0 10 999 \image\item\other\orwood_010a1.spr \image\item\other\orwood_010a0.spr "ThiÕt Hoa Méc, cøng h¬n thÐp, dïng ®Ó chÕ t¹o vò khÝ." Sinh ho¹t 4
KiÕn Méc 2 2 105 0 10 999 \image\item\other\wood_006a1.spr \image\item\other\wood_006a0.spr "Gç lÊy tõ c©y cao chäc trêi trong truyÒn thuyÕt, dïng ®Ó chÕ t¹o vò khÝ." Sinh ho¹t 8
Da sãi 2 2 15 0 1 999 \image\item\other\skin_001a1.spr \image\item\other\skin_001a0.spr "Da sãi th«ng thêng, dïng lµm nguyªn liÖu phßng hé." Sinh ho¹t 1
Da hæ 2 2 16 0 2 999 \image\item\other\skin_002a1.spr \image\item\other\skin_002a0.spr "Dïng lµm nguyªn liÖu phßng hé, rÊt hiÖu qu¶ khi chiÕn ®Êu!" Sinh ho¹t 2
Da r¾n 2 2 18 0 3 999 \image\item\other\skin_003a1.spr \image\item\other\skin_003a0.spr Dïng lµm nguyªn liÖu phßng hé. Sinh ho¹t 3
Da c¸o 2 2 17 0 4 999 \image\item\other\skin_004a1.spr \image\item\other\skin_004a0.spr Dïng lµm nguyªn liÖu phßng hé. Sinh ho¹t 4
Da hæ tr¾ng 2 2 46 0 5 999 \image\item\other\orskin_011a1.spr \image\item\other\orskin_011a0.spr "Da hæ tr¨m tuæi, cùc kú quý hiÕm." Sinh ho¹t 5
Da gÊu 2 2 20 0 6 999 \image\item\other\skin_006a1.spr \image\item\other\skin_006a0.spr Dïng lµm nguyªn liÖu phßng hé. Sinh ho¹t 6
Loan ®iÓu vò 2 10 7 0 7 999 \image\item\other\orskin_007a1.spr \image\item\other\orskin_007a0.spr Dïng lµm nguyªn liÖu phßng hé. Sinh ho¹t 7
Da S tö 2 2 47 0 8 999 \image\item\other\orskin_008a1.spr \image\item\other\orskin_008a0.spr "Mét trong 4 tø linh, dïng lµm nguyªn liÖu phßng hé cùc kú quý hiÕm." Sinh ho¹t 8
Da S tinh 2 2 68 0 1 999 \image\item\other\orskin_008Sa1.spr \image\item\other\orskin_008Sa0.spr Da S tö qua nhiÒu c«ng ®o¹n tinh luyÖn chÕ biÕn thµnh. Sinh ho¹t 8
Da Vîn tr¾ng 2 2 48 0 9 999 \image\item\other\orskin_010a1.spr \image\item\other\orskin_010a0.spr "Da Vîn tr¾ng cña vïng §«ng S¬n, cã thÓ trõ ®éc." Sinh ho¹t
Chu Tíc vò 2 2 49 0 10 999 \image\item\other\orsilk_013a1.spr \image\item\other\orsilk_013a0.spr "L«ng chim sÎ ë vïng Giang Nam, löa thiªu kh«ng ch¸y" Sinh ho¹t 10
Da Linh ngao 2 2 50 0 10 999 \image\item\other\orskin_009a1.spr \image\item\other\orskin_009a0.spr "Vâ ngao ë biÓn Bét H¶i, níc kh«ng thÊm." Sinh ho¹t 9
Phông Hoµng Vò 2 2 51 0 10 999 \image\item\other\orsilk_014a1.spr \image\item\other\orsilk_014a0.spr Cã thÓ dïng lµm nguyªn liÖu tinh chÕ ®¬n dîc C¶i tö håi sinh. Sinh ho¹t
H¾c CÈm 2 2 21 0 1 999 \image\item\other\silk_001a1.spr \image\item\other\silk_001a0.spr "Lo¹i gÊm chØ cã ë vïng Giang Nam, mÒm m¹i quý ph¸i, nguyªn liÖu may trang phôc." Sinh ho¹t 7
Chøc cÈm 2 2 22 0 2 999 \image\item\other\silk_002a1.spr \image\item\other\silk_002a0.spr Do Tïng Giang phñ chÕ t¹o tõ v¶i b«ng vµ chØ mµu ®Ó dÖt. Sinh ho¹t 7
Háa Ho¸n CÈm 2 2 23 0 3 999 \image\item\other\silk_003a1.spr \image\item\other\silk_003a0.spr "Lo¹i gÊm do §¹i Lý di téc dÖt, mµu s¾c sÆc sì, hoa v¨n tinh x¶o." Sinh ho¹t 7
Méc Miªn CÈm 2 2 24 0 4 999 \image\item\other\silk_004a1.spr \image\item\other\silk_004a0.spr "Lo¹i gÊm trø danh do §¹i Lý di téc dÖt, mµu s¾c rùc rì." Sinh ho¹t 4
V©n CÈm 2 2 25 0 5 999 \image\item\other\silk_005a1.spr \image\item\other\silk_005a0.spr "Lo¹i gÊm sang träng, ®¸ng gi¸ ngµn vµng do nh÷ng ngêi thî næi tiÕng ë ®Êt Thôc dÖt thµnh." Sinh ho¹t 5
Thiªn T«n CÈm 2 2 26 0 6 999 \image\item\other\silk_006a1.spr \image\item\other\silk_006a0.spr "Do c¸c thiÕu n÷ ë vïng T« Ch©u dÖt nªn, ®Ñp ®Ï thanh tó, t«n lªn nÐt sang träng." Sinh ho¹t 6
Liªn Hoµnh Phæ 2 2 27 0 3 999 \image\item\other\slife_001a1.spr \image\item\other\slife_001a0.spr Binh khÝ phæ do c¸c tiÒn bèi vâ l©m ®êi tríc truyÒn l¹i. Sinh ho¹t 7
Tu La Phæ 2 2 57 0 6 999 \image\item\other\slife_001a1.spr \image\item\other\slife_001a0.spr "Binh khÝ phæ thÇn kú cña c¸c cña c¸c ®¹i s binh khÝ næi tiÕng cña Tu La gi¸o n¨m xa, dïng ®óc t¹o nh÷ng binh khÝ thîng ®¼ng." Sinh ho¹t 7
ThÇn Binh Phæ 2 2 58 0 9 999 \image\item\other\slife_001a1.spr \image\item\other\slife_001a0.spr "Binh khÝ phæ thÇn kú tõ thêi thîng cæ truyÒn l¹i, chØ ngêi h÷u duyªn míi cã thÓ ®óc t¹o ®îc thÇn binh lîi khÝ." Sinh ho¹t 7
H¾c Kim PhÊn 2 2 59 0 3 999 \image\item\other\coll_110a1.spr \image\item\other\coll_110a0.spr "Kim lo¹i thÇn kú ®îc ngêi T©y Vùc du nhËp vµo Trung Nguyªn tõ thêi H¸n Vâ §Õ, vËt liÖu quan träng ®Ó ®óc t¹o vò khÝ." Sinh ho¹t 1
H¾c Kim nhá 2 2 60 0 6 999 \image\item\other\ºÚ½ða1.spr \image\item\other\ºÚ½ða0.spr "Kim lo¹i thÇn kú ®îc ngêi T©y Vùc du nhËp vµo Trung Nguyªn tõ thêi H¸n Vâ §Õ, vËt liÖu quan träng ®Ó ®óc t¹o vò khÝ." Sinh ho¹t 2
H¾c Kim lín 2 2 61 0 9 999 \image\item\other\ºÚ½ða1.spr \image\item\other\ºÚ½ða0.spr "Kim lo¹i thÇn kú ®îc ngêi T©y Vùc du nhËp vµo Trung Nguyªn tõ thêi H¸n Vâ §Õ, vËt liÖu quan träng ®Ó ®óc t¹o vò khÝ." Sinh ho¹t 3
ChØ t¬ 2 2 62 0 3 999 \image\item\other\orsilk_002a1.spr \image\item\other\orsilk_002a0.spr "Kim tuyÕn b×nh d©n thêng dïng, nguyªn liÖu cÇn thiÕt ®Ó may v¸" Sinh ho¹t 1
CÈm tuyÕn 2 2 63 0 6 999 \image\item\other\orsilk_003a1.spr \image\item\other\orsilk_003a0.spr "Kim tuyÕn b×nh d©n thêng dïng, nguyªn liÖu cÇn thiÕt ®Ó may v¸" Sinh ho¹t 2
Sîi t¬ 2 2 64 0 9 999 \image\item\other\orsilk_011a1.spr \image\item\other\orsilk_011a0.spr "Kim tuyÕn phó hé thêng dïng, nguyªn liÖu cÇn thiÕt ®Ó may v¸" Sinh ho¹t 3
Linh Phï ChØ 2 2 65 0 9 999 \image\item\cloth\tool_010a1.spr \image\item\cloth\tool_010a0.spr Lo¹i giÊy chuyªn dïng ®Ó viÕt bïa chó. Sinh ho¹t 1
Dîc V¬ng ThÇn biªn 2 2 28 0 3 999 \image\item\other\slife_001a1.spr \image\item\other\slife_001a0.spr S¸ch ghi chÐp c¸ch bµo chÕ thuèc cña Dîc V¬ng T«n T M¹c ®Ó chÕ t¹o thÇn ®¬n vµ c¸c lo¹i thuèc quý. Sinh ho¹t 3
§én Gi¸p Th 2 2 29 0 3 999 \image\item\other\slife_001a1.spr \image\item\other\slife_001a0.spr S¸ch ghi chÐp c¸ch chÕ phï cña Tr¬ng Thiªn S ë Long Hæ s¬n ®Ó chÕ t¹o c¸c lo¹i kú phï. Sinh ho¹t 3
Chu sa 2 2 30 0 1 999 \image\item\other\fulife_001a1.spr \image\item\other\fulife_001a0.spr "Lo¹i Chu Sa cã ë §ång huyÖt Thôc s¬n mang linh lùc, dïng chÕ t¹o c¸c lo¹i ®¹o phï." Sinh ho¹t 1
§¬n T©m sa 2 2 31 0 2 999 \image\item\other\fulife_002a1.spr \image\item\other\fulife_002a0.spr "Lo¹i Chu Sa hÊp thu uy linh dòng sÜ mang linh lùc m¹nh mÏ, dïng chÕ t¹o c¸c lo¹i ®¹o phï." Sinh ho¹t 2
BÝch HuyÕt Sa 2 2 32 0 3 999 \image\item\other\fulife_003a1.spr \image\item\other\fulife_003a0.spr "§îc t¹o nªn tõ Linh HuyÕt cña c¸c tiªn nh©n mang linh lùc v« song, dïng chÕ t¹o c¸c lo¹i ®¹o phï." Sinh ho¹t 3
Thiªn Linh Sa 2 2 106 0 10 999 \image\item\other\fulife_003a1.spr \image\item\other\fulife_003a0.spr "Lo¹i c¸t hiÕm cã, dïng ®Ó vÏ bïa." Sinh ho¹t 9
H¾c KhuyÓn Linh HuyÕt 2 2 33 0 1 999 \image\item\other\fulife_004a1.spr \image\item\other\fulife_004a0.spr "Linh huyÕt cña h¾c cÈu míi sinh, cã thÓ trõ tµ ®uæi yªu, dïng chÕ t¹o ®¹o phï." Sinh ho¹t 1
Thanh ¤ Linh HuyÕt 2 2 34 0 2 999 \image\item\other\fulife_005a1.spr \image\item\other\fulife_005a0.spr Linh huyÕt cña tam tóc thanh « ë C«n L«n s¬n dïng chÕ t¹o c¸c lo¹i ®¹o phï uy lùc m¹nh mÏ. Sinh ho¹t 2
HuyÒn H¹c Linh HuyÕt 2 2 35 0 3 999 \image\item\other\fulife_006a1.spr \image\item\other\fulife_006a0.spr "LÊy tõ m¸u t¬i cña b¹ch h¹c ngµn n¨m biÕn hãa thµnh h¾c h¹c, dïng chÕ t¹o c¸c lo¹i ®¹o phï thÇn kú." Sinh ho¹t 3
§Þa Long HuyÕt 2 2 107 0 10 999 \image\item\other\fulife_006a1.spr \image\item\other\fulife_006a0.spr "Thùc ra lµ chÊt láng héi tô linh khÝ mµ thµnh, dïng ®Ó vÏ bïa." Sinh ho¹t 10
Thiªn Niªn §µo Méc 2 2 108 0 10 999 \image\item\other\orwood_008a1.spr \image\item\other\orwood_008a0.spr "Gç ®µo tÝch tô linh khÝ v« cïng hiÕm cã, dïng ®Ó chÕ thÎ bïa v« cïng linh nghiÖm." Sinh ho¹t
UÉn Linh Hµo 2 2 109 0 10 999 \image\item\other\coll_001a1.spr \image\item\other\coll_001a0.spr "Dïng ®Ó t¹o bót l«ng, rÊt nhiÒu linh khÝ, nhng ®¸ng tiÕc chØ dïng mét lÇn lµ hÕt linh khÝ." Sinh ho¹t
Da hæ tr¾ng 2 2 19 0 5 999 \image\item\other\skin_005a1.spr \image\item\other\skin_005a0.spr "Lo¹i Da hæ cã søc phßng ngù cùc lín, vËt liÖu quý hiÕm chÕ t¹o dông cô phßng vÖ." Sinh ho¹t 5
§u«i thá 2 1 2 1 8 999 \image\item\other\coll_002a1.spr \image\item\other\coll_002a0.spr "§u«i thá nhá, l«ng mît mÒm m¹i nh nhung." Thu thËp 1 2 1
R¨ng sãi 2 1 3 1 8 999 \image\item\other\coll_003a1.spr \image\item\other\coll_003a0.spr "V« cïng s¾c nhän, cã thÓ thay thÕ vò khÝ." Thu thËp 1
Thè Nhi Qu¶ 2 1 4 1 10 999 \image\item\other\coll_004a1.spr \image\item\other\coll_004a0.spr Mét lo¹i qu¶ d¹i thá rÊt thÝch ¨n. Thu thËp 1
L«ng sãi 2 1 5 1 10 999 \image\item\other\coll_001a1.spr \image\item\other\coll_001a0.spr Dïng ®Ó lµm bót l«ng. Thu thËp 1
No·n trïng 2 1 6 1 10 999 \image\item\other\coll_006a1.spr \image\item\other\coll_006a0.spr Cã thÓ në thµnh Êu trïng. Thu thËp 1
Nanh heo rõng 2 1 7 1 10 999 \image\item\other\coll_007a1.spr \image\item\other\coll_007a0.spr Cã thÓ dïng lµm trang søc. Thu thËp 1
L«ng sãi thîng ®¼ng 2 1 8 1 10 999 \image\item\other\coll_001a1.spr \image\item\other\coll_001a0.spr Dïng ®Ó lµm bót l«ng. Thu thËp 1
VÊn Lé th¹ch 2 1 9 1 10 999 \image\item\other\coll_009a1.spr \image\item\other\coll_009a0.spr Lo¹i ®¸ ban ®ªm ph¸t s¸ng. Thu thËp 1
ThiÕt Ban ChØ 2 1 10 1 10 999 \image\item\other\coll_010a1.spr \image\item\other\coll_010a0.spr C¸c cung thñ thêng sö dông Thu thËp 1
Tó hoa hµi 2 1 11 1 10 999 \image\item\other\coll_011a1.spr \image\item\other\coll_011a0.spr "C¸c thiÕu n÷ thêng mang, trªn cã g¾n nhiÒu hoa nhá." Thu thËp 1
Thiªu töu 2 1 12 1 10 999 \image\item\other\coll_012a1.spr \image\item\other\coll_012a0.spr "Lo¹i rîu b×nh d©n, rÊt dÔ mua" Thu thËp 1
Tæ ong 2 1 13 1 14 999 \image\item\other\coll_013a1.spr \image\item\other\coll_013a0.spr Bªn trong cã chøa nhiÒu mËt. Thu thËp 1
Nanh heo thîng h¹ng 2 1 14 1 14 999 \image\item\other\coll_007a1.spr \image\item\other\coll_007a0.spr Cã thÓ dïng lµm trang søc. Thu thËp 1
GÊm lam 2 1 15 1 14 999 \image\item\other\coll_015a1.spr \image\item\other\coll_015a0.spr "Lo¹i lôa quý hiÕm, ngh×n vµng khã mua!" Thu thËp 1
HÇu Nhi Qu¶ 2 1 16 1 14 999 \image\item\other\coll_004a1.spr \image\item\other\coll_004a0.spr "Mïi vÞ th¬m ngät, thùc phÈm yªu thÝch cña h¾c hÇu" Thu thËp 1
Thanh Kim 2 1 17 1 14 999 \image\item\other\coll_017a1.spr \image\item\other\coll_017a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
C¸nh d¬i 2 1 18 1 14 999 \image\item\other\coll_018a1.spr \image\item\other\coll_018a0.spr Cã thÓ chÕ t¹o ®éc dîc Thu thËp 1
Hæ vÜ 2 1 19 1 14 999 \image\item\other\coll_019a1.spr \image\item\other\coll_019a0.spr "§u«i hæ tr¨m tuæi, cùc kú quý hiÕm." Thu thËp 1
ThiÕt Th¬ng §Çu 2 1 20 1 14 999 \image\item\other\coll_020a1.spr \image\item\other\coll_020a0.spr "Lo¹i th¬ng th«ng thêng, rÊt dÔ mua." Thu thËp 1
Bao ®ao 2 1 21 1 14 999 \image\item\other\coll_021a1.spr \image\item\other\coll_021a0.spr "§îc lµm tõ da thó, cùc kú bÒn ch¾c." Thu thËp 1
TuyÕt Tinh 2 1 22 1 14 999 \image\item\other\coll_022a1.spr \image\item\other\coll_022a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Thèi Cèt 2 1 23 1 14 999 \image\item\other\coll_023a1.spr \image\item\other\coll_023a0.spr M¶nh x¬ng l©u n¨m Thu thËp 1
Su ThÇn Ký 2 1 24 1 14 999 \image\item\other\coll_024a1.spr \image\item\other\coll_024a0.spr "§îc lu l¹i tõ thêi §«ng TÊn, bªn trong cã ghi chÐp nhiÒu ®iÒu bÝ Èn." Thu thËp 1
Gi¸p Méc Bµi 2 1 25 1 16 999 \image\item\other\coll_025a1.spr \image\item\other\coll_025a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
¸m Yªn 2 1 26 1 16 999 \image\item\other\coll_026a1.spr \image\item\other\coll_026a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
¢m Ph¸ch 2 1 27 1 16 999 \image\item\other\coll_027a1.spr \image\item\other\coll_027a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Trøng chim 2 1 28 1 16 999 \image\item\other\coll_028a1.spr \image\item\other\coll_028a0.spr Cã thÓ në thanh chim non Thu thËp 1
B¶o B×nh 2 1 29 1 16 999 \image\item\other\coll_029a1.spr \image\item\other\coll_029a0.spr "Lo¹i b×nh cæ xa, cã thÓ ®æi ng©n lîng." Thu thËp 1
§ång kiÕm 2 1 30 1 16 999 \image\item\other\coll_030a1.spr \image\item\other\coll_030a0.spr "Lo¹i kiÕm th«ng thêng, rÊt dÔ mua." Thu thËp 1
Méc Thñ 2 1 31 1 16 999 \image\item\other\coll_031a1.spr \image\item\other\coll_031a0.spr "Tay méc nh©n, Èn giÊu nhiÒu ¸m khÝ." Thu thËp 1
Hång Tinh 2 1 32 1 16 999 \image\item\other\coll_032a1.spr \image\item\other\coll_032a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Êt Méc Bµi 2 1 33 1 16 999 \image\item\other\coll_033a1.spr \image\item\other\coll_033a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
Quan phôc 2 1 34 1 16 999 \image\item\other\coll_034a1.spr \image\item\other\coll_034a0.spr Trang phôc cña quan l¹i Cöu phÈm tuÇn tra Thu thËp 1
B¸nh níng 2 1 35 1 16 999 \image\item\other\coll_035a1.spr \image\item\other\coll_035a0.spr Mïi vÞ th¬m ngon hÊp dÉn. Thu thËp 1
Gia Ph¸p bæng 2 1 36 1 16 999 \image\item\other\coll_036a1.spr \image\item\other\coll_036a0.spr "Lo¹i bæng dïng trõng trÞ gia ph¸p, khi ®¸nh lµm bong trãc da thÞt." Thu thËp 1
Lang Hån 2 1 37 1 16 999 \image\item\other\coll_037a1.spr \image\item\other\coll_037a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Hµng hãa 2 1 38 1 16 999 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Tói hµng hãa cña c¸c th¬ng gia khi vËn chuyÓn. Thu thËp 1
D¹ Minh Ch©u 2 1 39 1 16 999 \image\item\other\coll_039a1.spr \image\item\other\coll_039a0.spr "Kú tr©n dÞ b¶o, ngµn vµng khã mua." Thu thËp 1
Th¬ng g·y 2 1 40 1 16 999 \image\item\other\coll_040a1.spr \image\item\other\coll_040a0.spr §Çu mòi th¬ng bÞ chÆt ®øt Thu thËp 1
Kim Thoa 2 1 41 1 16 999 \image\item\other\coll_041a1.spr \image\item\other\coll_041a0.spr ThiÕu n÷ vïng Giang Nam võa lµm trang trang søc võa lµm vò khÝ. Thu thËp 1
MiÕng ®ång 2 1 42 1 16 999 \image\item\other\coll_042a1.spr \image\item\other\coll_042a0.spr M¶nh ®ång vµng ãng cùc nÆng. Thu thËp 1
Th¶o hµi 2 1 43 1 16 999 \image\item\other\coll_043a1.spr \image\item\other\coll_043a0.spr "§îc kÕt b»ng cá, tr«ng méc m¹c nhng cùc kú bÒn ch¾c." Thu thËp 1
Töu B«i 2 1 44 1 16 999 \image\item\other\coll_044a1.spr \image\item\other\coll_044a0.spr "Gi¸ trÞ liªn thµnh, ngµn vµng khã mua." Thu thËp 1
TuyÕt Ph¸ch 2 1 45 1 17 999 \image\item\other\coll_045a1.spr \image\item\other\coll_045a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
BÝnh Méc Bµi 2 1 46 1 17 999 \image\item\other\coll_046a1.spr \image\item\other\coll_046a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
ThiÕt Xoa 2 1 47 1 17 999 \image\item\other\coll_047a1.spr \image\item\other\coll_047a0.spr "Lo¹i thiÕt xoa cã mòi cøng, c¸n to, bÒ mÆt thÐp cã nhiÒu lç." Thu thËp 1
§u«i Hæ vµng 2 1 48 1 17 999 \image\item\other\coll_019a1.spr \image\item\other\coll_019a0.spr "V× t×m ®u«i Hoµng Hæ V¬ng, nhiÒu thî s¨n ®· mÊt m¹ng." Thu thËp 1
ThÇn Ma chÝ 2 1 49 1 17 999 \image\item\other\coll_049a1.spr \image\item\other\coll_049a0.spr Khi HËu H¸n ®¹o s Tr¬ng §¹o L¨ng tho¸i Èn B¾c Mang s¬n ®· ghi l¹i v« sè ®Æc tÝnh vµ h×nh d¸ng cña yªu vËt. Thu thËp 1
Thñ Cèt 2 1 50 1 17 999 \image\item\other\coll_050a1.spr \image\item\other\coll_050a0.spr Cã thÓ tinh chÕ ph¸p khÝ Thu thËp 1
U Hån 2 1 51 1 17 999 \image\item\other\coll_051a1.spr \image\item\other\coll_051a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Tr·m Töu 2 1 52 1 17 999 \image\item\other\coll_052a1.spr \image\item\other\coll_052a0.spr "L«ng cña mét loµi chim ®éc ng©m rîu, uèng vµo cã thÓ chÕt ngay." Thu thËp 1
Di T¾c Chung 2 1 53 1 17 999 \image\item\other\coll_053a1.spr \image\item\other\coll_053a0.spr "Mét lo¹i chu«ng ®ång cæ xa, ©m thanh cã thÓ vang xa ngµn dÆm." Thu thËp 1
GÊm vµng 2 1 54 1 17 999 \image\item\other\coll_054a1.spr \image\item\other\coll_054a0.spr "Lo¹i lôa quý hiÕm, ngh×n vµng khã mua " Thu thËp 1
B×nh trµ 2 1 55 1 17 999 \image\item\other\coll_055a1.spr \image\item\other\coll_055a0.spr "KiÓu d¸ng cæ xa, ngêi NhËt thêng dïng ®Ó pha trµ." Thu thËp 1
C«ng V¨n 2 1 56 1 17 999 \image\item\other\secr_022a1.spr \image\item\other\secr_022a0.spr "ChiÕu th triÒu ®×nh ®a xuèng c¸c nha m«n, bªn trong chøa nhiÒu tin tøc quan träng." Thu thËp 1
Hép trang søc 2 1 57 1 17 999 \image\item\other\coll_057a1.spr \image\item\other\coll_057a0.spr "Hép trang søc phô n÷, ®«i khi ®îc dïng ®Ó chøa nh÷ng vËt phÈm quý." Thu thËp 1
C¸nh d¬i 2 1 58 1 17 999 \image\item\other\coll_018a1.spr \image\item\other\coll_018a0.spr Cã thÓ tinh chÕ ®¬n dîc dïng ®Ó trÞ ®éc. Thu thËp 1
§inh Méc Bµi 2 1 59 1 17 999 \image\item\other\coll_059a1.spr \image\item\other\coll_059a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
BÇu rîu da dª 2 1 60 1 17 999 \image\item\other\coll_060a1.spr \image\item\other\coll_060a0.spr C¸c d©n téc phÝa b¾c Trêng Thµnh dïng ®Ó chøa rîu. Thu thËp 1
D©y xÝch 2 1 61 1 17 999 \image\item\other\coll_061a1.spr \image\item\other\coll_061a0.spr "Trang bÞ khÝ giíi chuyªn dông cña cao thñ Lôc PhiÕn M«n, dïng ®Ó trãi träng ph¹m." Thu thËp 1
Lôc Ph¸ch 2 1 62 1 18 999 \image\item\other\coll_062a1.spr \image\item\other\coll_062a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Mãc C©u 2 1 63 1 18 999 \image\item\other\coll_063a1.spr \image\item\other\coll_063a0.spr Lo¹i mãc cña nh©n sÜ vâ l©m dïng ®Ó leo lªn c¸c dèc cao. Thu thËp 1
MËu Méc Bµi 2 1 64 1 18 999 \image\item\other\coll_064a1.spr \image\item\other\coll_064a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
BÇu rîu da dª 2 1 65 1 18 999 \image\item\other\coll_060a1.spr \image\item\other\coll_060a0.spr C¸c d©n téc phÝa b¾c Trêng Thµnh dïng ®Ó chøa rîu. Thu thËp 1
Kû Méc Bµi 2 1 66 1 18 999 \image\item\other\coll_066a1.spr \image\item\other\coll_066a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
§¹i Tèng ®Þa chÝ 2 1 67 1 18 999 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Ghi chÐp tû mØ vÒ nói s«ng, cöa ¶i, s«ng ngßi vµ ®Þa h×nh cña §¹i Tèng." Thu thËp 1
Ch©m cøu ®ång nh©n 2 1 68 1 18 999 \image\item\other\coll_068a1.spr \image\item\other\coll_068a0.spr "Lîi dông thuËt ch©m cøu ®Ó chÕ t¹o §ång nh©n, cã thÓ phãng ra thñy ng©n kÞch ®éc." Thu thËp 1
Hoµng Kim Ban ChØ 2 1 69 1 18 999 \image\item\other\coll_069a1.spr \image\item\other\coll_069a0.spr Lo¹i ban chØ lµm b»ng vµng s¸ng chãi. Thu thËp 1
Canh Méc Bµi 2 1 70 1 18 999 \image\item\other\coll_070a1.spr \image\item\other\coll_070a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
ThiÕt B¸t Qu¸i 2 1 71 1 18 999 \image\item\other\coll_071a1.spr \image\item\other\coll_071a0.spr "Cã mµu ®en, ®îc treo b»ng chØ t¬, dïng ®Ó luyÖn chëng lùc." Thu thËp 1
Ên Th¹ch 2 1 72 1 18 999 \image\item\other\coll_072a1.spr \image\item\other\coll_072a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
§inh Ba 2 1 73 1 18 999 \image\item\other\coll_073a1.spr \image\item\other\coll_073a0.spr Cã thÓ lµm vò khÝ phßng th©n. Thu thËp 1
Bao tay Da h¬u 2 1 74 1 18 999 \image\item\other\coll_074a1.spr \image\item\other\coll_074a0.spr Lo¹i bao tay b¶o vÖ cùc tèt. Thu thËp 1
Môc L«i V¨n §ao 2 1 75 1 18 999 \image\item\other\coll_075a1.spr \image\item\other\coll_075a0.spr "§ao ®ång cã h×nh d¸ng cæ xa, ®îc xem nh cæ vËt h¬n lµ dïng lµm vò khÝ." Thu thËp 1
MÉu §¬n 2 1 76 1 18 999 \image\item\other\coll_076a1.spr \image\item\other\coll_076a0.spr "§îc mÖnh danh lµ B¸ch Hoa V¬ng, táa h¬ng th¬m khiÕn lßng ngêi ngÊt ng©y." Thu thËp 1
T©n Méc Bµi 2 1 77 1 18 999 \image\item\other\coll_077a1.spr \image\item\other\coll_077a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
Hïng V¨n 2 1 78 1 18 999 \image\item\other\coll_078a1.spr \image\item\other\coll_078a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Kim Xøng Xµ 2 1 79 1 18 999 \image\item\other\coll_079a1.spr \image\item\other\coll_079a0.spr Qu¶ c©n cña s¬n tr¹i tr¹i chñ dïng ®Ó ph©n chia tÆng vËt. Thu thËp 1
KiÕm Hån 2 1 80 1 18 999 \image\item\other\coll_080a1.spr \image\item\other\coll_080a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
B¹ch V©n b«i 2 1 81 1 18 999 \image\item\other\coll_081a1.spr \image\item\other\coll_081a0.spr "Ly cæ ®îc lµm tõ B¹ch Ngäc, ®¸y ly cã h×nh rång nhá, ®îc dïng ®Ó thëng thøc mü töu." Thu thËp 1
Quy Hoa KÝnh 2 1 82 1 18 999 \image\item\other\coll_082a1.spr \image\item\other\coll_082a0.spr "Lµ tÊm kÝnh cæ, trªn lng kÝnh kh¾c hoa v¨n b¸t qu¸i ®Çy bÝ Èn." Thu thËp 1
Nh©m Méc Bµi 2 1 83 1 18 999 \image\item\other\coll_083a1.spr \image\item\other\coll_083a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
Hæ Ph¸ch 2 1 84 1 18 999 \image\item\other\coll_084a1.spr \image\item\other\coll_084a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Quý Méc Bµi 2 1 85 1 18 999 \image\item\other\coll_085a1.spr \image\item\other\coll_085a0.spr "Trªn cã kh¾c hoa v¨n, ký hiÖu kú qu¸i." Thu thËp 1
Kim Cang 2 1 86 1 18 999 \image\item\other\coll_086a1.spr \image\item\other\coll_086a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Ngäc Nh ý 2 1 87 1 18 999 \image\item\other\coll_087a1.spr \image\item\other\coll_087a0.spr Mang vµo sÏ khiÕn t©m tÝnh hiÒn hßa. Thu thËp 1
B×nh Ngäc 2 1 88 1 18 999 \image\item\other\coll_088a1.spr \image\item\other\coll_088a0.spr "§îc lµm tõ b¹ch ngäc, kiÓu d¸ng cæ xa v« cïng trang nh·." Thu thËp 1
Tª Ngu Cung 2 1 89 1 18 999 \image\item\other\coll_089a1.spr \image\item\other\coll_089a0.spr "§îc lµm b»ng sõng tª gi¸c, trªn cã kh¶m n¹m ngò th¹ch cùc kú quý hiÕm." Thu thËp 1
NhÉn Hé PhËt 2 1 90 1 18 999 \image\item\other\coll_090a1.spr \image\item\other\coll_090a0.spr Cã thÓ kh¾c chÕ ®îc tµ t©m. Thu thËp 1
Lôc Trô 2 1 91 1 18 999 \image\item\other\coll_091a1.spr \image\item\other\coll_091a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Quû Hån 2 1 92 1 20 999 \image\item\other\coll_092a1.spr \image\item\other\coll_092a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
Vßng B¹ch Ngäc 2 1 93 1 20 999 \image\item\other\coll_093a1.spr \image\item\other\coll_093a0.spr "B¹ch ngäc ngµn n¨m, ngµn vµng khã mua." Thu thËp 1
Tµ PhËt Ban ChØ 2 1 94 1 20 999 \image\item\other\coll_094a1.spr \image\item\other\coll_094a0.spr C¸c cao t¨ng thêng ®eo ®Ó trõ tµ ma. Thu thËp 1
TuyÕt Hoa Giíi C¬ 2 1 95 1 20 999 \image\item\other\coll_095a1.spr \image\item\other\coll_095a0.spr "ChÕ t¹o b»ng thÐp rÊt nÆng, ®îc c¸c t¨ng l÷ hay dïng." Thu thËp 1
ChØ Nam Ng 2 1 96 1 20 999 \image\item\other\coll_096a1.spr \image\item\other\coll_096a0.spr "Nung ®á kim thÐp råi lÊy níc xèi nguéi, ®Æt vµo níc cã thÓ chØ ®îc ph¬ng híng." Thu thËp 1
Th¬ng Hµn luËn 2 1 97 1 20 999 \image\item\other\coll_097a1.spr \image\item\other\coll_097a0.spr "S¸ch Y ph¸p næi tiÕng cña danh y Tr¬ng Träng C¶nh ®êi H¸n, m« t¶ chi tiÕt c¸ch ®iÒu trÞ bÖnh th¬ng hµn." Thu thËp 1
Khª S¬n chÝ 2 1 98 1 20 999 \image\item\other\coll_098a1.spr \image\item\other\coll_098a0.spr B¶n gèc bøc danh häa B¶n ®å rõng nói cña danh sÜ ®¬ng triÒu Ph¹m Khoan. Thu thËp 1
HuyÔn Quang 2 1 99 1 20 999 \image\item\other\coll_099a1.spr \image\item\other\coll_099a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
§«ng L¨ng 2 1 100 1 20 999 \image\item\other\coll_100a1.spr \image\item\other\coll_100a0.spr "Mét lo¹i ®¸ quý, gi¸ trÞ v« song." Thu thËp 1
MÆt n¹ Thiªn V¬ng 2 1 101 1 20 999 \image\item\other\coll_101a1.spr \image\item\other\coll_101a0.spr Lo¹i mÆt n¹ kú dÞ. Thu thËp 1
Nh©n §å Phñ 2 1 102 1 20 999 \image\item\other\coll_102a1.spr \image\item\other\coll_102a0.spr "Lo¹i binh khÝ ®»ng ®»ng s¸t khÝ, cã thÓ h¹ gôc nhiÒu ®èi thñ." Thu thËp 1
B×nh ¤n dÞch 2 1 103 1 20 999 \image\item\other\coll_103a1.spr \image\item\other\coll_103a0.spr "Bªn trong chøa lo¹i bÖnh dÞch, tö khÝ, kh«ng ai cã thÓ sèng næi." Thu thËp 1
Hæ phï 2 1 104 1 20 999 \image\item\other\coll_104a1.spr \image\item\other\coll_104a0.spr Ên tÝn ®Ó ®iÒu ®éng binh m·! Thu thËp 1
Vâ Kinh Tæng YÕu 2 1 105 1 20 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Binh th m« t¶ chi tiÕt thuËt dông binh trÊn thñ tiÕn tho¸i. Thu thËp 1
V¶y Kú L©n 2 1 106 1 20 999 \image\item\other\coll_106a1.spr \image\item\other\coll_106a0.spr "Kú tr©n dÞ b¶o, cã thÓ kh¸ng thñy kh¸ng háa." Thu thËp 1
Hoµng §Õ Néi Kinh 2 1 107 1 20 999 \image\item\other\coll_107a1.spr \image\item\other\coll_107a0.spr "Y kinh do Thñy tæ Hoµng ®Õ Hoa H¹ biªn so¹n, bªn trong hµm cha thuyÕt biÕn hãa ©m d¬ng trong lôc phñ ngò t¹ng cña c¬ thÓ ngêi." Thu thËp 1
Hoµng Kim b¶o r¬ng 2 1 108 1 20 999 \image\item\other\secr_001a1.spr \image\item\other\secr_001a0.spr R¬ng thÇn bÝ dïng ®Ó chøa b¶o vËt v« cïng an toµn. ThÇn bÝ 1
X¸ Lîi TruyÒn C«ng 2 1 109 1 20 999 \image\item\other\secr_002a1.spr \image\item\other\secr_002a0.spr Cã thÓ c¶i tö håi sinh. ThÇn bÝ 1
M¶nh b¶n ®å SHXT 2 1 110 1 20 999 \image\item\other\secr_003a1.spr \image\item\other\secr_003a0.spr M¶nh b¶n ®å kú bÝ ThÇn bÝ 1
Hoa hång 2 1 111 1 20 999 \image\item\other\secr_004a1.spr \image\item\other\secr_004a0.spr BiÓu tîng cho t×nh yªu ThÇn bÝ 1
Ch©n thá 2 1 112 1 20 999 \image\item\other\secr_005a1.spr \image\item\other\secr_005a0.spr Cã thÓ ®em l¹i ®iÒu may m¾n. ThÇn bÝ 1
Nanh sãi 2 1 113 1 20 999 \image\item\other\coll_003a1.spr \image\item\other\coll_003a0.spr "Nhän s¾c, cã thÓ dïng lµm vò khÝ." ThÇn bÝ 1
T¬ kh¸ng Thñy 2 1 114 1 20 999 \image\item\other\secr_007a1.spr \image\item\other\secr_007a0.spr "Lo¹i t¬ kh«ng thÊm níc, dïng ®Ó dÖt y phôc." ThÇn bÝ 1
Ph¸ Thiªn Cung 2 1 115 1 20 999 \image\item\other\secr_008a1.spr \image\item\other\secr_008a0.spr "B»ng kim lo¹i tinh chÕ, d©y cung b»ng g©n hæ. Tªn b¾n ra nh chÊn ®éng cöu thiªn" ThÇn bÝ 1
X¬ng rång 2 1 116 1 20 999 \image\item\other\secr_009a1.spr \image\item\other\secr_009a0.spr "Lu truyÒn lµ x¬ng thÇn Long cßn sãt l¹i cã mµu x¸m tr¾ng, phÝa trªn cã nhiÒu h×nh thï kú qu¸i." ThÇn bÝ 1
Tóy Tiªn Cóc 2 1 117 1 20 999 \image\item\other\secr_010a1.spr \image\item\other\secr_010a0.spr Nh×n nh loµi cóc d¹i tÇm thêng nhng khi hßa huyÖn h¬ng hoa cóc vµ h¬ng sen sÏ khiÕn ngêi ngÊt ng©y. ThÇn bÝ 1
Thi V¬ng LÆc Cèt 2 1 118 1 20 999 \image\item\other\secr_011a1.spr \image\item\other\secr_011a0.spr "G©n cèt Thi V¬ng, bªn trong Èn chøa bÝ mËt cöu tö trïng sinh." ThÇn bÝ 1
Thi KhÝ B×nh 2 1 119 1 20 999 \image\item\other\secr_012a1.spr \image\item\other\secr_012a0.spr "B×nh chøa thi khÝ, nÕu thi khÝ nhiÔm vµo ngêi sèng khiÕn ngêi ®ã trë thµnh nöa ngêi nöa ma, hãa thµnh Kim thi cã søc m¹nh v« song." ThÇn bÝ 1
Qu¶n Tö 2 1 120 1 20 999 \image\item\other\secr_013a1.spr \image\item\other\secr_013a0.spr Danh tíng Qu¶n Träng ë níc TÒ thêi Xu©n Thu biªn so¹n nhiÒu lo¹i luËn thuyÕt gia ph¸p dïng ®Ó trÞ Quèc b×nh thiªn h¹. ThÇn bÝ 1
Tói Phi Ng 2 1 121 1 20 999 \image\item\other\secr_014a1.spr \image\item\other\secr_014a0.spr "ChÕ t¹o bao Cung tinh x¶o, hoa v¨n bªn ngoµi mang d¸ng dÊp oai vÖ cña mét cao thñ vâ l©m ®· thµnh danh." ThÇn bÝ 1
B×nh Song Tinh 2 1 122 1 20 999 \image\item\other\secr_015a1.spr \image\item\other\secr_015a0.spr "B×nh rîu bªn trong cã chøa ¸m khÝ, dïng thñ ph¸p tµi t×nh ®Ó rãt ®éc töu bªn trong ra bÝ mËt giÕt ngêi." ThÇn bÝ 1
Thó V¬ng T©m 2 1 123 1 20 999 \image\item\other\secr_016a1.spr \image\item\other\secr_016a0.spr "HÊp thu ®îc thó v¬ng tinh hån, c«ng lùc sÏ v« cïng m¹nh mÏ." ThÇn bÝ 1
X¬ng sä 2 1 124 1 20 999 \image\item\other\secr_017a1.spr \image\item\other\secr_017a0.spr "X¬ng sä thÇn bÝ khã lêng, trªn tr¸n cã kh¾c h×nh vÏ kú qu¸i." ThÇn bÝ 1
Tô Hån ®Ønh 2 1 125 1 20 999 \image\item\other\secr_018a1.spr \image\item\other\secr_018a0.spr "§Ønh nhá ®îc ®iªu kh¾c b»ng gç trÇm h¬ng ngµn n¨m, trong ®Ønh cã vßng phï v¨n thÇn bÝ thu hót c¸c oan hån trong vßng 10 dÆm ®Ó luyÖn thµnh ¸c linh." ThÇn bÝ 1
L¹p Hoµn 2 1 126 1 20 999 \image\item\other\secr_019a1.spr \image\item\other\secr_019a0.spr Cæ nh©n hay dïng ®Ó dÊu mËt th. ThÇn bÝ 1
D¬i ®éc 2 1 127 1 20 999 \image\item\other\secr_020a1.spr \image\item\other\secr_020a0.spr Cã thÓ dïng ®Ó tinh chÕ ®éc dîc. ThÇn bÝ 1
Quan m·o 2 1 128 1 20 999 \image\item\other\secr_021a1.spr \image\item\other\secr_021a0.spr C¸c quan l¹i thêi xa thêng ®éi. ThÇn bÝ 1
MËt S¸t LÖnh 2 1 129 1 20 999 \image\item\other\secr_022a1.spr \image\item\other\secr_022a0.spr MËt hµm bªn trong chøa nhiÒu bÝ mËt quan träng. ThÇn bÝ 1
ChÊn Thiªn TuyÕt 2 1 130 1 20 999 \image\item\other\secr_023a1.spr \image\item\other\secr_023a0.spr "Dïng thuèc sóng ®Ó b¾n, søc c«ng ph¸ m¹nh mÏ." ThÇn bÝ 1
Tµng B¶o §å 2 1 131 1 20 999 \image\item\other\secr_024a1.spr \image\item\other\secr_024a0.spr Bªn trong cã Èn chøa nhiÒu kho b¸u bÝ mËt. ThÇn bÝ 1
DiÒu 2 1 132 1 20 999 \image\item\other\secr_025a1.spr \image\item\other\secr_025a0.spr Cã thÓ dïng lµm tÝn hiÖu. ThÇn bÝ 1
Con rèi 2 1 133 1 20 999 \image\item\other\secr_026a1.spr \image\item\other\secr_026a0.spr "Dïng chØ b¹c ®Ó ®an thµnh con rèi, hai m¾t nh cã thÇn, tùa hå nh biÕt nãi." ThÇn bÝ 1
Tµo Ng©n 2 1 134 1 20 999 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr Mét ph¬ng tiÖn vËn chuyÓn trªn s«ng thêi xa. ThÇn bÝ 1
Hoa Th¹ch C¬ng 2 1 135 1 20 999 \image\item\other\secr_028a1.spr \image\item\other\secr_028a0.spr "VËt liÖu kú th¹ch cña øng Phông Côc thu thËp cho ®¬ng kim Thiªn tö, ®¸ng gi¸ ngµn vµng." ThÇn bÝ 1
DÇu ®en 2 1 136 1 20 999 \image\item\other\secr_029a1.spr \image\item\other\secr_029a0.spr C«ng dông cßn bÝ Èn. ThÇn bÝ 1
Trêng Thµnh KÝnh 2 1 137 1 20 999 \image\item\other\secr_030a1.spr \image\item\other\secr_030a0.spr "Di vËt cña Qu¶ng Thµnh Tö, cã thÓ trõ ®îc tµ ma." ThÇn bÝ 1
B¶n ch÷ TÊt Th¨ng 2 1 138 1 20 999 \image\item\other\secr_031a1.spr \image\item\other\secr_031a0.spr "B¶n ch÷ do ngêi thî ®iªu luyÖn TÊt Th¨ng chÕ t¹o, in ch÷ dÔ dµng râ nÐt." ThÇn bÝ 1
Nh©n §Çu NiÖm Ch©u 2 1 139 1 20 999 \image\item\other\secr_032a1.spr \image\item\other\secr_032a0.spr "NiÖm ch©u ®îc chÕ luyÖn tõ v« sè x¬ng sä ngêi, ®ªm vÒ cho thÓ nh×n thÊy háa linh hiÖn lªn trong x©u ngäc." ThÇn bÝ 1
Khª S¬n chÝ 2 1 140 1 20 999 \image\item\other\coll_098a1.spr \image\item\other\coll_098a0.spr "Do ®¬ng triÒu danh sÜ Ph¹m Khoan chÕ t¸c, m« t¶ s¾c s¶o s¬n hµ §¹i Tèng khiÕn ngêi ngêi ®Òu th¸n phôc." ThÇn bÝ 1
Yªu V¬ng chiÕn kú 2 1 141 1 20 999 \image\item\other\secr_034a1.spr \image\item\other\secr_034a0.spr "Cê chiÕn cña yªu v¬ng Xi Vu trong truyÒn thuyÕt, trªn cê cã thªu 1 ®Çu voi chiÕn oai hïng." ThÇn bÝ 1
Hoµng TriÒu Ngäc Tû 2 1 142 1 20 999 \image\item\other\secr_035a1.spr \image\item\other\secr_035a0.spr "§îc lµm b»ng ngäc, ®¹i diÖn cho quyÒn lùc cao nhÊt cña mét hoµng ®Õ." ThÇn bÝ 1
Thiªn C¬ng Ngò L«i §¹i Ph¸p 2 1 143 1 20 999 \image\item\other\secr_036a1.spr \image\item\other\secr_036a0.spr §¹o m«n mËt ph¸p phï chó dïng quy tô cöu thiªn l¹c l«i ®Ó trõ yªu diÖt ma. ThÇn bÝ 1
Kim Chuyªn 2 1 144 20 2 1 \image\item\other\spec_001a1.spr \image\item\other\spec_001a0.spr M¶nh vµng ãng ¸nh khiÕn ngêi ta lãa m¾t. ThÇn bÝ 1
Ng©n phiÕu 2 1 145 1 2 1 \image\item\other\spec_002a1.spr \image\item\other\spec_002a0.spr Lo¹i tiÒn th«ng hµnh thêi nhµ Tèng. ThÇn bÝ 1
L«i Viªm Kim Sa 2 1 146 1 2 1 \image\item\other\spec_003a1.spr \image\item\other\spec_003a0.spr VËt phÈm t¨ng cÊp ThÇn bÝ 1
Thiªn Y V« Phong 2 1 147 1 2 1 \image\item\other\spec_004a1.spr \image\item\other\spec_004a0.spr vËt liÖu t¨ng cÊp ThÇn bÝ 1
M¶nh B¨ng th¹ch 2 1 148 1 2 999 \image\item\other\spec_005a1.spr \image\item\other\spec_005a0.spr Dïng ®Ó t¨ng cÊp vò khÝ. ThÇn bÝ 1
B¨ng th¹ch 2 1 149 1 2 999 \image\item\other\spec_006a1.spr \image\item\other\spec_006a0.spr Dïng ®Ó t¨ng cÊp vò khÝ. ThÇn bÝ 1
§én Èn Linh Phï 2 1 150 1 2 999 \image\item\usable\fu_004a1.spr \image\item\usable\fu_004a0.spr Cã thÓ tù do ra vµo thÕ giíi ©m d¬ng. ThÇn bÝ 1
Bå §Ò 2 1 151 1 2 1 \image\item\other\spec_008a1.spr \image\item\other\spec_008a0.spr "H¹t bå ®Ò 10 n¨m míi n¶y mÇm, tr¨m n¨m míi ra hoa, ngµn n¨m míi kÕt tr¸i. Uèng vµo cã thÓ trêng sinh bÊt l·o." ThÇn bÝ 1
BÝ Ng©n 2 1 152 1 2 1 \image\item\other\spec_009a1.spr \image\item\other\spec_009a0.spr §îc ®em vÒ tõ T©y Vùc. Kh«ng ph¶i vËt phÈm thêng. ThÇn bÝ 1
PhÈm mµu 2 1 153 1 2 1 \image\item\other\fulife_006a1.spr \image\item\other\fulife_006a0.spr Cã thÓ dïng ®Ó nhuém ThÇn bÝ 1
Ngäc KhÝ 2 1 154 1 10 999 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr VËt phÈm cña c¸c th¬ng nh©n lµm r¬i. Thu thËp 1
Tinh ThiÕt Ch©m 2 11 1 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr <enter><color=Blue1> T¨ng søc tÊn c«ng 10% Tiªu hao 1
Xuyªn Cèt Ch©m 2 11 2 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr "Lµm tõ tinh thiÕt<enter><color=Blue1>, tû lÖ ®©m xuyªn 30%" Tiªu hao 1
L«i Háa Ch©m 2 11 3 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr "Cã thÓ kÕt hîp víi thuèc næ<enter><color=Blue1>, t¨ng 20% lùc c«ng kÝch" Tiªu hao 2
LiÖt NhËn Ch©m 2 11 4 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr "Cã thÓ lµm tæn h¹i vò khÝ ®èi ph¬ng<enter><color=Blue1> t¨ng 30% s¸t th¬ng trong 10 gi©y, gi¶m 15% c«ng kÝch cña ®èi ph¬ng." Tiªu hao 2
TrÊn Ma Ch©m 2 11 5 0 0 2000 state_ghost_killer 1 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr ¤ kim th¹ch cã thÓ trÊn s¸t ph¸p lùc cña yªu ma<enter> <color=Blue1>Ph¸t huy søc tÊn c«ng b×nh thêng víi qu¸i vËt mang thuéc tÝnh ©m Tiªu hao 3
Ph¸ Gi¸p Ch©m 2 11 6 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr ¤ kim th¹ch tÊn c«ng m¹nh mÏ vµo hé gi¸p cña ®èi ph¬ng<enter> <color=Blue1>Cã tû lÖ 30% trong 10 gi©y lµm gi¶m 15% lùc phßng ngù ngo¹i c«ng cña ®èi ph¬ng Tiªu hao 4
B¸ V¬ng Ch©m 2 11 7 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr "Dïng Hµn thiÕt luyÖn thµnh, cã uy lùc m¹nh mÏ<enter> <color=Blue1>Tû lÖ 20% ®¸nh lui ®èi ph¬ng!" Tiªu hao 5
Minh NguyÖt Ch©m 2 11 8 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr "Dïng Th¸i b¹ch tinh kim luyÖn thµnh, bªn trong ph¸t ra ®éc khÝ<enter> <color=Blue1>N©ng cao 25% hiÖu qu¶ ®éc s¸t" Tiªu hao 6
§o¹n Long Ch©m 2 11 9 0 0 2000 \image\item\other\skius_005a1.spr \image\item\other\skius_005a0.spr "Dïng HuyÒn thiÕt t«i luyÖn, cã thÓ phong bÕ kinh m¹ch ®èi ph¬ng<enter> <color=Blue1>Tû lÖ 15% trong 3 gi©y khiÕn ®èi ph¬ng tª liÖt" Tiªu hao 7
L«ng c¸o 2 1 155 1 12 999 \image\item\other\orskin_001a1.spr \image\item\other\orskin_001a0.spr Chèng rÐt cùc tèt. Thu thËp 1
Trøng B¹ch §iªu 2 1 156 1 12 999 \image\item\other\coll_028a1.spr \image\item\other\coll_028a0.spr Cã thÓ në thµnh chim non. Thu thËp 1
Cung 2 1 157 1 14 999 \image\item\other\secr_008a1.spr \image\item\other\secr_008a0.spr Lo¹i cung thêng Thu thËp 1
M¶nh b¶n ®å Thiªn ¢m gi¸o 2 1 158 1 14 999 \image\item\other\secr_003a1.spr \image\item\other\secr_003a0.spr Cha biÕt c«ng dông thÕ nµo. Thu thËp 1
Thiªn ¢m MËt TÝn 2 1 159 1 14 999 \image\item\other\spec_002a1.spr \image\item\other\spec_002a0.spr "S¸t thñ Thiªn ¢m gi¸o lu«n ®eo bªn m×nh, trong chøa nhiÒu bÝ mËt." Thu thËp 1
Qu¸i dÞ th¹ch 2 1 160 1 14 999 \image\item\other\spec_006a1.spr \image\item\other\spec_006a0.spr "B¶o th¹ch, trªn cã kh¾c ch÷ kú l¹" Thu thËp 1
Ng¹c vÜ cèt 2 1 161 1 16 999 \image\item\other\coll_124a1.spr \image\item\other\coll_124a0.spr "§u«i c¸ sÊu, cùc kú quý." Thu thËp 1
D·i cãc 2 1 162 1 16 999 \image\item\other\secr_012a1.spr \image\item\other\secr_012a0.spr "Níc d·i cña cãc ®éc, chøa kÞch ®éc." Thu thËp 1
H¹t Ch©m 2 1 163 1 16 999 \image\item\other\coll_112a1.spr \image\item\other\coll_112a0.spr §u«i bß c¹p cã chøa kÞch ®éc. Thu thËp 1
DÞ Téc Qu¶i Liªn 2 1 164 1 16 999 \image\item\other\secr_032a1.spr \image\item\other\secr_032a0.spr Trang bÞ cña binh sÜ DÞ Téc Thu thËp 1
DÞ Téc b× ngoa 2 1 165 1 16 999 \image\item\other\coll_123a1.spr \image\item\other\coll_123a0.spr Trang bÞ cña binh sÜ DÞ Téc Thu thËp 1
da Th¬ng Viªn 2 1 166 1 16 999 \image\item\other\orskin_004a1.spr \image\item\other\orskin_004a0.spr Chèng rÐt cùc tèt. Thu thËp 1
Ng©n Hå ®¬n 2 1 167 1 18 999 \image\item\other\coll_084a1.spr \image\item\other\coll_084a0.spr Chøa nhiÒu c«ng dông thÇn bÝ Thu thËp 1
Ng©n th¬ng háng 2 1 168 1 18 999 \image\item\other\coll_020a1.spr \image\item\other\coll_020a0.spr "Vò khÝ Th¬ng ThÇn tõng dïng, uy lùc v« song." Thu thËp 1
Xi Háa c«n 2 1 169 1 18 999 \image\item\other\coll_040a1.spr \image\item\other\coll_040a0.spr Vò khÝ th«ng thêng cña DÞ Téc Thu thËp 1
B¹ch Ng L©n 2 1 170 1 18 999 \image\item\other\coll_120a1.spr \image\item\other\coll_120a0.spr VÈy c¸ lÊp l¸nh nh kim sa. Thu thËp 1
Hång ng l©n 2 1 171 1 18 999 \image\item\other\coll_122a1.spr \image\item\other\coll_122a0.spr VÈy c¸ lÊp l¸nh nh kim sa. Thu thËp 1
D¹ §ao 2 1 172 1 18 999 \image\item\other\coll_121a1.spr \image\item\other\coll_121a0.spr "Vò khÝ cña D¹ Xoa, tuy ®· h háng nhng vÉn cßn s¾c bÐn." Thu thËp 1
Vâ sÜ ®ao 2 1 173 1 18 999 \image\item\other\coll_115a1.spr \image\item\other\coll_115a0.spr "Trªn thanh ®ao cã vÕt m¸u Èn, cã lÏ lµ dÊu tÝch cña chñ nh©n dïng ®ao tù s¸t cßn lu l¹i." Thu thËp 1
Vâ sÜ yªu ®¸i 2 1 174 1 18 999 \image\item\other\coll_113a1.spr \image\item\other\coll_113a0.spr Vâ sÜ NhËt B¶n thêng sö dông. Thu thËp 1
MÆt n¹ Vâ sÜ 2 1 175 1 18 999 \image\item\other\coll_114a1.spr \image\item\other\coll_114a0.spr Vâ sÜ NhËt B¶n thêng sö dông. Thu thËp 1
§éc Phong thÝch 2 1 176 1 18 999 \image\item\other\coll_116a1.spr \image\item\other\coll_116a0.spr "Näc ong, cã chøa kÞch ®éc." Thu thËp 1
Gi¸p x¸c phiÕn 2 1 177 1 18 999 \image\item\other\coll_009a1.spr \image\item\other\coll_009a0.spr Vá gi¸p x¸c ®· h háng Thu thËp 1
Háa ¶nh ThÇn ®ao 2 1 178 1 20 999 \image\item\other\coll_141a1.spr \image\item\other\coll_141a0.spr Vò khÝ cña cao thñ DÞ Téc. Thu thËp 1
Quû §Çu Trîng 2 1 179 1 20 999 \image\item\other\coll_142a1.spr \image\item\other\coll_142a0.spr "Vò khÝ cña DÞ Téc §¹i cæ s, Èn chøa n¨ng lùc thÇn bÝ." Thu thËp 1
Ng¹c Ng Nh·n CÇu 2 1 180 1 20 999 \image\item\other\coll_108a1.spr \image\item\other\coll_108a0.spr Èn chøa sù huyÒn bÝ kú diÖu. Thu thËp 1
ThÇn bÝ phñ 2 1 181 1 20 999 \image\item\other\coll_102a1.spr \image\item\other\coll_102a0.spr "Lo¹i bóa to thÇn bÝ, nghe nãi n¨m xa TrÇn H¬ng Lùc dïng bóa nµy lªn Ph¸ch Hoa s¬n cøu mÑ." Thu thËp 1
KiÕm thÇn bÝ 2 1 182 1 20 999 \image\item\other\coll_144a1.spr \image\item\other\coll_144a0.spr Cã Èn chøa linh lùc thÇn bÝ. Kh«ng dÔ dµng cã ®îc. Thu thËp 1
Linh Tiªu 2 1 183 1 20 999 \image\item\other\coll_119a1.spr \image\item\other\coll_119a0.spr "B¶o tiªu, ©m thanh cã thÓ trõ ®îc tµ ma." Thu thËp 1
Linh Qu¶ 2 1 184 1 20 999 \image\item\other\coll_004a1.spr \image\item\other\coll_004a0.spr "Lo¹i qu¶ thÇn bÝ, Sö dông trêng sinh bÊt l·o." Thu thËp 1
Linh T¶n 2 1 185 1 20 999 \image\item\other\coll_117a1.spr \image\item\other\coll_117a0.spr Cã thÓ dïng nh vò khÝ Thu thËp 1
Linh CÇm 2 1 186 1 20 999 \image\item\other\coll_143a1.spr \image\item\other\coll_143a0.spr Lo¹i ®µn cÇm cã thÓ ph¸t ra nh÷ng ©m luËt thÇn bÝ. Thu thËp 1
Linh §Þch 2 1 187 1 20 999 \image\item\other\coll_118a1.spr \image\item\other\coll_118a0.spr ¢m thanh thæi ra dÞ thêng kú bÝ cha ai lý gi¶i ®îc. Thu thËp 1
Kim S¸ng T¸n 2 12 110 1 1 999 \image\item\usable\heal_002a1.spr \image\item\usable\heal_002a0.spr §¬n dîc th«ng thêng dïng ®Ó trÞ vÕt th¬ng nhÑ. Phôc håi sinh lùc (tiÓu) \script\item\life1_sl.lua 1 0
ChØ HuyÕt t¸n 2 12 111 1 1 999 \image\item\usable\heal_003a1.spr \image\item\usable\heal_003a0.spr §¬n dîc th«ng thêng dïng ®Ó trÞ vÕt th¬ng nhÑ. Phôc håi sinh lùc (tiÓu) \script\item\life2_sl.lua 1 0
B¹ch V©n ®¬n 2 12 112 1 1 999 \image\item\usable\heal_004a1.spr \image\item\usable\heal_004a0.spr "§îc tinh chÕ tõ th¶o dîc vïng Trung Nguyªn vµ nguån níc suèi tinh khiÕt, trÞ th¬ng h÷u hiÖu." Phôc håi sinh lùc (trung) \script\item\life3_sl.lua 1 0
Thiªn H¬ng CÈm Tôc 2 12 113 1 1 999 \image\item\usable\heal_005a1.spr \image\item\usable\heal_005a0.spr "§Ö tö Nga My lu«n ®em bªn m×nh, nhanh chãng phôc håi vÕt th¬ng." Phôc håi sinh lùc (trung) \script\item\life4_sl.lua 1 0
Ngäc Cao t¸n 2 12 114 1 1 999 \image\item\usable\heal_006a1.spr \image\item\usable\heal_006a0.spr "Th¸nh dîc, t¬ng truyÒn ®îc mang tõ T©y Vùc vµo Trung Nguyªn, phôc håi vÕt th¬ng cùc kú h÷u hiÖu." Phôc håi sinh lùc (®¹i) \script\item\life5_sl.lua 1 0
TiÓu Hoµn ®¬n 2 12 115 1 1 999 \image\item\usable\heal_007a1.spr \image\item\usable\heal_007a0.spr "§¬n dîc th«ng thêng, cã thÓ phôc håi néi lùc, rÊt dÔ mua." Phôc håi néi lùc (tiÓu) \script\item\neili1_sl.lua 1 0
Hoµn D¬ng ®¬n 2 12 116 1 1 999 \image\item\usable\heal_008a1.spr \image\item\usable\heal_008a0.spr "§¬n dîc th«ng thêng, cã thÓ t¨ng c«ng lùc." Phôc håi néi lùc (tiÓu) \script\item\neili2_sl.lua 1 0
§¹i Hoµn ®¬n 2 12 117 1 1 999 \image\item\usable\heal_009a1.spr \image\item\usable\heal_009a0.spr "T¨ng c«ng lùc, nhanh chãng phôc håi néi lùc." Phôc håi néi lùc (trung) \script\item\neili3_sl.lua 1 0
NhÊt Nguyªn Phôc Thñy ®¬n 2 12 118 1 1 999 \image\item\usable\heal_010a1.spr \image\item\usable\heal_010a0.spr Nhanh chãng phôc håi néi lùc. Phôc håi néi lùc (trung) \script\item\neili4_sl.lua 1 0
V¹n VËt Quy Nguyªn ®¬n 2 12 119 1 1 999 \image\item\usable\heal_011a1.spr \image\item\usable\heal_011a0.spr Nhanh chãng phôc håi néi lùc. Phôc håi néi lùc (®¹i) \script\item\neili5_sl.lua 1 0
Thanh T©m T¸n 2 12 120 1 1 999 \image\item\usable\heal_012a1.spr \image\item\usable\heal_012a0.spr "§¬n dîc th«ng dông, cã thÓ ®em theo bªn m×nh ®Ó trÞ th¬ng vµ phôc håi néi lùc." Dîc phÈm \script\item\life_neili1_sl.lua 1 0
Ých KhÝ T¸n 2 12 121 1 1 999 \image\item\usable\heal_013a1.spr \image\item\usable\heal_013a0.spr CÇm m¸u vµ ch÷a lµnh vÕt th¬ng cùc kú h÷u hiÖu. Dîc phÈm \script\item\life_neili2_sl.lua 1 0
Ngäc Linh T¸n 2 12 122 1 1 999 \image\item\usable\heal_014a1.spr \image\item\usable\heal_014a0.spr §îc tinh chÕ tõ th¶o dîc. Phôc håi néi lùc vµ trÞ vÕt th¬ng cùc kú h÷u hiÖu. Dîc phÈm \script\item\life_neili3_sl.lua 1 0
Ngäc Lé Hoµn 2 12 123 1 1 999 \image\item\usable\heal_015a1.spr \image\item\usable\heal_015a0.spr Nhanh chãng phôc håi sinh lùc vµ néi lùc. Dîc phÈm \script\item\life_neili4_sl.lua 1 0
Sinh Sinh Hãa T¸n 2 12 124 1 1 999 \image\item\usable\heal_016a1.spr \image\item\usable\heal_016a0.spr Nhanh chãng phôc håi sinh lùc vµ néi lùc. Dîc phÈm \script\item\life_neili5_sl.lua 1 0
Kim Linh th¹ch 2 13 1 1 1 999 \image\item\other\ormeta_005a1.spr \image\item\other\ormeta_005a0.spr Lo¹i B¶o Th¹ch cã thÓ thay ®æi ngò hµnh. Sinh ho¹t 1 0
Méc Linh th¹ch 2 13 2 1 1 999 \image\item\other\coll_078a1.spr \image\item\other\coll_078a0.spr Lo¹i B¶o Th¹ch cã thÓ thay ®æi ngò hµnh. Sinh ho¹t 1 0
Thñy Linh th¹ch 2 13 3 1 1 999 \image\item\other\ormeta_004a1.spr \image\item\other\ormeta_004a0.spr Lo¹i B¶o Th¹ch cã thÓ thay ®æi ngò hµnh. Sinh ho¹t 1 0
Háa Linh th¹ch 2 13 4 1 1 999 \image\item\other\coll_084a1.spr \image\item\other\coll_084a0.spr Lo¹i B¶o Th¹ch cã thÓ thay ®æi ngò hµnh. Sinh ho¹t 1 0
Thæ Linh th¹ch 2 13 5 1 1 999 \image\item\other\ormeta_001a1.spr \image\item\other\ormeta_001a0.spr Lo¹i B¶o Th¹ch cã thÓ thay ®æi ngò hµnh. Sinh ho¹t 1 0
Ph¸o hoa 2 1 188 1 1 5 \image\item\other\quest_023a1.spr \image\item\other\quest_023a0.spr Thêng dïng trong c¸c dÞp lÔ vµ kÕt h«n. Thu thËp \script\task\item\baozhu.lua 1 0
Tranh S¾c Yªn Hoa 2 1 189 1 1 5 \image\item\other\holi_012a1.spr \image\item\other\holi_012a0.spr Sö dông nh l¹c vµo chèn bång lai. Thu thËp \script\item\chengseyanhua.lua 1 0
Lam S¾c Yªn Hoa 2 1 190 1 1 5 \image\item\other\holi_012a1.spr \image\item\other\holi_012a0.spr Sö dông nh l¹c vµo chèn bång lai. Thu thËp \script\item\lanseyanhua.lua 1 0
XÝch M¹c Háa DiÖm 2 1 191 1 1 5 \image\item\other\holi_001a1.spr \image\item\other\holi_001a0.spr Sö dông nh l¹c vµo chèn bång lai. Thu thËp \script\item\chimuyanhuo.lua 1 0
Lam M¹c Háa DiÖm 2 1 192 1 1 5 \image\item\other\holi_001a1.spr \image\item\other\holi_001a0.spr Sö dông nh l¹c vµo chèn bång lai. Thu thËp \script\item\lanmuyanhuo.lua 1 0
Tranh M¹c Háa DiÖm 2 1 193 1 1 5 \image\item\other\holi_001a1.spr \image\item\other\holi_001a0.spr Sö dông nh l¹c vµo chèn bång lai. Thu thËp \script\item\chengmuyanhuo.lua 1 0
ThÇn bÝ Yªn Hoa 2 1 194 1 1 5 \image\item\other\holi_012a1.spr \image\item\other\holi_012a0.spr Sö dông nh l¹c vµo chèn bång lai. Thu thËp \script\item\shenmiyanhua.lua 1 0
S¸t Thñ LÖnh 2 1 195 1 1 1 \image\item\other\holi_022a1.spr \image\item\other\holi_022a0.spr "S¸t Thñ LÖnh bµi nhÊt phÈm ®êng T©y H¹, kÕt cÊu v« cïng phøc t¹p, chØ cã Tr¸c Thiªn Hµnh ë T¬ng D¬ng míi cã thÓ gi¶i ®îc." Thu thËp 1 0
Tµng b¶o ®å 2 14 1 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr §¸nh dÊu nh÷ng kho b¸u trªn b¶n ®å. Thu thËp \script\item\cangbaotu.lua 1 0
Tèng qu©n chiÕn kú 2 1 196 1 1 5 \image\item\other\secr_034a1.spr \image\item\other\secr_034a0.spr Cê chiÕn ®o¹t ®îc tõ chiÕn trËn. Thu thËp 1 0
Liªu qu©n chiÕn kú 2 1 197 1 1 5 \image\item\other\secr_034a1.spr \image\item\other\secr_034a0.spr Cê chiÕn ®o¹t ®îc tõ chiÕn trËn. Thu thËp 1 0
TiÒn lÎ 2 1 198 1 1 100 \image\item\other\suiyin_a1.spr \image\item\other\suiyin_a0.spr "Dïng ng©n phiÕu ®Ó ®æi, cã thÓ mua ®îc vËt phÈm." ThÇn bÝ 1 3 1
§¹i ng©n phiÕu 2 1 199 1 1 999 \image\item\other\secr_037a1.spr \image\item\other\secr_037a0.spr "§¹i ng©n phiÕu cña thiªn h¹ ®Ö nhÊt tiÒn trang ph¸t hµnh, th«ng hµnh c¸c Ch©u QuËn §¹i Tèng<enter><color=yellow> (nhÊp chuét ph¶i sö dông nhËn ®îc 100 Xu)" ThÇn bÝ \script\item\item_billing\dayinpiao.lua 1 0 1
Kim Chóc Linh Méc 2 13 6 1 1 999 \image\item\other\orwood_012a1.spr \image\item\other\orwood_012a0.spr "§îc tinh chÕ tõ ThÇn Méc, cã sù thay ®æi v« h×nh kú diÖu" Sinh ho¹t 1 0 1
Méc Chóc Linh Méc 2 13 7 1 1 999 \image\item\other\orwood_012a1.spr \image\item\other\orwood_012a0.spr "§îc tinh chÕ tõ ThÇn Méc, cã sù thay ®æi v« h×nh kú diÖu" Sinh ho¹t 1 0 1
Thñy Chóc Linh Méc 2 13 8 1 1 999 \image\item\other\orwood_012a1.spr \image\item\other\orwood_012a0.spr "§îc tinh chÕ tõ ThÇn Méc, cã sù thay ®æi v« h×nh kú diÖu" Sinh ho¹t 1 0 1
Háa Chóc Linh Méc 2 13 9 1 1 999 \image\item\other\orwood_012a1.spr \image\item\other\orwood_012a0.spr "§îc tinh chÕ tõ ThÇn Méc, cã sù thay ®æi v« h×nh kú diÖu" Sinh ho¹t 1 0 1
Thæ Chóc Linh Méc 2 13 10 1 1 999 \image\item\other\orwood_012a1.spr \image\item\other\orwood_012a0.spr "§îc tinh chÕ tõ ThÇn Méc, cã sù thay ®æi v« h×nh kú diÖu" Sinh ho¹t 1 0 1
Kim Linh kho¸ng th¹ch 2 13 11 1 1 999 \image\item\other\ormeta_007a1.spr \image\item\other\ormeta_007a0.spr "§îc tinh chÕ tõ kho¸ng th¹ch, cã sù thay ®æi v« h×nh kú diÖu." Sinh ho¹t 1 0 1
Méc Linh kho¸ng th¹ch 2 13 12 1 1 999 \image\item\other\ormeta_007a1.spr \image\item\other\ormeta_007a0.spr "§îc tinh chÕ tõ kho¸ng th¹ch, cã sù thay ®æi v« h×nh kú diÖu." Sinh ho¹t 1 0 1
Thñy Linh kho¸ng th¹ch 2 13 13 1 1 999 \image\item\other\ormeta_007a1.spr \image\item\other\ormeta_007a0.spr "§îc tinh chÕ tõ kho¸ng th¹ch, cã sù thay ®æi v« h×nh kú diÖu." Sinh ho¹t 1 0 1
Háa Linh kho¸ng th¹ch 2 13 14 1 1 999 \image\item\other\ormeta_007a1.spr \image\item\other\ormeta_007a0.spr "§îc tinh chÕ tõ kho¸ng th¹ch, cã sù thay ®æi v« h×nh kú diÖu." Sinh ho¹t 1 0 1
Thæ Linh kho¸ng th¹ch 2 13 15 1 1 999 \image\item\other\ormeta_007a1.spr \image\item\other\ormeta_007a0.spr "§îc tinh chÕ tõ kho¸ng th¹ch, cã sù thay ®æi v« h×nh kú diÖu." Sinh ho¹t 1 0 1
Kim Chóc t¬ 2 13 16 1 1 999 \image\item\other\silk_006a1.spr \image\item\other\silk_006a0.spr "§îc tinh luyÖn tõ t¬ thÇn kú, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Méc Chóc t¬ 2 13 17 1 1 999 \image\item\other\silk_006a1.spr \image\item\other\silk_006a0.spr "§îc tinh luyÖn tõ t¬ thÇn kú, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Thñy Chóc t¬ 2 13 18 1 1 999 \image\item\other\silk_006a1.spr \image\item\other\silk_006a0.spr "§îc tinh luyÖn tõ t¬ thÇn kú, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Háa Chóc t¬ 2 13 19 1 1 999 \image\item\other\silk_006a1.spr \image\item\other\silk_006a0.spr "§îc tinh luyÖn tõ t¬ thÇn kú, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Thæ Chóc t¬ 2 13 20 1 1 999 \image\item\other\silk_006a1.spr \image\item\other\silk_006a0.spr "§îc tinh luyÖn tõ t¬ thÇn kú, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Kim Chóc Linh C¸ch 2 13 21 1 1 999 \image\item\other\skin_003a1.spr \image\item\other\skin_003a0.spr "§îc tinh luyÖn tõ nhiÒu thuéc da, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Méc Chóc Linh C¸ch 2 13 22 1 1 999 \image\item\other\skin_003a1.spr \image\item\other\skin_003a0.spr "§îc tinh luyÖn tõ nhiÒu thuéc da, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Thñy Chóc Linh C¸ch 2 13 23 1 1 999 \image\item\other\skin_003a1.spr \image\item\other\skin_003a0.spr "§îc tinh luyÖn tõ nhiÒu thuéc da, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Háa Chóc Linh C¸ch 2 13 24 1 1 999 \image\item\other\skin_003a1.spr \image\item\other\skin_003a0.spr "§îc tinh luyÖn tõ nhiÒu thuéc da, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Thæ Chóc Linh C¸ch 2 13 25 1 1 999 \image\item\other\skin_003a1.spr \image\item\other\skin_003a0.spr "§îc tinh luyÖn tõ nhiÒu thuéc da, cã thÓ thay ®æi ngò hµnh." Sinh ho¹t 1 0 1
Tªn 2 15 10 0 0 9999 \image\item\weapon\wea_jian_001a1.spr \image\item\weapon\wea_jian_001a0.spr "Lo¹i mòi tªn th«ng thêng, ®Ö tö D¬ng M«n thêng sö dông." Tiªu hao 1 0 0
Gãi thÇn bÝ 2 1 200 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Bªn trong cã chøa b¶o vËt. ThÇn bÝ \script\item\bossqsbag.lua 1 0 0
B¶o r¬ng 2 1 201 20 1 1 \image\item\other\secr_001a1.spr \image\item\other\secr_001a0.spr Bªn trong cã chøa b¶o vËt. ThÇn bÝ \script\item\bossqsbox.lua 1 0 0
Th¸i B¹ch Kim §¬n 2 1 202 1 1 999 \image\item\other\holi_007a1.spr \image\item\other\holi_007a0.spr Rêi m¹ng ñy th¸c. ThÇn bÝ \script\item\taibailu.lua 1 0 0
Ph¸o hoa ®a tin 2 1 203 1 1 1 \image\item\other\holi_012a1.spr \image\item\other\holi_012a0.spr Ph¸o hoa S¸t thñ T©y H¹ NhÊt PhÈm §êng thêng dïng ®Ó truyÒn tin.<enter><color=Gold>Gäi S¸t thñ ®Çu môc xuÊt hiÖn ThÇn bÝ \script\item\chuanxinyanhuo.lua 1 0 0
Tµng Hoµng kim bao 2 1 204 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Bªn trong cã cha b¶o vËt thÇn bÝ. ThÇn bÝ \script\item\goldcangjian.lua 1 0 0
NhÊt §¼ng S¸t Thñ bao 2 1 205 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Bªn trong cã vËt phÈm kú bÝ. ThÇn bÝ \script\item\killerbag_1.lua 1 0 0
NhÞ §¼ng S¸t Thñ bao 2 1 206 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Bªn trong cã vËt phÈm kú bÝ. ThÇn bÝ \script\item\killerbag_2.lua 1 0 0
Tam §¼ng S¸t Thñ bao 2 1 207 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Bªn trong cã vËt phÈm kú bÝ. ThÇn bÝ \script\item\killerbag_3.lua 1 0 0
Ví Gi¸ng sinh 2 1 208 1 1 5 \image\item\shengdan\chris_socks_01a1.spr \image\item\shengdan\chris_socks_01a0.spr Ai nhËn ®îc sÏ gÆp ®îc nhiÒu ®iÒu may m¾n. ThÇn bÝ 1 0 0
Hép quµ gi¸ng sinh 2 1 209 1 1 5 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr Bªn trong cã chøa phÈm vËt. §· khãa \script\online\Ê¥µ®½Ú»î¶¯\christmaspresentbox.lua 1 1 0
ThiÖp gi¸ng sinh 2 1 210 1 1 1 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc lêi chóc Gi¸ng sinh vui vÎ! ThÇn bÝ \script\online\Ê¥µ®½Ú»î¶¯\christmascard1.lua 1 0 0
ThiÖp gi¸ng sinh 2 1 211 1 1 1 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc lêi chóc Merry Christmas. ThÇn bÝ \script\online\Ê¥µ®½Ú»î¶¯\christmascard2.lua 1 0 0
§¹i Hång bao 2 1 212 1 1 5 \image\item\other\holi_011a1.spr \image\item\other\holi_011a0.spr Quµ mõng tuæi. ThÇn bÝ \script\online\newyear08\item\hongbao_da.lua 1 2 1
TiÓu Hång bao 2 1 213 1 1 5 \image\item\other\holi_011a1.spr \image\item\other\holi_011a0.spr Quµ mõng tuæi. §· khãa \script\online\newyear08\item\hongbao_xiao.lua 1 2 1
Ph¸o 2 3 214 1 1 99 \image\item\happy\banger_a1.spr \image\item\happy\banger_a0.spr "NhÊp chuét ph¶i ®Ó sö dông, nhÊp thªm lÇn n÷a ®Ó hñy bá." Tiªu hao \script\online\´º½Ú»î¶¯\item\bianpao1.lua 1 0 0
Phong ph¸o 2 3 215 1 1 99 \image\item\happy\banger_much_a1.spr \image\item\happy\banger_much_a0.spr "NhÊp chuét ph¶i ®Ó sö dông, nhÊp thªm lÇn n÷a ®Ó hñy bá." Tiªu hao \script\online\´º½Ú»î¶¯\item\bianpao2.lua 1 0 0
§¹n tiÓu tuyÕt cÇu 2 3 216 1 1 99 \image\item\happy\much_snowa1.spr \image\item\happy\much_snowa0.spr VËt phÈm tiªu hao kü n¨ng tiÓu TuyÕt cÇu. §îc kÕt tõ nhiÒu qu¶ cÇu tuyÕt. Tiªu hao 1 0 0
§¹n trung tuyÕt cÇu 2 3 217 1 1 99 \image\item\happy\much_snowa1.spr \image\item\happy\much_snowa0.spr VËt phÈm tiªu hao kü n¨ng trung TuyÕt c©u. §îc kÕt tõ nhiÒu qu¶ cÇu tuyÕt. Tiªu hao 1 2 1
§¹n ®¹i TuyÕt cÇu 2 3 218 1 1 99 \image\item\happy\much_snowa1.spr \image\item\happy\much_snowa0.spr VËt phÈm tiªu hao kü n¨ng ®¹i tuyÕt cÇu. §îc kÕt tõ nhiÒu qu¶ cÇu tuyÕt. Tiªu hao 1 2 1
TiÓu tuyÕt cÇu 2 3 219 1 1 99 \image\item\happy\snowball_small_a1.spr \image\item\happy\snowball_small_a0.spr VËt phÈm tiªu hao kü n¨ng tiÓu TuyÕt cÇu. §îc kÕt tõ nhiÒu qu¶ cÇu tuyÕt. Tiªu hao 1 0 0
Trung tuyÕt cÇu 2 3 220 1 1 99 \image\item\happy\snowball_mid_a1.spr \image\item\happy\snowball_mid_a0.spr VËt phÈm tiªu hao kü n¨ng tiÓu TuyÕt cÇu. §îc kÕt tõ nhiÒu qu¶ cÇu tuyÕt. Tiªu hao 1 2 1
§¹i tuyÕt cÇu 2 3 221 1 1 99 \image\item\happy\snowball_big_a1.spr \image\item\happy\snowball_big_a0.spr VËt phÈm tiªu hao kü n¨ng ®¹i tuyÕt cÇu. §îc kÕt tõ nhiÒu qu¶ cÇu tuyÕt. Tiªu hao 1 2 1
ThiÖp xu©n 2 1 228 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc T×nh yªu nång th¾m! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard1.lua 1
ThiÖp xu©n 2 1 229 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc Sù nghiÖp ph¸t ®¹t! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard2.lua 1
ThiÖp xu©n 2 1 230 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc Häc hµnh tiÕn bé! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard3.lua 1
ThiÖp xu©n 2 1 231 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc TiÒn v« nh níc! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard4.lua 1
ThiÖp xu©n 2 1 232 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc Nh ý c¸t têng! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard5.lua 1
ThiÖp xu©n 2 1 233 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc N¨m míi vui vÎ! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard6.lua 1
ThiÖp xu©n 2 1 234 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc An khang thÞnh vîng! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard7.lua 1
ThiÖp xu©n 2 1 235 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc V¹n sù nh ý! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard8.lua 1
ThiÖp xu©n 2 1 236 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc §¹i c¸t ®¹i lîi! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard9.lua 1
ThiÖp xu©n 2 1 237 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc N¨m míi ph¸t tµi! ThÇn bÝ \script\online\´º½Ú»î¶¯\item\newyearcard10.lua 1
Pet 2 1 238 1 1 5 \image\item\other\coll_118a1.spr \image\item\other\coll_118a0.spr Cã thÓ gäi Thá tr¾ng lµm thó cng. ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shoudi1.lua 1
Pet 2 1 239 1 1 5 \image\item\other\coll_118a1.spr \image\item\other\coll_118a0.spr Cã thÓ gäi Thá ®en lµm thó cng. ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shoudi2.lua 1
Pet 2 1 240 1 1 5 \image\item\other\coll_118a1.spr \image\item\other\coll_118a0.spr Cã thÓ gäi TiÓu Niªn Thó lµm thó cng. ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shoudi3.lua 1
Pet 2 1 241 1 1 5 \image\item\other\coll_118a1.spr \image\item\other\coll_118a0.spr Cã thÓ gäi TiÓu Thæ Lang lµm thó cng. ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shoudi4.lua 1
Pet 2 1 242 1 1 5 \image\item\other\coll_118a1.spr \image\item\other\coll_118a0.spr Cã thÓ gäi TiÓu Thanh Lang lµm thó cng. ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shoudi5.lua 1
Sñi c¶o b¾p c¶i 2 1 243 1 1 999 \image\item\other\holi_006a1.spr \image\item\other\holi_006a0.spr "Mïi vÞ th¬m ngon, cùc kú hÊp dÉn." ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shuijiao_baicai.lua 1
Sñi c¶o cµ rèt 2 1 244 1 1 999 \image\item\other\holi_006a1.spr \image\item\other\holi_006a0.spr "Mïi vÞ th¬m ngon, cùc kú hÊp dÉn." ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shuijiao_luobo.lua 1
Sñi c¶o rau cÇn 2 1 245 1 1 999 \image\item\other\holi_006a1.spr \image\item\other\holi_006a0.spr "Mïi vÞ th¬m ngon, cùc kú hÊp dÉn." ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shuijiao_qincai.lua 1
Sñi c¶o kim chi 2 1 246 1 1 999 \image\item\other\holi_006a1.spr \image\item\other\holi_006a0.spr "Mïi vÞ th¬m ngon, cùc kú hÊp dÉn." ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shuijiao_suancai.lua 1
Sñi c¶o rau hÑ 2 1 247 1 1 999 \image\item\other\holi_006a1.spr \image\item\other\holi_006a0.spr "Mïi vÞ th¬m ngon, cùc kú hÊp dÉn." ThÇn bÝ \script\online\´º½Ú»î¶¯\item\shuijiao_jiucai.lua 1
Tam Tiªn sñi c¶o 2 1 251 1 1 100 \image\item\other\holi_006a1.spr \image\item\other\holi_006a0.spr "Mïi vÞ th¬m ngon, cùc kú hÊp dÉn. Sö dông t¨ng 1000 ®iÓm kinh nghiÖm" §· khãa \script\online\´º½Ú»î¶¯\item\shuijiao_sanxian.lua 1 1 1
Sñi c¶o may m¾n 2 1 252 1 1 100 \image\item\other\holi_006a1.spr \image\item\other\holi_006a0.spr "Mïi vÞ th¬m ngon, cùc kú hÊp dÉn. Cã thÓ t×m chñ tiÖm ®Ó ®æi MËt tÞch." §· khãa \script\online\´º½Ú»î¶¯\item\shuijiao_xingyun.lua 1 1 1
Sñi c¶o Thñy Tinh 2 1 253 1 1 5 \image\item\other\holi_006a1.spr \image\item\other\holi_006a0.spr "Mïi vÞ th¬m ngon, cùc kú hÊp dÉn. Cã thÓ ®Õn gÆp chñ tiÖm ®Ó ®æi §«ng Ph¬ng Long Ch©u (Trang søc cùc phÈm)" §· khãa \script\online\´º½Ú»î¶¯\item\shuijiao_shuijing.lua 1 1 1
Bét m× 2 1 255 1 1 999 \image\item\happy\flour_a1.spr \image\item\happy\flour_a0.spr Nguyªn liÖu lµm sñi c¶o Sinh ho¹t 1
ThËp Tam H¬ng 2 1 256 1 1 999 \image\item\usable\heal_027a1.spr \image\item\usable\heal_027a0.spr "H¬ng vÞ ®Æc trng, nguyªn liÖu kh«ng thÓ thiÕu trong mãn sñi c¶o." Sinh ho¹t 1
ThÞt heo 2 1 257 1 1 999 \image\item\usable\edib_001a1.spr \image\item\usable\edib_001a0.spr "Ngon, bæ, rÎ ®îc nhiÒu ngêi a thÝch" Sinh ho¹t 1
ThÞt bß 2 1 258 1 1 999 \image\item\usable\edib_001a1.spr \image\item\usable\edib_001a0.spr Mãn ¨n kho¸i khÈu cña nhiÒu ngêi. Sinh ho¹t 1
T«m 2 1 259 1 1 999 \image\item\happy\shrimp_a1.spr \image\item\happy\shrimp_a0.spr Mãn ¨n kho¸i khÈu cña nhiÒu ngêi. Sinh ho¹t 1
Cñ c¶i 2 1 260 1 1 999 \image\item\happy\radish_a1.spr \image\item\happy\radish_a0.spr Nguyªn liÖu thùc phÈm th«ng thêng Sinh ho¹t 1
C¶i chua 2 1 261 1 1 999 \image\item\happy\sourgreen_a1.spr \image\item\happy\sourgreen_a0.spr Mãn ¨n truyÒn thèng cña ngêi ph¬ng B¾c Sinh ho¹t 1
C¶i tr¾ng 2 1 262 1 1 999 \image\item\happy\cabbage_a1.spr \image\item\happy\cabbage_a0.spr Mãn ¨n ®îc nhiÒu ngêi a thÝch Sinh ho¹t 1
Rau cÇn 2 1 263 1 1 999 \image\item\happy\celery_a1.spr \image\item\happy\celery_a0.spr "Mïi vÞ ®Æc trng, ®îc nhiÒu ngêi yªu thÝch." Sinh ho¹t 1
Rau hÑ 2 1 264 1 1 999 \image\item\happy\leek_a1.spr \image\item\happy\leek_a0.spr "Mïi vÞ ®Æc trng, ®îc nhiÒu ngêi yªu thÝch." Sinh ho¹t 1
Bao l× x× 2 1 265 1 1 5 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr Bªn trong cã chøa phÈm vËt. §· khãa \script\online\´º½Ú»î¶¯\item\libao.lua 1 1 0
B¸nh tæ h¹t sen 2 1 266 1 1 99 \image\item\other\holi_013a1.spr \image\item\other\holi_013a0.spr "Mïi vÞ th¬m ngon, Sö dông ®îc 5 ®iÓm kinh nghiÖm." §· khãa \script\online\´º½Ú»î¶¯\item\niangao_lrbg.lua 1 1 0
B¸nh tæ nh©n thÞt 2 1 267 1 1 99 \image\item\other\holi_013a1.spr \image\item\other\holi_013a0.spr "Mïi vÞ th¬m ngon, Sö dông ®îc 300 ®iÓm tu luyÖn." §· khãa \script\online\´º½Ú»î¶¯\item\niangao_zrbt.lua 1 1 0
B¸nh tæ nh©n t¸o 2 1 268 1 1 99 \image\item\other\holi_013a1.spr \image\item\other\holi_013a0.spr "Mïi vÞ th¬m ngon, Sö dông nhËn ®îc mét giê nh©n ®«i ®iÓm kinh nghiÖm." §· khãa \script\online\´º½Ú»î¶¯\item\niangao_hzjp.lua 1 1 0
B¸nh tæ thËp cÈm 2 1 269 1 1 99 \image\item\other\holi_013a1.spr \image\item\other\holi_013a0.spr "Mïi vÞ th¬m ngon, Sö dông t¨ng 20% tèc ®é di chuyÓn trong 10 phót." §· khãa \script\online\´º½Ú»î¶¯\item\niangao_sjjx.lua 1 1 0
B¹ch C©u Hoµn 2 1 270 1 1 1 \image\item\other\baijua1.spr \image\item\other\baijua0.spr Dïng luyÖn c«ng lóc nghØ ng¬i.<enter><color=Gold>(ñy th¸c rêi m¹ng 8 giê) ThÇn bÝ \script\item\baiju.lua 1 0 1
Näc ong ®éc 2 1 271 1 8 999 \image\item\usable\heal_017a1.spr \image\item\usable\heal_017a0.spr §éc tÔ trÝch tõ Ong ®éc Thu thËp 1 0 0
X¸c gi¸p trïng 2 1 272 1 8 999 \image\item\other\coll_120a1.spr \image\item\other\coll_120a0.spr X¸c gi¸p trïng sau khi chÕt Thu thËp 1 0 0
Ch©n rÕt 2 1 273 1 8 999 \image\item\other\coll_116a1.spr \image\item\other\coll_116a0.spr Vßi rÕt nhá dïng bµo chÕ thuèc Thu thËp 1 0 0
C¸nh muçi 2 1 274 1 10 999 \image\item\other\coll_018a1.spr \image\item\other\coll_018a0.spr C¸nh muçi bÞ g·y Thu thËp 1 0 0
DÞch nhÖn ®éc 2 1 275 1 10 999 \image\item\usable\heal_017a1.spr \image\item\usable\heal_017a0.spr Ch©n nhÖn ®éc. Thu thËp 1 0 0
MÇm Thùc nh©n th¶o 2 1 276 1 12 999 \image\item\usable\medi_008a1.spr \image\item\usable\medi_008a0.spr Lo¹i c©y cá kÞch ®éc. Thu thËp 1 0 0
§u«i §éc tÝch 2 1 277 1 12 999 \image\item\other\coll_112a1.spr \image\item\other\coll_112a0.spr "§u«i §éc tÝch, chøa ®éc tè rÊt cao." Thu thËp 1 0 0
Ch×a khãa ®ång 2 1 278 1 13 999 \image\item\other\coll_128a1.spr \image\item\other\coll_128a0.spr Ch×a khãa lÊy ®îc trªn ngêi Xi Háa gi¸o ®å. Thu thËp 1 0 0
Ch×a khãa s¾t 2 1 279 1 13 999 \image\item\other\coll_128a1.spr \image\item\other\coll_128a0.spr Ch×a khãa lÊy ®îc trªn ngêi Xi Háa gi¸o ®å. Thu thËp 1 0 0
Ch×a khãa b¹c 2 1 280 1 13 999 \image\item\other\coll_128a1.spr \image\item\other\coll_128a0.spr Ch×a khãa lÊy ®îc trªn ngêi Xi Háa gi¸o ®å. Thu thËp 1 0 0
D©y tua 2 1 281 1 13 999 \image\item\other\coll_113a1.spr \image\item\other\coll_113a0.spr VËt phÈm ®ao kh¸ch Xi Háa lµm rít l¹i. Thu thËp 1 0 0
Xi Háa MËt TÝn 2 1 282 1 13 999 \image\item\other\coll_111a1.spr \image\item\other\coll_111a0.spr MËt th sø gi¶ Xi Háa lu«n ®em theo bªn m×nh. Thu thËp 1 0 0
Hé Ph¸p LÖnh Bµi 2 1 284 1 13 999 \image\item\other\skius_002a1.spr \image\item\other\skius_002a0.spr LÖnh bµi Hé Ph¸p Xi Háa gi¸o lu«n ®em bªn m×nh. Thu thËp 1 0 0
HuyÕt Nha vò 2 1 285 1 13 999 \image\item\other\coll_109a1.spr \image\item\other\coll_109a0.spr L«ng ¸c lµ r¬i ra. Thu thËp 1 0 0
HuyÕt bao 2 1 286 1 14 999 \image\item\other\quest_011a1.spr \image\item\other\quest_011a0.spr VÕt m¸u vÉn cßn ®äng l¹i trªn thi thÓ. Thu thËp 1 0 0
Mao Ngu b× 2 1 287 1 14 999 \image\item\other\skin_003a1.spr \image\item\other\skin_003a0.spr Thuéc da cña tr©u lïn T©y T¹ng. Thu thËp 1 0 0
Trêng ®ao 2 1 288 1 15 999 \image\item\other\coll_144a1.spr \image\item\other\coll_144a0.spr Vò khÝ cña Miªu LÜnh Hé Ên Thu thËp 1 0 0
Kh¨n tay 2 1 289 1 15 999 \image\item\other\coll_131a1.spr \image\item\other\coll_131a0.spr ThiÕu n÷ Miªu LÜnh thêng dïng Thu thËp 1 0 0
Tranh ch÷ 2 1 290 1 15 999 \image\item\other\coll_137a1.spr \image\item\other\coll_137a0.spr VËt bÊt ly th©n cña Miªu LÜnh Thæ Ty Thu thËp 1 0 0
Vò nhung 2 1 291 1 15 999 \image\item\other\orsilk_001a1.spr \image\item\other\orsilk_001a0.spr L«ng cña B¹ch §Çu §iªu Thu thËp 1 0 0
Da hæ 2 1 292 1 15 999 \image\item\other\orskin_005a1.spr \image\item\other\orskin_005a0.spr Da hæ Thu thËp 1 0 0
To¸i cèt 2 1 293 1 17 999 \image\item\other\coll_023a1.spr \image\item\other\coll_023a0.spr M¶nh x¬ng ngêi chÕt Thu thËp 1 0 0
¢m d¬ng kÝnh 2 1 294 1 17 999 \image\item\other\coll_071a1.spr \image\item\other\coll_071a0.spr Trang bÞ cña thÇy bãi Thu thËp 1 0 0
§¹i Cang ®ao 2 1 295 1 18 999 \image\item\other\coll_075a1.spr \image\item\other\coll_075a0.spr VËt bÊt ly th©n cña Xi Háa ®µn chñ Thu thËp 1 0 0
R¨ng Tinh Tinh 2 1 296 1 18 999 \image\item\other\coll_003a1.spr \image\item\other\coll_003a0.spr R¨ng cña ®¹i tinh tinh Thu thËp 1 0 0
Da voi 2 1 297 1 18 999 \image\item\other\skin_004a1.spr \image\item\other\skin_004a0.spr Cã thÓ may ¸o chèng rÐt Thu thËp 1 0 0
Thuèc næ 2 1 298 1 18 999 \image\item\other\coll_110a1.spr \image\item\other\coll_110a0.spr Nguyªn liÖu cña ph¶n qu©n ®· bÞ Èm ít. Thu thËp 1 0 0
Tµn kiÕm 2 1 299 1 18 999 \image\item\other\coll_030a1.spr \image\item\other\coll_030a0.spr Vò khÝ cña ph¶n qu©n Thu thËp 1 0 0
Tö ®µn 2 1 300 1 18 999 \image\item\other\coll_083a1.spr \image\item\other\coll_083a0.spr Nguyªn liÖu cña ph¶n qu©n Thu thËp 1 0 0
Tµn th¬ng 2 1 301 1 18 999 \image\item\other\coll_020a1.spr \image\item\other\coll_020a0.spr Vò khÝ cña ph¶n qu©n Thu thËp 1 0 0
Phï Ên 2 1 302 1 20 999 \image\item\other\skius_012a1.spr \image\item\other\skius_012a0.spr Do c¸c t¨ng nh©n ®Ó l¹i. Thu thËp 1 0 0
G¨ng tay 2 1 303 1 20 999 \image\item\other\coll_074a1.spr \image\item\other\coll_074a0.spr Cã thÓ chèng l¹nh Thu thËp 1 0 0
PhËt Kinh 2 1 304 1 20 999 \image\item\other\coll_107a1.spr \image\item\other\coll_107a0.spr C¸c t¨ng nh©n lu«n ®em theo bªn ngêi Thu thËp 1 0 0
§µ La trîng 2 1 305 1 20 999 \image\item\other\coll_142a1.spr \image\item\other\coll_142a0.spr ThiÒn trîng cña §µ La ni t¨ng. Thu thËp 1 0 0
Hép trang ®iÓm 2 1 306 1 8 999 \image\item\other\coll_057a1.spr \image\item\other\coll_057a0.spr C¸c thiÕu n÷ thêng hay ®Ó mü phÈm Thu thËp 1 0 0
HuyÕt L©n 2 1 307 1 8 999 \image\item\other\coll_122a1.spr \image\item\other\coll_122a0.spr V¶y L©n mµu m¸u t¬i. Thu thËp 1 0 0
Hñ Cèt 2 1 308 1 8 999 \image\item\other\coll_023a1.spr \image\item\other\coll_023a0.spr X¬ng cèt cña Hñ cèt ®éc nh©n. Thu thËp 1 0 0
TiÓu §éc Nang 2 1 309 1 9 999 \image\item\other\coll_072a1.spr \image\item\other\coll_072a0.spr Tói ®éc cã chøa lîng ®éc nhá. Thu thËp 1 0 0
Hoa Ban Hå §iÖp 2 1 310 1 9 999 \image\item\other\secr_025a1.spr \image\item\other\secr_025a0.spr B¬m bím b¾t ®îc. Thu thËp 1 0 0
Minh Háa Phï 2 1 311 1 9 999 \image\item\other\fu_001a1.spr \image\item\other\fu_001a0.spr VËt phÈm cña Ngôc Háa Nh©n thêng dïng. Thu thËp 1 0 0
§¹i ThiÕt Ba 2 1 312 1 10 999 \image\item\other\coll_073a1.spr \image\item\other\coll_073a0.spr Vò khÝ Xi Háa Gi¸o Thu thËp 1 0 0
Xi Háa Ên 2 1 313 1 10 999 \image\item\other\coll_079a1.spr \image\item\other\coll_079a0.spr "Ên tÝn cña Xi Háa gi¸o, tîng trng cho quyÒn lùc." Thu thËp 1 0 0
B¹ch L©n 2 1 314 1 10 999 \image\item\other\ormeta_011a1.spr \image\item\other\ormeta_011a0.spr Mét m¶nh x¬ng ngêi Thu thËp 1 0 0
L¬ng kh« 2 1 315 1 10 999 \image\item\usable\edib_007a1.spr \image\item\usable\edib_007a0.spr Kh«ng thÓ sö dông. Thu thËp 1 0 0
To¸i th¹ch 2 1 316 1 10 999 \image\item\other\coll_009a1.spr \image\item\other\coll_009a0.spr Tinh th¹ch vì Thu thËp 1 0 0
Th« bè Trêng Bµo 2 1 317 1 10 999 \image\item\other\quest_049a1.spr \image\item\other\quest_049a0.spr Trang phôc cña c¸c vâ phu. Thu thËp 1 0 0
Cån 2 1 318 1 10 999 \image\item\other\coll_012a1.spr \image\item\other\coll_012a0.spr VËt tïy th©n cña Ngôc Háa cuång nh©n. Thu thËp 1 0 0
C¸nh Phông Hoµng 2 1 319 1 11 999 \image\item\other\quest_056a1.spr \image\item\other\quest_056a0.spr L«ng Phông Hoµng Thu thËp 1 0 0
Xi Háa Trêng Ên 2 1 320 1 11 999 \image\item\other\secr_030a1.spr \image\item\other\secr_030a0.spr Phï Ên cña ®¹i trëng l·o Xi Háa Thu thËp 1 0 0
Xi Háa Th¸nh Ên 2 1 321 1 11 999 \image\item\other\secr_035a1.spr \image\item\other\secr_035a0.spr Phï Ên cña Xi Háa gi¸o Tæng ®µn chñ. Thu thËp 1 0 0
C¸nh A Tu La 2 1 322 1 11 999 \image\item\other\quest_056a1.spr \image\item\other\quest_056a0.spr C¸nh cña A Tu La Thu thËp 1 0 0
§Çu l©u Ma H« La Ca 2 1 323 1 12 999 \image\item\other\secr_017a1.spr \image\item\other\secr_017a0.spr §Çu l©u Ma H« La Ca Thu thËp 1 0 0
§oµn Thõa ¢n thñ th 2 1 324 1 12 999 \image\item\other\secr_013a1.spr \image\item\other\secr_013a0.spr Sæ tay tïy th©n cña §oµn Thõa ¢n. Thu thËp 1 0 0
NhÊt D¬ng ChØ Tµn ch¬ng 1 2 1 325 1 12 999 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr "M¶nh tµn ch¬ng NhÊt D¬ng ChØ, vâ l©m tuyÖt häc trong truyÒn thuyÕt, ch÷ ®· mê kh«ng cßn nh×n thÊy râ." Thu thËp 1 0 0
BÝch Ngäc giíi chØ 2 1 326 1 13 999 \image\item\other\quest_014a1.spr \image\item\other\quest_014a0.spr Lo¹i nhÉn thêng Thu thËp 1 0 0
D©y thÐp 2 1 327 1 13 999 \image\item\other\coll_089a1.spr \image\item\other\coll_089a0.spr VËt tïy th©n cña Cµn §¹t bµ. Thu thËp 1 0 0
Trµng h¹t 2 1 328 1 14 999 \image\item\other\skius_004a1.spr \image\item\other\skius_004a0.spr C¸c vÞ cao t¨ng thêng sö dông. Thu thËp 1 0 0
§Çu l©u KhÈn Na La 2 1 329 1 14 999 \image\item\other\secr_017a1.spr \image\item\other\secr_017a0.spr §Çu l©u KhÈn Na La Thu thËp 1 0 0
§¹i Tu Viªn KÝnh 2 1 330 1 14 999 \image\item\other\coll_082a1.spr \image\item\other\coll_082a0.spr KhÝ vËt cña Long Tîng ph¸p t¨ng. Thu thËp 1 0 0
NhÊt D¬ng ChØ Tµn ch¬ng 2 2 1 331 1 15 999 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr "M¶nh tµn ch¬ng NhÊt D¬ng ChØ, vâ l©m tuyÖt häc trong truyÒn thuyÕt, ch÷ ®· mê kh«ng cßn nh×n thÊy râ." Thu thËp 1 0 0
Chi Ma H¬ng 2 1 332 1 1 5 \image\item\other\holi_002a1.spr \image\item\other\holi_002a0.spr "H¬ng vÞ ®Ëm ®µ ®Æc trng kh«ng thÓ thiÕu trong ngµy tÕt Nguyªn Tiªu, mang ý nghÜa cña ngµy sum häp ®oµn viªn." §· khãa \script\online\qingrenyuanxiao\item\yuanxiao_item.lua 1 2 1
T×nh Nh©n kÕt 2 1 333 1 1 1 \image\item\other\skius_001a1.spr \image\item\other\skius_001a0.spr Cã thÓ biÕt ®îc duyªn sè cña m×nh. §· khãa \script\online\qingrenyuanxiao\item\qingrenjie_item.lua 1 2 1
ThiÖp t×nh nh©n 2 1 334 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u I Love You cña ngêi Êy! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard1_item.lua 1 2 1
ThiÖp t×nh nh©n 2 1 335 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u I Love You cña ngêi Êy! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard2_item.lua 1 2 1
ThiÖp t×nh nh©n 2 1 336 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u *I Love You* cña ngêi Êy! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard3_item.lua 1 2 1
ThiÖp t×nh nh©n 2 1 337 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc lêi chóc *LÔ t×nh nh©n vui vÎ*! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard4_item.lua 1 2 1
ThiÖp t×nh nh©n 2 1 338 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc lêi chóc *LÔ t×nh nh©n vui vÎ*! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard5_item.lua 1 2 1
ThiÖp t×nh nh©n 2 1 339 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc lêi chóc *LÔ t×nh nh©n vui vÎ*! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard6_item.lua 1 2 1
ThiÖp xu©n 2 1 340 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc *N¨m míi vui vÎ*! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard7_item.lua 1 2 1
ThiÖp xu©n 2 1 341 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr NhËn ®îc c©u chóc *N¨m míi ph¸t tµi*! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard8_item.lua 1 2 1
ThiÖp xu©n 2 1 342 1 1 5 \image\item\shengdan\chris_card_01a1.spr \image\item\shengdan\chris_card_01a0.spr Nh©n ®îc c©u chóc *An khang thÞnh vîng*! ThÇn bÝ \script\online\qingrenyuanxiao\item\festivacard9_item.lua 1 2 1
ThÇn N«ng §¬n 2 1 343 1 1 1 \image\item\other\shennong_a1.spr \image\item\other\shennong_a0.spr "<enter><color=Gold>T¹i khu vùc thu thËp, cã thÓ ñy th¸c rêi m¹ng 8 giê vÉn thu thËp" ThÇn bÝ \script\item\shennongdan.lua 1 3 1
§éc Long Sa 2 1 344 1 1 999 \image\item\other\coll_110a1.spr \image\item\other\coll_110a0.spr "Lo¹i hång sa nhá nhng Èn chøa ®Çy khÝ ®éc, cã thÓ khiÕn ®éc trïng mÉu sinh ra nhiÒu s©u ®éc ®éc hÖ." ThÇn bÝ 1 2 1
HuyÕt H¶i §êng 2 1 345 1 1 999 \image\item\usable\medi_012a1.spr \image\item\usable\medi_012a0.spr "H¬ng th¬m cã thÓ g©y chÕt ngêi, cã thÓ khiÕn ®éc trïng mÉu sinh ra s©u ®éc huyÕt hÖ." ThÇn bÝ 1 2 1
Khæng Tíc §¶m 2 1 346 1 1 999 \image\item\usable\medi_006a1.spr \image\item\usable\medi_006a0.spr "Gan cña dÞ ®iÓu Khæng tíc Nam Quèc, cùc kú ®éc." ThÇn bÝ 1 2 1
Thùc Tinh Th¶o 2 1 347 1 1 999 \image\item\usable\medi_003a1.spr \image\item\usable\medi_003a0.spr "Mäc trong rõng s©u díi cæ thô ngµn n¨m, cã thÓ khiÕn ®éc trïng mÉu sinh ra s©u ®éc ma hÖ." ThÇn bÝ 1 2 1
Diªm Ba 2 1 348 1 1 999 \image\item\usable\heal_027a1.spr \image\item\usable\heal_027a0.spr "Thøc ¨n cña ®éc trïng mÉu, cã thÓ kÐo dµi tuæi thä." ThÇn bÝ 1 2 1
Tö Thanh Cao 2 1 349 1 1 999 \image\item\usable\heal_008a1.spr \image\item\usable\heal_008a0.spr "Dîc cao ®iÒu chÕ dîc liÖu h¶o h¹ng, ®îc thªm vµo c¸c lo¹i cá ®éc cho ®éc trïng" ThÇn bÝ 1 2 1
Long Diªn T¸n 2 1 350 1 1 999 \image\item\usable\heal_031a1.spr \image\item\usable\heal_031a0.spr Cã thÓ biÕt ®îc duyªn sè cña m×nh ThÇn bÝ 1 2 1
ThÊt Th¸i Linh Chi 2 1 351 1 1 999 \image\item\usable\medi_007a1.spr \image\item\usable\medi_007a0.spr "Chøa nhiÒu lo¹i tiªn th¶o tinh khÝ, lµ thøc ¨n thîng h¹ng gióp kÐo dµi tuæi thä ®éc trïng mÉu." ThÇn bÝ 1 2 1
Thiªn Tiªn Ngäc Lé 2 1 352 1 1 999 \image\item\usable\heal_024a1.spr \image\item\usable\heal_024a0.spr "Cæ thô hµng ngh×n n¨m hÊp thu tinh hoa cña trêi ®Êt míi cã thÓ t¹o thµnh, chØ dïng cho ®éc trïng mÉu." ThÇn bÝ 1 2 1
V¹n §éc §¬n 2 1 353 1 1 999 \image\item\usable\heal_028a1.spr \image\item\usable\heal_028a0.spr "Tiªn §¬n dïng tinh tóy cña v¹n ®éc chÕ thµnh, ngêi tróng ph¶i khã toµn m¹ng sèng." ThÇn bÝ 1 2 1
V¹n NhÉn §å Phæ 2 1 354 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o V¹n NhÉn hé thñ. ThÇn bÝ \script\item\lifeskill\wanren.lua 8 0 0
Háa Tinh §å Phæ 2 1 355 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o Háa Tinh b¶o kiÕm. ThÇn bÝ \script\item\lifeskill\huojing.lua 8 0 0
LiÖt DiÖm §å Phæ 2 1 356 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o LiÖt DiÖm thÇn c«n. ThÇn bÝ \script\item\lifeskill\lieyan.lua 8 0 0
M·n Thiªn Hoan Vò §å Phæ 2 1 357 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o ¸m khÝ thÇn kú M·n Thiªn Hoa Vò. ThÇn bÝ \script\item\lifeskill\mantian.lua 8 0 0
Cæ §Ýnh §å Phæ 2 1 358 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o Cæ §Ýnh b¶o ®ao. ThÇn bÝ \script\item\lifeskill\guding.lua 8 0 0
Hi Nh©n CÇm Phæ 2 1 359 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o Hi Nh©n CÇm. ThÇn bÝ \script\item\lifeskill\xiren.lua 8 0 0
ThÇn Hµnh §å Phæ 2 1 360 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o ThÇn bót ThÇn Hµnh. ThÇn bÝ \script\item\lifeskill\shenxing.lua 8 0 0
A La H¸n Trîng §å Phæ 2 1 361 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o A La H¸n Trîng . ThÇn bÝ \script\item\lifeskill\aluohan.lua 8 0 0
§¹i Hµo L«i Th¬ng §å Phæ 2 1 362 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o §¹i Hµo L«i Th¬ng . ThÇn bÝ \script\item\lifeskill\dahaolei.lua 8 0 0
§å phæ ThÇn cung 2 1 363 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o ThÇn cung. ThÇn bÝ \script\item\lifeskill\wangshi.lua 8 0 0
M·nh Hæ §å Phæ 2 1 364 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o M·nh Hæ Tr¶o. ThÇn bÝ \script\item\lifeskill\menghu.lua 8 0 0
L¨ng Phong §å Phæ 2 1 365 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi chÐp c¸ch chÕ t¹o L¨ng Phong song ®ao. ThÇn bÝ \script\item\lifeskill\lingfeng.lua 8 0 0
C¸ch ghÐp H¾c ¤ tinh th¹ch 2 1 366 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Híng dÉn c¸ch phèi ghÐp H¾c ¤ tinh th¹ch. ThÇn bÝ \script\item\lifeskill\heiwu.lua 8 0 0
C¸ch ghÐp ThiÕt TuyÕn Tinh Méc 2 1 367 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Híng dÉn c¸ch phèi ghÐp ThiÕt TuyÕn Tinh Méc. ThÇn bÝ \script\item\lifeskill\tiexian.lua 8 0 0
C¸ch ghÐp S tinh b× 2 1 368 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Híng dÉn c¸ch phèi ghÐp S tinh b×. ThÇn bÝ \script\item\lifeskill\shanshi.lua 8 0 0
C¸ch ghÐp XÝch ¤ Linh phï 2 1 369 5 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Híng dÉn c¸ch phèi ghÐp XÝch ¤ Linh phï. ThÇn bÝ \script\item\lifeskill\chiwu.lua 8 0 0
Thanh Phong Bao 2 1 370 5 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "Tay n¶i cña thÇn bÝ cao nh©n lu l¹i cho hËu bèi giang hå, kh¶ n¨ng nhËn ®îc nhiÒu c«ng lùc bªn trong." ThÇn bÝ \script\item\qingfengbao.lua 1 0 0
M· Bµi 2 1 371 5 1 1 \image\item\cloth\horse_001a1.spr \image\item\cloth\horse_001a0.spr Ngùa cña Liªu Quèc m· tÆc thÊt l¹c. ThÇn bÝ \script\item\mapai.lua 1 0 0
Cung ThiÖn 2 1 372 1 1 999 \image\item\usable\edib_003a1.spr \image\item\usable\edib_003a0.spr H×nh d¹ng gièng nh r¾n nhng hiÒn h¬n. ThÇn bÝ 1 0 0
Tói g¹o 2 1 373 1 1 999 \image\item\other\spec_004a1.spr \image\item\other\spec_004a0.spr Tói l¬ng thùc cña nh÷ng ngêi khÊt thùc ThÇn bÝ 1 0 0
Tr¸i c©y 2 1 374 1 1 999 \image\item\other\coll_004a1.spr \image\item\other\coll_004a0.spr Tr¸i c©y t¬i lµm dÞu m¸t mïa hÌ oi bøc. ThÇn bÝ 1 0 0
V¹n NhÉn cha gi¸m ®Þnh 2 1 375 10 10000 1 \image\item\weapon\wea_han_014a1.spr \image\item\weapon\wea_han_014a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." Hé thñ \script\item\noactivable_wanren.lua 8 0 1
Háa Tinh cha gi¸m ®Þnh 2 1 376 10 10000 1 \image\item\weapon\wea_swd_023a1.spr \image\item\weapon\wea_swd_023a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." Trêng kiÕm \script\item\noactivable_huojing.lua 8 0 1
LiÖt DiÖm cha gi¸m ®Þnh 2 1 377 10 10000 1 \image\item\weapon\wea_sta_014a1.spr \image\item\weapon\wea_sta_014a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." C«n \script\item\noactivable_lieyan.lua 8 0 1
M·n Thiªn Hoa Vò cha gi¸m ®Þnh 2 1 378 10 10000 1 \image\item\weapon\wea_dar_014a1.spr \image\item\weapon\wea_dar_014a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." ¸m khÝ \script\item\noactivable_mantianhuayu.lua 8 0 1
Cæ §Ýnh cha gi¸m ®Þnh 2 1 379 10 10000 1 \image\item\weapon\wea_bla_014a1.spr \image\item\weapon\wea_bla_014a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." §¬n ®ao \script\item\noactivable_guding.lua 8 0 1
Hi Nh©n CÇm cha gi¸m ®Þnh 2 1 380 10 10000 1 \image\item\weapon\wea_qin_014a1.spr \image\item\weapon\wea_qin_014a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." CÇm \script\item\noactivable_xirenzhiyong.lua 8 0 1
ThÇn Hµnh cha gi¸m ®Þnh 2 1 381 10 10000 1 \image\item\weapon\wea_bru_014a1.spr \image\item\weapon\wea_bru_014a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." Bót \script\item\noactivable_shenxing.lua 8 0 1
A La H¸n Trîng cha gi¸m ®Þnh 2 1 382 10 10000 1 \image\item\weapon\wea_can_014a1.spr \image\item\weapon\wea_can_014a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." TÝch trîng \script\item\noactivable_aluohanzhang.lua 8 0 1
§¹i Hµo L«i Th¬ng cha gi¸m ®Þnh 2 1 383 10 10000 1 \image\item\weapon\wea_qan_012a1.spr \image\item\weapon\wea_qan_012a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." Th¬ng \script\item\noactivable_dahaoleiqiang.lua 8 0 1
ThÇn Cung cha gi¸m ®Þnh 2 1 384 10 10000 1 \image\item\weapon\wea_gon_012a1.spr \image\item\weapon\wea_gon_012a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." Cung \script\item\noactivable_wangshi.lua 8 0 1
M·nh Hæ cha gi¸m ®Þnh 2 1 385 10 10000 1 \image\item\weapon\wea_zhua_012a1.spr \image\item\weapon\wea_zhua_012a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." Tr¶o \script\item\noactivable_menghu.lua 8 0 1
L¨ng Phong cha gi¸m ®Þnh 2 1 386 10 10000 1 \image\item\weapon\wea_ddao_012a1.spr \image\item\weapon\wea_ddao_012a0_80.spr "ThÇn binh lîi khÝ, thÕ gian hiÕm thÊy." Song ®ao \script\item\noactivable_lingfeng.lua 8 0 1
Th¸i H §a MËt Qu¶ 2 1 387 1 1 1 \image\item\other\Ì«Ðé¶àÃÛ»¨¹ûa1.spr \image\item\other\Ì«Ðé¶àÃÛ»¨¹ûa0.spr T¬ng truyÒn tiªn c¶nh Th¸i H cã 1 lo¹i c©y gäi lµ B¸t Nh· §a MËt<enter><color=Gold>(T¨ng thªm 1 c¬ héi vµo Th¸i H) ThÇn bÝ \script\item\taixuduomiguo.lua 1 0 0
B¸nh Ýt nh©n thÞt 2 1 388 1 1 999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr Néi trong 5 phót t¨ng 20% tèc ®é di chuyÓn. ThÇn bÝ \script\online\dragonboat06\item\srzz_item.lua 1 0 0
B¸nh nh©n møt 2 1 389 1 1 999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr Nhanh chãng phôc håi sinh lùc vµ néi lùc. ThÇn bÝ \script\online\dragonboat06\item\mjzz_item.lua 1 0 0
B¸nh Ýt trøng muèi 2 1 390 1 1 999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr Thùc phÈm hµng ngµy. ThÇn bÝ \script\online\dragonboat06\item\xdzz_item.lua 1 0 0
B¸nh Ýt thËp cÈm 2 1 391 1 1 999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr sö dông néi 5 phót t¨ng 50 ®iÓm tiÒm n¨ng. ThÇn bÝ \script\online\dragonboat06\item\sjzz_item.lua 1 0 0
B¸nh Ýt Gia Hng 2 1 392 1 1 999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr "B¸nh Ýt tuyÖt diÖu cña thÕ gian, ¨n vµo sÏ t¨ng kinh nghiÖm vµ c«ng lùc ®ång thêi phôc håi tÊt c¶ sinh lùc vµ néi lùc" ThÇn bÝ \script\online\dragonboat06\item\jxzz_item.lua 1 2 1
§¹i lÔ bao B¸nh Ýt 2 1 393 1 1 999 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr "Bao l× x× mõng tÕt §oan Ngä, trong chøa nhiÒu lo¹i B¸nh Ýt." ThÇn bÝ \script\online\dragonboat06\item\zzdalibao.lua 1 0 1
B¸nh Ýt nÕp 2 1 394 1 1 999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr "B¸nh Ýt phæ th«ng, h¬ng vÞ th¬m ngon, ¨n vµo t¨ng ®iÓm kinh nghiÖm vµ 5 ®iÓm danh väng" ThÇn bÝ \script\online\dragonboat06\item\nmzz_item.lua 1 2 1
§¹t Ma §êng LÖnh 1 2 1 395 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Hµnh Gi¶. §Ö tö ThiÕu L©m chuyªn sö dông. ThÇn bÝ \script\online\shimenrenwu\item\xingzhe.lua 1 2 1
§¹t Ma §êng LÖnh 2 2 1 396 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Hçn Nguyªn T¨ng. §Ö tö ThiÕu L©m chuyªn sö dông. ThÇn bÝ \script\online\shimenrenwu\item\hunyuanseng.lua 1 2 1
La H¸n §êng LÖnh 1 2 1 397 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Sa Di. §Ö tö ThiÕu L©m chuyªn sö dông. ThÇn bÝ \script\online\shimenrenwu\item\shami.lua 1 2 1
La H¸n §êng LÖnh 2 2 1 398 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong §Êu T¨ng. §Ö tö ThiÕu L©m chuyªn sö dông. ThÇn bÝ \script\online\shimenrenwu\item\douseng.lua 1 2 1
Tµng Kinh C¸c LÖnh 1 2 1 399 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Khæ Hµnh T¨ng. §Ö tö ThiÕu L©m chuyªn sö dông. ThÇn bÝ \script\online\shimenrenwu\item\kuxingseng.lua 1 2 1
Tµng Kinh C¸c LÖnh 2 2 1 400 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong ThiÒn Tu T¨ng. §Ö tö ThiÕu L©m chuyªn sö dông. ThÇn bÝ \script\online\shimenrenwu\item\chanxiuseng.lua 1 2 1
Thiªn C¬ LÖnh 1 2 1 401 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Trang Kh¸ch. §Ö tö §êng M«n chuyªn sö dông. ThÇn bÝ \script\online\shimenrenwu\item\zhuangke.lua 1 2 1
Thiªn C¬ LÖnh 2 2 1 402 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Hé VÖ. ChØ dïng cho ®Ö tö §êng M«n. ThÇn bÝ \script\online\shimenrenwu\item\huwei.lua 1 2 1
B¹ch Liªn Hoa LÖnh 1 2 1 403 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Thanh T©m Sø. Dïng cho ®Ö tö Nga My PhËt Gia . ThÇn bÝ \script\online\shimenrenwu\item\qingxinshi.lua 1 2 1
B¹ch Liªn Hoa LÖnh 2 2 1 404 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Vò Y Sø. Dïng cho ®Ö tö Nga My PhËt Gia . ThÇn bÝ \script\online\shimenrenwu\item\yuyishi.lua 1 2 1
Ngäc VËn LÖnh 1 2 1 405 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong T Khóc Sø. Dïng cho ®Ö tö Nga My Tôc Gia . ThÇn bÝ \script\online\shimenrenwu\item\siqushi.lua 1 2 1
Ngäc VËn LÖnh 2 2 1 406 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Ph¹n ¢m Sø. Dïng cho ®Ö tö Nga My Tôc Gia . ThÇn bÝ \script\online\shimenrenwu\item\fanyinshi.lua 1 2 1
ChÊp Ph¸p trëng l·o lÖnh 1 2 1 407 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong ChÊp B¸t ®Ö tö. Dïng cho ®Ö tö C¸i Bang TÜnh y . ThÇn bÝ \script\online\shimenrenwu\item\zhibodizi.lua 1 2 1
ChÊp Ph¸p trëng l·o lÖnh 2 2 1 408 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Trõ Gian ®Ö tö. Dïng cho ®Ö tö C¸i Bang TÜnh y . ThÇn bÝ \script\online\shimenrenwu\item\chujiandizi.lua 1 2 1
Chëng Bæng trëng l·o lÖnh 1 2 1 409 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong ChÊp Bæng ®Ö tö. Dïng cho ®Ö tö C¸i Bang ¤ Y . ThÇn bÝ \script\online\shimenrenwu\item\zhibangdizi.lua 1 2 1
Chëng Bæng trëng l·o lÖnh 2 2 1 410 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Trõng ¸c ®Ö tö. Dïng cho ®Ö tö C¸i Bang ¤ Y . ThÇn bÝ \script\online\shimenrenwu\item\chengedizi.lua 1 2 1
Chëng Kinh LÖnh 1 2 1 411 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Thanh Tu ®¹o nh©n. Dïng cho ®Ö tö Vâ §ang ®¹o gia. ThÇn bÝ \script\online\shimenrenwu\item\qingxiudaoren.lua 1 2 1
Chëng Kinh LÖnh 2 2 1 412 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong NhËp Quan ®¹o nh©n. Dïng cho ®Ö tö Vâ §ang ®¹o gia. ThÇn bÝ \script\online\shimenrenwu\item\ruguandaoren.lua 1 2 1
Th¸i Êt LÖnh 1 2 1 413 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Thanh Phong ®¹o nh©n. Dïng cho ®Ö tö Vâ §ang tôc gia. ThÇn bÝ \script\online\shimenrenwu\item\qingfengdaoren.lua 1 2 1
Th¸i Êt LÖnh 2 2 1 414 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong S¬n D¬ng ®¹o nh©n. Dïng cho ®Ö tö Vâ §ang tôc gia. ThÇn bÝ \script\online\shimenrenwu\item\shanyangdaoren.lua 1 2 1
Long T¬ng tíng lÖnh 1 2 1 415 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Khinh Kþ Binh. Dïng cho ®Ö tö D¬ng M«n th¬ng kþ . ThÇn bÝ \script\online\shimenrenwu\item\qingqibing.lua 1 2 1
Long T¬ng tíng lÖnh 2 2 1 416 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong HiÖu óy. Dïng cho ®Ö tö D¬ng M«n th¬ng kþ . ThÇn bÝ \script\online\shimenrenwu\item\xiaowei.lua 1 2 1
Hæ Dùc tíng lÖnh 1 2 1 417 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Xuyªn D¬ng Thñ. Dïng cho ®Ö tö D¬ng M«n cung kþ . ThÇn bÝ \script\online\shimenrenwu\item\chuanyangshou.lua 1 2 1
Hæ Dùc tíng lÖnh 2 2 1 418 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong §« óy. Dïng cho ®Ö tö D¬ng M«n cung kþ . ThÇn bÝ \script\online\shimenrenwu\item\duwei.lua 1 2 1
Diªm La LÖnh 1 2 1 419 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong §o¹t Ph¸ch T¶n Nh©n. Dïng cho ®Ö tö HiÖp §éc ThÇn bÝ \script\online\shimenrenwu\item\duoposanren.lua 1 2 1
Diªm La LÖnh 2 2 1 420 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Th«i MÖnh T¶n Nh©n. Dïng cho ®Ö tö HiÖp §éc ThÇn bÝ \script\online\shimenrenwu\item\cuimingsanren.lua 1 2 1
Cæ T«n LÖnh 1 2 1 421 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong §éc Tµm T¶n Nh©n. Dïng cho ®Ö tö Ngò §éc Cæ S ThÇn bÝ \script\online\shimenrenwu\item\ducansanren.lua 1 2 1
Cæ T«n LÖnh 2 2 1 422 1 1 1 \image\item\other\quest_026a1.spr \image\item\other\quest_026a0.spr PhÇn thëng khi ®îc phong Thùc T©m T¶n Nh©n. Dïng cho ®Ö tö Ngò §éc Cæ S ThÇn bÝ \script\online\shimenrenwu\item\shixinsanren.lua 1 2 1
S M«n ThÝ LuyÖn Qu¶ nhá 2 1 423 1 1 1 \image\item\other\secr_002a1.spr \image\item\other\secr_002a0.spr "§Õn chëng m«n nhËn qu¶ tiªn dïng n©ng cao phÇn nµo c«ng lùc b¶n th©n, mçi ngµy chØ ®îc ¨n 1 qu¶." §· khãa \script\online\shimenrenwu\item\xiaoshilianguo.lua 1 2 1
S M«n ThÝ LuyÖn Qu¶ 2 1 424 1 1 1 \image\item\other\secr_002a1.spr \image\item\other\secr_002a0.spr "Tiªn qu¶, mçi ngµy sö dông 1 qu¶ sÏ n©ng cao c«ng lùc." §· khãa \script\online\shimenrenwu\item\shimenshilianguo.lua 1 2 1
Hµnh Gi¶ phôc phæ 2 1 425 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m Hµnh Gi¶. ThÇn bÝ \script\item\lifeskill\xingzhe.lua 1 0 1
Hçn Nguyªn phôc phæ 2 1 426 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m Hçn Nguyªn. ThÇn bÝ \script\item\lifeskill\hunyuan.lua 1 0 1
ChiÕn ý kh¶i gi¸p phæ 2 1 427 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m Kim Cang Phôc Ma. ThÇn bÝ \script\item\lifeskill\fumojingang.lua 1 0 1
Khæ Hµnh bµo phæ 2 1 428 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m Khæ Hµnh . ThÇn bÝ \script\item\lifeskill\kuxing.lua 1 0 1
ThiÒn Tu bµo phæ 2 1 429 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m ThiÒn Tu. ThÇn bÝ \script\item\lifeskill\chanxiu.lua 1 0 1
ThiÒn TÞnh bµo phæ 2 1 430 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m TruyÒn Kinh Ph¸p S. ThÇn bÝ \script\item\lifeskill\chuanjingfashi.lua 1 0 1
Sa Di Phôc phæ 2 1 431 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m Sa Di. ThÇn bÝ \script\item\lifeskill\shami.lua 1 0 1
§Êu T¨ng phôc phæ 2 1 432 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m §Êu T¨ng. ThÇn bÝ \script\item\lifeskill\douseng.lua 1 0 1
§Èu KhÝ ChiÕn y phæ 2 1 433 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc ThiÕu L©m Hé Ph¸p La H¸n. ThÇn bÝ \script\item\lifeskill\hufaluohan.lua 1 0 1
Trang Kh¸ch phôc phæ 2 1 434 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc §êng M«n Trang Kh¸ch. ThÇn bÝ \script\item\lifeskill\zhuangke.lua 1 0 1
Hé VÖ phôc phæ 2 1 435 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc §êng M«n Hé VÖ. ThÇn bÝ \script\item\lifeskill\huwei.lua 1 0 1
BÝ §éc y phæ 2 1 436 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc §êng M«n BÝ §éc ThÝch Kh¸ch ThÇn bÝ \script\item\lifeskill\miducike.lua 1 0 1
Thanh T©m tè y phæ 2 1 437 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Nga My Thanh T©m. ThÇn bÝ \script\item\lifeskill\qingxin.lua 1 0 1
Th¸i Vò tè y phæ 2 1 438 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Nga My Th¸i Vò. ThÇn bÝ \script\item\lifeskill\caiyu.lua 1 0 1
Ph¸p V©n y phæ 2 1 439 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Nga My Tö Tróc Sø. ThÇn bÝ \script\item\lifeskill\zizhushi.lua 1 0 1
T Khóc tè y phæ 2 1 440 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Nga My T Khóc. ThÇn bÝ \script\item\lifeskill\siqu.lua 1 0 1
Ph¹n ¢m tè y phæ 2 1 441 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Nga My Ph¹n ¢m. ThÇn bÝ \script\item\lifeskill\fanyin.lua 1 0 1
Ph¸p ¢m y phæ 2 1 442 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Nga My H¶i NguyÖt Sø. ThÇn bÝ \script\item\lifeskill\haiyushi.lua 1 0 1
ChÊp B¸t Thêng phæ 2 1 443 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc C¸i Bang ChÊp B¸t. ThÇn bÝ \script\item\lifeskill\chibo.lua 1 0 1
Trõ Gian Thêng phæ 2 1 444 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc C¸i Bang Trõ Gian. ThÇn bÝ \script\item\lifeskill\chujian.lua 1 0 1
Tø H¶i y phôc phæ 2 1 445 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc C¸i Bang Tø H¶i HiÖp. ThÇn bÝ \script\item\lifeskill\sihaixia.lua 1 0 1
KhiÕu Hoa y phæ 2 1 446 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc C¸i bang KhiÕu Hoa. ThÇn bÝ \script\item\lifeskill\jiaohua.lua 1 0 1
Trõng ¸c Thêng phæ 2 1 447 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc C¸i Bang Trõng ¸c. ThÇn bÝ \script\item\lifeskill\chenge.lua 1 0 1
Tô NghÜa y phæ 2 1 448 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc C¸i Bang B¸t §¹i §Ö Tö. ThÇn bÝ \script\item\lifeskill\badaidizi.lua 1 0 1
Thanh Tu bµo phæ 2 1 449 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Vâ §ang Thanh Tu. ThÇn bÝ \script\item\lifeskill\qingxiu.lua 1 0 1
NhËp Quan ph¸p bµo phæ 2 1 450 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Vâ §ang NhËp Quan. ThÇn bÝ \script\item\lifeskill\ruguan.lua 1 0 1
Tø Tîng ph¸p bµo phæ 2 1 451 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Vâ §ang V« Ng· ®¹o nh©n. ThÇn bÝ \script\item\lifeskill\wuwodaoren.lua 1 0 1
Thanh Phong bµo phæ 2 1 452 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Vâ §ang Thanh Phong. ThÇn bÝ \script\item\lifeskill\qingfeng.lua 1 0 1
ThiÓu D¬ng Thêng phæ 2 1 453 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Vâ §ang ThiÓu D¬ng. ThÇn bÝ \script\item\lifeskill\shaoyang.lua 1 0 1
Linh Phong phôc phæ 2 1 454 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Vâ §ang Nhµn V©n HiÖp. ThÇn bÝ \script\item\lifeskill\xianyunxiadao.lua 1 0 1
Khinh Kþ gi¸p phæ 2 1 455 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc D¬ng M«n Khinh Kþ. ThÇn bÝ \script\item\lifeskill\qingqi.lua 1 0 1
HiÖu óy thiÕt gi¸p phæ 2 1 456 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc D¬ng M«n HiÖu óy. ThÇn bÝ \script\item\lifeskill\xiaowei.lua 1 0 1
Tinh Kh¶i gi¸p phæ 2 1 457 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc D¬ng M«n PhÊn Vâ tíng qu©n. ThÇn bÝ \script\item\lifeskill\fenwujiangjun.lua 1 0 1
Nâ thñ gi¸p phæ 2 1 458 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc D¬ng M«n Nâ Thñ. ThÇn bÝ \script\item\lifeskill\nushou.lua 1 0 1
§« óy thiÕt gi¸p phæ 2 1 459 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc D¬ng M«n §« óy. ThÇn bÝ \script\item\lifeskill\duwei.lua 1 0 1
PhÊn Uy Tíng Qu©n kh¶i gi¸p phæ 2 1 460 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc D¬ng M«n PhÊn Uy tíng qu©n. ThÇn bÝ \script\item\lifeskill\fenweijiangjun.lua 1 0 1
§o¹t Ph¸ch y phæ 2 1 461 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Ngò §éc §o¹t Ph¸ch. ThÇn bÝ \script\item\lifeskill\duopo.lua 1 0 1
Th«i MÖnh y phæ 2 1 462 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Ngò §éc Th«i MÖnh. ThÇn bÝ \script\item\lifeskill\cuiming.lua 1 0 1
H¾c V« Thêng M·nh §éc y phæ 2 1 463 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Ngò §éc H¾c V« Thêng. ThÇn bÝ \script\item\lifeskill\heiwuchang.lua 1 0 1
§éc Tµm Y phæ 2 1 464 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Ngò §éc §éc Tµm. ThÇn bÝ \script\item\lifeskill\duchan.lua 1 0 1
Thùc T©m Y phæ 2 1 465 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Ngò §éc Thùc T©m. ThÇn bÝ \script\item\lifeskill\shixin.lua 1 0 1
B¹ch V« Thêng Ngôy §éc Y phæ 2 1 466 1 1 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o y phôc Ngò §éc B¹ch V« Thêng. ThÇn bÝ \script\item\lifeskill\baiwuchang.lua 1 0 1
T¬ Tinh ChÕ 2 2 467 1 1 999 \image\item\other\orsilk_011a1.spr \image\item\other\orsilk_011a0.spr Lo¹i t¬ dïng ®Ó dÖt c¸c lo¹i y phôc thîng h¹ng hoÆc cèng phÈm cña triÒu ®×nh. Sinh ho¹t 8 0 0
H¾c Kim tinh luyÖn 2 2 468 1 1 999 \image\item\other\smeta_001a1.spr \image\item\other\smeta_001a0.spr Kim lo¹i thÇn kú do ngêi T©y Vùc mang ®Õn Trung Nguyªn tõ thêi H¸n Vò §Õ dïng ®óc t¹o vò khÝ ®Æc biÖt. Sinh ho¹t 8 0 0
Vßng Th¸i H B¸t Qu¸i - Cµn 2 1 469 1 1 999 \image\item\other\quest_007a1.spr \image\item\other\quest_007a0.spr "Ph¸p b¶o cña Cöu Thiªn HuyÒn N÷ dïng trõ yªu diÖt ma, chÝnh gi÷a cã ch÷ Cµn." ThÇn bÝ 1 0 1
Vßng Th¸i H B¸t Qu¸i - Kh«n 2 1 470 1 1 999 \image\item\other\À¤a1.spr \image\item\other\À¤a0.spr "Ph¸p b¶o cña Cöu Thiªn HuyÒn N÷ dïng trõ yªu diÖt ma, chÝnh gi÷a cã ch÷ Kh«n." ThÇn bÝ 1 0 1
Vßng Th¸i H B¸t Qu¸i - Kh¶m 2 1 471 1 1 999 \image\item\other\¿²a1.spr \image\item\other\¿²a0.spr "Ph¸p b¶o cña Cöu Thiªn HuyÒn N÷ dïng trõ yªu diÖt ma, chÝnh gi÷a cã ch÷ Kh¶m." ThÇn bÝ 1 0 1
Vßng Th¸i H B¸t Qu¸i - §oµi 2 1 472 1 1 999 \image\item\other\¶Òa1.spr \image\item\other\¶Òa0.spr "Ph¸p b¶o cña Cöu Thiªn HuyÒn N÷ dïng trõ yªu diÖt ma, chÝnh gi÷a cã ch÷ §oµi." ThÇn bÝ 1 0 1
Vßng Th¸i H B¸t Qu¸i - Ly 2 1 473 1 1 999 \image\item\other\Àëa1.spr \image\item\other\Àëa0.spr "Ph¸p b¶o cña Cöu Thiªn HuyÒn N÷ dïng trõ yªu diÖt ma, chÝnh gi÷a cã ch÷ Ly." ThÇn bÝ 1 0 1
Vßng Th¸i H B¸t Qu¸i - ChÊn 2 1 474 1 1 999 \image\item\other\Õða1.spr \image\item\other\Õða0.spr "Ph¸p b¶o cña Cöu Thiªn HuyÒn N÷ dïng trõ yªu diÖt ma, chÝnh gi÷a cã ch÷ ChÊn." ThÇn bÝ 1 0 1
Vßng Th¸i H B¸t Qu¸i - CÊn 2 1 475 1 1 999 \image\item\other\ôÞa1.spr \image\item\other\ôÞa0.spr "Ph¸p b¶o cña Cöu Thiªn HuyÒn N÷ dïng trõ yªu diÖt ma, chÝnh gi÷a cã ch÷ CÊn." ThÇn bÝ 1 0 1
Vßng Th¸i H B¸t Qu¸i - Tèn 2 1 476 1 1 999 \image\item\other\Ùãa1.spr \image\item\other\Ùãa0.spr "Ph¸p b¶o cña Cöu Thiªn HuyÒn N÷ dïng trõ yªu diÖt ma, chÝnh gi÷a cã ch÷ Tèn." ThÇn bÝ 1 0 1
Tói dîc phÈm (nhá) 2 1 477 1 1 1 \image\item\other\Ò©Æ·°ü¸¤(С)a1.spr \image\item\other\Ò©Æ·°ü¸¤(С)a0.spr Tói nhá ®Ó ®ùng mét Ýt dîc phÈm.<enter><color=Gold>(Mçi lo¹i dîc phÈm chØ ®ùng ®îc 100 b×nh) ThÇn bÝ \script\item\item_billing\yaopinbaofu_xiao.lua 0 0
Tói dîc phÈm (lín) 2 1 478 1 1 1 \image\item\other\Ò©Æ·°ü¸¤(´ó)a1.spr \image\item\other\Ò©Æ·°ü¸¤(´ó)a0.spr Tói lín cã thÓ ®ùng nhiÒu dîc phÈm.<enter><color=Gold>(Mçi lo¹i dîc phÈm chØ ®ùng ®îc 250 b×nh) ThÇn bÝ \script\item\item_billing\yaopinbaofu_da.lua 0 0
Ngäc Linh T¸n (tiÓu) 2 1 479 100 1 1 \image\item\other\С°üÓñÁéÉ¢a1.spr \image\item\other\С°üÓñÁéÉ¢a0.spr Bªn trong chøa 100 b×nh Ngäc Linh T¸n Dîc phÈm \script\item\item_billing\xiaobaoyulingsan.lua 0 0
Ngäc Linh T¸n (®¹i) 2 1 480 200 1 1 \image\item\other\´ó°üÓñÁéÉ¢a1.spr \image\item\other\´ó°üÓñÁéÉ¢a0.spr Bªn trong chøa 250 b×nh Ngäc Linh T¸n Dîc phÈm \script\item\item_billing\dabaoyulingsan.lua 0 0
Ngò Hoa Ngäc Lé Hoµn (tiÓu) 2 1 481 100 1 1 \image\item\other\С°üÎ廨Óñ¶Íèa1.spr \image\item\other\С°üÎ廨Óñ¶Íèa0.spr Ngò Hoa Ngäc Lé Hoµn_tói nhá.<enter><color=Gold>(chøa 100 b×nh Ngò Hoa Ngäc Lé Hoµn) Dîc phÈm \script\item\item_billing\xiaobaowuhuayuluwan.lua 0 0
Ngò Hoa Ngäc Lé Hoµn (®¹i) 2 1 482 200 1 1 \image\item\other\´ó°üÎ廨Óñ¶Íèa1.spr \image\item\other\´ó°üÎ廨Óñ¶Íèa0.spr Bªn trong chøa 250 b×nh Ngò Hoa Ngäc Lé Hoµn Dîc phÈm \script\item\item_billing\dabaowuhuayuluwan.lua 0 0
Sinh Sinh Hãa T¸n (tiÓu) 2 1 483 100 1 1 \image\item\other\С°üÉúÉúÔ컯ɢa1.spr \image\item\other\С°üÉúÉúÔ컯ɢa0.spr Sinh Sinh Hãa T¸n_tói nhá.<enter><color=Gold>(chøa 100 b×nh Sinh Sinh Hãa T¸n) Dîc phÈm \script\item\item_billing\xiaobaoshengshengzaohuasan.lua 0 0
Sinh Sinh Hãa T¸n (®¹i) 2 1 484 200 1 1 \image\item\other\´ó°üÉúÉúÔ컯ɢa1.spr \image\item\other\´ó°üÉúÉúÔ컯ɢa0.spr Bªn trong chøa 250 b×nh Sinh Sinh Hãa T¸n Dîc phÈm \script\item\item_billing\dabaoshengshengzaohuasan.lua 0 0
B¹ch V©n T¸n (tiÓu) 2 1 485 100 1 1 \image\item\other\С°ü°×ÔÆÉ¢a1.spr \image\item\other\С°ü°×ÔÆÉ¢a0.spr Bªn trong chøa 100 b×nh B¹ch V©n T¸n Dîc phÈm \script\item\item_billing\xiaobaobaiyunsan.lua 0 0
B¹ch V©n T¸n (®¹i) 2 1 486 200 1 1 \image\item\other\´ó°ü°×ÔÆÉ¢a1.spr \image\item\other\´ó°ü°×ÔÆÉ¢a0.spr Bªn trong chøa 250 b×nh B¹ch V©n T¸n Dîc phÈm \script\item\item_billing\dabaobaiyunsan.lua 0 0
Thiªn H¬ng CÈm Tôc (tiÓu) 2 1 487 100 1 1 \image\item\other\С°üÌìÏãÔƽõÐøa1.spr \image\item\other\С°üÌìÏãÔƽõÐøa0.spr Thiªn H¬ng CÈm Tôc_tói nhá.<enter><color=Gold>(chøa 100 b×nh Thiªn H¬ng CÈm Tôc) Dîc phÈm \script\item\item_billing\xiaobaotianxiangyunjinxu.lua 0 0
Thiªn H¬ng CÈm Tôc (®¹i) 2 1 488 200 1 1 \image\item\other\´ó°üÌìÏãÔƽõÐøa1.spr \image\item\other\´ó°üÌìÏãÔƽõÐøa0.spr Bªn trong chøa 250 b×nh Thiªn H¬ng CÈm Tôc Dîc phÈm \script\item\item_billing\dabaotianxiangyunjinxu.lua 0 0
H¾c Ngäc §o¹n Tôc Cao (tiÓu) 2 1 489 100 1 1 \image\item\other\С°üºÚÓñ¶ÏÐø¸àa1.spr \image\item\other\С°üºÚÓñ¶ÏÐø¸àa0.spr H¾c Ngäc §o¹n Tôc Cao_tói nhá.<enter><color=Gold>(chøa 100 b×nh H¾c Ngäc §o¹n Tôc Cao) Dîc phÈm \script\item\item_billing\xiaobaoheiyuduanxugao.lua 0 0
H¾c Ngäc §o¹n Tôc Cao (®¹i) 2 1 490 200 1 1 \image\item\other\´ó°üºÚÓñ¶ÏÐø¸àa1.spr \image\item\other\´ó°üºÚÓñ¶ÏÐø¸àa0.spr Bªn trong chøa 250 b×nh H¾c Ngäc §o¹n Tôc Cao Dîc phÈm \script\item\item_billing\dabaoheiyuduanxugao.lua 0 0
§¹i Hoµn §¬n (tiÓu) 2 1 491 100 1 1 \image\item\other\С°ü´ó»¹µ¤a1.spr \image\item\other\С°ü´ó»¹µ¤a0.spr Bªn trong chøa 100 b×nh §¹i Hoµn §¬n Dîc phÈm \script\item\item_billing\xiaobaodahuandan.lua 0 0
§¹i Hoµn §¬n (®¹i) 2 1 492 200 1 1 \image\item\other\´ó°ü´ó»¹µ¤a1.spr \image\item\other\´ó°ü´ó»¹µ¤a0.spr Bªn trong chøa 250 b×nh §¹i Hoµn §¬n Dîc phÈm \script\item\item_billing\dabaodahuandan.lua 0 0
NhÊt Nguyªn Phôc Thñy §¬n (tiÓu) 2 1 493 100 1 1 \image\item\other\С°üÒ»Ôª¸´Ê¼µ¤a1.spr \image\item\other\С°üÒ»Ôª¸´Ê¼µ¤a0.spr NhÊt Nguyªn Phôc Khëi §¬n_tói nhá.<enter><color=Gold>(chøa 100 b×nh NhÊt Nguyªn Phôc Khëi §¬n) Dîc phÈm \script\item\item_billing\xiaobaoyiyuanfushidan.lua 0 0
NhÊt Nguyªn Phôc Thñy §¬n (®¹i) 2 1 494 200 1 1 \image\item\other\´ó°üÒ»Ôª¸´Ê¼µ¤a1.spr \image\item\other\´ó°üÒ»Ôª¸´Ê¼µ¤a0.spr Bªn trong chøa 250 b×nh NhÊt Nguyªn Phôc Thñy §¬n Dîc phÈm \script\item\item_billing\dabaoyiyuanfushidan.lua 0 0
V¹n VËt Quy Nguyªn §¬n (tiÓu) 2 1 495 100 1 1 \image\item\other\С°üÍòÎï¹éÔªµ¤a1.spr \image\item\other\С°üÍòÎï¹éÔªµ¤a0.spr V¹n VËt Quy Nguyªn §¬n_tói nhá.<enter><color=Gold>(chøa 100 b×nh V¹n VËt Quy Nguyªn §¬n) Dîc phÈm \script\item\item_billing\xiaobaowanwuguiyuandan.lua 0 0
V¹n VËt Quy Nguyªn §¬n (®¹i) 2 1 496 200 1 1 \image\item\other\´ó°üÍòÎï¹éÔªµ¤a1.spr \image\item\other\´ó°üÍòÎï¹éÔªµ¤a0.spr Bªn trong chøa 250 b×nh V¹n VËt Quy Nguyªn §¬n Dîc phÈm \script\item\item_billing\dabaowanwuguiyuandan.lua 0 0
TiÓu ThÇn Th«ng Phï 2 1 497 1 0 10 \image\item\other\°Ù±äСÉñͨÉñ·ûa1.spr \image\item\other\°Ù±äСÉñͨÉñ·ûa0.spr Bóp bª thÇn kú biÕt biÕn hãa thµnh nhiÒu h×nh d¹ng ®i theo sau chñ nh©n. HiÖu lùc 24 giê. ThÇn bÝ \script\online\afterworldcup06\item\transformer_item.lua 2 1
TiÓu Niªn Thó ThÇn Phï 2 1 498 1 0 10 \image\item\other\СÄêÊÞÉñ·ûa1.spr \image\item\other\СÄêÊÞÉñ·ûa0.spr Cã thÓ gäi 1 con TiÓu Niªn Thó theo sau chñ nh©n . Thêi gian hiÖu lùc cßn 24 giê. ThÇn bÝ \script\online\afterworldcup06\item\newyear_monster_item.lua 0 1
LÔ bao kû niÖm cóp thÕ giíi 2 1 499 1 0 10 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr "Mãn quµ nh©n kû niÖm Cóp bãng ®¸ thÕ giíi §øc, phÇn thëng phong phó." §· khãa \script\online\afterworldcup06\item\present_bag_item.lua 2 1
Tói quµ S¬n Hµ Thiªn T«n 2 1 500 1 0 1 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr "Chøa nhiÒu lo¹i vËt phÈm cao cÊp, may m¾n cã thÓ nhËn ®îc thÇn vËt Thîng Cæ." ThÇn bÝ 0 1
Quµ kü niÖm world cup 2 1 501 1 0 1 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr "Mãn quµ nh©n kû niªm cóp bãng ®¸ thÕ giíi §øc 2006, may m¾n cã thÓ nhËn ®îc nhiÒu phÇn thëng ®Æc biÖt." ThÇn bÝ 0 1
ChÕ t¹o thÇn binh 2 1 502 1 0 1 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr Chøa nhiÒu thiªn th¹ch chuyªn dïng ®Ó n©ng cÊp vËt phÈm. ThÇn bÝ 0 1
V« NgÊn Thñy 2 1 503 1 0 1 \image\item\other\ÎÞºÛË®a1.spr \image\item\other\ÎÞºÛË®a0.spr "MÊy m¬i n¨m tríc, V©n D¬ng ch©n nh©n t×nh cê ph¸t hiÖn 1 hang ®éng thÇn bÝ. Níc suèi cã mµu mùc ®en vµ mµu ®á cña m¸u, nªn gäi lµ V« NgÊn Thñy. <enter> <color=Gold>(Hñy 1 quyÓn bÝ kiÕp trªn mËt tÞch trang bÞ)." ThÇn bÝ \script\item\item_billing\wuhenshui.lua 0 1
N÷ Oa Tinh Th¹ch 2 1 504 1 0 999 \image\item\other\Ů派«Ê¯a1.spr \image\item\other\Ů派«Ê¯a0.spr "N÷ Oa thÇn th¹ch tr¶i qua thêi gian mÊy ngµn n¨m trë nªn s¾c bÐn, c¾t vËt phÈm kh«ng ®Ó l¹i chót dÊu vÕt. <enter> <color=Gold>(Bá 1 quyÓn bÝ kiÕp trªn mËt tÞch trang bÞ)." ThÇn bÝ \script\item\item_billing\nvwajingshi.lua 0 1
ChiÕn bµo cóp thÕ giíi 2 1 505 1 0 1 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr <enter><color=Gold>Cã thÓ nhËn ®îc bÊt kú mét chiÕn bµo cóp thÕ giíi \script\item\item_billing\shijiebeizhanpao.lua 0 1
ThiÕp mêi 2 1 506 1 0 1 \image\item\other\ÇëÌûa1.spr \image\item\other\ÇëÌûa0.spr ThiÕp mêi b»ng h÷u tham dù ®¸m cíi. HØ sù \script\item\item_billing\qingtie.lua 0 0
KÑo mõng 2 1 507 1 0 999 \image\item\other\ϲÌÇa1.spr \image\item\other\ϲÌÇa0.spr KÑo mõng t¨ng thªm kh«ng khÝ vui t¬i trong ®¸m cíi . HØ sù \script\item\item_billing\xitang.lua 0 0
Hång bao 2 1 508 0 0 999 \image\item\other\ºì°üa1.spr \image\item\other\ºì°üa0.spr "Hång bao tÆng th©n h÷u, trong cã 88 vµng." HØ sù \script\item\item_billing\xiaolijin.lua 0 1
KhÕ ¦íc Th 2 1 509 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr B¶n tháa thuËn thuª mín cã ch÷ ký cña hai bªn . ThÇn bÝ \script\item\qiyue.lua 0 1
B¶o §ao T©y Vùc 2 1 510 500 1 1 \image\item\other\coll_141a1.spr \image\item\other\coll_141a0.spr "Vò khÝ cña cao thñ T©y Vùc, uy lùc rÊt m¹nh nhng träng lîng h¬i nÆng." §· khãa 1 0
Hé UyÓn l«ng L¹c §µ 2 1 511 500 1 1 \image\item\other\coll_074a1.spr \image\item\other\coll_074a0.spr "Bao tay lµm tõ l«ng l¹c ®µ, dïng ®Ó chèng l¹nh." §· khãa 1 0
¸m Yªn Nguyªn Th¹ch 2 1 512 500 1 1 \image\item\other\coll_026a1.spr \image\item\other\coll_026a0.spr ¸m yªn nguyªn th¹ch th« s¬ §· khãa 1 0
¢m Ph¸ch Nguyªn Th¹ch 2 1 513 500 1 1 \image\item\other\coll_027a1.spr \image\item\other\coll_027a0.spr ¢m ph¸ch nguyªn th¹ch th« s¬ §· khãa 1 0
Tinh Kim T©y Vùc 2 1 514 500 1 1 \image\item\other\coll_042a1.spr \image\item\other\coll_042a0.spr "Kim lo¹i thÇn bÝ ë T©y Vùc, dïng ®Ó chÕ t¹o thÇn khÝ" §· khãa 1 0
Trøng §¹i Bµng 2 1 515 500 1 1 \image\item\other\coll_028a1.spr \image\item\other\coll_028a0.spr Trøng cña §¹i bµng §· khãa 1 0
TuyÕt Tinh Nguyªn Th¹ch 2 1 516 500 1 1 \image\item\other\coll_022a1.spr \image\item\other\coll_022a0.spr TuyÕt tinh nguyªn th¹ch th« s¬ §· khãa 1 0
Hæ Ph¸ch Nguyªn Th¹ch 2 1 517 500 1 1 \image\item\other\coll_084a1.spr \image\item\other\coll_084a0.spr Hæ ph¸ch nguyªn th¹ch th« s¬ §· khãa 1 0
L«ng §¹i Bµng 2 1 518 500 1 1 \image\item\other\orsilk_014a1.spr \image\item\other\orsilk_014a0.spr "L«ng cña §¹i bµng, tîng trng cho sù dòng m·nh" §· khãa 1 0
D¹ Quang B«i 2 1 519 500 1 1 \image\item\other\coll_044a1.spr \image\item\other\coll_044a0.spr D¹ quang b«i dïng ®Ó uèng rîu Bå §µo cña T©y Vùc. §· khãa 1 0
Thanh Kim Nguyªn Th¹ch 2 1 520 500 1 1 \image\item\other\coll_017a1.spr \image\item\other\coll_017a0.spr "Tinh kim nguyªn th¹ch, kh«ng thÓ x¸c ®Þnh gi¸ trÞ" §· khãa 1 0
L«ng l¹c ®µ 2 1 521 500 1 1 \image\item\other\orsilk_001a1.spr \image\item\other\orsilk_001a0.spr "L«ng t¬ cña l¹c ®µ, cã thÓ chÕ t¹o nhiÒu s¶n phÈm thªu dÖt." §· khãa 1 0
Linh dîc T©y Vùc 2 1 522 500 1 1 \image\item\usable\heal_006a1.spr \image\item\usable\heal_006a0.spr "Linh dîc T©y Vùc, nghe nãi hiÖu qu¶ kh«ng thua kÐm H¾c Ngäc §o¹n Tôc Cao nhng cha ai dïng qua." §· khãa 1 0
Kim Cang Nguyªn Th¹ch 2 1 523 500 1 1 \image\item\other\coll_086a1.spr \image\item\other\coll_086a0.spr "Kim cang nguyªn th¹ch th« s¬, kh«ng thÓ x¸c ®Þnh gi¸ trÞ" §· khãa 1 0
ThÞt l¹c ®µ 2 1 524 500 1 1 \image\item\usable\edib_001a1.spr \image\item\usable\edib_001a0.spr "ThÞt l¹c ®µ, Trung Nguyªn hiÕm thÊy" §· khãa 1 0
Lôc Trô Nguyªn Th¹ch 2 1 525 500 1 1 \image\item\other\coll_091a1.spr \image\item\other\coll_091a0.spr Lôc trô nguyªn th¹ch th« s¬ §· khãa 1 0
¢m Linh Th¹ch 2 18 1 1 0 1 \image\item\stone\stone_001a1.spr \image\item\stone\stone_001a0.spr "B¶o th¹ch tô tËp linh khÝ chÝ ©m cña tam giíi, cã thÓ mang l¹i n¨ng lùc rÊt lín.<enter><color=Gold> (Chuét ph¶i ®Ó kh¶m)" Linh th¹ch \script\item\lingshixiangqian.lua 1 0 0
¢m Linh Th¹ch 2 18 11 1 0 1 \image\item\stone\stone_002a1.spr \image\item\stone\stone_002a0.spr "B¶o th¹ch tô tËp linh khÝ chÝ ©m cña tam giíi, cã thÓ mang l¹i n¨ng lùc rÊt lín.<enter><color=Gold> (Chuét ph¶i ®Ó kh¶m)" Linh th¹ch \script\item\lingshixiangqian.lua 2 0 1
¢m Linh Th¹ch 2 18 21 1 0 1 \image\item\stone\stone_003a1.spr \image\item\stone\stone_003a0.spr "B¶o th¹ch tô tËp linh khÝ chÝ ©m cña tam giíi, cã thÓ mang l¹i n¨ng lùc rÊt lín.<enter><color=Gold> (Chuét ph¶i ®Ó kh¶m)" Linh th¹ch \script\item\lingshixiangqian.lua 3 0 1
D¬ng Linh Th¹ch 2 18 31 1 0 1 \image\item\stone\stone_004a1.spr \image\item\stone\stone_004a0.spr "B¶o th¹ch tô tËp linh khÝ chÝ ©m cña tam giíi, cã thÓ mang l¹i n¨ng lùc rÊt lín.<enter><color=Gold> (Chuét ph¶i ®Ó kh¶m)" Linh th¹ch \script\item\lingshixiangqian.lua 1 0 0
D¬ng Linh Th¹ch 2 18 41 1 0 1 \image\item\stone\stone_005a1.spr \image\item\stone\stone_005a0.spr "B¶o th¹ch tô tËp linh khÝ chÝ ©m cña tam giíi, cã thÓ mang l¹i n¨ng lùc rÊt lín.<enter><color=Gold> (Chuét ph¶i ®Ó kh¶m)" Linh th¹ch \script\item\lingshixiangqian.lua 2 0 1
D¬ng Linh Th¹ch 2 18 51 1 0 1 \image\item\stone\stone_006a1.spr \image\item\stone\stone_006a0.spr "B¶o th¹ch tô tËp linh khÝ chÝ ©m cña tam giíi, cã thÓ mang l¹i n¨ng lùc rÊt lín.<enter><color=Gold> (Chuét ph¶i ®Ó kh¶m)" Linh th¹ch \script\item\lingshixiangqian.lua 3 0 1
R¬ng cña C«n L«n N« ®Ó l¹i 2 1 526 1 1 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr Cã thÓ tÆng trang bÞ cho ngêi ch¬i trong ®éi ngò §· khãa \script\item\zgcconftaskprzie.lua 2 1
R¬ng cña Bïi Hµng ®Ó l¹i 2 1 527 1 1 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr Cã thÓ tÆng trang bÞ cho ngêi ch¬i trong ®éi ngò §· khãa \script\item\zgcconftaskprzie.lua 2 1
R¬ng cña LiÔu NghÞ ®Ó l¹i 2 1 528 1 1 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr Cã thÓ tÆng trang bÞ cho ngêi ch¬i trong ®éi ngò §· khãa \script\item\zgcconftaskprzie.lua 2 1
R¬ng cña Hång TuyÕn ®Ó l¹i 2 1 529 1 1 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr Cã thÓ tÆng trang bÞ cho ngêi ch¬i trong ®éi ngò §· khãa \script\item\zgcconftaskprzie.lua 2 1
R¬ng s¾t cña H¹ C¶nh Th¾ng 2 1 530 1 1 1 \image\item\other\secr_001a1.spr \image\item\other\secr_001a0.spr "R¬ng cña ThÈm §iÖn §iÖn. NhÊn chuét ph¶i ®Ó sö dông, cã thÓ tÆng trang bÞ cho ngêi ch¬i trong ®éi ngò" §· khãa \script\item\zgcconftaskprzie.lua 2 1
R¬ng s¾t cña NhiÕp §¹i Chïy 2 1 531 1 1 1 \image\item\other\secr_001a1.spr \image\item\other\secr_001a0.spr "R¬ng cña ThÈm §iÖn §iÖn. NhÊn chuét ph¶i ®Ó sö dông, cã thÓ tÆng trang bÞ cho ngêi ch¬i trong ®éi ngò" §· khãa \script\item\zgcconftaskprzie.lua 2 1
B¶o r¬ng cña Bé Phi Yªn 2 1 532 1 1 1 \image\item\other\secr_001a1.spr \image\item\other\secr_001a0.spr "R¬ng cña Bé Phi Yªn ®Ó l¹i. NhÊn chuét ph¶i ®Ó sö dông, cã thÓ tÆng trang bÞ cho ngêi ch¬i trong ®éi ngòcho ngêi ch¬i trong ®éi ngò" §· khãa \script\item\zgcconftaskprzie.lua 2 1
Liªn Lý Qu¶ 2 1 534 1 0 1 \image\item\other\secr_019a1.spr \image\item\other\secr_019a0.spr "Qu¶ tÝch lòy ®iÓm kinh nghiÖm, dµnh cho b¹n ®êi!" HØ sù \script\item\lianliguo.lua 0 0
GiÊy Ly h«n 2 1 535 1 0 1 \image\item\other\slife_001a1.spr \image\item\other\slife_001a0.spr GiÊy Ly h«n<enter><color=Gold>VËt chøng hñy bá quan hÖ phu thª §· khãa \script\item\xiushu.lua 2 1
Tö Kim Hång Bao (trèng) 2 1 536 0 0 1 \image\item\other\Öеȿպì°üa1.spr \image\item\other\Öеȿպì°üa0.spr "Tö Kim Hång Bao tÆng th©n h÷u, hiÖn ®ang trèng.<enter><color=Gold>(Cã thÓ chøa 360 vµng)" HØ sù \script\item\item_billing\lijin_empty.lua 0 1
Tö Kim Hång Bao 2 1 537 0 0 999 \image\item\other\ÖеȺì°üa1.spr \image\item\other\ÖеȺì°üa0.spr "Tö Kim Hång Bao tÆng th©n h÷u, bªn trong cã 360 vµng" HØ sù \script\item\item_billing\lijin.lua 0 1
Hoµng Kim §¹i Hång Bao (trèng) 2 1 538 0 0 1 \image\item\other\¸ß¼¶¿Õºì°üa1.spr \image\item\other\¸ß¼¶¿Õºì°üa0.spr "Hoµng Kim §¹i Hång Bao, hiÖn ®ang trèng.<enter><color=Gold>(Cã thÓ chøa 999 vµng)" HØ sù \script\item\item_billing\dalijin_empty.lua 0 1
§¹i hång bao hoµng kim 2 1 539 0 0 999 \image\item\other\¸ß¼¶ºì°üa1.spr \image\item\other\¸ß¼¶ºì°üa0.spr "Hoµng Kim §¹i Hång Bao, trong cã chøa 999 vµng" HØ sù \script\item\item_billing\dalijin.lua 0 1
LÔ r¬ng 2 1 540 1 0 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr R¬ng lÔ kim.<enter><color=Gold>(Sau khi sö dông nhËn ®îc 50 lÔ kim) HØ sù \script\item\item_billing\lijin_packet.lua 0 0
VÜnh KÕt §ång T©m bao 2 1 541 1 0 1 \image\item\other\coll_057a1.spr \image\item\other\coll_057a0.spr "LÔ bao n¬i tæ chøc h«n lÔ tÆng c« d©u chó rÓ, kÝnh chóc hai ngêi tr¨m n¨m h¹nh phóc!" HØ sù \script\½á»é\marriage_packet1.lua 2 1
CÊm S¾t Hßa Minh bao 2 1 542 1 0 1 \image\item\other\coll_057a1.spr \image\item\other\coll_057a0.spr "LÔ bao n¬i tæ chøc h«n lÔ tÆng c« d©u chó rÓ, kÝnh chóc hai ngêi tr¨m n¨m h¹nh phóc!" HØ sù \script\½á»é\marriage_packet2.lua 2 1
Chu Liªn BÝch Hîp bao 2 1 543 1 0 1 \image\item\other\coll_057a1.spr \image\item\other\coll_057a0.spr "LÔ bao n¬i tæ chøc h«n lÔ tÆng c« d©u chó rÓ, kÝnh chóc hai ngêi tr¨m n¨m h¹nh phóc!" HØ sù \script\½á»é\marriage_packet3.lua 2 1
V¨n §Þnh C¸t Têng bao 2 1 544 1 0 1 \image\item\other\coll_057a1.spr \image\item\other\coll_057a0.spr "LÔ bao n¬i tæ chøc h«n lÔ tÆng c« d©u chó rÓ, kÝnh chóc hai ngêi tr¨m n¨m h¹nh phóc!" HØ sù \script\½á»é\marriage_packet4.lua 2 1
§¹i xuÊt hån qu¶ 2 1 545 1 0 1 \image\item\other\´ó³ö»ê¹ûa1.spr \image\item\other\´ó³ö»ê¹ûa0.spr "Qu¶ thÇn kú, t¨ng tiªn khÝ, gióp b¹n ®êi tÝch lòy kinh nghiÖm.<enter><color=Gold> (Gióp b¹n ®êi tÝch lòy kinh nghiÖm khi rêi m¹ng, hiÖu qu¶ gÊp 2 lÇn XuÊt Hån Qu¶, duy tr× 2 giê)" HØ sù \script\item\chuhunguo.lua 0 0
Ph¸o hoa h«n lÔ 2 1 546 1 0 999 \image\item\other\¸ß¼¶Àñ»¨a1.spr \image\item\other\¸ß¼¶Àñ»¨a0.spr "Ph¸o hoa rùc rì, lµm næi bËt kh«ng khÝ cña buæi tiÖc mõng, nhÊn chuét ph¶i ®Ó ®Æt, nhÊn tiÕp 1 c¸i ®Ó ®èt. (ChØ cã thÓ sö dông t¹i n¬i tæ chøc h«n lÔ)" HØ sù \script\item\item_billing\lihua.lua 0 0
ThiÖp mêi 2 1 547 1 0 1 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr "ThiÖp mêi quan kh¸ch ®Õn dù lÔ cíi, nhÊn chuét ph¶i ®Ó lÊy thiÖp mêi, mçi lÇn lÊy 10 tÊm, tæng céng 20 tÊm." HØ sù \script\item\item_billing\qingtie_packet.lua 2 1
Ph¸o th¨ng thiªn 2 1 548 1 0 999 \image\item\other\secr_023a1.spr \image\item\other\secr_023a0.spr "B¾n ra hoa giÊy bay kh¾p trêi, lµm kh«ng khÝ thªm n¸o nhiÖt. (ChØ cã thÓ sö dông t¹i n¬i tæ chøc h«n lÔ)" HØ sù \script\item\item_billing\mantiancaixie.lua 0 0
LÔ kim 2 1 549 0 0 9999 \image\item\other\»éÇì»õ±Òa1.spr \image\item\other\»éÇì»õ±Òa0.spr Dïng ®Ó mua vËt phÈm liªn quan h«n nh©n HØ sù 0 1
Sæ tay thuyÕt minh s©n b·i 2 1 550 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi l¹i c¸ch sö dông cña s©n b·i HØ sù \script\½á»é\notebook_item.lua 2 1
R¬ng trang søc (h«n lÔ) 2 1 551 1 0 1 \image\item\other\secr_001a1.spr \image\item\other\secr_001a0.spr R¬ng cña ThÈm §iÖn §iÖn.<enter><color=Gold>(chøa nãn t©n h«n) HØ sù \script\item\item_billing\xinhuntoushibao.lua 0 0
R¬ng y phôc (h«n lÔ) 2 1 552 1 0 1 \image\item\other\secr_001a1.spr \image\item\other\secr_001a0.spr R¬ng cña ThÈm §iÖn §iÖn.<enter><color=Gold>(chøa lÔ phôc t©n h«n) HØ sù \script\item\item_billing\xinhunlifubao.lua 0 0
R¬ng lÔ phôc chñ h«n 2 1 553 1 0 1 \image\item\other\secr_001a1.spr \image\item\other\secr_001a0.spr R¬ng cña ThÈm §iÖn §iÖn.<enter><color=Gold>(chøa lÔ phôc cña chñ h«n nh©n) HØ sù \script\item\item_billing\zhuhunlifubao.lua 0 0
Ph¸o hoa 2 1 554 1 0 1 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr Ph¸o hoa ®Ó mõng lÔ cíi.<enter><color=Gold>(trong chøa 18 lo¹i ph¸o b«ng) HØ sù \script\item\item_billing\fireworks_packet.lua 0 0
XuÊt hån qu¶ 2 1 555 1 0 1 \image\item\other\³ö»ê¹ûa1.spr \image\item\other\³ö»ê¹ûa0.spr "Qu¶ thÇn kú, t¨ng tiªn khÝ, gióp b¹n ®êi tÝch lòy kinh nghiÖm.<enter><color=Gold> (Gióp b¹n ®êi tÝch lòy kinh nghiÖm khi rêi m¹ng, duy tr× 2 giê)" HØ sù \script\item\chuhunguo.lua 0 0
Tói kÑo 2 1 556 1 0 1 \image\item\other\quest_012a1.spr \image\item\other\quest_012a0.spr Trong chøa nhiÒu kÑo ngät.<enter><color=Gold>( 20 viªn) HØ sù \script\item\item_billing\xitang_packet.lua 0 0
H«n kh¸nh lÔ hoa bao 2 1 557 1 0 1 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr Ph¸o hoa mõng ngµy cíi.<enter><color=Gold>(chøa 5 ph¸o hoa) HØ sù \script\item\item_billing\lihua_packet.lua 0 0
Bao ph¸o 2 1 558 1 0 1 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr ph¸o th¨ng thiªn mõng lÔ cíi.<enter><color=Gold>(5 viªn) HØ sù \script\item\item_billing\mantiancaixie_packet.lua 0 0
LÔ r¬ng lín 2 1 559 1 0 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr R¬ng chøa lÔ kim.<enter><color=Gold>(Sö dông nhËn ®îc 500 lÔ kim) HØ sù \script\item\item_billing\dalijin_packet.lua 0 0
Cêng hãa tinh kim s¬ cÊp 2 1 560 1 0 1 \image\item\other\ormeta_007a1.spr \image\item\other\ormeta_007a0.spr "Tinh kim s¬ cÊp, cÇn ph¶i tiÕp tôc tinh luyÖn" NhiÖm vô 2 1
Cêng hãa tinh kim trung cÊp 2 1 561 1 0 1 \image\item\other\coll_086a1.spr \image\item\other\coll_086a0.spr "Tinh kim trung cÊp, cÇn ph¶i tiÕp tôc tinh luyÖn" NhiÖm vô 2 1
Cêng hãa tinh kim 2 1 562 1 0 1 \image\item\other\coll_022a1.spr \image\item\other\coll_022a0.spr "Tinh kim hoµn mü, ®· cã thÓ sö dông" NhiÖm vô 0 1
Kú kim cña Thî rÌn Lu 2 1 563 1 0 99 \image\item\other\ÐÇÐÇÀñ»¨a1.spr \image\item\other\ÐÇÐÇÀñ»¨a0.spr "Kú kim cña thî rÌn Lu, khi luyÖn tÝch tô nhiÒu hiÖu qu¶ kú l¹, lµm vËt thªm vµo gi¸ trÞ lµ 300, tèi ®a lµ 10000." NhiÖm vô 1 1
ThiÕt chïy cña M¹c Tam 2 1 564 1 0 1 \image\item\other\Ìú´¸a1.spr \image\item\other\Ìú´¸a0.spr "ThiÕt chïy cña M¹c Tam, Thî rÌn Lu thÌm muèn nã ®· l©u. Xin h·y ®Æt nã t¹i Linh B¶o s¬n tríc 21:00 giê" NhiÖm vô \script\task\taixu_jwl_up\mosan_hammer.lua 2 1
MËt ®å Lu tinh 2 1 565 1 0 1 \image\item\other\Á÷ÐǾíÖáa1.spr \image\item\other\Á÷ÐǾíÖáa0.spr "MËt ®å ghi nhí täa ®é dÊu vÕt Lu tinh, tæng cã 14 täa ®é, chuét ph¶i lu vµo Khiªm V©n Phi Tinh Phæ" HØ sù \script\task\marriage\ma_task_reel_use.lua 2 1
MËt ®å Tö KhÝ 2 1 566 1 0 1 \image\item\other\×ÏÆø¾íÖáa1.spr \image\item\other\×ÏÆø¾íÖáa0.spr "MËt ®å ghi nhí täa ®é dÊu vÕt Lu tinh, tæng cã 21 täa ®é, chuét ph¶i lu vµo Khiªm V©n Phi Tinh Phæ" HØ sù \script\task\marriage\ma_task_reel_use.lua 2 1
MËt ®å Têng Thôy 2 1 567 1 0 1 \image\item\other\ÏéÈð¾íÖáa1.spr \image\item\other\ÏéÈð¾íÖáa0.spr "MËt ®å ghi nhí täa ®é dÊu vÕt Lu tinh, tæng cã 42 täa ®é, chuét ph¶i lu vµo Khiªm V©n Phi Tinh Phæ" HØ sù \script\task\marriage\ma_task_reel_use.lua 2 1
Gi¸p Méc d¬ng 2 1 568 1 0 999 \image\item\other\¼×ľÑôa1.spr \image\item\other\¼×ľÑôa0.spr Nguyªn tè thu tõ chç dÊu vÕt Lu tinh. Chuét ph¶i lu vµo Khiªm V©n Phi Tinh Phæ hoÆc chuyÓn thµnh Uyªn ¦¬ng KÕt HØ sù \script\task\marriage\ma_frag_use.lua 0 0
Êt Méc ©m 2 1 569 1 0 999 \image\item\other\ÒÒľÒõa1.spr \image\item\other\ÒÒľÒõa0.spr Nguyªn tè thu tõ chç dÊu vÕt Lu tinh. Chuét ph¶i lu vµo Khiªm V©n Phi Tinh Phæ hoÆc chuyÓn thµnh Uyªn ¦¬ng KÕt HØ sù \script\task\marriage\ma_frag_use.lua 0 0
BÝnh háa d¬ng 2 1 570 1 0 999 \image\item\other\±û»ðÑôa1.spr \image\item\other\±û»ðÑôa0.spr Nguyªn tè thu tõ chç dÊu vÕt Lu tinh. Chuét ph¶i lu vµo Khiªm V©n Phi Tinh Phæ hoÆc chuyÓn thµnh Uyªn ¦¬ng KÕt HØ sù \script\task\marriage\ma_frag_use.lua 0 0
§inh Háa ©m 2 1 571 1 0 999 \image\item\other\¶¡»ðÒõa1.spr \image\item\other\¶¡»ðÒõa0.spr Nguyªn tè thu tõ chç dÊu vÕt Lu tinh. Chuét ph¶i lu vµo Khiªm V©n Phi Tinh Phæ hoÆc chuyÓn thµnh Uyªn ¦¬ng KÕt HØ sù \script\task\marriage\ma_frag_use.lua 0 0
Uyªn ¦¬ng KÕt 2 1 572 0 0 999 \image\item\other\Ô§Ñì½áa1.spr \image\item\other\Ô§Ñì½áa0.spr "VËt phÈm tîng trng cho t×nh c¶m phu thª, dïng cho vµi kü n¨ng phu thª." HØ sù 0 0
§ång T©m Hoµn 2 1 573 1 0 1 \image\item\other\ͬÐÄÍèa1.spr \image\item\other\ͬÐÄÍèa0.spr TrÞ ®ång t©m t¨ng 125 ®iÓm HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
§¹i §ång T©m Hoµn 2 1 574 1 0 1 \image\item\other\´óͬÐÄÍèa1.spr \image\item\other\´óͬÐÄÍèa0.spr TrÞ ®ång t©m t¨ng 300 ®iÓm HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
§ång T©m ®¬n 2 1 575 1 0 1 \image\item\other\ͬÐĵ¤a1.spr \image\item\other\ͬÐĵ¤a0.spr TrÞ ®ång t©m tèi ®a t¨ng 125 ®iÓm HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
§¹i §ång T©m ®¬n 2 1 576 1 0 1 \image\item\other\´óͬÐĵ¤a1.spr \image\item\other\´óͬÐĵ¤a0.spr TrÞ ®ång t©m tèi ®a t¨ng 300 ®iÓm HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
T tëng b¶n quyÓn 2 1 577 1 0 1 \image\item\other\ºì¶¹±¾¾ía1.spr \image\item\other\ºì¶¹±¾¾ía0.spr "Häc kü n¨ng \'T¬ng T\', gióp phu thª di chuyÓn qua l¹i" HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
T tëng tµn quyÓn 2 1 578 1 0 1 \image\item\other\ºì¶¹²Ð¾ía1.spr \image\item\other\ºì¶¹²Ð¾ía0.spr "Häc kü n¨ng \'T¬ng T\', gióp phu thª di chuyÓn qua l¹i" HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
Hãa §iÖp b¶n quyÓn 2 1 579 1 0 1 \image\item\other\»¯µû±¾¾ía1.spr \image\item\other\»¯µû±¾¾ía0.spr "Häc kü n¨ng \'Hãa §iÖp\', dïng ®Ó håi sinh b¹n ®êi" HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
Hãa §iÖp tµn quyÓn 2 1 580 1 0 1 \image\item\other\»¯µû²Ð¾ía1.spr \image\item\other\»¯µû²Ð¾ía0.spr "Häc kü n¨ng \'Hãa §iÖp\', dïng ®Ó håi sinh b¹n ®êi" HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
§iÖp LuyÕn b¶n quyÓn 2 1 581 1 0 1 \image\item\other\°ÍɽҹÓê±¾¾ía1.spr \image\item\other\°ÍɽҹÓê±¾¾ía0.spr "Häc kü n¨ng \'§iÖp LuyÕn\', cêng hãa n¨ng lùc b¹n ®êi trong kho¶ng thêi gian" HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
§iÖp LuyÕn tµn quyÓn 2 1 582 1 0 1 \image\item\other\°ÍɽҹÓê²Ð¾ía1.spr \image\item\other\°ÍɽҹÓê²Ð¾ía0.spr "Häc kü n¨ng \'§iÖp LuyÕn\', cêng hãa n¨ng lùc b¹n ®êi trong kho¶ng thêi gian" HØ sù \script\task\marriage\ma_cowry_use.lua 0 1
Khiªm V©n Phi Tinh Phæ 2 1 583 1 0 1 \image\item\other\Åä·½a1.spr \image\item\other\Åä·½a0.spr "Thî may trªn trêi chÕ t¹o, vËt kh«ng thÓ thiÕu trong cuéc sèng gia ®×nh, chuét ph¶i sö dông" HØ sù \script\task\marriage\fly_star_pu.lua 2 1
Lu Tinh Sa 2 1 584 1 0 999 \image\item\other\ÐÇÐÇÀñ»¨a1.spr \image\item\other\ÐÇÐÇÀñ»¨a0.spr "KÕt tinh h×nh thµnh khi Lu tinh r¬i xuèng trÇn, hiÕm thÊy v« cïng, cã thÓ tÝch tô linh khÝ" HØ sù 0 0
Bao sÝnh lÔ kÕt h«n 2 1 585 1 0 1 \image\item\other\лéƸÀñ°ü(x).spr \image\item\other\лéƸÀñ°ü(d).spr "Sau khi më nhËn ®îc 10 GÊm lam, 36 §¹o Hoa H¬ng, 36 b¸nh Bét vµng, 36 GÊm vµng, 36 T¬ Ngò S¾c vµ 5 D¹ Minh Ch©u" HØ sù \script\task\marriage\ma_prize_bag.lua 0 1
Hép nhÉn kim c¬ng 2 1 586 1 0 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr "Sau khi më nhËn ®îc NhÉn kim c¬ng, tîng trng cho t×nh yªu vÜnh c÷u" HØ sù \script\task\marriage\ma_ring_bag.lua 0 1
S §å ThiÕp 2 1 587 1 0 1 \image\item\other\coll_111a1.spr \image\item\other\coll_111a0.spr "VËt dïng ®Ó b¸i s hoÆc nhËn ®Ö tö, chuét ph¶i sö dông" Bá mÊt vËt phÈm \script\item\baishitie.lua 2 0
S §å Phï ChØ 2 1 588 0 0 999 \image\item\other\ʦͽ·ûÖ½a1.spr \image\item\other\ʦͽ·ûÖ½a0.spr "VËt cÇn thiÕt cña s ®å, c¸c chøc n¨ng S ®å ®Òu dïng ®Õn" ThÇn bÝ 0 1
Bæng léc Quèc Tö gi¸m 2 1 589 0 0 9999 \image\item\other\»¨ºìa1.spr \image\item\other\»¨ºìa0.spr "Bæng léc s phô nhËn ®îc sau khi mua tiÒn lêi cho ®Ö tö, cã thÓ mua vËt phÈm t¹i Quan Quèc Tö gi¸m " ThÇn bÝ 0 1
XuÊt S Tiªu 2 1 590 1 0 1 \image\item\other\quest_055a1.spr \image\item\other\quest_055a0.spr "Cßi dïng ®Ó xuÊt s, chuét ph¶i sö dông" ThÇn bÝ \script\item\chushidaoju.lua 2 1
tói HËu Sinh Kh¶ óy 2 1 591 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr VËt phÈm s phô chuÈn bÞ cho ®Ö tö míi nhËp m«n. Chuét ph¶i ®Ó më ThÇn bÝ \script\item\houshengkeweibao.lua 2 1
TiÒn Tr×nh Tù CÈm Bµo 2 1 592 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "VËt phÈm s phô chuÈn bÞ cho ®Ö tö ®¹t cÊp 45, cã bèn tõ \'TiÒn ®å nh nhung\'. Chuét ph¶i ®Ó më" ThÇn bÝ \script\item\qianchengsijinbao.lua 2 1
Tói ¢n S khã quªn 2 1 593 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "Tói nhËn ®îc khi xuÊt s, lÔ vËt s phô tÆng. Chuét ph¶i ®Ó më" ThÇn bÝ \script\item\shiennanwangbao.lua 2 1
Tèng Nguyªn Th«ng B¶o 2 1 594 0 0 9999 \image\item\other\»éÇì»õ±Òa1.spr \image\item\other\»éÇì»õ±Òa0.spr "§ång tiÒn ®îc ®óc khi Tèng Th¸i Qu©n ®¨ng c¬, cùc kú quý hiÕm. HiÖn chØ dïng cho mét vµi n¬i quan phñ triÒu ®×nh" ThÇn bÝ 0 1
R¬ng B¸u Tèng Nguyªn 2 1 595 1 0 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr R¬ng cã Tèng Nguyªn Th«ng B¶o.<enter><color=Gold> (Sö dông nhËn 10 Tèng Nguyªn Th«ng B¶o) ThÇn bÝ \script\item\songyuanbaoxiang.lua 0 1
R¬ng B¸u §¹i Tèng Nguyªn 2 1 596 1 0 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr R¬ng lín cã Tèng Nguyªn Th«ng B¶o.<enter><color=Gold> (Sö dông nhËn 200 Tèng Nguyªn Th«ng B¶o) ThÇn bÝ \script\item\songyuanbaoxiang.lua 0 1
Tói S §å T×nh Th©m 2 1 597 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "VËt phÈm s phô chuÈn bÞ cho ®Ö tö ®¹t cÊp 60, cã bèn tõ \'S ®å t×nh th©m\'. Chuét ph¶i ®Ó më" ThÇn bÝ \script\item\shituqingshenbao.lua 2 1
Tói S §å Phï chØ 2 1 598 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Tói chøa S §å Phï ChØ.<enter><color=Gold> (Sö dông nhËn 10 S §å Phï ChØ) ThÇn bÝ \script\item\shitufuzhibao.lua 0 1
BiÖn Kinh phï th¹ch 2 1 901 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ t¹o BiÖn Kinh phï Sinh ho¹t 1 0 0
Thµnh §« phï th¹ch 2 1 902 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ t¹o Thµnh §« phï Sinh ho¹t 1 0 0
TuyÒn Ch©u phï th¹ch 2 1 903 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ t¹o TuyÒn Ch©u phï Sinh ho¹t 1 0 0
T¬ng D¬ng phï th¹ch 2 1 904 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ t¹o T¬ng D¬ng phï Sinh ho¹t 1 0 0
Phông Têng phï th¹ch 2 1 905 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ t¹o Phông Têng phï Sinh ho¹t 1 0 0
§¹i Lý phï th¹ch 2 1 906 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ t¹o §¹i Lý phï Sinh ho¹t 1 0 0
D¬ng Ch©u phï th¹ch 2 1 907 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ t¹o D¬ng Ch©u phï Sinh ho¹t 1 0 0
Vâ §ang phï th¹ch 2 1 908 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ Vâ §ang Håi phï Sinh ho¹t 1 0 0
C¸i Bang phï th¹ch 2 1 909 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ C¸i Bang Håi phï Sinh ho¹t 1 0 0
ThiÕu L©m phï th¹ch 2 1 910 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ ThiÕu L©m Håi phï Sinh ho¹t 1 0 0
Nga My phï th¹ch 2 1 911 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ Nga My Håi phï Sinh ho¹t 1 0 0
Tô linh phï chØ 2 1 912 0 9 999 \image\item\cloth\tool_010a1.spr \image\item\cloth\tool_010a0.spr Lo¹i giÊy cao cÊp dïng ®Ó chÕ phï Sinh ho¹t 1
§êng M«n phï th¹ch 2 1 913 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ §êng M«n Håi phï Sinh ho¹t 1 0 0
Ngò §éc phï th¹ch 2 1 914 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ Ngò §éc Håi phï Sinh ho¹t 1 0 0
Thiªn Ba D¬ng Phñ phï th¹ch 2 1 915 0 3 999 \image\item\cloth\fushi_001a1.spr \image\item\other\fushi_001a0.spr Nguyªn liÖu cÇn thiÕt ®Ó chÕ D¬ng M«n Håi phï Sinh ho¹t 1 0 0
DÞch C©n Kinh-thîng 2 1 916 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m Tôc Gia MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
DÞch C©n Kinh-trung 2 1 917 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m Tôc Gia MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
DÞch C©n Kinh-h¹ 2 1 918 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m Tôc Gia MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
Nh Lai ThÇn Chëng-thîng 2 1 919 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m Vâ T¨ng MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
Nh Lai ThÇn Chëng-trung 2 1 920 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m Vâ T¨ng MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
Nh Lai ThÇn Chëng-h¹ 2 1 921 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m Vâ T¨ng MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
TÈy Tñy Kinh-thîng 2 1 922 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m ThiÒn T¨ng MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
TÈy Tñy Kinh-trung 2 1 923 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m ThiÒn T¨ng MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
TÈy Tñy Kinh-h¹ 2 1 924 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr ThiÕu L©m ThiÒn T¨ng MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
HÊp Tinh TrËn-thîng 2 1 925 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr §êng M«n MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
HÊp Tinh TrËn-trung 2 1 926 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr §êng M«n MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
HÊp Tinh TrËn-h¹ 2 1 927 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr §êng M«n MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
V¹n Tíng ThÇn C«ng-thîng 2 1 928 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Nga My PhËt Gia MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
V¹n Tíng ThÇn C«ng-trung 2 1 929 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Nga My PhËt Gia MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
V¹n Tíng ThÇn C«ng-h¹ 2 1 930 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Nga My PhËt Gia MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
Thiªn ¢m TrÊn Hån Khóc-thîng 2 1 931 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Nga My Tôc Gia MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
Thiªn ¢m TrÊn Hån Khóc-trung 2 1 932 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Nga My Tôc Gia MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
Thiªn ¢m TrÊn Hån Khóc-h¹ 2 1 933 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Nga My Tôc Gia MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
Gi¸ng Long ThËp B¸t Chëng-thîng 2 1 934 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr C¸i Bang TÜnh y MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
Gi¸ng Long ThËp B¸t Chëng-trung 2 1 935 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr C¸i Bang TÜnh y MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
Gi¸ng Long ThËp B¸t Chëng-h¹ 2 1 936 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr C¸i Bang TÜnh y MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
§¶ CÈu C«n TrËn-thîng 2 1 937 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr C¸i Bang ¤ Y MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
§¶ CÈu C«n TrËn-trung 2 1 938 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr C¸i Bang ¤ Y MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
§¶ CÈu C«n TrËn-h¹ 2 1 939 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr C¸i Bang ¤ Y MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
V« Thîng Th¸i Cùc KiÕm-thîng 2 1 940 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Vâ §ang §¹o Gia MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
V« Thîng Th¸i Cùc KiÕm-trung 2 1 941 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Vâ §ang §¹o Gia MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
V« Thîng Th¸i Cùc KiÕm-h¹ 2 1 942 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Vâ §ang §¹o Gia MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
Th¸i Cùc ThÇn C«ng-thîng 2 1 943 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Vâ §ang Tôc Gia MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
Th¸i Cùc ThÇn C«ng-trung 2 1 944 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Vâ §ang Tôc Gia MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
Th¸i Cùc ThÇn C«ng-h¹ 2 1 945 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Vâ §ang Tôc Gia MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
Liªn Hoµn Toµn Long Th¬ng-thîng 2 1 946 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr D¬ng M«n Th¬ng Kþ MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
Liªn Hoµn Toµn Long Th¬ng-trung 2 1 947 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr D¬ng M«n Th¬ng Kþ MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
Liªn Hoµn Toµn Long Th¬ng-h¹ 2 1 948 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr D¬ng M«n Th¬ng Kþ MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
B¸ V¬ng Têng Phông TiÔn-thîng 2 1 949 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr D¬ng M«n Cung Kþ MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
B¸ V¬ng Têng Phông TiÔn-trung 2 1 950 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr D¬ng M«n Cung Kþ MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
B¸ V¬ng Têng Phông TiÔn-h¹ 2 1 951 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr D¬ng M«n Cung Kþ MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
V« ¶nh Ma Cæ-thîng 2 1 952 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Ngò §éc Cæ S MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
V« ¶nh Ma Cæ-trung 2 1 953 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Ngò §éc Cæ S MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
V« ¶nh Ma Cæ-h¹ 2 1 954 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Ngò §éc Cæ S MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
V« Thiªn Ma C«ng-thîng 2 1 955 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Ngò §éc Tµ HiÖp MËt tÞch trÊn ph¸i_thîng. ThÇn bÝ 1 0 0
V« Thiªn Ma C«ng-trung 2 1 956 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Ngò §éc Tµ HiÖp MËt tÞch trÊn ph¸i_trung. ThÇn bÝ 1 0 0
V« Thiªn Ma C«ng-h¹ 2 1 957 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Ngò §éc Tµ HiÖp MËt tÞch trÊn ph¸i_h¹. ThÇn bÝ 1 0 0
Tói tïy th©n cña Thanh Th 2 1 958 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr LÔ vËt cña Thanh Th dµnh cho ngêi m¹nh nhÊt trong ®ît thÝ luyÖn. ThÇn bÝ \script\task\faction_boss\wudang_baoguo.lua 1 0 0
Tói tïy th©n cña HuyÒn Ch©n 2 1 959 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr LÔ vËt cña HuyÒn Ch©n dµnh cho ngêi m¹nh nhÊt trong ®ît thÝ luyÖn. ThÇn bÝ \script\task\faction_boss\shaolin_baoguo.lua 1 0 0
Tói tïy th©n cña D¬ng Diªn §øc 2 1 960 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr LÔ vËt cña D¬ng Diªn §øc dµnh cho ngêi m¹nh nhÊt trong ®ît thÝ luyÖn. ThÇn bÝ \script\task\faction_boss\yangmen_baoguo.lua 1 0 0
Tói tïy th©n cña §êng Hû 2 1 961 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr LÔ vËt cña §êng Hû dµnh cho ngêi m¹nh nhÊt trong ®ît thÝ luyÖn. ThÇn bÝ \script\task\faction_boss\tangmen_baoguo.lua 1 0 0
Tói tïy th©n cña Hoµng ChÝnh NhÊt 2 1 962 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr LÔ vËt cña Hoµng ChÝnh NhÊt dµnh cho ngêi m¹nh nhÊt trong ®ît thÝ luyÖn. ThÇn bÝ \script\task\faction_boss\gaibang_baoguo.lua 1 0 0
Tói tïy th©n cña Cæ MÆc 2 1 963 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr LÔ vËt cña Cæ MÆc dµnh cho ngêi m¹nh nhÊt trong ®ît thÝ luyÖn. ThÇn bÝ \script\task\faction_boss\wudu_baoguo.lua 1 0 0
Tói tïy th©n cña HuÖ Minh 2 1 964 10 1 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr LÔ vËt cña HuÖ Minh dµnh cho ngêi m¹nh nhÊt trong ®ît thÝ luyÖn. ThÇn bÝ \script\task\faction_boss\emei_baoguo.lua 1 0 0
Tinh luyÖn B¨ng Th¹ch 2 1 533 1 1 1 \image\item\other\¾«Á¶½ðϬa1.spr \image\item\other\¾«Á¶½ðϬa0.spr Cã thÓ phôc håi nguyªn tr¹ng vò khÝ ®· h h¹i.<enter><color=Gold>(®Õn gÆp Thî rÌn Lu phôc håi trang bÞ cã ®é bÒn b»ng 0) ThÇn bÝ 1 0 1
B¸nh Ýt níng 2 1 965 1 1 999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr Gióp t¨ng ®«i n¨ng lùc tÊn c«ng vµ tèc ®é di chuyÓn trong 1 giê. ThÇn bÝ \script\online\dragonboat06\item\cszz_item.lua 1 2 1
LÔ bao b¸nh Ýt 2 1 966 1 1 999 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr LÔ bao ®Æc chÕ ®Ó mõng tÕt §oan Ngä ThÇn bÝ \script\online\dragonboat06\item\zzlibao_item.lua 1 0 1
T©m ®¾c giang hå 2 1 967 1 0 999 \image\item\other\coll_024a1.spr \image\item\other\coll_024a0.spr "§óc kÕt kinh nghiÖm cña c¸c bËc tiÒn bèi, tÆng cho c¸c thanh niªn nç lùc thi ®Êu thuyÒn Rång." §· khãa \script\online\dragonboat06\item\diary_item.lua 1 2 1
Bµn Long bÝch 2 1 1000 1 350000 1 \image\item\other\ÅÍÁúèµa1.spr \image\item\other\ÅÍÁúèµa0.spr Trªn cã kh¾c hoa v¨n h×nh Rång.<enter><color=Gold>(nhÊp chuét ph¶i ®Ó ®æi 35 tiÒn Vµng) ThÇn bÝ \script\item\item_billing\panlongbi.lua 1 0 1
Hßa ThÞ BÝch 2 1 1001 1 20000000 1 \image\item\other\ºÍÊÏèµa1.spr \image\item\other\ºÍÊÏèµa0.spr "Héi tô tinh hoa ®¾t trêi, gi¸ trÞ v« song <enter><color=Gold>(nhÊp chuét ph¶i ®Ó ®æi 2000 vµng) " ThÇn bÝ \script\item\item_billing\heshibi.lua 1 0 1
Long HuyÕt hoµn 2 1 1002 1 0 1 \image\item\other\ÁúѪÍèa1.spr \image\item\other\ÁúѪÍèa0.spr <enter><color=Gold>(Ngêi díi cÊp 73 trùc tiÕp t¨ng ®Õn 73 ®ång thêi nhËn ®îc 20 triÖu ®iÓm kinh nghiÖm) ThÇn bÝ \script\item\item_billing\longxuewan.lua 1 0 1
Kú L©n hoµn 2 1 1003 1 0 1 \image\item\other\÷è÷ëÍèa1.spr \image\item\other\÷è÷ëÍèa0.spr Uèng vµo nh kú l©n gi¸ng thÕ<enter><color=Gold>(CÊp 31 trë lªn ®iÓm danh väng thÊp h¬n 3000 trùc tiÕp t¨ng ®Õn 3000) ThÇn bÝ \script\item\item_billing\qilinwan.lua 1 0 1
Phông HuyÕt hoµn 2 1 1004 1 0 1 \image\item\other\·ïѪÍèa1.spr \image\item\other\·ïѪÍèa0.spr ChÕ tõ Phông hoµng tinh huyÕt. T¨ng 1 ®iÓm s m«n<enter><color=Gold>(Trªn cÊp 72 t¨ng 4000 ®iÓm cèng hiÕn s m«n) ThÇn bÝ \script\item\item_billing\fengxuewan.lua 1 0 1
ChiÕn ThÇn hoµn 2 1 1005 1 0 1 \image\item\other\Õ½ÉñÍèa1.spr \image\item\other\Õ½ÉñÍèa0.spr <enter><color=Gold>(Ngêi ch¬i cã qu©n c«ng cha ®¹t ®Õn chøc §« thèng cã thÓ trùc tiÕp th¨ng ®Õn §« thèng) ThÇn bÝ \script\item\item_billing\zhanshenwan.lua 1 0 1
Cöu Thiªn V« Cùc §¬n 2 1 1006 1 0 1 \image\item\other\¾ÅÌìÎÞ¼«µ¤a1.spr \image\item\other\¾ÅÌìÎÞ¼«µ¤a0.spr "ThÇn Dîc, ®¹t ®îc vâ häc tuyÖt thÕ trong nh¸y m¾t. ( Sau khi sö dông sÏ trùc tiÕp th¨ng ®Õn cÊp 73, nhËn ®îc 3000 ®iÓm danh väng, 4000 ®iÓm cèng hiÕn s m«n vµ 50000 ®iÓm qu©n c«ng)." ThÇn bÝ \script\item\item_billing\jiutianwujidan.lua 1 0 1
§¹i B¹ch C©u hoµn 2 1 1007 1 0 1 \image\item\other\´ó°×¾ÔÍèa1.spr \image\item\other\´ó°×¾ÔÍèa0.spr "ñy th¸c rêi m¹ng<enter><color=Gold>(ñy th¸c 8 giê, hiÖu qu¶ gÊp 1.5 B¹ch C©u Hoµn)" ThÇn bÝ \script\item\baiju.lua 1 0 1
B¹ch C©u Tiªn ®¬n 2 1 1008 1 0 1 \image\item\other\°×¾ÔÏɵ¤a1.spr \image\item\other\°×¾ÔÏɵ¤a0.spr "TËp hîp tinh hoa khi chÕ t¹o B¹ch C©u Hoµn.<enter><color=Gold>(ñy th¸c rêi m¹ng 8 giê, hiÖu qu¶ gÊp 2 lÇn B¹ch C©u Hoµn)" ThÇn bÝ \script\item\baiju.lua 1 0 1
Thiªn Th¹ch Tinh Th¹ch 2 1 1009 0 0 999 \image\item\other\ÔÉÌú¾«Ê¯a1.spr \image\item\other\ÔÉÌú¾«Ê¯a0.spr "C«ng Th©u Ban dïng liÖt háa luyÖn thµnh tinh th¹ch, nguyªn liÖu ®Ó ®óc thÇn khÝ." ThÇn bÝ 1 0 1
C¬ quan nh©n 2 1 1011 1 0 1 \image\item\other\secr_026a1.spr \image\item\other\secr_026a0.spr "Méc nh©n c¬ quan, t¬ng truyÒn do hËu nh©n cña Gia C¸t ThÞ b¶o qu¶n, cã thÓ thay con ngêi chÕ t¹o vËt phÈm.<enter><color=Gold>(Më chøc n¨ng chÕ t¹o sè lîng lín, kÐo dµi 1 giê)" ThÇn bÝ \script\item\item_billing\jiguanren.lua 1 0 1
Bång Lai Tiªn Thñy 2 1 1012 1 0 1 \image\item\other\ÅîÀ³ÏÉË®a1.spr \image\item\other\ÅîÀ³ÏÉË®a0.spr Dîc thñy ®Õn tõ Bång Lai tiªn ®¶o.<enter><color=Gold>§¸nh qu¸i nh©n 1.5 kinh nghiÖm trong 2 giê ThÇn bÝ \script\item\xiancao.lua 1 0 1
Bång Lai Tiªn §¬n 2 1 1013 1 0 1 \image\item\other\ÅîÀ³Ïɵ¤a1.spr \image\item\other\ÅîÀ³Ïɵ¤a0.spr §¬n dîc ®Õn tõ Bång Lai tiªn ®¶o.<enter><color=Gold> §¸nh qu¸i nh©n 3 kinh nghiÖm trong 2 giê ThÇn bÝ \script\item\xiancao.lua 1 0 1
Lôc L©m Lang Yªn 2 1 1014 1 0 1 \image\item\other\quest_063a1.spr \image\item\other\quest_063a0.spr Khãi hiÖu ®Ó truyÒn tin cña Lôc L©m B¾c khi gÆp ®¹i sù.<enter><color=Gold>(Cã thÓ goi Lôc L©m B¾c Minh Chñ ë ngoµi rõng) ThÇn bÝ \script\item\item_billing\jueshigaoshou.lua 1 0 1
Thñy Hoµng BÝ ChiÕu 2 1 1047 1 0 1 \image\item\other\quest_062a1.spr \image\item\other\quest_062a0.spr MËt chiÕu cña TÇn Thñy Hoµng göi cho hé vÖ Doanh Thiªn.<enter><color=Gold>(Cã thÓ gäi Th¬ng thÇn Doanh Thiªn ë ngoµi rõng) ThÇn bÝ \script\item\item_billing\jueshigaoshou.lua 1 0 1
Uyªn ¦¬ng Kim Ti B¹c 2 1 1048 1 0 1 \image\item\other\coll_131a1.spr \image\item\other\coll_131a0.spr TÝn vËt ®Þnh t×nh cña L·nh H¬ng L¨ng n¨m xa.<enter><color=Gold>(Cã thÓ gäi L·nh H¬ng L¨ng xuÊt hiÖn ngoµi rõng) ThÇn bÝ \script\item\item_billing\jueshigaoshou.lua 1 0 1
Vâ L©m bÝ lÖnh 2 1 1015 1 0 1 \image\item\other\ÃÅÅÉÃØÁîa1.spr \image\item\other\ÃÅÅÉÃØÁîa0.spr MËt lÖnh Vâ L©m Minh Chñ dïng ®Ó liªn l¹c cao thñ c¸c m«n ph¸i.<enter><color=Gold>(Cã thÓ gäi cao thñ c¸c m«n ph¸i xuÊt hiÖn ngoµi rõng) ThÇn bÝ \script\item\item_billing\wulinmiling.lua 1 0 1
S m«n lÖnh th 2 1 1016 1 0 1 \image\item\other\quest_033a1.spr \image\item\other\quest_033a0.spr <enter><color=Gold>Hoµn thµnh nhiÖm vô tuÇn hoµn vµ nhiÖm vô ®Æc biÖt h«m nay sÏ ®îc gÊp 2 ®é cèng hiÕn ThÇn bÝ \script\item\item_billing\shimenlingshu.lua 1 0 1
S m«n lÖnh kú 2 1 1017 1 0 1 \image\item\other\quest_010a1.spr \image\item\other\quest_010a0.spr <enter><color=Gold>Hoµn thµnh nhiÖm vô tuÇn hoµn vµ nhiÖm vô ®Æc biÖt h«m nay sÏ ®îc gÊp 3 lÇn ®é cèng hiÕn ThÇn bÝ \script\item\item_billing\shimenlingqi.lua 1 0 1
Phong lÖnh-cao cÊp 2 1 1018 1 0 1 \image\item\other\quest_008a1.spr \image\item\other\quest_008a0.spr "V¨n th Chëng m«n bæ nhiÖm ®Ö tö cao cÊp.<enter><color=Gold>(chøa danh hiÖu cao cÊp cña s m«n, n¨ng lùc chñ yÕu+20 duy tr× 1 th¸ng, cÇn 6000 ®é cèng hiÕn)" ThÇn bÝ \script\item\item_billing\chenghao\menpailei.lua 1 0 1
S m«n t×nh nguyÖn th 2 1 1019 1 0 1 \image\item\other\quest_027a1.spr \image\item\other\quest_027a0.spr T×nh nguyÖn th cña ngêi muèn cèng hiÕn nhiÒu h¬n cho s m«n.<enter><color=Gold>(Trong 24 giê tû lÖ tiÕp nhËn nhiÖm vô s m«n ngÉu nhiªn t¨ng gÊp ®«i) ThÇn bÝ \script\item\item_billing\shimenqingyuanshu.lua 1 0 1
MËt hµm s m«n 2 1 1020 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr S m«n göi ®Ö tö mét bøc mËt th <enter><color=Gold>(phèi hîp víi Tû vâ ®¹i héi bµi l·nh phÇn thëng t¹i Ch©n Tö §¬n) ThÇn bÝ 1 0 1
S m«n ®¹i sù hµm 2 1 1021 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Trùc tiÕp nhËn 1 nhiÖm vô ®¹i sù kiÖn, cÊp 50 trë lªn míi ®îc dïng" ThÇn bÝ \script\item\item_billing\shimendashihan.lua 1 0 1
Danh s¸ch truy n· 2 1 1022 1 0 1 \image\item\other\quest_009a1.spr \image\item\other\quest_009a0.spr "Danh s¸ch do quan phñ th«ng b¸o, dïng ®Ó truy n· c¸c s¸t thñ, sau khi sö dông sÏ nhËn ®îc 1 nhiÖm vô s¸t thñ. (Trªn cÊp 20 míi cã thÓ sö dông)" ThÇn bÝ \script\item\item_billing\tongjimingce.lua 1 0 1
Tinh ®iªu hoa c¬ng th¹ch 2 1 1023 1 0 1 \image\item\other\¾«µñ»¨¸Úʯa1.spr \image\item\other\¾«µñ»¨¸Úʯa0.spr "<enter><color=Gold>Tiªu hao 1 Sinh ThÇn Cang, t¨ng ®«i tû lÖ gäi Bé Phi Yªn" ThÇn bÝ \script\item\item_billing\jingdiaohuagangshi.lua 1 0 1
Ngù dông b¹ch ngäc th¹ch 2 1 1024 1 0 1 \image\item\other\ÓùÓð×Óñʯa1.spr \image\item\other\ÓùÓð×Óñʯa0.spr "<enter><color=Gold>Tiªu hao 10 Sinh ThÇn Cang, ch¾c ch¾n gäi ®îc Bé Phi Yªn" ThÇn bÝ \script\item\item_billing\yuyongbaiyushi.lua 1 0 1
Huy hoµng b¸ v¬ng lÖnh 2 1 1025 1 0 1 \image\item\other\»Ô»Í°ÔÍõÁîa1.spr \image\item\other\»Ô»Í°ÔÍõÁîa0.spr LÖnh bµi §¹i hiÖp dïng ®Ó hiÖu lÖnh giang hå.<enter><color=Gold>(chØ ®Þnh h¹ng môc cña ®ªm huy hoµng) ThÇn bÝ \script\item\item_billing\huihuangbawangling.lua 1 0 1
Qu©n dông-thu thËp th 2 1 1028 1 0 1 \image\item\other\¾üÓÃÊÕ¼¯Êéa1.spr \image\item\other\¾üÓÃÊÕ¼¯Êéa0.spr <enter><color=Gold>Tû lÖ nguyªn liÖu qu©n dông nhËn ®îc t¨ng gÊp 3 ThÇn bÝ \script\item\item_billing\junyongshu.lua 1 0 1
Qu©n dông-Thèng trï th 2 1 1029 1 0 1 \image\item\other\¾üÓÃͳ³ïÊéa1.spr \image\item\other\¾üÓÃͳ³ïÊéa0.spr <enter><color=Gold>Tû lÖ nguyªn liÖu qu©n dông nhËn ®îc t¨ng gÊp 5 lÇn ThÇn bÝ \script\item\item_billing\junyongshu.lua 1 0 1
Qu©n dông ñy nhiÖm th 2 1 1030 1 0 1 \image\item\other\¾üÓÃίÈÎÊéa1.spr \image\item\other\¾üÓÃίÈÎÊéa0.spr <enter><color=Gold>§iÓm tÝch lòy qu©n dông hiÖn t¹i sÏ ®îc gi÷ l¹i ®Õn ho¹t ®éng lÇn sau ThÇn bÝ \script\item\item_billing\junyongweirenshu.lua 1 0 1
Thiªn H¬ng CÈm Tôc-tói nhá 2 1 1031 1 0 1 \image\item\other\С´üÌìÏãÔƽõÐøa1.spr \image\item\other\С´üÌìÏãÔƽõÐøa0.spr Thiªn H¬ng CÈm Tôc_tói nhá.<enter><color=Gold>(chøa 10 b×nh Thiªn H¬ng CÈm Tôc) ThÇn bÝ \script\item\item_billing\xiaodaitianxiang.lua 1 0 1
H¾c Ngäc §o¹n Tôc Cao-tói nhá 2 1 1032 1 0 1 \image\item\other\С´üºÚÓñ¶ÏÐø¸àa1.spr \image\item\other\С´üºÚÓñ¶ÏÐø¸àa0.spr H¾c Ngäc §o¹n Tôc Cao_tói nhá.<enter><color=Gold>(chøa 10 b×nh H¾c Ngäc §o¹n Tôc Cao) ThÇn bÝ \script\item\item_billing\xiaodaiheiyu.lua 1 0 1
NhÊt Nguyªn Phôc Khëi ®¬n-tói nhá 2 1 1033 1 0 1 \image\item\other\С´üÒ»Ôª¸´Ê¼µ¤a1.spr \image\item\other\С´üÒ»Ôª¸´Ê¼µ¤a0.spr NhÊt Nguyªn Phôc Khëi §¬n_tói nhá.<enter><color=Gold>(chøa 10 b×nh NhÊt Nguyªn Phôc Khëi §¬n) ThÇn bÝ \script\item\item_billing\xiaodaiyiyuan.lua 1 0 1
V¹n VËt Quy Nguyªn ®¬n-tói nhá 2 1 1034 1 0 1 \image\item\other\С´üÍòÎï¹éÔªµ¤a1.spr \image\item\other\С´üÍòÎï¹éÔªµ¤a0.spr V¹n VËt Quy Nguyªn §¬n_tói nhá.<enter><color=Gold>(chøa 10 b×nh V¹n VËt Quy Nguyªn §¬n) ThÇn bÝ \script\item\item_billing\xiaodaiwanwu.lua 1 0 1
Ngò Hoa Ngäc Lé hoµn-tói nhá 2 1 1035 1 0 1 \image\item\other\С´üÎ廨Óñ¶Íèa1.spr \image\item\other\С´üÎ廨Óñ¶Íèa0.spr Ngò Hoa Ngäc Lé Hoµn_tói nhá.<enter><color=Gold>(chøa 10 b×nh Ngò Hoa Ngäc Lé Hoµn) ThÇn bÝ \script\item\item_billing\xiaodaiwuhua.lua 1 0 1
Sinh Sinh Hãa T¸n-tói nhá 2 1 1036 1 0 1 \image\item\other\С´üÉúÉúÔ컯ɢa1.spr \image\item\other\С´üÉúÉúÔ컯ɢa0.spr Sinh Sinh Hãa T¸n_tói nhá.<enter><color=Gold>(chøa 10 b×nh Sinh Sinh Hãa T¸n) ThÇn bÝ \script\item\item_billing\xiaodaishengsheng.lua 1 0 1
Giang Hå ThiÕp HiÖp 2 1 1037 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu Giang Hå ThiÕp HiÖp, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+1, duy tr× 1 th¸ng, cÇn 1000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
Giang Hå H¶o H¸n 2 1 1038 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu Giang Hå H¶o H¸n, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+3, duy tr× 1 th¸ng, cÇn 2000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
Vâ L©m Hµo KiÖt 2 1 1039 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu Vâ L©m Hµo KiÖt, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+5, duy tr× 1 th¸ng, cÇn 3000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
Vâ L©m Cao Thñ 2 1 1040 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu Vâ L©m Cao Thñ, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+10, khi kh«ng ph¸t s¸ng+5, duy tr× 1 th¸ng, cÇn 5000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
NhÊt §¹i §¹i HiÖp 2 1 1041 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu NhÊt §¹i §¹i HiÖp, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+12, khi kh«ng ph¸t s¸ng+8, duy tr× 1 th¸ng, cÇn 7000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
C¸i ThÕ Anh Hµo 2 1 1042 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "Ghi l¹i c©u chuyÖn cña C¸i ThÕ Anh Hµo.<enter><color=Gold>(Giµnh ®îc danh hiÖu C¸i ThÕ Anh Hµo, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+15, khi kh«ng ph¸t s¸ng+10, duy tr× 1 th¸ng, cÇn 10000 ®iÓm danh väng)" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
NhÊt §¹i T«n S 2 1 1043 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu NhÊt §¹i T«n S, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+20, khi kh«ng ph¸t s¸ng+12, duy tr× 1 th¸ng, cÇn 15000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
Vâ L©m Th¸i §Èu 2 1 1044 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu Vâ L©m Th¸i §Èu, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+25, khi kh«ng ph¸t s¸ng+15, duy tr× 1 th¸ng, cÇn 24000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
TuyÖt ThÕ Cao Nh©n 2 1 1045 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu TuyÖt ThÕ Cao Nh©n, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+30, khi kh«ng ph¸t s¸ng+20, duy tr× 1 th¸ng, cÇn 35000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
Vâ L©m ThÇn tho¹i 2 1 1046 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "<enter><color=Gold>Giµnh ®îc danh hiÖu Vâ L©m ThÇn Tho¹i, khi ph¸t s¸ng tÊt c¶ n¨ng lùc+40, khi kh«ng ph¸t s¸ng+25, duy tr× 1 th¸ng, cÇn 50000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\chenghao\shengwanglei.lua 1 0 1
Lang Hoµn Phóc §Þa MËt H¹p 2 1 1010 1 0 1 \image\item\other\coll_024a1.spr \image\item\other\coll_024a0.spr Bªn trong cã chøa mËt tÞch cña Tiªu Dao ph¸i lÊy cña c¸c ®¹i m«n ph¸i. ThÇn bÝ \script\item\zhenpaibaoxia.lua 1 0 1
ThuyÒn Long Ch©u 2 1 1027 1 0 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr "Linh kiÖn t¸ch rêi, cã thÓ ghÐp l¹i thµnh thuyÒn Rång.<enter><color=Gold>(chøa mét thuyÒn Rång)" ThÇn bÝ \script\item\item_billing\longzhou.lua 1 0 1
Bao m¶nh Thiªn Th¹ch 2 1 1049 1 0 1 \image\item\other\´ò°üµÄÔÉÌúËéƬ(x).spr \image\item\other\´ò°üµÄÔÉÌúËéƬ(d).spr M¶nh Thiªn Th¹ch_lín<enter><color=Gold>(chøa 100 m¶nh Thiªn Th¹ch) ThÇn bÝ \script\item\item_billing\dabaoyuntiesuipian.lua 1 0 1
Bao Thiªn Th¹ch 2 1 1050 1 0 1 \image\item\other\´ò°üµÄÔÉÌú(x).spr \image\item\other\´ò°üµÄÔÉÌú(d).spr Thiªn Th¹ch_lín<enter><color=Gold>(chøa 100 Thiªn Th¹ch) ThÇn bÝ \script\item\item_billing\dabaoyuntie.lua 1 0 1
Bao tinh th¹ch Thiªn Th¹ch 2 1 1051 1 0 1 \image\item\other\´ò°üµÄÔÉÌú¾«Ê¯(x).spr \image\item\other\´ò°üµÄÔÉÌú¾«Ê¯(d).spr Tinh th¹ch Thiªn Th¹ch_lín<enter><color=Gold>(chøa 100 Thiªn Th¹ch) ThÇn bÝ \script\item\item_billing\dabaoyuntiejingshi.lua 1 0 1
Bång Lai Lé Thñy 2 1 1052 1 0 1 \image\item\other\ÅîÀ³ÏÉË®a1.spr \image\item\other\ÅîÀ³ÏÉË®a0.spr Lé thñy ®Õn tõ Bång Lai tiªn ®¶o.<enter><color=Gold> §¸nh qu¸i nh©n 1.2 kinh nghiÖm trong 2 giê ThÇn bÝ \script\item\xiancao.lua 1 0 1
Phong lÖnh-s¬ cÊp 2 1 1053 1 0 1 \image\item\other\quest_008a1.spr \image\item\other\quest_008a0.spr "V¨n th Chëng m«n bæ nhiÖm ®Ö tö s¬ cÊp.<enter><color=Gold>(chøa danh hiÖu s¬ cÊp cña s m«n, khi ph¸t s¸ng n¨ng lùc chñ yÕu+5, duy tr× 1 th¸ng, cÇn 80 ®é cèng hiÕn)" ThÇn bÝ \script\item\item_billing\chenghao\menpailei.lua 1 0 1
Phong lÖnh-trung cÊp 2 1 1054 1 0 1 \image\item\other\quest_008a1.spr \image\item\other\quest_008a0.spr "V¨n th Chëng m«n bæ nhiÖm ®Ö tö trung cÊp.<enter><color=Gold>(chøa danh hiÖu trung cÊp cña s m«n, khi ph¸t s¸ng n¨ng lùc chñ yÕu+10, duy tr× 1 th¸ng, cÇn 3000 ®é cèng hiÕn)" ThÇn bÝ \script\item\item_billing\chenghao\menpailei.lua 1 0 1
Phong lÖnh-tèi cao 2 1 1055 1 0 1 \image\item\other\quest_008a1.spr \image\item\other\quest_008a0.spr "V¨n th Chëng m«n bæ nhiÖm ®Ö tö ®Ých truyÒn.<enter><color=Gold>(chøa danh hiÖu ®Æc cÊp cña s m«n, khi ph¸t s¸ng n¨ng lùc chñ yÕu+30, duy tr× 1 th¸ng, cÇn 10000 ®é cèng hiÕn)" ThÇn bÝ \script\item\item_billing\chenghao\menpailei.lua 1 0 1
N«ng Tang phæ 2 1 1056 1 0 1 \image\item\other\coll_024a1.spr \image\item\other\coll_024a0.spr "Häc ®îc nhiÒu kü n¨ng sèng.<enter><color=Gold>(Häc 1 kü n¨ng chØ ®Þnh, ®ång thêi th¨ng ®Õn cÊp 70)" ThÇn bÝ \script\item\item_billing\shenghuojineng.lua 1 0 1
ThÊt CÊp Gi¸m §Þnh phï-bao nhá 2 1 1057 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Gi¸m ®Þnh phï_tói nhá.<enter><color=Gold>Chøa 10 tÊm Gi¸m ®Þnh phï cÊp 7) ThÇn bÝ \script\item\item_billing\xiaobaojianding.lua 1 0 1
ThÊt CÊp Gi¸m §Þnh phï-bao lín 2 1 1058 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr Gi¸m ®Þnh phï_tói lín.<enter><color=Gold>Chøa 100 tÊm Gi¸m ®Þnh phï cÊp 7) ThÇn bÝ \script\item\item_billing\dabaojianding.lua 1 0 1
B¶o r¬ng Tµng KiÕm ®Çu qu¸n 2 1 1059 1 0 1 \image\item\other\²Ø½£Í·±¦Ïä(x).spr \image\item\other\²Ø½£Í·±¦Ïä(d).spr <enter><color=Gold>Chøa 1 ®Çu kh«i cña tµng kiÕm cÊp 70 t¬ng øng víi hÖ ph¸i ngêi së h÷u ThÇn bÝ \script\item\item_billing\cangjiantao.lua 1 0 1
B¶o r¬ng Tµng KiÕm y gi¸p 2 1 1060 1 0 1 \image\item\other\²Ø½£Ò±¦Ïä(x).spr \image\item\other\²Ø½£Ò±¦Ïä(d).spr <enter><color=Gold>Chøa 1 bé y phôc cña tµng kiÕm cÊp 70 t¬ng øng víi hÖ ph¸i ngêi së h÷u ThÇn bÝ \script\item\item_billing\cangjiantao.lua 1 0 1
B¶o r¬ng Tµng KiÕm hoa khè 2 1 1061 1 0 1 \image\item\other\²Ø½£¿ã±¦Ïä(x).spr \image\item\other\²Ø½£¿ã±¦Ïä(d).spr <enter><color=Gold> Chøa 1 h¹ y cña Tµng kiÕm cÊp 70 t¬ng øng víi hÖ ph¸i ngêi së h÷u ThÇn bÝ \script\item\item_billing\cangjiantao.lua 1 0 1
B¶o r¬ng Tµng KiÕm trang søc 2 1 1062 1 0 1 \image\item\other\²Ø½£Ê×Êα¦Ïä(x).spr \image\item\other\²Ø½£Ê×Êα¦Ïä(d).spr <enter><color=Gold>Chøa 1 mãn trang søc cña Tµng kiÕm cÊp 70 t¬ng øng víi hÖ ph¸i ngêi së h÷u ThÇn bÝ \script\item\item_billing\cangjiantao.lua 1 0 1
B¶o r¬ng Tµng KiÕm vò khÝ 2 1 1063 1 0 1 \image\item\other\²Ø½£ÎäÆ÷±¦Ïä(x).spr \image\item\other\²Ø½£ÎäÆ÷±¦Ïä(d).spr <enter><color=Gold>Chøa 1 mãn vò khÝ cña tµng kiÕm cÊp 70 t¬ng øng víi hÖ ph¸i ngêi së h÷u ThÇn bÝ \script\item\item_billing\cangjiantao.lua 1 0 1
Lôc ThÇn hoµn 2 1 1064 1 0 1 \image\item\other\ÁùÉñÍèa1.spr \image\item\other\ÁùÉñÍèa0.spr "Linh dîc trong truyÒn thuyÕt.<enter><color=Gold> (ñy th¸c nhËn ®iÓm s m«n, cÇn ®¹t ®Õn 3000 ®iÓm danh väng)" ThÇn bÝ \script\item\item_billing\shengwangwan.lua 1 0 1
Cêng Lôc ThÇn hoµn 2 1 1065 1 0 1 \image\item\other\ǿЧÁùÉñÍèa1.spr \image\item\other\ǿЧÁùÉñÍèa0.spr "<enter><color=Gold>ñy th¸c nhËn ®iÓm danh väng, gÊp 2 lÇn Lôc ThÇn hoµn, cÇn ®¹t ®Õn 3000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\shengwangwan.lua 1 0 1
Lôc ThÇn Tiªn ®¬n 2 1 1066 1 0 1 \image\item\other\ÁùÉñÏɵ¤a1.spr \image\item\other\ÁùÉñÏɵ¤a0.spr "<enter><color=Gold>ñy th¸c nhËn ®iÓm danh väng, gÊp 3 lÇn Lôc ThÇn hoµn, cÇn ®¹t ®Õn 3000 ®iÓm danh väng" ThÇn bÝ \script\item\item_billing\shengwangwan.lua 1 0 1
§Þnh Hån Thiªn Th¹ch ThÇn Th¹ch 2 1 1067 1 0 999 \image\item\other\¶¨»êÔÉÌúÉñʯa1.spr \image\item\other\¶¨»êÔÉÌúÉñʯa0.spr "Tinh hoa Thiªn Th¹ch ®îc rÌn bëi M¹c Binh.<enter><color=Gold> (Sau khi n©ng cÊp vò khÝ ®Õn cÊp 7, nÕu thÊt b¹i sÏ trë vÒ cÊp 7, sö dông ë chç Thî rÌn Lu)" ThÇn bÝ \script\item\item_billing\dinghunyuntie.lua 1 0 1
Thiªn Th¹ch linh th¹ch 2 1 1068 1 0 999 \image\item\other\ÔÉÌúÁéʯa1.spr \image\item\other\ÔÉÌúÁéʯa0.spr "Cã thÓ t¨ng cÊp vò khÝ ®Õn mét giíi h¹n nhÊt ®Þnh.<enter><color=Gold> (Trùc tiÕp t¨ng ®Õn cÊp 7, ®Õn Thî rÌn Lu ®Ó thao t¸c)" ThÇn bÝ 1 0 1
Tñ nhá 2 1 1069 1 0 1 \image\item\other\СÒ¹ña1.spr \image\item\other\СÒ¹ña0.spr Chøa c¸c lo¹i trang phôc th«ng thêng.<enter><color=Gold> (Cã hiÖu lùc trong 1 tuÇn) §· khãa \script\item\item_billing\yigui.lua 1 2 1
Tñ ¸o 2 1 1070 1 0 1 \image\item\other\ºÀ»ªÒ¹ña1.spr \image\item\other\ºÀ»ªÒ¹ña0.spr Trong cã nhiÒu y phôc th«ng thêng.<enter><color=Gold> (Dïng trong 1 th¸ng) §· khãa \script\item\item_billing\yigui.lua 1 2 1
Phôc Ma Kim Cang ChiÕn ý §ao Phæ 2 1 1071 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ ThiÕu L©m Phôc Ma Kim Cang. §· khãa \script\item\lifeskill\weapon_fumojingangdao.lua 1 0 1
Phôc Ma Kim Cang ChiÕn ý C«n Phæ 2 1 1072 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ ThiÕu L©m Phôc Ma Kim Cang. §· khãa \script\item\lifeskill\weapon_fumojinganggun.lua 1 0 1
TruyÒn Kinh Ph¸p S Trîng Phæ 2 1 1073 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ ThiÕu L©m TruyÒn Kinh Ph¸p S. §· khãa \script\item\lifeskill\weapon_chuanjingfs.lua 1 0 1
Hé Ph¸p La H¸n §Êu KhÝ Thñ Phæ 2 1 1074 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ ThiÕu L©m Hé Ph¸p La H¸n. §· khãa \script\item\lifeskill\weapon_hufaluohan.lua 1 0 1
BÝ §éc Ch©m Phæ 2 1 1075 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ §êng M«n BÝ §éc ThÝch Kh¸ch. §· khãa \script\item\lifeskill\weapon_miducike.lua 1 0 1
Tö Tróc Sø Ph¸p V©n KiÕm Phæ 2 1 1076 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ Nga My Tö Tróc Sø §· khãa \script\item\lifeskill\weapon_zizhushi.lua 1 0 1
H¶i NguyÖt Sø Ph¸p ¢m CÇm Phæ 2 1 1077 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ Nga My H¶i NguyÖt Sø §· khãa \script\item\lifeskill\weapon_haiyueshi.lua 1 0 1
Tø H¶i HiÖp Hµo KhÝ Thñ Phæ 2 1 1078 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ C¸i Bang Tø H¶i HiÖp §· khãa \script\item\lifeskill\weapon_sihaixia.lua 1 0 1
B¸t §¹i §Ö Tö Tô NghÜa Bæng Phæ 2 1 1079 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ C¸i Bang B¸t §¹i §Ö Tö §· khãa \script\item\lifeskill\weapon_badaidizi.lua 1 0 1
V« Ng· §¹o Nh©n Ph¸p KiÕm Phæ 2 1 1080 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ Vâ §ang V« Ng· §¹o Nh©n §· khãa \script\item\lifeskill\weapon_wuwodaoren.lua 1 0 1
Nhµn V©n HiÖp §¹o ThÝch Phæ 2 1 1081 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ Vâ §ang Nhµn V©n HiÖp §¹o §· khãa \script\item\lifeskill\weapon_xianyunxiadao.lua 1 0 1
PhÊn Vâ Tíng Qu©n Th¬ng Phæ 2 1 1082 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ D¬ng M«n PhÊn Vâ Tíng Qu©n §· khãa \script\item\lifeskill\weapon_fenwujiangjun.lua 1 0 1
PhÊn Uy Tíng Qu©n Cung Phæ 2 1 1083 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ D¬ng M«n PhÊn Uy Tíng Qu©n §· khãa \script\item\lifeskill\weapon_fenweijiangjun.lua 1 0 1
H¾c V« Thêng M·nh §éc §ao Phæ 2 1 1084 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ Ngò §éc H¾c V« Thêng §· khãa \script\item\lifeskill\weapon_heiwuchang.lua 1 0 1
B¹ch V« Thêng Ngôy §éc Tr¶o Phæ 2 1 1085 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr C¸ch chÕ t¹o trang phôc vµ vò khÝ Ngò §éc B¹ch V« Thêng §· khãa \script\item\lifeskill\weapon_baiwuchang.lua 1 0 1
B¶n vÏ ®óc t¹o thÇn khÝ 2 1 1086 1 0 40 \image\item\other\Éñ±ø¶ÍͼËéƬa1.spr \image\item\other\Éñ±ø¶ÍͼËéƬa0.spr "T¸c phÈm t©m huyÕt cña M¹c Binh, ®©y lµ b¶n vÏ ®Ó rÌn luyÖn thÇn khÝ cña c¸c ®¹i m«n ph¸i n¨m xa, nhng hiÖn nay ®· bÞ r¸ch n¸t" ThÇn bÝ 1 0 1
MÆt n¹ S¸t Thñ §êng 2 1 1087 1 0 1 \image\item\other\ɱÊÖÌÃÃæ¾ßa1.spr \image\item\other\ɱÊÖÌÃÃæ¾ßa0.spr "MÆt n¹ do c¸c thî rÌn trong vâ l©m lµm ra, cã thÓ biÕn ngêi ®eo nã ngôy trang thµnh s¸t thñ cña S¸t thñ ®êng.<enter><color=Gold> (Vµo S¸t thñ ®êng, tÇng 2 Tróc Ty ®éng chç Nam nh©n thÇn bÝ sö dông)" ThÇn bÝ 1 0 1
M¶nh mËt tÞch thÊt l¹c 2 1 1088 1 0 999 \image\item\other\É¢ÂäµÄÃؼ®ËéƬa1.spr \image\item\other\É¢ÂäµÄÃؼ®ËéƬa0.spr "M¶nh giÊy ghi l¹i tuyÖt häc c¸c ®¹i m«n ph¸i S¸t Thñ ®êng thu thËp ®îc, nÕu thu thËp ®Çy ®ñ cã thÓ chØnh lý thµnh mét quyÓn bÝ kÝp" ThÇn bÝ \script\task\killer_hall\book_frag_item.lua 1 0 1
Tö cèt 2 1 1089 1 17 999 \image\item\other\coll_023a1.spr \image\item\other\coll_023a0.spr "M¶nh x¬ng vôn cña ®Çu l©u, Èn chøa søc m¹nh ghª gím" Thu thËp 1 0 0
C¶i ®á 2 1 1090 1 0 999 \image\item\other\ºìÂܲ·a1.spr \image\item\other\ºìÂܲ·a0.spr Cñ c¶i loµi thá thÝch ¨n. ThÇn bÝ 1 0 1
Cñ c¶i Vµng 2 1 1091 1 0 1 \image\item\other\½ðÂܲ·a1.spr \image\item\other\½ðÂܲ·a0.spr Cñ c¶i thÇn bÝ loµi thá thÝch ¨n.<enter><color=Gold> (Sö dông ë chç Thè TiÓu Nha) ThÇn bÝ 1 0 1
Bæ kh¶o chøng 2 1 1092 1 0 1 \image\item\other\²¹¿¼Ö¤a1.spr \image\item\other\²¹¿¼Ö¤a0.spr "Chøng th do Th viÖn §¹i Tèng ph¸t, cho thÝ sinh c¬ héi míi." ThÇn bÝ 1 0 1
V¨n CÈm H¹p 2 1 1100 1 0 1 \image\item\other\ÎÄ¿ý»¨½õºÐa1.spr \image\item\other\ÎÄ¿ý»¨½õºÐa0.spr Hép chøa trang phôc V¨n kh«i.<enter><color=Gold> (NhËn trang phôc V¨n Kh«i t¬ng øng thÓ h×nh) ThÇn bÝ \script\item\item_billing\wenkuihuajin.lua 1 0 1
Hép cñ c¶i nhá 2 1 1094 1 0 1 \image\item\other\Âܲ·Ð¡ÀñºÐa1.spr \image\item\other\Âܲ·Ð¡ÀñºÐa0.spr "<enter><color=Gold>Chøa 1 cñ c¶i, ®Õn chç Thè TiÓu Nha thi vÊn ®¸p" ThÇn bÝ \script\online\abluemoon\item\luoboxiaolihe.lua 1 0 1
Hép cñ c¶i lín 2 1 1095 1 0 1 \image\item\other\Âܲ·´óÀñºÐa1.spr \image\item\other\Âܲ·´óÀñºÐa0.spr "ChiÕc hép nhá trong cã nhiÒu cñ c¶i.<enter><color=Gold>Chøa 10 cñ c¶i, ®Õn chç TiÓu Thè Nha thi vÊn ®¸p" ThÇn bÝ \script\online\abluemoon\item\luobodalihe.lua 1 0 1
Tam Thanh hoµn 2 1 1097 1 0 1 \image\item\usable\ÐÐÆøÉ¢a1.spr \image\item\usable\ÐÐÆøÉ¢a0.spr "T¨ng ®iÓm cèng hiÕn s m«n<enter><color=Gold> (ñy th¸c nhËn ®iÓm s m«n, kh«ng thÓ vît qu¸ ®iÓm cÊp hiÖn t¹i)" ThÇn bÝ \script\item\item_billing\sanqingwan.lua 1 0 1
Cêng Tam Thanh hoµn 2 1 1098 1 0 1 \image\item\usable\ÎÞ³£É¢a1.spr \image\item\usable\ÎÞ³£É¢a0.spr "<enter><color=Gold>ñy th¸c t¨ng ®iÓm s m«n, gÊp 2 lÇn Tam Thanh hoµn, kh«ng thÓ vît qu¸ cÊp hiÖn t¹i" ThÇn bÝ \script\item\item_billing\sanqingwan.lua 1 0 1
Tam Thanh Tiªn ®¬n 2 1 1099 1 0 1 \image\item\usable\¾ÅתÐÜÉßÍèa1.spr \image\item\usable\¾ÅתÐÜÉßÍèa0.spr "<enter><color=Gold>ñy th¸c t¨ng ®iÓm cèng hiÕn, gÊp 3 lÇn Tam Thanh hoµn, kh«ng thÓ vît qu¸ cÊp hiÖn t¹i" ThÇn bÝ \script\item\item_billing\sanqingwan.lua 1 0 1
Thùc chiÕn t©m ®¾c 2 1 1101 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Tham gia §¹i héi Vâ L©m nhËn ®îc Thùc ChiÕn kinh nghiÖm tËp (nhÊp chuét ph¶i sö dông). §· khãa \script\item\shizhanxinde.lua 1 2 1
Quan chiÕn t©m ®¾c 2 1 1102 1 1 999 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Xem l«i ®µi tû vâ nhËn ®îc kinh nghiÖm quan chiÕn. §· khãa \script\item\xinde.lua 1 2 1
Thùc chiÕn kinh nghiÖm tËp 2 1 1103 1 1 1 \image\item\other\coll_105a1.spr \image\item\other\coll_105a0.spr Kinh nghiÖm thùc chiÕn giang hå<enter><color=Gold>Sö dông ë chç Chëng m«n hoÆc sø gi¶ Vâ L©m ThÇn bÝ \script\item\xinde.lua 1 0 1
Siªu B¹ch Kim LÔ Bao 2 1 1104 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "ChØ cã tµi kho¶n b¹ch kim míi cã thÓ nhËn lÔ bao, bªn trong cã nhiÒu vËt quý hiÕm." §· khãa \script\item\item_billing\baijinlibao.lua 1 2 1
T¸i chiÕn giang hå-§¹i lÔ bao 2 1 1105 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "T¸i chiÕn giang hå ®¹i lÔ bao, gióp b¹n t¸i xuÊt giang hå" §· khãa \script\item\item_billing\zaizhandalibao.lua 1 2 1
T¸i chiÕn giang hå-Hµo hoa lÔ bao 2 1 1106 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "Tung hoµnh giang hå hµo hoa lÔ bao, gióp b¹n tung hoµnh giang hå" §· khãa \script\item\item_billing\zaizhanhaohualibao.lua 1 2 1
T¸i chiÕn giang hå-ChÝ t«n lÔ bao 2 1 1107 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "T¸i chiÕn giang hå chÝ t«n lÔ bao, gióp b¹n xng b¸ vâ l©m" §· khãa \script\item\item_billing\zaizhanzhizunlibao.lua 1 2 1
1 ®ång 2 1 1108 1 0 1 \image\item\other\Â齫ÅÆa1.spr \image\item\other\Â齫ÅÆa0.spr Con bµi trong m¹t chîc. <enter><color=Gold>(Cã thÓ chØ ®Þnh bÊt kú 1 con ®ång) §· khãa \script\online\labor_2007\mah_jong_goods_use.lua 0 1
1 ®iÒu 2 1 1109 1 0 1 \image\item\other\Â齫ÅÆa1.spr \image\item\other\Â齫ÅÆa0.spr Con bµi trong m¹t chîc. <enter><color=Gold>(Cã thÓ chØ ®Þnh bÊt kú 1 con ®iÒu) §· khãa \script\online\labor_2007\mah_jong_goods_use.lua 0 1
1 v¹n 2 1 1110 1 0 1 \image\item\other\Â齫ÅÆa1.spr \image\item\other\Â齫ÅÆa0.spr Con bµi trong m¹t chîc. <enter><color=Gold>(Cã thÓ chØ ®Þnh bÊt kú 1 con v¹n) §· khãa \script\online\labor_2007\mah_jong_goods_use.lua 0 1
1 tù 2 1 1111 1 0 1 \image\item\other\Â齫ÅÆa1.spr \image\item\other\Â齫ÅÆa0.spr "Con bµi trong m¹t chîc. <enter><color=Gold>(Cã thÓ chØ ®Þnh bÊt kú 1 con ph¸t b¹ch trong ®«ng, t©y, nam, b¾c)" §· khãa \script\online\labor_2007\mah_jong_goods_use.lua 0 1
§æ hiÖp ngò thëng bao 2 1 1112 1 0 999 \image\item\other\holi_008a1.spr \image\item\other\holi_008a0.spr "Muèn thµnh ®æ hiÖp ph¶i xem vËn may, chóc may m¾n!" §· khãa \script\online\labor_2007\mah_jong_goods_use.lua 2 1
§¹i §Þnh Hån 2 1 1113 1 0 999 \image\item\other\Ç¿»¯¾«Ê¯ 36.spr \image\item\other\Ç¿»¯¾«Ê¯.spr "Tinh Hoa Thiªn Th¹ch ®îc M¹c Gia §¹i S tinh luyÖn. <enter><color=Gold> (Vò khÝ cêng hãa ®Õn cÊp 10 khi thÊt b¹i sÏ trë vÒ cÊp 10, ®îc sö dông t¹i thî rÌn Lu)" ThÇn bÝ 1 0 1
Qu©n C«ng Ch¬ng 2 1 9999 1 0 999 \image\item\other\¾ü¹¦ÕÂ(x).spr \image\item\other\¾ü¹¦ÕÂ(d).spr T¨ng gÊp 2 ®iÓm c«ng tr¹ng vµ mét sè ®iÓm kinh nghiÖm nhÊt ®Þnh khi nhËn thëng<color=Gold>(ChØ dïng ®îc 1 lÇn) ThÇn bÝ \script\item\item_jungongzhang.lua 1 0 1
Qu©n C«ng §¹i 2 1 9998 1 0 999 \image\item\other\´ó¾ü¹¦ÕÂ(x).spr \image\item\other\´ó¾ü¹¦ÕÂ(d).spr T¨ng gÊp 5 ®iÓm c«ng tr¹ng vµ mét sè ®iÓm kinh nghiÖm nhÊt ®Þnh khi nhËn thëng<color=Gold>(ChØ dïng ®îc 1 lÇn) ThÇn bÝ \script\item\item_jungongzhang.lua 1 0 1
Qu©n C«ng Huy Hoµng 2 1 9977 1 0 999 \image\item\other\»Ô»Í¾ü¹¦ÕÂ(x).spr \image\item\other\»Ô»Í¾ü¹¦ÕÂ(d).spr T¨ng gÊp 10 ®iÓm c«ng tr¹ng vµ mét sè ®iÓm kinh nghiÖm nhÊt ®Þnh khi nhËn thëng<color=Gold>(ChØ dïng ®îc 1 lÇn) ThÇn bÝ \script\item\item_jungongzhang.lua 1 0 1
Qu©n C«ng bµi 2 1 9997 1 0 999 \image\item\other\¾ü¼¨ÅÆ(x).spr \image\item\other\¾ü¼¨ÅÆ(d).spr Sau khi sö dông trùc tiÕp nhËn ®îc 1000 ®iÓm tÝch lòy chiÕn trêng. ThÇn bÝ \script\item\item_billing\junjipai.lua 1 0 1
Gi¸n §iÖp trang 2 1 9995 1 0 1 \image\item\other\quest_004a1.spr \image\item\other\quest_004a0.spr Dïng ®Ó tham gia chiÕn trêng phe kh¸c<color=Gold> (sö dông vËt phÈm nµy bÊt kÓ tham gia phe nµo còng ®Òu nhËn ®îc phÇn thëng ) ThÇn bÝ \script\item\item_billing\jiandiezhuangshu.lua 1 0 1
H¾c Ngäc §o¹n Tôc CaochiÕn trêng 2 1 9994 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr 1 bao H¾c Ngäc §o¹n Tôc Cao (chiÕn trêng). <enter><color=Gold>(Chøa 100 H¾c Ngäc §o¹n Tôc Cao) ThÇn bÝ \script\item\item_billing\zhanchangyaobao.lua 1 0 1
Sinh Sinh Hãa T¸n (chiÕn trêng) 2 1 9993 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr 1 bao Sinh Sinh Hãa T¸n (chiÕn trêng). <enter><color=Gold>(Chøa 100 Sinh Sinh Hãa T¸n) ThÇn bÝ \script\item\item_billing\zhanchangyaobao.lua 1 0 1
V¹n VËt Quy Nguyªn §¬n_ct 2 1 9992 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr 1 bao V¹n VËt Quy Nguyªn §¬n (chiÕn trêng). <enter><color=Gold>(Chøa 100 V¹n VËt Quy Nguyªn §¬n) ThÇn bÝ \script\item\item_billing\zhanchangyaobao.lua 1 0 1
Cöu ChuyÓn Håi Hån §¬n(c.truong) 2 1 9991 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr 1 bao Cöu ChuyÓn Hoµn Hån §¬n (chiÕn trêng). <enter><color=Gold>(Chøa 100 Cöu ChuyÓn Hoµn Hån §¬n) ThÇn bÝ \script\item\item_billing\zhanchangyaobao.lua 1 0 1
Phong thëng lÖnh_Tèng (HiÖu óy) 2 1 9990 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, sinh lùc tèi ®a t¨ng 5%, Èn h×nh t¨ng 3%. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Tèng HiÖu óy)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnh_Liªu (HiÖu óy) 2 1 9989 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, sinh lùc tèi ®a t¨ng 5%, Èn h×nh t¨ng 3%. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Liªu HiÖu óy)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnh_Tèng (§« Thèng) 2 1 9988 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, sinh lùc tèi ®a t¨ng 8%, Èn h×nh t¨ng 5%. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Tèng §« Thèng)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnh_Liªu (§« Thèng) 2 1 9987 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, sinh lùc tèi ®a t¨ng 8%, Èn h×nh t¨ng 5%. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Liªu §« Thèng)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnh_Tèng(Tiªn Phong) 2 1 9986 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, tÊt c¶ thuéc tÝnh t¨ng 20 ®iÓm, Èn h×nh t¨ng 12 ®iÓm. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Tèng Tiªn Phong)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnh_Liªu(Tiªn Phong) 2 1 9985 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, tÊt c¶ thuéc tÝnh t¨ng 20 ®iÓm, Èn h×nh t¨ng 12 ®iÓm. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Liªu Tiªn Phong)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnhTèng(TíngQu©n) 2 1 9984 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, néi, ngo¹i c«ng t¨ng 10%, Èn h×nh t¨ng 6%. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Tèng Tíng Qu©n)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnh_Liªu(T qu©n) 2 1 9983 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, néi, ngo¹i c«ng t¨ng 10%, Èn h×nh t¨ng 6%. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Liªu Tíng Qu©n)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnh_Tèng(NguyªnSo¸i 2 1 9982 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, tèc ®é xuÊt chiªu t¨ng 25%, Èn h×nh t¨ng 15%. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Tèng Nguyªn So¸i)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Phong thëng lÖnh_Liªu(NguyªnSo¸i) 2 1 9981 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Phong thëng lÖnh cña hoµng ®Õ, tèc ®é xuÊt chiªu t¨ng 25%, Èn h×nh t¨ng 15%. <enter><color=Gold>(HiÖu qu¶ 1 th¸ng, qu©n hµm yªu cÇu: Liªu Nguyªn So¸i)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei.lua 1 0 1
Ngù §Þch M·nh SÜ mËt lÖnh 2 1 9960 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "TÊt c¶ thuéc tÝnh t¨ng 40 ®iÓm, Nguyªn so¸i vÜnh c÷u sö dông trùc tiÕp, cã thÓ céng dån víi Phong thëng lÖnh vµ mËt lÖnh kh¸c<color=Gold> (Chuét ph¶i sö dông, hiÖu qu¶ 1 th¸ng, qu©n c«ng cÇn: 25 v¹n)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei2.lua 1 0 1
Ph¸ TrËn §èc Hé mËt lÖnh 2 1 9961 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "T¨ng néi ngo¹i c«ng 15% hoÆc s¸t th¬ng 100 ®iÓm, Nguyªn so¸i vÜnh c÷u sö dông trùc tiÕp, cã thÓ céng dån víi Phong thëng lÖnh vµ mËt lÖnh kh¸c<color=Gold> (Chuét ph¶i sö dông, hiÖu qu¶ 1 th¸ng, qu©n c«ng cÇn: 30 v¹n)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei2.lua 1 0 1
ThiÕt Cèt Long VÖ mËt lÖnh 2 1 9962 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "TÊt c¶ thuéc tÝnh t¨ng 60 ®iÓm, cã thÓ céng dån víi Phong thëng lÖnh vµ mËt lÖnh kh¸c.<color=Gold> (Chuét ph¶i sö dông, hiÖu qu¶ 1 th¸ng, qu©n c«ng cÇn: 40 v¹n)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei2.lua 1 0 1
TrÊn Qu©n Hæ Kþ mËt lÖnh 2 1 9963 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "T¨ng tû lÖ gi¶m thä th¬ng 25%, cã thÓ céng dån víi Phong thëng lÖnh vµ mËt lÖnh kh¸c.<color=Gold> (Chuét ph¶i sö dông, hiÖu qu¶ 1 th¸ng, qu©n c«ng cÇn: 45 v¹n)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei2.lua 1 0 1
V« Song Phi Tíng mËt lÖnh 2 1 9964 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "T¨ng sinh lùc tèi ®a 10000 ®iÓm, cã thÓ céng dån víi Phong thëng lÖnh vµ mËt lÖnh kh¸c.<color=Gold> (Chuét ph¶i sö dông, hiÖu qu¶ 1 th¸ng, qu©n c«ng cÇn: 50#ß)" ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei2.lua 1 0 1
TriÒu th¸nh thèng so¸i lÖnh 2 1 9965 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr "Gi¶m thä th¬ng 70%, cã thÓ trïng lÆp víi phong thëng lÖnh hoÆc c¸c mËt lÖnh kh¸c.<color=Gold> (nhÊp chuét ph¶i sö dông, cã hiÖu lùc mét th¸ng, cÇn: 60v¹n qu©n c«ng) " ThÇn bÝ \script\item\item_billing\chenghao\zhanchanglei2.lua 1 0 1
§Çu thµnh tÝn 2 1 9980 1 0 1 \image\item\other\Ͷ³ÏÐÅ(x).spr \image\item\other\Ͷ³ÏÐÅ(d).spr "Xãa bá tÊt c¶ c«ng tr¹ng hiÖn t¹i, nhiÒu nhÊt cã thÓ chuyÓn thµnh 15000 ®iÓm c«ng tr¹ng ®èi ph¬ng.<enter><color=gold> Sau khi sö dông, ®iÓm c«ng tr¹ng lµ 0 ( kh«ng thÓ sö dông hai c¸i chuyÓn 30000) " ThÇn bÝ \script\item\item_billing\touchen.lua 1 0 1
§Çu thµnh th 2 1 9979 1 0 1 \image\item\other\Ͷ³ÏÊé(x).spr \image\item\other\Ͷ³ÏÊé(d).spr "Xãa bá tÊt c¶ c«ng tr¹ng hiÖn t¹i, nhiÒu nhÊt cã thÓ chuyÓn thµnh 50000 ®iÓm c«ng tr¹ng ®èi ph¬ng. <enter><color=gold> sau khi sö dông, ®iÓm c«ng tr¹ng vÒ 0 (kh«ng thÓ sö dông hai c¸i chuyÓn thµnh 100000)" ThÇn bÝ \script\item\item_billing\touchen.lua 1 0 1
§Çu thµnh biÓu 2 1 9978 1 0 1 \image\item\other\Ͷ³Ï±í(x).spr \image\item\other\Ͷ³Ï±í(d).spr "Xãa bá tÊt c¶ c«ng tr¹ng hiÖn t¹i, nhiÒu nhÊt cã thÓ chuyÓn thµnh 120000 ®iÓm c«ng tr¹ng ®èi ph¬ng.<enter><color=gold> Sau khi sö dông ®iÓm c«ng tr¹ng vÒ 0 (kh«ng thÓ sö dông hai c¸i chuyÓn 240000) " ThÇn bÝ \script\item\item_billing\touchen.lua 1 0 1
ChØ nam ho¹t ®éng 1/5 2 1 1114 1 0 1 \image\item\other\coll_067a1.spr \image\item\other\coll_067a0.spr Ghi l¹i néi dung ho¹t ®éng 1/5. §· khãa \script\online\laborday08\item\2008_book.lua 0 0
§ång tèng 2 1 1118 0 1 9999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr "Thêi Xu©n Thu, dïng èng tróc dån g¹o níng chÝn, gäi lµ \'B¸nh èng\'." §· khãa 1 2 1
Bµnh Ýt Hµm Thñy 2 1 1119 0 1 9999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr "Cuèi §«ng H¸n, dïng l¸ c« gãi lóa nÕp thµnh h×nh vu«ng, chng lªn thµnh B¸nh Ýt kiÒm Qu¶ng §«ng." §· khãa 1 2 1
Ých TrÝ Tèng 2 1 1120 0 1 9999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr "Thêi TÊn, gãi b¸nh Ýt ngoµi g¹o ra cßn thªm Ých TrÝ Nh©n, nªn gäi lµ \'B¸nh Ých TrÝ\'." §· khãa 1 2 1
B¸nh Ýt §Ëu ®á 2 1 1121 0 1 9999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr "Thêi Nam B¾c TriÒu, trong b¸nh Ýt thªm h¹t dÎ, t¸o ®á, ®Ëu ®á dïng lµm quµ th¨m hái." §· khãa 1 2 1
b¸nh Ýt g¹o tr¾ng 2 1 1122 0 1 9999 \image\item\other\ôÕ×Ó_a1.spr \image\item\other\ôÕ×Ó_a0.spr NhÊp chuét ph¶i cã thÓ ®æi 'b¸nh Ýt g¹o th¬m' §· khãa \script\online\dragon_boat_07\zongzi_baimi.lua 1 2 1
B¸nh Ýt Ng·i h¬ng 2 1 1123 1 1 999 \image\item\other\¸ß¼¶ôÕ×Óa1.spr \image\item\other\¸ß¼¶ôÕ×Óa0.spr "Thêi Tèng, cã \'B¸nh Ýt Ng·i H¬ng\'. (Chuét ph¶i sö dông, nhËn ®îc kinh nghiÖm, mçi ngµy dïng 5 lÇn)" ThÇn bÝ \script\item\zong_zi_07.lua 1 0 1
b¸nh Ýt ch©n gµ 2 1 1124 1 1 999 \image\item\other\¸ß¼¶ôÕ×Óa1.spr \image\item\other\¸ß¼¶ôÕ×Óa0.spr "Thêi Thanh, xuÊt hiÖn \'B¸nh Ýt thÞ níng\'. (Chuét ph¶i sö dông, sinh lùc tèi ®a t¨ng 30%, duy tr× 10 phót)" §· khãa \script\item\zong_zi_07.lua 1 2 1
b¸nh Ýt B¸c B¶o 2 1 1125 1 1 999 \image\item\other\¸ß¼¶ôÕ×Óa1.spr \image\item\other\¸ß¼¶ôÕ×Óa0.spr "B¸nh Ýt B¸t Böu §µi Loan, mïi vÞ th¬m ngon. (Chuét ph¶i sö dông, tÊt c¶ n¨ng lùc t¨ng 60 ®iÓm, duy tr× 3 phót)" §· khãa \script\item\zong_zi_07.lua 1 2 1
b¸nh Ýt vui vÎ 2 1 1126 1 1 1 \image\item\other\¸ß¼¶ôÕ×Óa1.spr \image\item\other\¸ß¼¶ôÕ×Óa0.spr B¸nh Ýt vui vÎ trong truyÒn thuyÕt. (Dïng tÕ b¸i chç Di téc Së quèc) §· khãa 1 2 1
b¸nh Ýt may m¾n 2 1 1127 1 1 1 \image\item\other\¸ß¼¶ôÕ×Óa1.spr \image\item\other\¸ß¼¶ôÕ×Óa0.spr B¸nh Ýt may m¾n trong truyÒn thuyÕt. (Dïng tÕ b¸i chç Di téc Së quèc) §· khãa 1 2 1
b¸nh Ýt th¹ch anh 2 1 1128 1 1 1 \image\item\other\¸ß¼¶ôÕ×Óa1.spr \image\item\other\¸ß¼¶ôÕ×Óa0.spr "B¸nh Ýt thñy tinh, kh«ng gièng vËt phµm trÇn. (Dïng tÕ b¸i chç Di téc Së quèc)" §· khãa 1 2 1
Tóc MÔ 2 1 1129 0 1 9999 \image\item\other\ËÚÃ×a1.spr \image\item\other\ËÚÃ×a0.spr "Mét trong vËt lµm n«ng sím nhÊt, vËt liÖu lµm B¸nh èng." ThÇn bÝ 1 0 1
L¸ gãi b¸nh 2 1 1130 0 1 9999 \image\item\other\ôÕÒ¶a1.spr \image\item\other\ôÕÒ¶a0.spr "L¸ sen vµ l¸ sËy thêng thÊy, dïng lµm B¸nh Ýt." ThÇn bÝ 1 0 1
Tróc ®ång 2 1 1131 0 1 9999 \image\item\other\ÖñͲa1.spr \image\item\other\ÖñͲa0.spr "Mét ®èt tróc, cã thÓ ®ùng thùc vËt, dïng lµm B¸nh èng." ThÇn bÝ 1 0 1
Hµm Thñy 2 1 1132 0 1 9999 \image\item\other\¼îË®a1.spr \image\item\other\¼îË®a0.spr "Th¶o méc níc tro, dïng ®Ó lµm B¸nh Ýt muèi" ThÇn bÝ 1 0 1
Ých TrÝ Nh©n 2 1 1133 0 1 9999 \image\item\other\ÒæÖÇÈÊa1.spr \image\item\other\ÒæÖÇÈÊa0.spr "Th¶o dîc, dïng lµm B¸nh Ých TrÝ." ThÇn bÝ 1 0 1
§Ëu ®á 2 1 1134 0 1 9999 \image\item\other\ºì¶¹a1.spr \image\item\other\ºì¶¹a0.spr "§Ëu ®á, dïng lµm B¸nh Ýt ®Ëu ®á." ThÇn bÝ 1 0 1
g¹o tr¾ng 2 1 1135 0 1 9999 \image\item\other\°×Ã×a1.spr \image\item\other\°×Ã×a0.spr "G¹o tÎ, g¹o nÕp dïng lµm B¸nh Ýt g¹o tr¾ng." ThÇn bÝ 1 0 1
Ng·i diÖp 2 1 1136 0 1 9999 \image\item\other\°¬Ò¶a1.spr \image\item\other\°¬Ò¶a0.spr "Cã c«ng hiÖu ch÷a b¸ch bÖnh, dïng lµm B¸nh Ýt Ng·i H¬ng." ThÇn bÝ 1 0 1
§ïi níng 2 1 1137 0 1 9999 \image\item\other\»ðÍÈa1.spr \image\item\other\»ðÍÈa0.spr Ch©n giß dïng lµm B¸nh Ýt thÞt níng. ThÇn bÝ 1 0 1
Tóc tö 2 1 1138 0 1 9999 \image\item\other\Àõ×Óa1.spr \image\item\other\Àõ×Óa0.spr "Cã c«ng hiÖu bæ thËn, cÇm m¸u, dïng lµm B¸nh Ýt B¸t Böu." ThÇn bÝ 1 0 1
M¶nh giÊy cña 'Li Tao' 2 1 1139 1 1 1 \image\item\other\Àëɧa1.spr \image\item\other\Àëɧa0.spr "GiÊy tay 'Li Tao' cña KhuÊt Nguyªn, kh«ng biÕt t¹i sao xuÊt hiÖn ë ®©y." §· khãa 1 2 1
Quyªn Hoa 2 1 1140 1 1 1 \image\item\other\¾î»¨a1.spr \image\item\other\¾î»¨a0.spr "Quyªn Hoa cña ngêi b¸i tÕ, göi g¾m nçi th¬ng nhí cña mäi ngêi." §· khãa 1 2 1
Hép quµ b¸nh Ýt 2 1 1141 1 0 1 \image\item\other\coll_057a1.spr \image\item\other\coll_057a0.spr "Chøa nhiÒu b¸nh Ýt.<enter><color=Gold> (NgÉu nhiªn B¸nh Ýt g¹o tr¾ng, b¸nh Ýt Ng·i H¬ng, b¸nh Ýt vui vÎ, b¸nh Ýt may m¾n, b¸nh Ýt thñy tinh)" ThÇn bÝ \script\item\zong_zi_bag.lua 1 0 1
MËt lÖnh Së Quèc 2 1 1142 1 0 1 \image\item\other\quest_033a1.spr \image\item\other\quest_033a0.spr "TÝn vËt bÝ truyÒn cña ngêi níc Së.<enter><color=Gold> (Chuét ph¶i sö dông, tÝn vËt Së Quèc t¨ng 1000)" ThÇn bÝ \script\item\ji_fen_bao.lua 1 0 1
LÔ héi l× x× vâ l©m 2 1 1143 1 0 1 \image\item\other\coll_038a1.spr \image\item\other\coll_038a0.spr "Ngêi cã Vâ L©m Anh Hïng ThiÕp míi ®îc nhËn Tói quµ, gióp b¹n t¸i chiÕn giang hå." §· khãa \script\item\item_billing\baijinlibao2.lua 1 2 1
B¶n vÏ ChÕ t¹o Viªm §Õ 2 1 1145 1 0 1 \image\item\other\Éñ±ø¶ÍͼËéƬa1.spr \image\item\other\Éñ±ø¶ÍͼËéƬa0.spr "B¶n vÏ tèn nhiÒu t©m huyÕt ®Ó t¹o thµnh, ghi nhí vËt liÖu cÇn ®Ó trïng luyÖn trang bÞ Viªm §Õ.<enter><color=Gold> (Chuét ph¶i sö dông, xem sè lîng vËt liÖu)" ThÇn bÝ \script\item\yandichongzhu.lua 1 0 1
Viªm Hoµng ThiÕt Hån 2 1 1146 1 0 1 \image\item\other\coll_022a1.spr \image\item\other\coll_022a0.spr "Nguyªn liÖu cùc quý do Viªm Hoµng nhÞ ®Õ tËp hîp tinh hoa ®Êt trêi, tr¶i qua hµng chôc n¨m míi luyÖn thµnh, lµm vËt phÈm thªm vµo gi¸ trÞ lµ 500, tèi ®a lµ 60000." NhiÖm vô 0 1
R¬ng vò khÝ B¹c 2 1 1147 1 0 1 \image\item\other\secr_027a1.spr \image\item\other\secr_027a0.spr "B¶o r¬ng thÇn bÝ chøa ThÇn binh lîi khÝ.<enter><color=Gold> (Chuét ph¶i sö dông, nhËn mét mãn vò khÝ chØ ®Þnh cÊp 76 cha më phong Ên)" ThÇn bÝ \script\item\item_billing\wuqiyinbaoxiang.lua 1 0 1
S¸t Thñ §êng mËt hµm 2 1 1148 1 0 1 \image\item\book\jue_001a1.spr \image\item\book\jue_001a0.spr "MËt hµm ghi dßngch÷ tuyÖt mËt cña S¸t Thñ §êng, kh«ng biÕt trong ®ã ghi nh÷ng g×.<enter><color=Gold> (Dïng trong S¸t Thñ §êng, triÖu håi ngÉu nhiªn mét con boss trong S¸t Thñ §êng)" ThÇn bÝ \script\item\item_billing\shashoutangmihan.lua 1 0 1