This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathalchemy.lua
1300 lines (1300 loc) · 48 KB
/
alchemy.lua
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
function ReagentData_LoadAlchemy()
ReagentData['crafted']['alchemy'] = {
['Elixir of Lion\'s Strength'] = {
skill = 1,
description = 'Use: Increases Strength by 4 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['earthroot']] = 1,
[ReagentData['herb']['silverleaf']] = 1,
}
},
['Elixir of Minor Defense'] = {
skill = 1,
description = 'Use: Increases armor by 50 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['silverleaf']] = 2,
}
},
['Minor Healing Potion'] = {
skill = 1,
description = 'Use: Restores 70 to 90 health.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['peacebloom']] = 1,
[ReagentData['herb']['silverleaf']] = 1,
}
},
['Weak Troll\'s Blood Potion'] = {
skill = 15,
description = 'Use: Regenerate 2 health every 5 sec for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['earthroot']] = 2,
[ReagentData['herb']['peacebloom']] = 1,
}
},
['Minor Mana Potion'] = {
skill = 25,
description = 'MinLvl: 5, Use: Restores 140 to 180 mana.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['mageroyal']] = 1,
[ReagentData['herb']['silverleaf']] = 1,
}
},
['Minor Rejuvenation Potion'] = {
skill = 40,
description = 'MinLvl: 5, Use: Restores 90 to 150 mana and 90 to 150 health.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['peacebloom']] = 1,
[ReagentData['herb']['mageroyal']] = 2,
}
},
['Discolored Healing Potion'] = {
skill = 50,
description = 'MinLvl: 5, Use: Restores 140 to 180 health.',
source = 'Quest:Recipe: Discolored Healing Potion',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['peacebloom']] = 1,
[ReagentData['monster']['discoloredworgheart']] = 1,
}
},
['Elixir of Minor Agility'] = {
skill = 50,
description = 'MinLvl: 2, Use: Increases Agility by 4 for 1 hour.',
source = 'Drop:Recipe: Elixir of Minor Agility',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['swifthistle']] = 1,
[ReagentData['herb']['silverleaf']] = 1,
}
},
['Elixir of Minor Fortitude'] = {
skill = 50,
description = 'MinLvl: 2, Use: Increases the player\'s maximum health by 27 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['earthroot']] = 2,
[ReagentData['herb']['peacebloom']] = 1,
}
},
['Lesser Healing Potion'] = {
skill = 55,
description = 'MinLvl: 3, Use: Restores 140 to 180 health.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['briarthorn']] = 1,
[ReagentData['potion']['minorhealing']] = 1,
}
},
['Rage Potion'] = {
skill = 60,
description = 'MinLvl: 4, Classes: Warrior, Use: Increases Rage by 20 to 40.',
source = 'Vendor:Recipe: Rage Potion',
result = 1,
reagents = {
[ReagentData['herb']['briarthorn']] = 1,
[ReagentData['vial']['empty']] = 1,
[ReagentData['monster']['sharpclaw']] = 1,
}
},
['Swiftness Potion'] = {
skill = 60,
description = 'MinLvl: 5, Use: Increases run speed by 50% for 15 sec.',
source = 'Drop:Recipe: Swiftness Potion',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['briarthorn']] = 1,
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['swifthistle']] = 1,
}
},
['Blackmouth Oil'] = {
skill = 80,
description = 'Blackmouth Oil',
type = 'Reagent',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['alchemyfish']['oilyblackmouth']] = 2,
[ReagentData['vial']['empty']] = 1,
}
},
['Elixir of Giant Growth'] = {
skill = 90,
description = 'MinLvl: 8, Use: Your size is increased and your Strength goes up by 8 to match your new size. Lasts 2 min.',
source = 'Drop:Recipe: Elixir of Giant Growth',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['earthroot']] = 1,
[ReagentData['cookingfish']['deviate']] = 1,
}
},
['Elixir of Water Breathing'] = {
skill = 90,
description = 'MinLvl: 8, Use: Allows the Imbiber to breathe water for 30 min.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['stranglekelp']] = 1,
[ReagentData['vial']['empty']] = 1,
[ReagentData['oil']['blackmouth']] = 2,
}
},
['Elixir of Wisdom'] = {
skill = 90,
description = 'MinLvl: 10, Use: Increases Intellect by 6 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['briarthorn']] = 2,
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['mageroyal']] = 1,
}
},
['Holy Protection Potion'] = {
skill = 100,
description = 'MinLvl: 10, Use: Absorbs 300 to 500 holy damage. Lasts 1 hour.',
source = 'Vendor:Recipe: Holy Protection Potion',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['bruiseweed']] = 1,
[ReagentData['herb']['swifthistle']] = 1,
}
},
['Swim Speed Potion'] = {
skill = 100,
description = 'MinLvl: 10, Use: Increases swim speed by 100% for 20 sec.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['swifthistle']] = 1,
[ReagentData['oil']['blackmouth']] = 1,
}
},
['Healing Potion'] = {
skill = 110,
description = 'MinLvl: 12, Use: Restores 280 to 360 health.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['briarthorn']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['bruiseweed']] = 1,
}
},
['Minor Magic Resistance Potion'] = {
skill = 110,
description = 'MinLvl: 12, Use: Increases your resistance to all schools of magic by 25 for 3 min.',
source = 'Drop:Recipe: Minor Magic Resistance Potion',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['wildsteelbloom']] = 1,
[ReagentData['herb']['mageroyal']] = 3,
}
},
['Elixir of Poison Resistance'] = {
skill = 120,
description = 'MinLvl: 14, Use: Target is immune to poison for 1 min and is cured of any existing poisons.',
source = 'Drop:Recipe: Elixir of Poison Resistance',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['bruiseweed']] = 1,
[ReagentData['monster']['largevenomsac']] = 1,
}
},
['Lesser Mana Potion'] = {
skill = 120,
description = 'MinLvl: 14, Use: Restores 280 to 360 mana.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['stranglekelp']] = 1,
[ReagentData['vial']['empty']] = 1,
[ReagentData['herb']['mageroyal']] = 1,
}
},
['Strong Troll\'s Blood Potion'] = {
skill = 125,
description = 'MinLvl: 15, Use: Regenerate 6 health every 5 sec for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['briarthorn']] = 2,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['bruiseweed']] = 2,
}
},
['Elixir of Defense'] = {
skill = 130,
description = 'MinLvl: 16, Use: Increases armor by 150 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['stranglekelp']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['wildsteelbloom']] = 1,
}
},
['Fire Oil'] = {
skill = 130,
description = 'Fire Oil',
type = 'Reagent',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['empty']] = 1,
[ReagentData['alchemyfish']['firefinsnapper']] = 2,
}
},
['Shadow Protection Potion'] = {
skill = 135,
description = 'MinLvl: 17, Use: Absorbs 675 to 1125 shadow damage. Lasts 1 hour.',
source = 'Vendor:Recipe: Shadow Protection Potion',
result = 1,
reagents = {
[ReagentData['herb']['kingsblood']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['gravemoss']] = 1,
}
},
['Elixir of Firepower'] = {
skill = 140,
description = 'MinLvl: 18, Use: Increases spell fire damage by up to 10 for 30 min.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['kingsblood']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['oil']['fire']] = 2,
}
},
['Elixir of Lesser Agility'] = {
skill = 140,
description = 'MinLvl: 18, Use: Increases Agility by 8 for 1 hour.',
source = 'Drop:Recipe: Elixir of Lesser Agility',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['wildsteelbloom']] = 1,
[ReagentData['herb']['swifthistle']] = 1,
}
},
['Elixir of Ogre\'s Strength'] = {
skill = 150,
description = 'MinLvl: 20, Use: Increases Strength by 8 for 1 hour.',
source = 'Drop:Recipe: Elixir of Ogre\'s Strength',
result = 1,
reagents = {
[ReagentData['herb']['kingsblood']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['earthroot']] = 1,
}
},
['Free Action Potion'] = {
skill = 150,
description = 'MinLvl: 20, Use: Makes you immune to stun and movement impairing effects for the next 30 sec.',
source = 'Vendor:Recipe: Free Action Potion',
result = 1,
reagents = {
[ReagentData['herb']['stranglekelp']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['oil']['blackmouth']] = 2,
}
},
['Greater Healing Potion'] = {
skill = 155,
description = 'MinLvl: 21, Use: Restores 455 to 585 health.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['liferoot']] = 1,
[ReagentData['herb']['kingsblood']] = 1,
[ReagentData['vial']['leaded']] = 1,
}
},
['Mana Potion'] = {
skill = 160,
description = 'MinLvl: 22, Use: Restores 455 to 585 mana.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['stranglekelp']] = 1,
[ReagentData['herb']['kingsblood']] = 1,
[ReagentData['vial']['leaded']] = 1,
}
},
['Fire Protection Potion'] = {
skill = 165,
description = 'MinLvl: 23, Use: Absorbs 975 to 1625 fire damage. Lasts 1 hour.',
source = 'Vendor:Recipe: Fire Protection Potion',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['oil']['fire']] = 1,
[ReagentData['monster']['smallflamesac']] = 1,
}
},
['Lesser Invisibility Potion'] = {
skill = 165,
description = 'MinLvl: 23, Use: Gives the imbiber lesser invisibility for 15 sec.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['fadeleaf']] = 1,
[ReagentData['herb']['wildsteelbloom']] = 1,
}
},
['Shadow Oil'] = {
skill = 165,
description = 'MinLvl: 24, Use: When applied to a melee weapon it gives a 15% chance of casting Shadowbolt III at the opponent when it hits. Lasts 30 minutes.',
source = 'Vendor:Recipe: Shadow Oil',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['fadeleaf']] = 4,
[ReagentData['herb']['gravemoss']] = 4,
}
},
['Elixir of Fortitude'] = {
skill = 175,
description = 'MinLvl: 25, Use: Increases the player\'s maximum health by 120 for 1 hour.',
source = 'Drop:Recipe: Elixir of Fortitude',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
[ReagentData['herb']['wildsteelbloom']] = 1,
}
},
['Great Rage Potion'] = {
skill = 175,
description = 'MinLvl: 25, Classes: Warrior, Use: Increases Rage by 30 to 60.',
source = 'Vendor:Recipe: Great Rage Potion',
result = 1,
reagents = {
[ReagentData['herb']['kingsblood']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['monster']['largefang']] = 1,
}
},
['Mighty Troll\'s Blood Potion'] = {
skill = 180,
description = 'MinLvl: 26, Use: Regenerate 12 health every 5 sec for 1 hour.',
source = 'Drop:Recipe: Mighty Troll\'s Blood Potion',
result = 1,
reagents = {
[ReagentData['herb']['liferoot']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['bruiseweed']] = 1,
}
},
['Elixir of Agility'] = {
skill = 185,
description = 'MinLvl: 27, Use: Increases Agility by 15 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['stranglekelp']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
}
},
['Elixir of Frost Power'] = {
skill = 190,
description = 'MinLvl: 28, Use: Increases spell frost damage by up to 15 for 30 min.',
source = 'Drop:Recipe: Elixir of Frost Power',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['khadgarswhisker']] = 1,
[ReagentData['herb']['wintersbite']] = 2,
}
},
['Frost Protection Potion'] = {
skill = 190,
description = 'MinLvl: 28, Use: Absorbs 1350 to 2250 frost damage. Lasts 1 hour.',
source = 'Vendor:Recipe: Frost Protection Potion',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
[ReagentData['herb']['wintersbite']] = 1,
}
},
['Nature Protection Potion'] = {
skill = 190,
description = 'MinLvl: 28, Use: Absorbs 1350 to 2250 nature damage. Lasts 1 hour.',
source = 'Vendor:Recipe: Nature Protection Potion',
result = 1,
reagents = {
[ReagentData['herb']['liferoot']] = 1,
[ReagentData['herb']['stranglekelp']] = 1,
[ReagentData['vial']['leaded']] = 1,
}
},
['Elixir of Detect Lesser Invisibility'] = {
skill = 195,
description = 'MinLvl: 29, Use: Grants detect lesser invisibility for 10 min.',
source = 'Drop:Recipe: Elixir of Detect Lesser Invisibility',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['khadgarswhisker']] = 1,
[ReagentData['herb']['fadeleaf']] = 1,
}
},
['Elixir of Greater Defense'] = {
skill = 195,
description = 'MinLvl: 29, Use: Increases armor by 250 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
[ReagentData['herb']['wildsteelbloom']] = 1,
}
},
['Catseye Elixir'] = {
skill = 200,
description = 'MinLvl: 30, Use: Increases your stealth detection by 10 for 10 min.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
[ReagentData['herb']['fadeleaf']] = 1,
}
},
['Frost Oil'] = {
skill = 200,
description = 'MinLvl: 30, Use: When applied to a melee weapon it gives a 10% chance of casting Frostbolt at the opponent when it hits. Lasts 30 minutes.',
source = 'Vendor:Recipe: Frost Oil',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['khadgarswhisker']] = 4,
[ReagentData['herb']['wintersbite']] = 2,
}
},
['Greater Mana Potion'] = {
skill = 205,
description = 'MinLvl: 31, Use: Restores 700 to 900 mana.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['khadgarswhisker']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
}
},
['Oil of Immolation'] = {
skill = 205,
description = 'MinLvl: 31, Use: Does 50 fire damage to any enemies within a 5 yard radius around the caster every 3 seconds for 15 sec',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['goldthorn']] = 1,
[ReagentData['herb']['firebloom']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Goblin Rocket Fuel'] = {
skill = 210,
description = 'Used by Goblin Engineers to power their creations',
type = 'Reagent',
source = 'Recipe:Recipe: Goblin Rocket Fuel',
result = 1,
reagents = {
[ReagentData['monster']['volatilerum']] = 1,
[ReagentData['vial']['leaded']] = 1,
[ReagentData['herb']['firebloom']] = 1,
}
},
['Magic Resistance Potion'] = {
skill = 210,
description = 'MinLvl: 32, Use: Increases your resistance to all schools of magic by 50 for 3 min.',
source = 'Drop:Recipe: Magic Resistance Potion',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['purplelotus']] = 1,
[ReagentData['herb']['khadgarswhisker']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Restorative Potion'] = {
skill = 210,
description = 'MinLvl: 32, Use: Removes all negative effects on you.',
source = 'Quest',
result = 1,
reagents = {
[ReagentData['element']['earth']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Elixir of Greater Water Breathing'] = {
skill = 215,
description = 'MinLvl: 35, Use: Allows the Imbiber to breathe water for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['purplelotus']] = 2,
[ReagentData['element']['ichorofundeath']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Lesser Stoneshield Potion'] = {
skill = 215,
description = 'MinLvl: 33, Use: Increases armor by 1000 for 1.50 min.',
source = 'Quest:Recipe: Lesser Stoneshield Potion',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['ore']['mithril']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
}
},
['Superior Healing Potion'] = {
skill = 215,
description = 'MinLvl: 35, Use: Restores 700 to 900 health.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['sungrass']] = 1,
[ReagentData['herb']['khadgarswhisker']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Philosophers\' Stone'] = {
skill = 225,
description = '[BoP] Required for Alchemical Transmutation.',
type = 'Trade Goods',
source = 'Vendor:Recipe: Philosophers\' Stone',
result = 1,
reagents = {
[ReagentData['herb']['purplelotus']] = 4,
[ReagentData['bar']['iron']] = 4,
[ReagentData['herb']['firebloom']] = 4,
[ReagentData['gem']['blackvitriol']] = 1,
}
},
['Transmute: Iron to Gold'] = {
skill = 225,
description = 'Gold Bar',
type = 'Trade Goods',
source = 'Vendor:Recipe: Transmute Iron to Gold',
result = 1,
resultname = 'Gold Bar',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['bar']['iron']] = 1,
}
},
['Transmute: Mithril to Truesilver'] = {
skill = 225,
description = 'Truesilver Bar',
type = 'Trade Goods',
source = 'Vendor:Recipe: Transmute Mithril to Truesilver',
result = 1,
resultname = 'Truesilver Bar',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['bar']['mithril']] = 1,
}
},
['Wildvine Potion'] = {
skill = 225,
description = 'MinLvl: 35, Use: Restores 1 to 1000 health and 1 to 1000 mana.',
source = 'Drop:Recipe: Wildvine Potion',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['wildvine']] = 1,
[ReagentData['herb']['purplelotus']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Dreamless Sleep Potion'] = {
skill = 230,
description = 'MinLvl: 35, Use: Puts the imbiber in a dreamless sleep for 15 sec. During that time the imbiber heals 1200 health and 1200 mana.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['purplelotus']] = 3,
[ReagentData['vial']['crystal']] = 1,
}
},
['Elixir of Detect Undead'] = {
skill = 230,
description = 'MinLvl: 36, Use: Shows the location of all nearby undead on the minimap for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['arthastears']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Arcane Elixir'] = {
skill = 235,
description = 'MinLvl: 37, Use: Increases spell damage by 20 for 30 min.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['goldthorn']] = 1,
[ReagentData['vial']['crystal']] = 1,
[ReagentData['herb']['blindweed']] = 1,
}
},
['Elixir of Greater Intellect'] = {
skill = 235,
description = 'MinLvl: 37, Use: Increases Intellect by 25 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['khadgarswhisker']] = 1,
[ReagentData['vial']['crystal']] = 1,
[ReagentData['herb']['blindweed']] = 1,
}
},
['Invisibility Potion'] = {
skill = 235,
description = 'MinLvl: 37, Use: Gives the imbiber invisibility for 18 sec.',
source = 'Drop:Recipe: Invisibility Potion',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['sungrass']] = 1,
[ReagentData['herb']['ghostmushroom']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Elixir of Dream Vision'] = {
skill = 240,
description = 'MinLvl: 38, Use: Gives you a dream vision that lets you explore areas that are too dangerous to explore in person.',
source = 'Drop:Recipe: Elixir of Dream Vision',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['purplelotus']] = 3,
[ReagentData['vial']['crystal']] = 1,
}
},
['Elixir of Greater Agility'] = {
skill = 240,
description = 'MinLvl: 38, Use: Increases Agility by 25 for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['sungrass']] = 1,
[ReagentData['herb']['goldthorn']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Gift of Arthas'] = {
skill = 240,
description = 'MinLvl: 38, Use: Increases resistance to shadow by 10. If an enemy strikes the caster, they have a 30% chance of being inflicted with disease that increases their damage taken by 8 for 3 min.',
source = 'Drop:Recipe: Gift of Arthas',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['arthastears']] = 1,
[ReagentData['vial']['crystal']] = 1,
[ReagentData['herb']['blindweed']] = 1,
}
},
['Elixir of Giants'] = {
skill = 245,
description = 'MinLvl: 38, Use: Increases your Strength by 25 for 1 hour.',
source = 'Drop:Recipe: Elixir of Giants',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['sungrass']] = 1,
[ReagentData['herb']['gromsblood']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Ghost Dye'] = {
skill = 245,
description = 'Ghost Dye',
type = 'Trade Goods',
source = 'Vendor:Recipe: Ghost Dye',
result = 1,
reagents = {
[ReagentData['dye']['purple']] = 1,
[ReagentData['herb']['ghostmushroom']] = 2,
[ReagentData['vial']['crystal']] = 1,
}
},
['Elixir of Demonslaying'] = {
skill = 250,
description = 'MinLvl: 40, Use: Increases attack power by 265 against demons. Lasts 5 min.',
source = 'Vendor:Recipe: Elixir of Demonslaying',
result = 1,
reagents = {
[ReagentData['herb']['ghostmushroom']] = 1,
[ReagentData['herb']['gromsblood']] = 1,
[ReagentData['vial']['crystal']] = 1,
}
},
['Elixir of Detect Demon'] = {
skill = 250,
description = 'MinLvl: 40, Use: Shows the location of all nearby demons on the minimap for 1 hour.',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['herb']['gromsblood']] = 2,
[ReagentData['vial']['crystal']] = 1,
}
},
['Elixir of Shadow Power'] = {
skill = 250,
description = 'MinLvl: 40, Use: Increases spell shadow damage by up to 40 for 30 min.',
source = 'Vendor:Recipe: Elixir of Shadow Power',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['ghostmushroom']] = 3,
[ReagentData['vial']['crystal']] = 1,
}
},
['Limited Invulnerability Potion'] = {
skill = 250,
description = 'MinLvl: 45, Use: Imbiber is immune to physical attacks for the next 6 sec.',
source = 'Drop:Recipe: Limited Invulnerability Potion',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['ghostmushroom']] = 1,
[ReagentData['vial']['crystal']] = 1,
[ReagentData['herb']['blindweed']] = 2,
}
},
['Stonescale Oil'] = {
skill = 250,
description = 'Stonescale Oil',
type = 'Reagent',
source = 'Trainer',
result = 1,
reagents = {
[ReagentData['vial']['leaded']] = 1,
[ReagentData['alchemyfish']['stonescaleeel']] = 1,
}
},
['Mighty Rage Potion'] = {
skill = 255,
description = 'MinLvl: 46, Classes: Warrior, Use: Increases Rage by 45 to 75 and increases Strength by 60 for 20 sec.',
source = 'Drop:Recipe: Mighty Rage Potion',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['gromsblood']] = 3,
[ReagentData['vial']['crystal']] = 1,
}
},
['Superior Mana Potion'] = {
skill = 260,
description = 'MinLvl: 41, Use: Restores 900 to 1500 mana.',
source = 'Vendor:Recipe: Superior Mana Potion',
result = 1,
reagents = {
[ReagentData['herb']['sungrass']] = 2,
[ReagentData['vial']['crystal']] = 1,
[ReagentData['herb']['blindweed']] = 2,
}
},
['Elixir of Superior Defense'] = {
skill = 265,
description = 'MinLvl: 43, Use: Increases armor by 450 for 1 hour.',
source = 'Vendor:Recipe: Elixir of Superior Defense',
result = 1,
reagents = {
[ReagentData['herb']['sungrass']] = 1,
[ReagentData['vial']['crystal']] = 1,
[ReagentData['oil']['stonescale']] = 2,
}
},
['Elixir of the Sages'] = {
skill = 270,
description = 'MinLvl: 44, Use: Increases Intellect and Spirit by 18 for 1 hour.',
source = 'Drop:Recipe: Elixir of the Sages',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['dreamfoil']] = 1,
[ReagentData['herb']['plaguebloom']] = 2,
[ReagentData['vial']['crystal']] = 1,
}
},
['Elixir of Brute Force'] = {
skill = 275,
description = 'MinLvl: 45, Use: Increases Strength and Stamina by 18 for 1 hour.',
source = 'Drop:Recipe: Elixir of Brute Force',
sourcerarity = 'Uncommon',
result = 1,
reagents = {
[ReagentData['herb']['gromsblood']] = 2,
[ReagentData['herb']['plaguebloom']] = 2,
[ReagentData['vial']['crystal']] = 1,
}
},
['Major Healing Potion'] = {
skill = 275,
description = 'MinLvl: 45, Use: Restores 1050 to 1750 health.',
source = 'Vendor:Recipe: Major Healing Potion',
result = 1,
reagents = {
[ReagentData['herb']['mountainsilversage']] = 1,
[ReagentData['herb']['goldensansam']] = 2,
[ReagentData['vial']['crystal']] = 1,
}
},
['Transmute: Air to Fire'] = {
skill = 275,
description = 'Essence of Fire',
type = 'Reagent',
source = 'Vendor:Recipe: Transmute Air to Fire',
sourcerarity = 'Uncommon',
result = 1,
resultname = 'Essence of Fire',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['element']['essenceofair']] = 1,
}
},
['Transmute: Arcanite'] = {
skill = 275,
description = 'Arcanite Bar',
type = 'Trade Goods',
source = 'Vendor:Recipe: Transmute Arcanite',
result = 1,
resultname = 'Arcanite Bar',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['bar']['thorium']] = 1,
[ReagentData['gem']['arcanecrystal']] = 1,
}
},
['Transmute: Earth to Life'] = {
skill = 275,
description = 'Living Essence',
type = 'Reagent',
source = 'Drop:Recipe: Transmute Earth to Life',
sourcerarity = 'Uncommon',
result = 1,
resultname = 'Living Essence',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['element']['essenceofearth']] = 1,
}
},
['Transmute: Earth to Water'] = {
skill = 275,
description = 'Essence of Water',
type = 'Reagent',
source = 'Vendor:Recipe: Transmute Earth to Water',
sourcerarity = 'Uncommon',
result = 1,
resultname = 'Essence of Water',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['element']['essenceofearth']] = 1,
}
},
['Transmute: Fire to Earth'] = {
skill = 275,
description = 'Essence of Earth',
type = 'Reagent',
source = 'Vendor:Recipe: Transmute Fire to Earth',
sourcerarity = 'Uncommon',
result = 1,
resultname = 'Essence of Earth',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['element']['essenceoffire']] = 1,
}
},
['Transmute: Life to Earth'] = {
skill = 275,
description = 'Essence of Earth',
type = 'Reagent',
source = 'Drop:Recipe: Transmute Life to Earth',
sourcerarity = 'Uncommon',
result = 1,
resultname = 'Essence of Earth',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['element']['livingessence']] = 1,
}
},
['Transmute: Undeath to Water'] = {
skill = 275,
description = 'Essence of Water',
type = 'Reagent',
source = 'Drop:Recipe: Transmute Undeath to Water',
sourcerarity = 'Uncommon',
result = 1,
resultname = 'Essence of Water',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['element']['essenceofundeath']] = 1,
}
},
['Transmute: Water to Air'] = {
skill = 275,
description = 'Essence of Air',
type = 'Reagent',
source = 'Vendor:Recipe: Transmute Water to Air',
sourcerarity = 'Uncommon',
result = 1,
resultname = 'Essence of Air',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['element']['essenceofwater']] = 1,
}
},
['Transmute: Water to Undeath'] = {
skill = 275,
description = 'Essence of Undeath',
type = 'Reagent',
source = 'Drop:Recipe: Transmute Water to Undeath',
sourcerarity = 'Uncommon',
result = 1,
resultname = 'Essence of Undeath',
resultrarity = 'Uncommon',
reagents = {
[ReagentData['element']['essenceofwater']] = 1,