forked from brycole/gemstone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalchemy-recipes.lic
3757 lines (3728 loc) · 189 KB
/
alchemy-recipes.lic
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
=begin
This script loads alchemy recipes into memory for the alchemy script.
author: Tillmen ([email protected])
game: Gemstone
tags: alchemy, guild
version: 0.9
changelog:
0.9 (2015-04-26):
rename some powdered Kezmonian honey beryl => some powdered honey beryl
rename minor holy oil => some minor holy oil
rename some faint mote of soul => faint mote of soul
0.8 (2015-02-22):
add recipe for sisfu potion
0.7 (2015-01-26):
change start rank of grot'tkel potion from 15 to 13
0.6 (2015-01-22):
add grind and forage recipes for bone mushroom
0.5 (2015-01-14):
added grind recipes for dragon's-tear diamond and clear glimaerstone
=end
=begin
0.4 (2014-12-12):
added boar tusk value
0.3 (2014-12-10):
added reagent cost and equivalents
0.2 (2014-10-14):
fix buy some powdered gold nugget recipe
=end
# thirdly ground lichen doesn't decipher between what kinda lichen. there's at least 2 different lichent hat become ground lichen." (04:07:13)
# you need to use alchemy examine to determine what it was before..." (04:07:24)
$alchemy_recipes = [
#
# general alchemy recipes
#
r = {
:product => 'tincture of acantha',
:steps => [ 'light', 'add flask of clear water', 'add some acantha leaf', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 1, 12 ],
},
r = {
:product => 'tincture of tkaro',
:steps => [ 'light', 'add flask of clear water', 'add tkaro root', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 1, 12 ],
},
r = {
:product => 'tincture of ambrominas',
:steps => [ 'light', 'add flask of clear water', 'add some ambrominas leaf', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 13 ],
},
r = {
:product => 'tincture of wolifrew',
:steps => [ 'light', 'add flask of clear water', 'add some ground wolifrew', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 3, 14 ],
},
r = {
:product => 'minor health potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground cuctucae', 'add some ground cuctucae', 'add some ground cuctucae', 'add ayanad crystal', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 4, 15 ],
},
r = {
:product => 'tincture of rose-marrow',
:steps => [ 'light', 'add flask of clear water', 'add some ground rose-marrow', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 4, 15 ],
},
r = {
:product => 'tincture of basal',
:steps => [ 'light', 'add flask of clear water', 'add some ground basal moss', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 5, 16 ],
},
r = {
:product => 'tincture of yabathilium',
:steps => [ 'light', 'add flask of clear water', 'add yabathilium fruit', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 6, 18 ],
},
r = {
:product => 'minor mana potion',
:steps => [ 'light', 'add flask of clear water', 'add ayanad crystal', 'add ayanad crystal', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 10, 22 ],
},
r = {
:product => "grot'tkel potion",
:steps => [ 'light', 'add flask of clear water', 'add ayana leaf', 'boil', 'add ayanad crystal', 'simmer', 'add some crystal core essence', 'seal' ],
:type => 'alchemy',
:rank => [ 13, 25 ],
},
r = {
:product => 'tincture of bolmara',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some ground bolmara', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 20 ],
},
r = {
:product => 'tincture of cactacae',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some ground cactacae', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 24 ],
},
r = {
:product => 'tincture of ephlox',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some ground ephlox moss', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 20 ],
},
r = {
:product => 'tincture of aloeas',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some aloeas stem', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 21 ],
},
r = {
:product => 'tincture of haphip',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some ground haphip', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 26 ],
},
r = {
:product => 'tincture of pothinir',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some pothinir grass', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 22 ]
},
r = {
:product => 'tincture of talneo',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some ground talneo', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 27 ],
},
r = {
:product => 'tincture of torban',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some torban leaf', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 25 ],
},
r = {
:product => "aish'vrak potion",
:steps => [ 'light', 'add flask of clear water', 'add ayana leaf', 'add ayana leaf', 'add ayana leaf', 'boil', 'add ayanad crystal', 'add ayanad crystal', 'add ayanad crystal', 'simmer', 'add some crystal core essence', 'add some crystal core essence', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 20 ],
},
r = {
:product => 'flask of pure water',
:steps => [ 'distill flask of clear water' ],
:type => 'alchemy',
:rank => [ 15, 62 ]
},
r = {
:product => 'tincture of calamia',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some calamia fruit', 'boil', 'add some essence of regeneration', 'seal' ],
:type => 'alchemy',
:rank => [ 15, 28 ],
},
r = {
:product => 'minor mana-well potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground tkaro', "add s'ayanad crystal", 'add some faintly glimmering dust', 'add some faintly glimmering dust', 'simmer', 'add some glimmering blue essence dust', 'seal' ],
:type => 'alchemy',
:rank => [ 16, 36 ],
},
r = {
:product => 'tincture of woth',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some woth flower', 'boil', 'add some essence of regeneration', 'seal' ],
:type => 'alchemy',
:rank => [ 16, 30 ],
},
r = {
:product => 'tincture of brostheras',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some brostheras grass', 'boil', 'add some essence of regeneration', 'seal' ],
:type => 'alchemy',
:rank => [ 17, 31 ],
},
r = {
:product => 'tincture of wingstem',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some ground wingstem', 'simmer', 'add some essence of regeneration', 'seal' ],
:type => 'alchemy',
:rank => [ 18, 33 ],
},
r = {
:product => 'tincture of bur-clover',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some ground bur-clover', 'simmer', 'add some essence of regeneration', 'seal' ],
:type => 'alchemy',
:rank => [ 19, 33 ],
},
r = {
:product => 'minor mana regen potion',
:steps => [ 'light', 'add flask of clear water', 'add ayana leaf', 'add some ground tkaro', 'add some ground tkaro', 'simmer', "add s'ayanad crystal", 'add glimmering blue mote of essence', 'seal' ],
:type => 'alchemy',
:rank => [ 20, 34 ]
},
r = {
:product => 'tincture of sovyn',
:steps => [ 'light', 'add flask of clear water', 'add handful of sea salt', 'add some ground sovyn', 'simmer', 'add some essence of regeneration', 'seal' ],
:type => 'alchemy',
:rank => [ 20, 34 ],
},
r = {
:product => 'lesser health potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground marallis', 'add some ground marallis', 'add some ground marallis', "add s'ayanad crystal", 'boil', 'add small troll tooth', 'seal' ],
:type => 'alchemy',
:rank => [ 22, 37 ],
},
r = {
:product => 'lesser mana potion',
:steps => [ 'light', 'add flask of clear water', "add s'ayanad crystal", 'add some faintly glimmering dust', 'simmer', 'add glimmering blue essence shard', 'seal' ],
:type => 'alchemy',
:rank => [ 28, 44 ],
},
r = {
:product => 'essence shard',
:steps => [ 'light', 'add vial of viscous liquid', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 30, 34 ],
},
r = {
:product => 'ayanad crystal',
:steps => [ 'light', 'add vial of viscous liquid', 'add essence shard', 'add some faintly glowing dust', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 30, 46 ],
},
r = {
:product => "s'ayanad crystal",
:steps => [ 'light', 'add vial of viscous liquid', 'add essence shard', 'add some faintly radiant dust', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 30, 46 ],
},
r = {
:product => "t'ayanad crystal",
:steps => [ 'light', 'add vial of viscous liquid', 'add essence shard', 'add some faintly shimmering dust', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 30, 46 ],
},
r = {
:product => 'small flask of normal-strength skin glue',
:steps => [ 'light', 'add flask of clear water', 'add some powdered sea urchin shell', 'add some powdered crystal crab shell', 'add some powdered crystal crab shell', 'add some essence of earth', 'add some essence of water', 'add some glimmering blue essence dust', 'infuse', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 30, 40 ],
},
r = {
:product => 'lesser mana-well potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground tkaro', "add t'ayanad crystal", 'add some faintly glowing dust', 'add some faintly glowing dust', 'simmer', 'add some glowing violet essence dust', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 31, 48 ],
},
r = {
:product => 'minor sneezing powder',
:steps => [ 'light', 'add flask of clear water', 'add some powdered citrine quartz', 'add some essence of fire', 'simmer', 'add pepperthorn root', 'add pepperthorn root', 'add pepperthorn root', 'add ayanad crystal', 'add ayanad crystal', 'boil', 'add vial of concentrated firethorn essence', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 34, 51 ],
},
r = {
:product => 'smooth stone talisman',
:nick => 'minor luck talisman',
:steps => [ 'light', 'add vial of pearlescent oil', 'add some ground tkaro', 'add some ground tkaro', 'boil', 'add luckbloom blossom', "add s'ayanad crystal", 'simmer', 'add some powdered white pearl', "add pristine nymph's hair", 'infuse', 'add smooth stone', 'seal' ],
:type => 'alchemy',
:rank => [ 37, 55 ],
},
r = {
:product => 'lesser mana regeneration potion',
:steps => [ 'light', 'add flask of clear water', 'add ayana leaf', 'add ayana leaf', 'add some ground tkaro', 'add some ground tkaro', 'simmer', "add t'ayanad crystal", 'add glowing violet mote of essence', 'add some faintly glowing dust', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 40, 58 ]
},
r = {
:product => 'greater mana potion',
:steps => [ 'light', 'add flask of clear water', 'add ayanad crystal', "add s'ayanad crystal", "add s'ayanad crystal", 'add some faintly glimmering dust', 'simmer', 'add glowing violet essence shard', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 44, 62 ],
},
r = {
:product => 'greater health potion',
:nick => 'vibrant red potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground yabathilium', 'add some ground yabathilium', 'add some ground yabathilium', "add t'ayanad crystal", 'boil', 'chant 1101', 'add large troll tooth', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 44, 62 ],
:for => [ 'Empath' ],
},
r = {
:product => 'major sneezing powder',
:steps => [ 'light', 'add flask of clear water', 'add some powdered rose quartz', 'add some essence of fire', 'add some essence of fire', 'simmer', 'add pepperthorn root', 'add pepperthorn root', 'add pepperthorn root', "add s'ayanad crystal", "add s'ayanad crystal", 'boil', 'add vial of concentrated firethorn essence', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 47, 62 ],
},
r = {
:product => 'spirit shard',
:steps => [ 'light', 'add vial of viscous liquid', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 50, 58 ],
},
r = {
:product => 'mottled malachite talisman',
:nick => 'lesser luck talisman',
:steps => [ 'light', 'add vial of pearlescent oil', 'add some ground tkaro', 'add some ground tkaro', 'boil', 'add luckbloom blossom', 'add luckbloom blossom', "add t'ayanad crystal", 'simmer', 'add some powdered white pearl', 'infuse', "add pristine sprite's hair", 'channel', 'add green malachite stone', 'seal' ],
:type => 'alchemy',
:rank => [ 50, 62 ],
},
r = {
:product => 'greater mana-well potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground tkaro', "add s'ayanad crystal", "add t'ayanad crystal", 'simmer', 'add some faintly radiant dust', 'add some faintly radiant dust', 'infuse', 'add some radiant crimson essence dust', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 57, 62 ],
},
r = {
:product => 'full health potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground cothinar', 'add some ground cothinar', 'add some ground cothinar', "add n'ayanad crystal", 'boil', 'chant 1101', 'add flask of sparkling body essence', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 58, 62 ],
:for => [ 'Empath' ],
},
r = {
:product => 'glowing moonstone talisman',
:nick => 'greater luck talisman',
:steps => [ 'light', 'add vial of pearlescent oil', 'add some ground tkaro', 'add some ground tkaro', 'boil', 'add luckbloom blossom', 'add luckbloom blossom', 'add luckbloom blossom', 'add luckbloom blossom', 'add some faintly glowing dust', 'add some faintly glowing dust', 'simmer', 'add some powdered white pearl', "add t'ayanad crystal", 'infuse', "add pristine siren's hair", 'channel', 'add golden moonstone', 'seal' ],
:type => 'alchemy',
:rank => [ 60, 62 ],
},
r = {
:product => 'greater mana regeneration potion',
:steps => [ 'light', 'add flask of clear water', 'add ayana leaf', 'add ayana leaf', 'add ayana leaf', 'add some ground tkaro', 'add some ground tkaro', 'simmer', "add s'ayanad crystal", "add t'ayanad crystal", 'infuse', 'add radiant crimson mote of essence', 'add some faintly radiant dust', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 60, 62 ],
},
r = {
:product => 'tiny vial of extra-strong skin glue',
:steps => [ 'light', 'add flask of clear water', 'add some powdered iridescent tempest shell', "add some powdered deep blue mermaid's tear sapphire", 'add some essence of earth', 'add some essence of earth', 'add some essence of water', 'add some essence of water', 'add some glowing violet essence dust', 'infuse', 'refract sunlight through ruby lens', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 60, 62 ], # fixme
},
r = {
:product => 'full mana potion',
:steps => [ 'light', 'add flask of clear water', "add s'ayanad crystal", "add s'ayanad crystal", "add s'ayanad crystal", "add t'ayanad crystal", 'add some faintly glimmering dust', 'add some faintly glimmering dust', 'add some faintly glimmering dust', 'add some faintly glimmering dust', 'simmer', 'add radiant crimson essence shard', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 62, 62 ],
},
r = {
:product => 'vial of translucent dye base',
:steps => [ 'light', 'add flask of clear water', 'add some ground murdroot', 'add some ground murdroot', 'add ayanad crystal', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 14 ],
},
r = {
:product => 'black vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some ground alder bark', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 14 ],
},
r = {
:product => 'purple vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed wood violet', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'indigo vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed sprig of wild lilac', 'add some ground woad leaves', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'brown vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some powdered walnuts', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 12 ],
},
r = {
:product => 'dark red vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed oxblood lily', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 12 ],
},
r = {
:product => 'light blue vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some ground woad leaves', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 12 ],
},
r = {
:product => 'dark blue vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed stalk of bluebells', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 12 ],
},
r = {
:product => 'light green vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some ground arctic moss', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 12 ],
},
r = {
:product => 'dark green vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some ground blackened moss', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 2, 12 ],
},
r = {
:product => 'light red vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some ground lichen', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 3, 13 ],
},
r = {
:product => 'orange vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed coppery rain lily', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 3, 13 ],
},
r = {
:product => 'pink vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some ground orchil', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 3, 13 ],
},
r = {
:product => 'cream white vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some ground longgrass', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 4, 14 ],
},
r = {
:product => 'lavender blue vial of dye',
# fixme: This is a purple-cap cowrie shell, which becomes powdered cowrie shell.. a conflict with snake-head? bugged ingame
# I won't change it here, as it may try to use this recipe and 'wrong' shell for low-level reps.
:steps => [ 'light', 'add vial of translucent dye base', 'add some powdered purple-cap cowrie', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 4, 14 ],
},
r = {
:product => 'pale yellow vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed yellow clover', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 4, 14 ],
},
r = {
:product => 'tan vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed onion skin', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 4, 14 ],
},
r = {
:product => 'bright yellow vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed gorse', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 5, 15 ],
},
r = {
:product => 'white vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some ground valerian', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 5, 15 ],
},
r = {
:product => 'grey vial of dye',
:steps => [ 'light', 'add vial of translucent dye base', 'add some mashed alligator lily', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 7, 17 ],
},
r = {
:product => 'vial of limpid dye base',
:steps => [ 'light', 'add flask of clear water', 'add some ground murdroot', 'add some ground murdroot', 'add some powdered lump of grey ambergris', 'boil', "add s'ayanad crystal", 'add crystalline globe', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'tangerine yellow vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some mashed tiger lily', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'light ginger vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some mashed red clover', 'add some ground ginger', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'raven black vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some ground trollfear mushroom', 'add some ground trollfear mushroom', 'add some ground alder bark', 'add some ground alder bark', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'goldenrod yellow vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some mashed stalk of goldenrod', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'rosy pink vial of dye',
# not yellow primrose
:steps => [ 'light', 'add vial of limpid dye base', 'add some mashed primrose', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'azure vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some ground valerian', 'add some ground valerian', 'add some ground woad leaves', 'add some ground woad leaves', 'simmer', 'add some powdered blue spinel', 'add some powdered blue spinel', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'cerulean blue vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some mashed yellow clover', 'add some mashed yellow clover', 'add some ground woad leaves', 'add some ground woad leaves', 'simmer', 'add some powdered blue lapis lazuli', 'add some powdered blue lapis lazuli', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'cobalt blue vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some ground woad leaves', 'add some ground woad leaves', 'add some ground alder bark', 'add some ground alder bark', 'simmer', 'add some powdered blue lapis lazuli', 'add some powdered blue lapis lazuli', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'periwinkle blue vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some ground woad leaves', 'add some ground woad leaves', 'add some ground orchil', 'add some ground orchil', 'simmer', 'add some powdered red coral', 'add some powdered red coral', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'turquoise blue vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some mashed stalk of bluebells', 'add some mashed stalk of bluebells', 'add some ground woad leaves', 'add some ground woad leaves', 'simmer', 'add some powdered turquoise stone', 'add some powdered turquoise stone', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'cranberry red vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some mashed bright red cranberry', 'simmer', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'slate grey vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some ground valerian', 'add some ground valerian', 'add some ground alder bark', 'add some ground alder bark', 'add some ground alder bark', 'simmer', 'add some powdered white clam shell', 'add some powdered white clam shell', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'slate grey vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some ground valerian', 'add some ground valerian', 'add some ground alder bark', 'add some ground alder bark', 'add some ground alder bark', 'simmer', 'add some powdered white chalcedony', 'add some powdered white chalcedony', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'scarlet vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some mashed orange begonia', 'simmer', 'add some powdered nassa shell', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'tawny brown vial of dye',
:steps => [ 'light', 'add vial of limpid dye base', 'add some powdered walnuts', 'add some powdered walnuts', 'add some mashed onion skin', 'add some mashed onion skin', 'simmer', 'add ruff of raptor feathers', 'add ruff of raptor feathers', 'boil', 'seal' ],
:type => 'alchemy',
},
r = {
:product => 'vial of clear dye base',
:steps => [ 'light', 'add flask of clear water', 'add some ground murdroot', 'add some ground murdroot', 'add some ground murdroot', 'add some ground murdroot', 'add some powdered lump of grey ambergris', 'boil', "add t'ayanad crystal", "add t'ayanad crystal", 'add vial of farlook vitreous humor', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'vial of clear dye base',
:steps => [ 'light', 'add flask of clear water', 'add some ground murdroot', 'add some ground murdroot', 'add some ground murdroot', 'add some ground murdroot', "add t'ayanad crystal", "add t'ayanad crystal", 'simmer', 'add some powdered grey caederine', "add s'ayanad crystal", 'boil', 'add vial of farlook vitreous humor', 'infuse', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'sapphire blue vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some ground blue moss', 'add some ground blue moss', 'simmer', 'add some powdered blue sapphire', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'silvery vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some mashed moonlight cactus-bloom', 'add some mashed moonlight cactus-bloom', 'add some mashed moonlight cactus-bloom', 'simmer', 'add some powdered silver fang', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'emerald green vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some ground green fungus', 'add some ground green fungus', 'simmer', 'add some powdered uncut emerald', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'golden vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some mashed flaeshorn berry', 'add some mashed flaeshorn berry', 'add some mashed flaeshorn berry', 'add some mashed flaeshorn berry', 'add some mashed flaeshorn berry', 'simmer', 'add pinch of gold dust', 'add pinch of gold dust', 'add pinch of gold dust', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'amethyst violet vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some mashed purple poppy', 'add some mashed purple poppy', 'add some mashed purple poppy', 'add some mashed purple poppy', 'add some mashed purple poppy', 'simmer', 'add some powdered deep blue amethyst', 'add some powdered deep blue amethyst', 'add some powdered deep blue amethyst', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'olivine vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some ground shadowlace moss', 'add some ground shadowlace moss', 'add some ground shadowlace moss', 'simmer', 'add some powdered olivine feanor-bloom', 'add some powdered olivine feanor-bloom', 'add some powdered olivine feanor-bloom', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'coppery vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some mashed coppery rain lily', 'add some mashed coppery rain lily', 'add some mashed coppery rain lily', 'add some mashed coppery rain lily', 'add some mashed coppery rain lily', 'simmer', 'add some powdered copper fang', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'rainbow vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some mashed stargazer lily', 'add some mashed stargazer lily', 'add some mashed stargazer lily', 'simmer', 'add some powdered swirling aetherstone', 'add some powdered swirling aetherstone', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'ruby red vial of dye',
:steps => [ 'light', 'add vial of clear dye base', 'add some mashed red passionflower', 'add some mashed red passionflower', 'add some mashed red passionflower', 'add some mashed red passionflower', 'add some mashed red passionflower', 'simmer', 'add some powdered uncut ruby', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'brilliant dye additive',
:steps => [ 'light', 'add vial of clear dye base', 'add some powdered grey caederine', 'boil', 'add some ground sponge mushroom', 'add some ground sponge mushroom', 'add some ground sponge mushroom', 'simmer', 'add some powdered star-of-Tamzyrr diamond', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'glimmering dye additive',
:steps => [ 'light', 'add vial of clear dye base', 'add some powdered grey caederine', 'boil', 'add some fetid black slime', 'simmer', 'add some powdered maernstrike diamond', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'glittering dye additive',
:steps => [ 'light', 'add vial of clear dye base', 'add some powdered grey caederine', 'boil', 'add mass of congealed slime', 'simmer', 'add some powdered blue diamond', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'glowing dye additive',
:steps => [ 'light', 'add vial of clear dye base', 'add some powdered grey caederine', 'boil', 'add some ground lichen', 'add some ground lichen', 'add some ground lichen', 'simmer', 'add some powdered uncut diamond', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'radiant dye additive',
:steps => [ 'light', 'add vial of clear dye base', 'add some powdered grey caederine', 'boil', 'add some ground wyrm thorn', 'add some ground wyrm thorn', 'simmer', 'add some powdered clear glimaerstone', "add some powdered dragon's-tear diamond", 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'shimmering dye additive',
:steps => [ 'light', 'add vial of clear dye base', 'add some powdered grey caederine', 'boil', 'add some ground petrified shadowstalk', 'add some ground petrified shadowstalk', 'simmer', 'add some powdered uncut diamond', 'add some powdered shimmertine shard', 'add some powdered shimmertine shard', 'add some powdered shimmertine shard', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'shining dye additive',
:steps => [ 'light', 'add vial of clear dye base', 'add some powdered grey caederine', 'boil', 'add some ground bloodthorn stem', 'add some ground bloodthorn stem', 'simmer', 'add some powdered yellow hyacinth', 'add some powdered maernstrike diamond', 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'sparkling dye additive',
:steps => [ 'light', 'add vial of clear dye base', 'add some powdered grey caederine', 'boil', 'add some ground bone mushroom', 'add some ground bone mushroom', 'simmer', "add some powdered dragon's-tear diamond", 'channel', 'seal' ],
:type => 'alchemy',
:rank => [ 54, 62 ],
},
r = {
:product => 'vial of hair dye base',
:steps => [ 'light', 'add flask of pure oil', 'add some powdered black ambergris', "add s'ayanad crystal", 'add perfect myklian belly scale', 'add some murdroot essence', 'add some murdroot essence', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 26, 36 ],
},
r = {
:product => 'temporary honey blonde hair dye',
:steps => [ 'light', 'add vial of hair dye base', 'add some mashed golden buttercup', 'add some powdered honey beryl', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 26, 36 ],
},
r = {
:product => 'temporary mossy green hair dye',
:steps => [ 'light', 'add vial of hair dye base', 'add some cave moss', 'add some cave moss', 'add witchwood twig', 'add some powdered malachite stone', 'add some powdered malachite stone', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 26, 36 ],
},
r = {
:product => 'temporary dingy hair dye',
:steps => [ 'light', 'add vial of hair dye base', 'add wight skin', 'add some faintly glimmering dust', 'add few lumps of charcoal', 'add few lumps of charcoal', 'boil', 'seal' ],
:type => 'alchemy',
:rank => [ 26, 36 ],
},
r = {
:product => 'temporary plum-colored hair dye',
:steps => [ 'light', 'add vial of hair dye base', 'add some mashed juicy plum', 'add some mashed juicy plum', 'add some powdered violet sapphire', 'add black dreamstone', 'simmer', 'seal' ],
:type => 'alchemy',
:rank => [ 26, 36 ],
},
r = {
:product => 'hazy silver potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground haphip', 'add some ground haphip', 'add some ground haphip', 'add some powdered lump of grey ambergris', 'add some powdered lump of grey ambergris', 'add some powdered lump of grey ambergris', 'add glowing firefly', 'add glowing firefly', 'add glowing firefly', 'add glowing firefly', 'boil', 'add giant glowing toadstool', 'add giant glowing toadstool', 'add giant glowing toadstool', 'add Elanthian snow rose', 'add soft blue griffin feather', 'simmer', 'add some powdered rock crystal', 'add some essence of vitality', 'add some essence of vitality', 'add vial of faintly glowing aelotoi tears', 'seal' ],
:type => 'alchemy',
},
#
# alchemic potions recipes
#
r = {
:product => 'light blue potion',
:steps => [ 'light', 'add flask of clear water', 'add ayana leaf', 'simmer', 'add some powdered turquoise stone', 'boil', 'add small daisy', 'add small daisy', 'chant 101', 'seal' ],
:type => 'potions',
:spell => '101',
:rank => [ 2, 13 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'silvery potion',
:steps => [ 'light', 'add flask of clear water', 'add ayana leaf', 'boil', 'add some powdered smoky topaz', 'simmer', 'chant 401', 'seal' ],
:type => 'potions',
:spell => '401',
:rank => [ 2, 13 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'cloudy grey tonic',
:nick => 'minor stamina potion',
:steps => [ 'light', 'add flask of clear water', 'add smooth stone', 'add smooth stone', 'add some ground oats', 'add some essence of vitality', 'simmer', 'seal' ],
:type => 'potions',
:rank => [ 4, 14 ],
:for => [ 'Empath' ],
},
r = {
:product => 'cloudy grey tonic',
:nick => 'minor stamina potion',
:steps => [ 'light', 'add flask of clear water', 'add smooth stone', 'add some powdered water chestnut', 'add some powdered water chestnut', 'add some powdered water chestnut', 'add some essence of vitality', 'simmer', 'seal' ],
:type => 'potions',
:rank => [ 4, 14 ],
:for => [ 'Empath' ],
},
r = {
:product => 'swirling grey potion',
:steps => [ 'light', 'add flask of clear water', 'add giant skin', 'boil', 'add some essence of air', 'simmer', 'chant 102', 'seal' ],
:type => 'potions',
:spell => '102',
:rank => [ 5, 16 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'swirling grey potion',
:steps => [ 'light', 'add flask of clear water', 'add cockatrice plume', 'add cockatrice plume', 'boil', 'add some essence of air', 'simmer', 'chant 102', 'seal' ],
:type => 'potions',
:spell => '102',
:rank => [ 5, 16 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'shimmering pale green potion',
:steps => [ 'light', 'add flask of clear water', 'add sprig of larkspur', 'simmer', 'add glistening black eye', 'boil', 'add some powdered green sapphire', 'chant 402', 'seal' ],
:type => 'potions',
:spell => '402',
:rank => [ 5, 16 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'dimly glowing golden potion',
:steps => [ 'light', 'add flask of clear water', 'add some valerian root', 'add some valerian root', 'simmer', 'add wight skin', 'add wight skin', 'boil', 'add some powdered yellow sapphire', 'chant 202', 'seal' ],
:type => 'potions',
:spell => '202',
:rank => [ 7, 19 ],
:for => [ 'Cleric', 'Empath' ],
},
r = {
:product => 'luminous ruddy potion',
:steps => [ 'light', 'add flask of clear water', 'add sprig of holly', 'add sprig of holly', 'boil', 'add some powdered violet sapphire', 'simmer', 'add boar tusk', 'add boar tusk', 'chant 103', 'seal' ],
:type => 'potions',
:spell => '103',
:rank => [ 8, 20 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'scintillating pale blue potion',
:steps => [ 'light', 'add flask of clear water', 'add blue trafel mushroom', 'boil', 'add some powdered blue lapis lazuli', 'simmer', 'add ayanad crystal', 'add ayanad crystal', 'add ayanad crystal', 'chant 403', 'seal' ],
:type => 'potions',
:spell => '403',
:rank => [ 8, 20 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'dark shimmering oil',
:steps => [ 'light', 'add flask of pure oil', 'add some powdered black jasper', 'add ayanad crystal', 'add ayanad crystal', 'boil', 'add jagged translucent crystal', 'simmer', 'chant 902', 'seal' ],
:type => 'potions',
:spell => '902',
:rank => [ 9, 21 ],
:for => [ 'Wizard' ],
},
r = {
:product => 'minor repelling oil',
:steps => [ 'light', 'add flask of blessed oil', 'add some mashed mournbloom', 'add some powdered white opal', 'add some glowing white powder', 'boil', 'seal' ],
:type => 'potions',
:rank => [ 10, 20 ],
:for => [ 'Cleric' ],
},
r = {
:product => 'flask of aromatic yellow oil',
:nick => 'minor exorcism oil',
:steps => [ 'light', 'add flask of blessed oil', 'add some mashed sneezeweed', 'add some powdered yellow sapphire', 'add some glowing white powder', 'boil', 'seal' ],
:type => 'potions',
:rank => [ 10, 20 ],
:for => [ 'Cleric' ],
},
r = {
:product => 'rohnuru potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground ayana', 'add some essence of water', 'chant 925', 'add some faintly glowing dust', 'boil', 'seal' ],
:type => 'potions',
:rank => [ 10, 22 ],
:for => [ 'Wizard' ],
},
r = {
:product => 'pale sky-blue potion',
:steps => [ 'light', 'add flask of clear water', 'add white hook mushroom', 'boil', 'add ghoul nail', 'add ghoul nail', 'simmer', 'add some powdered star sapphire', 'chant 104', 'seal' ],
:type => 'potions',
:spell => '104',
:rank => [ 11, 24 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'pale sky-blue potion',
:steps => [ 'light', 'add flask of clear water', 'add white hook mushroom', 'boil', 'add ghoul nail', 'add ghoul nail', 'simmer', 'add some powdered star sapphire', 'chant 104', 'seal' ],
:type => 'potions',
:spell => '104',
:rank => [ 11, 24 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'minor heath-well potion',
:steps => [ 'light', 'add flask of clear water', 'add some powdered golden amber', 'add some powdered golden amber', 'add small troll tooth', 'add small troll tooth', 'boil', 'add ayana leaf', 'add bear paw', 'simmer', 'seal' ],
:type => 'potions',
:rank => [ 11, 21 ],
:for => [ 'Empath' ],
},
r = {
:product => 'scintillating pale red potion',
:steps => [ 'light', 'add flask of clear water', 'add red trafel mushroom', 'boil', 'add some powdered brown sphene', 'simmer', 'add ayanad crystal', 'add ayanad crystal', 'add ayanad crystal', 'chant 404', 'seal' ],
:type => 'potions',
:spell => '404',
:rank => [ 11, 24 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'foamy dark amber elixir',
:nick => 'minor health-well potion',
:steps => [ 'light', 'add flask of clear water', 'add some powdered golden amber', 'add some powdered golden amber', 'add small troll tooth', 'add small troll tooth', 'boil', 'add ayana leaf', 'add bear paw', 'simmer', 'seal' ],
:type => 'potions',
:rank => [ 10, 21 ],
:for => [ 'Empath' ],
},
r = {
:product => 'pale sea-green potion',
:steps => [ 'light', 'add flask of clear water', 'add viper fang', 'boil', 'add some ground sweetfern stalk', 'add some ground sweetfern stalk', 'simmer', 'add some powdered green tourmaline', 'chant 105', 'seal' ],
:type => 'potions',
:spell => '105',
:rank => [ 12, 27 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'pale sea-green potion',
:steps => [ 'light', 'add flask of clear water', 'add tree viper fang', 'add tree viper fang', 'boil', 'add some ground sweetfern stalk', 'add some ground sweetfern stalk', 'simmer', 'add some powdered green tourmaline', 'chant 105', 'seal' ],
:type => 'potions',
:spell => '105',
:rank => [ 12, 27 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'minor elemental focus potion',
:steps => [ 'light', 'add flask of clear water', 'add some powdered blue peridot', 'add some powdered blue peridot', 'add some powdered green peridot', 'boil', 'add some ground flathead mushroom', "add s'ayanad crystal", 'simmer', 'seal' ],
:type => 'potions',
:rank => [ 12, 22 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
# fixme: grind mother-of-pearl?
:product => 'rainbow-hued potion',
:steps => [ 'light', 'add flask of clear water', 'add crimson dragonstalk', 'simmer', 'add iridescent piece of mother-of-pearl', 'add myklian scale', 'boil', 'chant 405', 'seal' ],
:type => 'potions',
:spell => '405',
:rank => [ 14, 28 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'rainbow-hued potion',
:steps => [ 'light', 'add flask of clear water', 'add crimson dragonstalk', 'simmer', 'add some powdered rainbow quartz', 'boil', 'chant 405', 'seal' ],
:type => 'potions',
:spell => '405',
:rank => [ 14, 28 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'bright silvery potion',
:steps => [ 'light', 'add flask of clear water', 'add silver mane', 'add some powdered silvery conch shell', 'simmer', 'chant 406', 'seal' ],
:type => 'potions',
:spell => '406',
:rank => [ 18, 31 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'bright silvery potion',
:steps => [ 'light', 'add flask of clear water', 'add ursian tusk', 'add ursian tusk', 'add some powdered shimmertine shard', 'boil', 'chant 406', 'seal' ],
:type => 'potions',
:spell => '406',
:rank => [ 18, 31 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'sarmoc potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground ayana', 'add some essence of water', 'chant 925', 'add some faintly glimmering dust', 'boil', 'add some essence of fire', 'chant 417', 'seal' ],
:type => 'potions',
:rank => [ 18, 31 ],
:for => [ 'Wizard' ],
},
r = {
:product => 'some minor holy oil',
:steps => [ 'light', 'add flask of blessed oil', 'add wraith talon', 'add wraith talon', 'add wraith talon', 'add wraith talon', 'add some powdered white jade', 'boil', 'add ayanad crystal', 'add some glowing white powder', 'simmer', 'chant 304', 'seal' ],
:type => 'potions',
:spell => '304',
:rank => [ 19, 32 ],
:for => [ 'Cleric' ],
},
r = {
:product => 'deep blue potion',
:steps => [ 'light', 'add flask of clear water', 'add blue poppy', 'add blue poppy', 'add blue poppy', 'simmer', 'add ghoul finger', 'boil', 'add some powdered smoky glimaerstone', 'chant 107', 'seal' ],
:type => 'potions',
:spell => '107',
:rank => [ 20, 34 ],
:for => [ 'Cleric', 'Empath', 'Sorcerer' ],
},
r = {
:product => 'duqnuru potion',
:steps => [ 'light', 'add flask of clear water', 'add some ground ayana', 'add some ground ayana', 'add some essence of water', 'add some essence of water', 'chant 925', 'add some faintly glowing dust', 'boil', 'seal' ],
:type => 'potions',
:rank => [ 20, 33 ],
:for => [ 'Wizard' ],
},
r = {
:product => 'softly glowing blue potion',
:steps => [ 'light', 'add flask of clear water', 'add blue trafel mushroom', 'add blue trafel mushroom', 'boil', 'add ayanad crystal', 'add ayanad crystal', 'simmer', 'add some powdered rhodochrosite stone', 'chant 407', 'seal' ],
:type => 'potions',
:spell => '407',
:rank => [ 21, 34 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'softly glowing red potion',
:steps => [ 'light', 'add flask of clear water', 'add red trafel mushroom', 'add red trafel mushroom', 'boil', 'add ayanad crystal', 'add ayanad crystal', 'simmer', 'add some powdered rhodochrosite stone', 'chant 408', 'seal' ],
:type => 'potions',
:spell => '408',
:rank => [ 23, 38 ],
:for => [ 'Wizard', 'Sorcerer' ],
},
r = {
:product => 'thick silver potion',
:steps => [ 'light', 'add flask of clear water', 'add silvery hoof', 'add some powdered star sapphire', 'boil', 'add sprig of foxglove', 'add sprig of foxglove', 'add sprig of foxglove', 'add sprig of foxglove', 'simmer', 'chant 506', 'seal' ],
:type => 'potions',
:spell => '506',
:rank => [ 23, 38 ],
:for => [ 'Wizard' ],
},
r = {
:product => 'thick silver potion',
:steps => [ 'light', 'add flask of clear water', 'add viper fang', 'add some powdered black sphene', 'boil', 'add sprig of foxglove', 'add sprig of foxglove', 'add sprig of foxglove', 'add sprig of foxglove', 'simmer', 'chant 506', 'seal' ],
:type => 'potions',
:spell => '506',
:rank => [ 23, 38 ],
:for => [ 'Wizard' ],
},
r = {
:product => 'prismatic potion',
:steps => [ 'light', 'add flask of clear water', 'add some powdered green sapphire', 'add ayanad crystal', 'boil', 'add troll fang', 'add troll fang', 'add shimmering prismatic shard', 'simmer', 'chant 905', 'seal' ],
:type => 'potions',
:spell => '905',
:rank => [ 24, 39 ],
:for => [ 'Wizard' ],
},
r = {
:product => 'prismatic potion',
:steps => [ 'light', 'add flask of clear water', 'add some powdered fiery jacinth', 'add ayanad crystal', 'boil', 'add goat hoof', 'add goat hoof', 'add shimmering prismatic shard', 'simmer', 'chant 905', 'seal' ],
:type => 'potions',
:spell => '905',
:rank => [ 24, 39 ],
:for => [ 'Wizard' ],
},
r = {
:product => 'pinkish-grey tonic',
:nick => 'lesser stamina potion',
:steps => [ 'light', 'add flask of clear water', 'add some powdered star ruby', 'add glimmering blue essence shard', 'add some essence of vitality', 'boil', 'seal' ],
:type => 'potions',
:rank => [ 24, 34 ],
:for => [ 'Empath' ],
},
r = {
:product => 'minor spirit-well potion',
:steps => [ 'light', 'add flask of blessed water', 'add some mashed pale yellow daffodil', 'add some mashed pale yellow daffodil', 'add some mashed pale yellow daffodil', 'add some mashed pale yellow daffodil', 'infuse', 'chant 308', 'add white pearl', 'boil', 'add some glowing violet essence dust', 'simmer', 'seal' ],