ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/formulae
Revision: 1.5
Committed: Fri Feb 16 19:43:41 2007 UTC (17 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-2_2, rel-2_3, rel-2_0, rel-2_1
Changes since 1.4: +241 -241 lines
Log Message:
- identified random memory corrutpion bug
- fixed most likely cause for bug above
- rewrote object loader etc. into a simple one-line lookahead
  parser.
- rewrote/cleaned up archetype, treasure, artifact, formula parser.
- some optimisations / cleanups

File Contents

# User Rev Content
1 root 1.1 #
2     # Herein lie the formulae for alchemical products.
3     #
4     # The code is designed so that any fancy combination
5     # of objects may be combined to comprise a formula. Because
6     # the code only requests that the 'names' (see def below)
7     # of cauldron ingredients match those listed in the formula
8     # you can use *anything* found in the game as a possible
9     # ingredient. Legal names include both obj->name and a
10     # title field, if it exists. Therefore, it *is* legal to use
11     # an artifact like "cloak of protection" as an ingredient.
12     #
13     # Definitions of fields:
14     #
15 root 1.5 # "object" This is the title of the formula. In
16 root 1.1 # conjunction with a value in "arch" these
17     # are used to lookup artifacts from the
18     # artifacts file (ie. <arch> of <title>).
19     # If you want to just create the arch w/o
20     # making it an artifact, designate the
21     # object field as "NONE".
22     #
23     # "chance" is how likely a formula is to appear in
24     # an alchemical grimore. Chance of 0 indicates
25     # the formula never appears.
26     #
27     # "arch" indicates the possible archetype that may
28     # be used to generate the item.
29     #
30     # "ingred" is a comma delimited list of ingredients
31     # that are needed to create the item. Each
32     # alchemical formula *should* be unique! but
33     # note that this is not required. Values of
34     # ingredients must be the object names. Prepend
35     # an integer value to denote the number of that
36     # ingredient ("1" is not needed for single
37     # ingredients). Note that the ordering of the
38     # ingredients is *not* important.
39     #
40     # "yield" is the theoretical possible maximum # of
41     # items the recipe can generate.
42     # It is fundamentally useful for balancing
43     # reward/effort for these recipes. One intention
44     # is to enforce conservation of mass by means
45     # of this #.
46     #
47     # "trans" defaults to '0' and is not explicitly needed.
48     # If you define it to any value (ie '1') then
49     # one of the ingredients will be used as the base
50     # arch for the product. Obviously, the ingredient
51     # so used *must* have the same archetype as the
52     # product so don't be a fool and leave out a
53     # common archetype ingredient!! See bolt of Dragon
54     # slaying for an example of a transmution formula.
55     #
56     # "keycode" A string, such as "fire". In order for the alchemist
57     # to execute this recipe, he must have a FORCE with a
58     # slaying field matching the keycode
59     #
60     # "skill" A string, such as "alchemy". This is the name of the skill
61     # that is used to create this formula. This is a required field
62     # and must match one of the following:
63     # smithery, bowyer, jeweler, alchemy, thaumaturgy, literacy,
64     # woodsman
65     #
66     # "cauldron" A string, which must be the valid archetype name for an
67     # archetype. In the example of a true alchemy formula, this
68     # would be a cauldron. A smithery formula might use something
69     # like a forge. You can create formulae that are only usable
70     # with a specific facilities. This field is required.
71     #
72     # "exp" A required integer. This is the amount of experience a user
73     # gets by using this formula. You should factor difficulty in
74     # when setting exp. The game does not do this for you.
75     #
76     # "diff" A required integer. This is the percentage difficulty out of
77     # 100 of how hard this formula is. This is the only factor used in
78     # determining success or failure of the creation.
79     #
80     # IMPORTANT NOTE ---->
81     # It is not enough to construct ad-hoc lists of
82     # ingredients to make a formula. Playbalance will
83     # be adversely effected if you make a formula for
84     # a powerfull artifact (potion of stat raising, for
85     # example) that is common, and/or easy to assemble
86     # the ingredients, and/or has few ingredients. Thus,
87     # here are some general guidelines for making formulae:
88     #
89     # 1) no fewer than 2 ingredients
90     # 2) at least one ingredient needs to be found
91     # in the dungeon, or is rarely appearing in shop.
92     # 3) more ingredients for more powerfull stuff.
93     # 4) more 'expensive' ingredients for more powerfull
94     # stuff. 'expensive' here means its harder to get,
95     # more costly to buy, rarer to find.
96     # 5) Run crossfire with the -m9 switch to check your formula -
97     # It does some sanity checking and price checking
98     #
99     #
100     # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
101     # F O R M U L A E B E G I N
102     # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
103     #
104     # --------------
105     # Basic formulae - these formulae make some of the most often used
106     # ingredients.
107     # --------------
108     #
109     # true lead
110 root 1.5 object NONE
111 root 1.1 arch true_lead
112     yield 2
113     chance 5
114     diff 20
115     exp 100000
116     skill alchemy
117     cauldron cauldron
118     ingred lead,pile of philosophical salt,bottle of philosophical oil,pile of philosophical sulphur,pile of philosophical phosphorus
119     #
120     # fixed mercury
121 root 1.5 object NONE
122 root 1.1 arch fix_mercury
123     yield 2
124     chance 5
125     diff 20
126     exp 100000
127     skill alchemy
128     cauldron cauldron
129     ingred mercury,pile of philosophical salt,bottle of philosophical oil,pile of philosophical sulphur,pile of philosophical phosphorus
130     #
131     # mercury
132 root 1.5 object NONE
133 root 1.1 arch mercury
134     chance 10
135     diff 5
136     exp 1000
137     skill alchemy
138     cauldron cauldron
139     ingred 3 pile of cinnabar
140     #
141     # philosophical salt
142 root 1.5 object NONE
143 root 1.1 arch phil_salt
144     chance 10
145     diff 5
146     exp 1000
147     yield 7
148     skill alchemy
149     cauldron cauldron
150     ingred 7 pile of salt
151     #
152     # philosophical sulphur
153 root 1.5 object NONE
154 root 1.1 arch phil_sulphur
155     chance 10
156     diff 5
157     exp 1000
158     yield 7
159     skill alchemy
160     cauldron cauldron
161     ingred 7 pile of sulphur
162     #
163     # philosophical phosphorus
164 root 1.5 object NONE
165 root 1.1 arch phil_phosphorus
166     chance 10
167     diff 5
168     exp 1000
169     yield 7
170     skill alchemy
171     cauldron cauldron
172     ingred 7 pile of phosphorus
173     #
174     # philosophical oil
175 root 1.5 object NONE
176 root 1.1 arch phil_oil
177     chance 9
178     diff 5
179     exp 1000
180     yield 7
181     skill alchemy
182     cauldron cauldron
183     ingred 7 bottle of mineral oil
184     #
185     # water of the wise
186 root 1.5 object the wise
187 root 1.1 arch water
188     chance 30
189     diff 8
190     exp 1000
191     yield 7
192     skill alchemy
193     cauldron cauldron
194     ingred 7 water
195     #
196     # water of diamond
197 root 1.5 object diamond
198 root 1.1 arch water
199     chance 30
200     diff 10
201     exp 5000
202     yield 1
203     skill alchemy
204     cauldron cauldron
205     ingred water of the wise,3 diamond
206     #
207     # water of ruby
208 root 1.5 object ruby
209 root 1.1 arch water
210     diff 10
211     exp 5000
212     chance 35
213     skill alchemy
214     cauldron cauldron
215     ingred 3 ruby,water of the wise
216     #
217     # water of sapphire
218 root 1.5 object sapphire
219 root 1.1 arch water
220     diff 10
221     exp 5000
222     chance 40
223     skill alchemy
224     cauldron cauldron
225     ingred 3 sapphire,water of the wise
226     #
227     # water of emerald
228 root 1.5 object emerald
229 root 1.1 arch water
230     chance 40
231     diff 10
232     exp 5000
233     skill alchemy
234     cauldron cauldron
235     ingred 3 emerald,water of the wise
236     #
237     # water of pearl
238 root 1.5 object pearl
239 root 1.1 arch water
240     chance 40
241     diff 10
242     exp 5000
243     skill alchemy
244     cauldron cauldron
245     ingred 3 pearl,water of the wise
246     #
247     #
248     # --------------
249     # Potions -- incl. balms, figurines, and dusts
250     # --------------
251     #
252     # -- Balms of protection. Since balm is rubbed on, I made only
253     # protections vs. things that 'physically' must touch you.
254     # Other protections are in potion.
255     #
256     # -- balms of protection --
257     #
258     # -- fire prot.
259 root 1.5 object asbestos
260 root 1.1 arch balm_generic
261     chance 25
262     diff 15
263     exp 8000
264     skill alchemy
265     cauldron cauldron
266     ingred 3 dragon scale,water of the wise
267     #
268     # -- cold prot. #1
269 root 1.5 object warmth
270 root 1.1 arch balm_generic
271     chance 25
272     diff 16
273     exp 9000
274     skill alchemy
275     cauldron cauldron
276     ingred vampire's heart,water of the wise,icecube
277     #
278     # -- cold prot. #2
279 root 1.5 object warmth
280 root 1.1 arch balm_generic
281     chance 25
282     diff 14
283     exp 6000
284     skill alchemy
285     cauldron cauldron
286     ingred vampire's heart,water of the wise,water of pearl
287     #
288     # -- elect prot.
289 root 1.5 object insulation
290 root 1.1 arch balm_generic
291     chance 25
292     diff 14
293     exp 7000
294     skill alchemy
295     cauldron cauldron
296     ingred beholdereye,water of the wise,2 key
297     #
298     # -- phys. prot.
299 root 1.5 object aethereality
300 root 1.1 arch balm_generic
301     chance 28
302     diff 17
303     exp 8000
304     skill alchemy
305     cauldron cauldron
306     ingred 3 ghost's ectoplasm,water of emerald
307     #
308     # -- misc. balms --
309     #
310     # -- word of recall
311 root 1.5 object return home
312 root 1.1 arch balm_generic
313     chance 2
314     diff 12
315     exp 6000
316     yield 3
317     skill alchemy
318     cauldron cauldron
319     ingred 3 xan's wing,3 pixie's wings,3 water of sapphire
320     #
321     # -- invisible
322 root 1.5 object transparency
323 root 1.1 arch balm_generic
324     chance 8
325     diff 14
326     exp 7000
327     skill alchemy
328     cauldron cauldron
329     ingred ghost's ectoplasm,water of emerald,3 onion
330     #
331     # -- invisible to undead
332 root 1.5 object invisible to undead
333 root 1.1 arch balm_generic
334     chance 15
335     diff 10
336     exp 5000
337     skill alchemy
338     cauldron cauldron
339     ingred zombie's corpse,graveyard dirt
340     #
341     # -- minor heal
342 root 1.5 object first aid
343 root 1.1 arch balm_generic
344     chance 27
345     diff 9
346     exp 4000
347     skill alchemy
348     cauldron cauldron
349     ingred water of the wise,mandrake root
350     #
351     # -- levitation
352 root 1.5 object flying
353 root 1.1 arch balm_generic
354     chance 20
355     diff 13
356     exp 7000
357     skill alchemy
358     cauldron cauldron
359     ingred 2 giant bat's wing,water of the wise
360     #
361     # -- serpent to snake (you rub it on your staff!)
362 root 1.5 object the serpent
363 root 1.1 arch balm_generic
364     chance 12
365     diff 12
366     exp 6000
367     skill alchemy
368     cauldron cauldron
369     ingred snake's skin,bottle of philosophical oil
370     #
371     # Figurines -- these devices should only summon 'golems'; never any
372     # other effects.
373     #
374     # -- summon golem
375 root 1.5 object clay
376 root 1.1 arch figurine_generic
377     chance 8
378     diff 8
379     exp 3000
380     skill alchemy
381     cauldron cauldron
382     ingred 3 graveyard dirt,water of the wise
383     #
384     # -- summon air elem
385 root 1.5 object whirlwind
386 root 1.1 arch figurine_generic
387     chance 7
388     diff 20
389     exp 20000
390     yield 4
391     skill alchemy
392     cauldron cauldron
393     ingred air para-elemental's residue,7 pile of gypsum,bottle of philosophical oil
394     #
395     # -- summon earth elem
396 root 1.5 object stone
397 root 1.1 arch figurine_generic
398     chance 5
399     diff 20
400     exp 20000
401     yield 4
402     skill alchemy
403     cauldron cauldron
404     ingred earth para-elemental's residue,7 pile of pyrite,bottle of philosophical oil
405     #
406     # -- summon water elem
407 root 1.5 object a great wave
408 root 1.1 arch figurine_generic
409     chance 4
410     diff 20
411     exp 20000
412     yield 4
413     skill alchemy
414     cauldron cauldron
415     ingred water para-elemental's residue,7 water,bottle of philosophical oil
416     #
417     # -- summon fire elem
418 root 1.5 object a flame
419 root 1.1 arch figurine_generic
420     chance 3
421     diff 20
422     exp 20000
423     yield 4
424     skill alchemy
425     cauldron cauldron
426     ingred fire para-elemental's residue,7 pile of sulphur,bottle of philosophical oil
427     #
428     # -- mystic fist
429 root 1.5 object a clenched hand
430 root 1.1 arch figurine_generic
431     chance 1
432     yield 7
433     diff 14
434     exp 10000
435     skill alchemy
436     cauldron cauldron
437     ingred figurine of clay,hill giant's hand,bottle of philosophical oil
438     #
439     # Dusts -- these either allow 360 deg 'attacks' or effect some kind of
440     # detection.
441     #
442     # -- dusts w/ 360 effect --
443     #
444     # -- paralyze
445 root 1.5 object stasis
446 root 1.1 arch dust_generic
447     chance 15
448     diff 10
449     exp 5000
450     skill alchemy
451     cauldron cauldron
452     ingred mountain stone,goblin's liver
453     #
454     # -- mass confusion
455 root 1.5 object madness
456 root 1.1 arch dust_generic
457     chance 15
458     diff 12
459     exp 6000
460     yield 2
461     skill alchemy
462     cauldron cauldron
463     ingred madman's corpse,2 water of the wise
464     #
465     # -- burning hands
466 root 1.5 object ignition
467 root 1.1 arch dust_generic
468     chance 19
469     yield 4
470     diff 15
471     exp 8000
472     skill alchemy
473     cauldron cauldron
474     ingred water of diamond,pile of salt,pile of phosphorus,pile of sulphur
475     #
476     # -- hellfire
477 root 1.5 object conflagration
478 root 1.1 arch dust_generic
479     chance 5
480     yield 4
481     diff 20
482     exp 20000
483     skill alchemy
484     cauldron cauldron
485     ingred water of diamond,pile of philosophical salt,pile of philosophical phosphorus,pile of philosophical sulphur
486     #
487     # -- counterspell
488 root 1.5 object countermagic
489 root 1.1 arch dust_generic
490     chance 23
491     diff 15
492     exp 9000
493     yield 4
494     skill alchemy
495     cauldron cauldron
496     ingred 2 lead,pile of philosophical phosphorus
497     #
498     # -- icestorm #1
499 root 1.5 object frost
500 root 1.1 arch dust_generic
501     chance 18
502     diff 12
503     exp 10000
504     yield 4
505     skill alchemy
506     cauldron cauldron
507     ingred icecube,icecube,icecube,water of diamond
508     #
509     # -- icestorm #2
510 root 1.5 object frost
511 root 1.1 arch dust_generic
512     chance 18
513     diff 14
514     exp 8000
515     yield 3
516     skill alchemy
517     cauldron cauldron
518     ingred water of pearl,water of diamond,pile of gypsum
519     #
520     # -- shockwave
521 root 1.5 object concussion
522 root 1.1 arch dust_generic
523     chance 8
524     diff 10
525     exp 5000
526     yield 2
527     skill alchemy
528     cauldron cauldron
529     ingred dust of conflagration,dust of ignition
530     #
531     # -- fear
532 root 1.5 object fright
533 root 1.1 arch dust_generic
534     chance 16
535     diff 12
536     exp 6000
537     yield 2
538     skill alchemy
539     cauldron cauldron
540     ingred orc's heart,water of the wise
541     #
542     # -- turn undead
543 root 1.5 object repelling undead
544 root 1.1 arch dust_generic
545     chance 11
546     diff 9
547     exp 4500
548     yield 6
549     skill alchemy
550     cauldron cauldron
551     ingred pile of salt,graveyard dirt
552     #
553     # -- face of death -- this is potent stuff!!
554     # unfortuneately its currently buggy :<
555     #Object Necrocritis
556     #arch dust_generic
557     #chance 0
558     #ingred 3 graveyard dirt,vampire's heart,zombie corpse,lich dust
559     #
560     # -- dusts of detection --
561     #
562     # -- magic mapping
563 root 1.5 object clairvoyance
564 root 1.1 arch dust_generic
565     chance 14
566     diff 7
567     exp 4000
568     yield 6
569     skill alchemy
570     cauldron cauldron
571     ingred 2 beholdereye,water of sapphire
572     #
573     # -- show invisible
574 root 1.5 object revealing
575 root 1.1 arch dust_generic
576     chance 3
577     diff 9
578     exp 4500
579     yield 5
580     skill alchemy
581     cauldron cauldron
582     ingred 3 pile of gypsum,Dread's eye,water of emerald
583     #
584     # -- detect magic
585 root 1.5 object show enchantment
586 root 1.1 arch dust_generic
587     chance 38
588     diff 5
589     exp 2000
590     yield 5
591     skill alchemy
592     cauldron cauldron
593     ingred pixie dust,pile of pyrite
594     #
595     # -- dark vision
596 root 1.5 object night vision
597 root 1.1 arch dust_generic
598     chance 17
599     diff 15
600     exp 9000
601     yield 10
602     skill alchemy
603     cauldron cauldron
604     ingred beholdereye,3 carrots,water of the wise
605     #
606     # -- xray
607 root 1.5 object piercing vision
608 root 1.1 arch dust_generic
609     chance 11
610     yield 10
611     diff 9
612     exp 4500
613     skill alchemy
614     cauldron cauldron
615     ingred water of sapphire,7 carrots
616     #
617     # -- faery fire
618 root 1.5 object clinging glow
619 root 1.1 arch dust_generic
620     chance 21
621     diff 14
622     exp 8000
623     yield 10
624     skill alchemy
625     cauldron cauldron
626     ingred pile of pyrite,3 pixie dust,water of the wise
627     #
628     # -- fog, ok, ok. Not a detection spell. Not 360. But where else
629     # to put it? And after all the work I put in this game,
630     # can't I name an artifact after a favorite character? :)
631     # -- b.t.
632 root 1.5 object Biren's mist
633 root 1.1 arch dust_generic
634     chance 6
635     diff 15
636     exp 7000
637     yield 3
638     skill alchemy
639     cauldron cauldron
640     ingred water of the wise,icecube,booze
641     #
642     # biren's mist #2
643 root 1.5 object Biren's mist
644 root 1.1 arch dust_generic
645     chance 6
646     yield 6
647     diff 14
648     exp 7500
649     skill alchemy
650     cauldron cauldron
651     ingred water of the wise,water of pearl,booze
652     #
653     # -- command undead
654 root 1.5 object the Dead
655 root 1.1 arch dust_generic
656     chance 14
657     diff 14
658     exp 7000
659     yield 5
660     skill alchemy
661     cauldron cauldron
662     ingred skull's tongue,zombie's corpse,graveyard dirt
663     #
664     # -- light
665 root 1.5 object brightness
666 root 1.1 arch dust_generic
667     chance 24
668     diff 12
669     exp 6000
670     yield 6
671     skill alchemy
672     cauldron cauldron
673     ingred torch,water of ruby,pile of sulphur
674     #
675     # -- darkness
676 root 1.5 object impenatrability
677 root 1.1 arch dust_generic
678     chance 15
679     diff 18
680     exp 12000
681     yield 3
682     skill alchemy
683     cauldron cauldron
684     ingred burnt out torch,lead,dust of Biren's mist
685     #
686     # -- mana blast
687 root 1.5 object consuming wrath
688 root 1.1 arch dust_generic
689     chance 16
690     diff 18
691     exp 12000
692     yield 5
693     skill alchemy
694     cauldron cauldron
695     ingred water of diamond,pile of phosphorus,lead,pile of sulphur
696     #
697     # -- medium mana ball
698 root 1.5 object encompassing rage
699 root 1.1 arch dust_generic
700     chance 4
701     diff 20
702     exp 20000
703     yield 5
704     skill alchemy
705     cauldron cauldron
706     ingred water of diamond,pile of philosophical phosphorus,lead,pile of philosophical sulphur
707     #
708     #
709     # -- medium snowstowm
710 root 1.5 object blizzards
711 root 1.1 arch dust_generic
712     chance 5
713     yield 5
714     diff 15
715     exp 10000
716     skill alchemy
717     cauldron cauldron
718     ingred water of sapphire,dust of frost,bottle of philosophical oil
719     #
720     # Potions -- these give 'non-contact' protections, have
721     # attack effects on the 'drinker' (or one it is
722     # thrown at ;), give immunities, give cures and
723     # have the more powerfull misc. effects.
724     #
725     # -- stat enchancing potion. (temporary, allowing players to make
726     # permantent stat raising items is a playbalance no no I think).
727     #
728     # -- strength spell
729 root 1.5 object strength
730 root 1.1 arch potion_generic
731     chance 18
732     diff 16
733     exp 12000
734     skill alchemy
735     cauldron cauldron
736     ingred 3 water of the wise,ogre's arm,pile of philosophical salt
737     #
738     # -- dex spell
739 root 1.5 object agility
740 root 1.1 arch potion_generic
741     chance 18
742     diff 16
743     exp 12000
744     yield 7
745     skill alchemy
746     cauldron cauldron
747     ingred 3 water of the wise,pixie dust,pile of philosophical salt
748     #
749     # -- con spell
750 root 1.5 object fortitude
751 root 1.1 arch potion_generic
752     chance 17
753     diff 16
754     exp 12000
755     yield 7
756     skill alchemy
757     cauldron cauldron
758     ingred 3 water of the wise,small troll's liver,pile of philosophical salt
759     #
760     # -- cha spell (gets rid of wrinkles, better as balm! :)
761 root 1.5 object beauty
762 root 1.1 arch balm_generic
763     chance 5
764     diff 16
765     exp 12000
766     yield 7
767     skill alchemy
768     cauldron cauldron
769     ingred woman's head,3 mint sprig,water of the wise
770     #
771     # -- heroism
772 root 1.5 object NONE
773 root 1.1 arch potion_heroism
774     chance 11
775     diff 16
776     exp 12000
777     yield 8
778     skill alchemy
779     cauldron cauldron
780     ingred ogre's heart,3 water of the wise,pile of philosophical salt,pirate's heart
781     #
782     # -- immunity potion, these are separate archs each already --
783     # Note the 0 chance--these formulae are quest items.
784     #
785     # -- fire immune
786     # (quest: peterm/FireTemple)
787 root 1.5 object NONE
788 root 1.1 arch potion_cold
789     chance 0
790     diff 50
791     exp 500000
792     yield 10
793     skill alchemy
794     cauldron cauldron
795     ingred fire para-elemental's residue,3 balm of asbestos,dragon's steak,7 water of ruby
796     keycode fire alchemist
797     #
798     # -- cold immune
799 root 1.5 object NONE
800 root 1.1 arch potion_fire
801     chance 1
802     diff 50
803     exp 500000
804     yield 10
805     skill alchemy
806     cauldron cauldron
807     ingred ice para-elemental's residue,3 balm of warmth,chinese dragon's steak,7 water of sapphire
808     #
809     # -- guess what this is....
810 root 1.5 object NONE
811 root 1.1 arch potion_invulnerability
812     chance 0
813     diff 50
814     exp 500000
815     yield 4
816     skill alchemy
817     cauldron cauldron
818     ingred spectre's ectoplasm,demon's head,7 water of ruby,3 balm of aethereality
819     #
820     # -- magic immunity (very powerful)
821 root 1.5 object magic resistance
822 root 1.1 arch potion_generic
823     chance 0
824     diff 50
825     exp 500000
826     yield 14
827     skill alchemy
828     cauldron cauldron
829     ingred block of true lead,demon's heart,7 water of diamond,3 potion of resist magic
830     #
831     # -- electric immunity (very powerful)
832 root 1.5 object shock resistance
833 root 1.1 arch potion_generic
834     chance 0
835     diff 50
836     exp 500000
837     yield 14
838     skill alchemy
839     cauldron cauldron
840     ingred lightning para-elemental's residue,block of fixed mercury,titan's head,7 water of ruby
841     #
842     # -- prot from magic
843 root 1.5 object resist magic
844 root 1.1 arch potion_generic
845     chance 25
846     diff 20
847     exp 20000
848     yield 2
849     skill alchemy
850     cauldron cauldron
851     ingred water of ruby,beholder's tongue,mandrake root
852     #
853     # -- prot from confusion
854 root 1.5 object resist confusion
855 root 1.1 arch potion_generic
856     chance 22
857     diff 20
858     exp 20000
859     skill alchemy
860     cauldron cauldron
861     ingred madman's head,beholdereye,water of ruby
862     #
863     # -- prot from draining
864 root 1.5 object resist draining
865 root 1.1 arch potion_generic
866     chance 21
867     diff 15
868     exp 12000
869     yield 10
870     skill alchemy
871     cauldron cauldron
872     ingred wight's corpse,water of ruby,graveyard dirt
873     #
874     # -- prot from paralysis
875 root 1.5 object resist paralysis
876 root 1.1 arch potion_generic
877     chance 24
878     diff 14
879     exp 11000
880     yield 10
881     skill alchemy
882     cauldron cauldron
883     ingred mercury,water of ruby,cunning gnome's corpse
884     #
885     # -- prot from slow
886 root 1.5 object resist slow
887 root 1.1 arch potion_generic
888     chance 24
889     diff 14
890     exp 11000
891     yield 10
892     skill alchemy
893     cauldron cauldron
894     ingred water of ruby,2 xan's wing
895     #
896     # -- prot from poison
897 root 1.5 object resist poison
898 root 1.1 arch potion_generic
899     chance 20
900     diff 15
901     exp 12000
902     yield 10
903     skill alchemy
904     cauldron cauldron
905     ingred scorpion's stinger,water of ruby,clover
906     #
907     # -- curative potion
908     #
909     # -- cure blindness
910 root 1.5 object cure vision
911 root 1.1 arch potion_generic
912     chance 15
913     diff 12
914     exp 9000
915     yield 5
916     skill alchemy
917     cauldron cauldron
918     ingred man's eye,carrots,balm of first aid
919     #
920     # -- cure poison
921 root 1.5 object cure poison
922 root 1.1 arch potion_generic
923     chance 16
924     diff 12
925     exp 9000
926     yield 5
927     skill alchemy
928     cauldron cauldron
929     ingred snake's skin,apple,balm of first aid
930     #
931     # -- cure confusion
932 root 1.5 object cure madness
933 root 1.1 arch potion_generic
934     chance 17
935     diff 12
936     exp 9000
937     yield 9
938     skill alchemy
939     cauldron cauldron
940     ingred madman's head,apple,balm of first aid
941     #
942     # -- potion casting other magic, dedicated archs first, then potion_gen
943     #
944     # -- sp regen. Recipe #1
945 root 1.5 object NONE
946 root 1.1 arch potion_magic
947     chance 0
948     diff 20
949     exp 20000
950     yield 5
951     skill alchemy
952     cauldron cauldron
953     ingred 3 potion of mystic power,block of fixed mercury,water of diamond
954     #
955     # -- sp regen. Recipe #2
956 root 1.5 object NONE
957 root 1.1 arch potion_magic
958     chance 0
959     diff 20
960     exp 25000
961     yield 4
962     skill alchemy
963     cauldron cauldron
964     ingred potion of mystic power,mushroom of Magic,water of diamond
965     #
966     # -- restoration
967 root 1.5 object NONE
968 root 1.1 arch potion_restoration
969     chance 7
970     diff 10
971     exp 10000
972     yield 5
973     skill alchemy
974     cauldron cauldron
975     ingred unicorn horn,3 booze
976     #
977     # -- healing recipe #1
978 root 1.5 object NONE
979 root 1.1 arch potion_heal
980     chance 4
981     diff 13
982     exp 13000
983     yield 4
984     skill alchemy
985     cauldron cauldron
986     ingred potion of life,mushroom of Healing,red rose
987     #
988     # -- healing recipe #2
989 root 1.5 object NONE
990 root 1.1 arch potion_heal
991     chance 2
992     diff 13
993     exp 13000
994     yield 5
995     skill alchemy
996     cauldron cauldron
997     ingred unicorn horn,balm of first aid,red rose
998     #
999     # -- regeneration
1000 root 1.5 object recuperation
1001 root 1.1 arch potion_generic
1002     chance 9
1003     diff 13
1004     exp 13000
1005     yield 7
1006     skill alchemy
1007     cauldron cauldron
1008     ingred troll's liver,water of the wise,3 booze
1009     #
1010     # -- haste
1011 root 1.5 object speed
1012 root 1.1 arch potion_generic
1013     chance 1
1014     diff 20
1015     exp 20000
1016     yield 4
1017     skill alchemy
1018     cauldron cauldron
1019     ingred pixie's wings,xan's wing,water of diamond
1020     #
1021     # -- transfer
1022 root 1.5 object mystic power
1023 root 1.1 arch potion_generic
1024     chance 8
1025     diff 12
1026     exp 12000
1027     yield 6
1028     skill alchemy
1029     cauldron cauldron
1030     ingred 3 water of diamond,sage's head,clover
1031     #
1032     # -- perceive self
1033 root 1.5 object self knowledge
1034 root 1.1 arch potion_generic
1035     chance 20
1036     diff 10
1037     exp 10000
1038     yield 3
1039     skill alchemy
1040     cauldron cauldron
1041     ingred sage's head,water of the wise
1042     #
1043     # -- cure disease
1044 root 1.5 object cure disease
1045 root 1.1 arch potion_generic
1046     chance 20
1047     diff 5
1048     exp 5000
1049     yield 5
1050     skill alchemy
1051     cauldron cauldron
1052     ingred booze,balm of first aid,red rose
1053     #
1054     # -- attack potion. Drinker/target is effected adversely
1055     #
1056     # -- sm. lightning
1057 root 1.5 object electric shock
1058 root 1.1 arch potion_generic
1059     chance 4
1060     diff 10
1061     exp 10000
1062     yield 3
1063     skill alchemy
1064     cauldron cauldron
1065     ingred lightning para-elemental's residue,water of diamond
1066     #
1067     # -- firebolt
1068 root 1.5 object fire
1069 root 1.1 arch potion_generic
1070     chance 4
1071     diff 10
1072     exp 10000
1073     yield 3
1074     skill alchemy
1075     cauldron cauldron
1076     ingred fire para-elemental's residue,water of ruby
1077     #
1078     # -- frostbolt
1079 root 1.5 object freezing
1080 root 1.1 arch potion_generic
1081     chance 4
1082     diff 10
1083     exp 10000
1084     yield 3
1085     skill alchemy
1086     cauldron cauldron
1087     ingred ice para-elemental's residue,water of sapphire
1088     #
1089     # -- sunspear
1090 root 1.5 object sunfire
1091 root 1.1 arch potion_generic
1092     chance 4
1093     diff 10
1094     exp 10000
1095     yield 3
1096     skill alchemy
1097     cauldron cauldron
1098     ingred lava para-elemental's residue,water of diamond
1099     #
1100     # -- comet
1101 root 1.5 object black fire
1102 root 1.1 arch potion_generic
1103     chance 2
1104     diff 10
1105     exp 10000
1106     yield 5
1107     skill alchemy
1108     cauldron cauldron
1109     ingred potion of fire,potion of sunfire,water of diamond
1110     #
1111     # -- meteor storm, very powerful.
1112 root 1.5 object fiery destruction
1113 root 1.1 arch potion_generic
1114     chance 0
1115     diff 50
1116     exp 50000
1117     yield 6
1118     skill alchemy
1119     cauldron cauldron
1120     ingred potion of black fire,water of diamond,water of ruby,water of sapphire,water of emerald
1121     #
1122     # -- s. fireball
1123 root 1.5 object firestorm
1124 root 1.1 arch potion_generic
1125     chance 12
1126     diff 18
1127     exp 18000
1128     yield 7
1129     skill alchemy
1130     cauldron cauldron
1131     ingred dust of ignition,3 booze,bottle of philosophical oil
1132     #
1133     # -- m. fireball
1134 root 1.5 object great firestorm
1135 root 1.1 arch potion_generic
1136     chance 4
1137     diff 18
1138     exp 18000
1139     yield 7
1140     skill alchemy
1141     cauldron cauldron
1142     ingred dust of conflagration,3 booze,bottle of philosophical oil
1143     #
1144     # -- poison cloud
1145 root 1.5 object noxious fumes
1146 root 1.1 arch potion_generic
1147     chance 15
1148     diff 18
1149     exp 18000
1150     yield 7
1151     skill alchemy
1152     cauldron cauldron
1153     ingred 3 xan's wing,water of emerald
1154     #
1155     # -- color spray. very powerful, probably should be a quest item
1156 root 1.5 object Rainbow Wave
1157 root 1.1 arch potion_generic
1158     chance 0
1159     diff 50
1160     exp 100000
1161     yield 6
1162     skill alchemy
1163     cauldron cauldron
1164     ingred wyvern of chaos's steak,7 water of diamond,potion of electric shock,skull's tongue
1165     #
1166     # -- ball lightning
1167 root 1.5 object lasting shock
1168 root 1.1 arch potion_generic
1169     chance 3
1170     diff 28
1171     exp 40000
1172     yield 3
1173     skill alchemy
1174     cauldron cauldron
1175     ingred 3 water of diamond,3 potion of electric shock,electric dragon's steak
1176     #
1177     # -------------------
1178     # Missile weapons
1179     # -------------------
1180     #
1181 root 1.5 object Slay Dragon
1182 root 1.1 arch arrow
1183     chance 3
1184     trans 1
1185     diff 5
1186     exp 5000
1187     yield 20
1188     skill bowyer
1189     cauldron workbench
1190     ingred 20 arrow,dragon's claw
1191     #
1192 root 1.5 object Slay Dragon
1193 root 1.1 arch bolt
1194     chance 4
1195     diff 5
1196     exp 5000
1197     trans 1
1198     yield 20
1199     skill bowyer
1200     cauldron workbench
1201     ingred 20 bolt,dragon's claw
1202     #
1203     #
1204 root 1.5 object Assassinating Dragons
1205 root 1.1 arch bolt
1206     chance 0
1207     diff 30
1208     exp 50000
1209     yield 20
1210     trans 1
1211     skill bowyer
1212     cauldron workbench
1213     ingred 20 bolt,dragon's heart,water of emerald,scorpion's stinger
1214     #
1215     #
1216 root 1.5 object Assassinating Dragons
1217 root 1.1 arch arrow
1218     chance 0
1219     diff 30
1220     exp 50000
1221     yield 20
1222     trans 1
1223     skill bowyer
1224     cauldron workbench
1225     ingred 20 arrow,dragon's heart,water of emerald,scorpion's stinger
1226     #
1227 root 1.5 object Assassinating Trolls
1228 root 1.1 arch bolt
1229     chance 0
1230     diff 30
1231     exp 50000
1232     trans 1
1233     yield 20
1234     skill bowyer
1235     cauldron workbench
1236     ingred 20 bolt,troll's heart,scorpion's stinger
1237     #
1238     #
1239 root 1.5 object Assassinating Trolls
1240 root 1.1 arch arrow
1241     chance 0
1242     diff 30
1243     exp 50000
1244     yield 20
1245     trans 1
1246     skill bowyer
1247     cauldron workbench
1248     ingred 20 arrow,troll's heart,scorpion's stinger
1249     #
1250     #
1251 root 1.5 object Blessedness
1252 root 1.1 arch bolt
1253     chance 0
1254     diff 30
1255     exp 50000
1256     trans 1
1257     yield 20
1258     skill bowyer
1259     cauldron workbench
1260     ingred 20 bolt,unicorn horn,2 water of sapphire
1261     #
1262     #
1263 root 1.5 object Blessedness
1264 root 1.1 arch arrow
1265     chance 0
1266     diff 30
1267     exp 50000
1268     trans 1
1269     yield 20
1270     skill bowyer
1271     cauldron workbench
1272     ingred 20 arrow,unicorn horn,2 water of sapphire
1273     #
1274     #
1275 root 1.5 object Magic
1276 root 1.1 arch arrow
1277     chance 4
1278     diff 5
1279     exp 5000
1280     trans 1
1281     yield 20
1282     skill bowyer
1283     cauldron workbench
1284     ingred 20 arrow,potion of mystic power
1285     #
1286     #
1287 root 1.5 object Magic
1288 root 1.1 arch bolt
1289     chance 4
1290     diff 5
1291     exp 5000
1292     trans 1
1293     yield 20
1294     skill bowyer
1295     cauldron workbench
1296     ingred 20 bolt,potion of mystic power
1297     #
1298     #
1299 root 1.5 object Fire
1300 root 1.1 arch arrow
1301     chance 4
1302     trans 1
1303     diff 5
1304     exp 5000
1305     yield 20
1306     skill bowyer
1307     cauldron workbench
1308     ingred 20 arrow,wyvern's steak
1309     #
1310     #
1311 root 1.5 object Fire
1312 root 1.1 arch bolt
1313     chance 4
1314     diff 5
1315     exp 5000
1316     trans 1
1317     yield 20
1318     skill bowyer
1319     cauldron workbench
1320     ingred 20 bolt,wyvern's steak
1321     #
1322     #
1323 root 1.5 object Frost
1324 root 1.1 arch arrow
1325     chance 4
1326     diff 5
1327     exp 5000
1328     trans 1
1329     yield 20
1330     skill bowyer
1331     cauldron workbench
1332     ingred 20 arrow,ghost's ectoplasm
1333     #
1334     #
1335 root 1.5 object Frost
1336 root 1.1 arch bolt
1337     chance 4
1338     diff 5
1339     exp 5000
1340     trans 1
1341     yield 20
1342     skill bowyer
1343     cauldron workbench
1344     ingred 20 bolt,ghost's ectoplasm
1345     #
1346     #
1347 root 1.5 object Lightning
1348 root 1.1 arch arrow
1349     chance 4
1350     diff 5
1351     exp 5000
1352     trans 1
1353     yield 20
1354     skill bowyer
1355     cauldron workbench
1356     ingred 20 arrow,skull's tooth
1357     #
1358     #
1359 root 1.5 object Lightning
1360 root 1.1 arch bolt
1361     chance 4
1362     diff 5
1363     exp 5000
1364     trans 1
1365     yield 20
1366     skill bowyer
1367     cauldron workbench
1368     ingred 20 bolt,skull's tooth
1369     #
1370     #
1371 root 1.5 object Paralysis
1372 root 1.1 arch arrow
1373     chance 4
1374     diff 5
1375     exp 5000
1376     trans 1
1377     yield 20
1378     skill bowyer
1379     cauldron workbench
1380     ingred 20 arrow,beholdereye
1381     #
1382     #
1383 root 1.5 object Paralysis
1384 root 1.1 arch bolt
1385     chance 4
1386     diff 5
1387     exp 5000
1388     trans 1
1389     yield 20
1390     skill bowyer
1391     cauldron workbench
1392     ingred 20 bolt,beholdereye
1393     #
1394     #
1395 root 1.5 object Poison
1396 root 1.1 arch arrow
1397     chance 4
1398     diff 5
1399     exp 5000
1400     trans 1
1401     yield 20
1402     skill bowyer
1403     cauldron workbench
1404     ingred 20 arrow,scorpion's stinger
1405     #
1406     #
1407 root 1.5 object Poison
1408 root 1.1 arch bolt
1409     chance 4
1410     diff 5
1411     exp 5000
1412     trans 1
1413     yield 20
1414     skill bowyer
1415     cauldron workbench
1416     ingred 20 bolt,scorpion's stinger
1417     #
1418     # -------------------
1419     # Cloaks
1420     # -------------------
1421     #
1422 root 1.5 object minor protection
1423 root 1.1 arch cloak
1424     chance 5
1425     diff 5
1426     exp 5000
1427     trans 1
1428     yield 1
1429     skill woodsman
1430     cauldron tanbench
1431     ingred cloak,balm of aethereality
1432     #
1433 root 1.5 object intermediate protection
1434 root 1.1 arch cloak
1435     chance 4
1436     diff 10
1437     exp 15000
1438     trans 1
1439     yield 1
1440     skill woodsman
1441     cauldron tanbench
1442     ingred cloak,ghost's ectoplasm,balm of aethereality
1443     #
1444 root 1.5 object greater protection
1445 root 1.1 arch cloak
1446     chance 2
1447     diff 20
1448     exp 30000
1449     trans 1
1450     yield 1
1451     skill woodsman
1452     cauldron tanbench
1453     ingred cloak,spectre's ectoplasm,potion of aethereality
1454     #
1455 root 1.5 object Insulation
1456 root 1.1 arch cloak
1457     chance 3
1458     diff 10
1459     exp 10000
1460     trans 1
1461     yield 1
1462     skill woodsman
1463     cauldron tanbench
1464     ingred cloak,3 electric dragon's steak,balm of insulation
1465     #
1466 root 1.5 object Warmth
1467 root 1.1 arch cloak
1468     diff 10
1469     exp 10000
1470     chance 3
1471     trans 1
1472     yield 1
1473     skill woodsman
1474     cauldron tanbench
1475     ingred cloak,3 chinese dragon's steak,balm of insulation
1476     #
1477 root 1.5 object Asbestos
1478 root 1.1 arch cloak
1479     chance 3
1480     diff 10
1481     exp 10000
1482     trans 1
1483     yield 1
1484     skill woodsman
1485     cauldron tanbench
1486     ingred cloak,3 dragon's steak,balm of insulation
1487     #
1488 root 1.5 object Acid Proofing
1489 root 1.1 arch cloak
1490     chance 3
1491     diff 25
1492     exp 50000
1493     trans 1
1494     yield 1
1495     skill woodsman
1496     cauldron tanbench
1497     ingred cloak,gaelotroll's corpse,block of true lead
1498     #
1499 root 1.5 object Lythander
1500 root 1.1 arch cloak
1501     chance 1
1502     diff 25
1503     exp 50000
1504     trans 1
1505     yield 1
1506     skill woodsman
1507     cauldron tanbench
1508     ingred cloak,Dread's eye,holy symbol,2 potion of power
1509     #
1510 root 1.5 object Gaea
1511 root 1.1 arch cloak
1512     chance 1
1513     yield 1
1514     diff 26
1515     trans 1
1516     exp 55000
1517     skill woodsman
1518     cauldron tanbench
1519     ingred cloak,balm of asbestos,balm of insulation,balm of warmth,holy symbol
1520     #
1521 root 1.5 object the Magi
1522 root 1.1 arch cloak
1523     chance 1
1524     diff 26
1525     exp 80000
1526     trans 1
1527     yield 1
1528     skill woodsman
1529     cauldron tanbench
1530     ingred cloak,potion of wisdom,2 potion of power
1531     #
1532 root 1.5 object Unholy Protection
1533 root 1.1 arch cloak
1534     chance 3
1535     diff 25
1536     exp 50000
1537     trans 1
1538     yield 1
1539     skill woodsman
1540     cauldron tanbench
1541     ingred cloak,ring of Doom,amulet of Unholiness,lich dust,vampire's heart
1542     #
1543     # -------------------
1544     # Boots
1545     # -------------------
1546     #
1547 root 1.5 object granite
1548 root 1.1 arch high_boots,high_boots_b,high_boots_w
1549     chance 5
1550     diff 5
1551     exp 10000
1552     trans 1
1553     yield 1
1554     skill smithery
1555     cauldron forge
1556     ingred jack boots,3 lead
1557     #
1558 root 1.5 object granite
1559 root 1.1 arch low_boots
1560     chance 5
1561     diff 5
1562     exp 10000
1563     trans 1
1564     yield 1
1565     skill smithery
1566     cauldron forge
1567     ingred shoes,3 lead
1568     #
1569 root 1.5 object mobility
1570 root 1.1 arch low_boots
1571     chance 3
1572     diff 10
1573     exp 20000
1574     trans 1
1575     yield 1
1576     skill smithery
1577     cauldron forge
1578     ingred shoes,beholdereye,3 lead
1579     #
1580 root 1.5 object mobility
1581 root 1.1 arch elvenboots
1582     chance 1
1583     diff 10
1584     exp 20000
1585     trans 1
1586     yield 1
1587     skill smithery
1588     cauldron forge
1589     ingred elven boots,Dread's eye,block of true lead
1590     #
1591 root 1.5 object mobility
1592 root 1.1 arch levitationboots
1593     chance 1
1594     diff 20
1595     exp 50000
1596     trans 1
1597     yield 1
1598     skill smithery
1599     cauldron forge
1600     ingred levitation boots,Dread's eye,block of true lead
1601     #
1602 root 1.5 object clawing
1603 root 1.1 arch low_boots
1604     chance 5
1605     diff 10
1606     exp 20000
1607     trans 1
1608     yield 1
1609     skill smithery
1610     cauldron forge
1611     ingred shoes,goblin's head,lead
1612     #
1613 root 1.5 object clawing
1614 root 1.1 arch high_boots,high_boots_b,high_boots_w
1615     chance 5
1616     diff 10
1617     exp 20000
1618     trans 1
1619     yield 1
1620     skill smithery
1621     cauldron forge
1622     ingred jack boots,goblin's head,lead
1623     #
1624 root 1.5 object steel
1625 root 1.1 arch high_boots,high_boots_b,high_boots_w
1626     chance 5
1627     diff 15
1628     exp 25000
1629     trans 1
1630     yield 1
1631     skill smithery
1632     cauldron forge
1633     ingred jack boots,3 mithril crystal
1634     #
1635 root 1.5 object steel
1636 root 1.1 arch low_boots
1637     chance 5
1638     diff 15
1639     exp 25000
1640     trans 1
1641     yield 1
1642     skill smithery
1643     cauldron forge
1644     ingred shoes,3 mithril crystal
1645     #
1646     # -------------------
1647     # Armour
1648     # -------------------
1649     #
1650 root 1.5 object Gorokh
1651 root 1.1 arch scale_mail,b_scale_mail
1652     chance 3
1653     diff 12
1654     exp 20000
1655     trans 1
1656     yield 1
1657     skill smithery
1658     cauldron forge
1659     ingred scale mail,potion of magic resistance,demon's head
1660     #
1661 root 1.5 object Gorokh
1662 root 1.1 arch plate_mail,b_plate_mail
1663     chance 3
1664     diff 12
1665     exp 25000
1666     trans 1
1667     yield 1
1668     skill smithery
1669     cauldron forge
1670     ingred plate mail,potion of magic resistance,demon's head
1671     #
1672 root 1.5 object Gnarg
1673 root 1.1 arch scale_mail,b_scale_mail
1674     chance 4
1675     diff 15
1676     exp 30000
1677     trans 1
1678     yield 1
1679     skill smithery
1680     cauldron forge
1681     ingred scale mail,potion of resist poison,troll's heart
1682     #
1683 root 1.5 object Gnarg
1684 root 1.1 arch plate_mail,b_plate_mail
1685     chance 4
1686     diff 18
1687     exp 40000
1688     trans 1
1689     yield 1
1690     skill smithery
1691     cauldron forge
1692     ingred plate mail,potion of resist poison,troll's heart
1693     #
1694 root 1.5 object Protection
1695 root 1.1 arch scale_mail,b_scale_mail
1696     chance 6
1697     diff 25
1698     exp 80000
1699     trans 1
1700     yield 1
1701     skill smithery
1702     cauldron forge
1703     ingred scale mail,amulet of Shielding,lead
1704     #
1705 root 1.5 object Protection
1706 root 1.1 arch plate_mail,b_plate_mail
1707     chance 6
1708     diff 30
1709     exp 100000
1710     trans 1
1711     yield 1
1712     skill smithery
1713     cauldron forge
1714     ingred plate mail,amulet of Shielding,3 lead
1715     #
1716 root 1.5 object Berwean
1717 root 1.1 arch plate_mail,b_plate_mail
1718     chance 4
1719     diff 10
1720     exp 20000
1721     trans 1
1722     yield 1
1723     skill smithery
1724     cauldron forge
1725     ingred plate mail,3 pixie's wings,3 xan's wing
1726     #
1727 root 1.5 object Berwean
1728 root 1.1 arch mithril_chainmail
1729     chance 2
1730     diff 20
1731     exp 40000
1732     trans 1
1733     yield 1
1734     skill smithery
1735     cauldron forge
1736     ingred mithril chainmail,3 pixie's wings,3 xan's wing,potion of speed
1737     #
1738 root 1.5 object Ruggilli
1739 root 1.1 arch dragon_mail
1740     chance 1
1741     diff 30
1742     exp 100000
1743     trans 1
1744     yield 1
1745     skill smithery
1746     cauldron forge
1747     ingred dragon mail,3 dragon's steak,dragon's eye,dragon scale,fire para-elemental's residue
1748     #
1749 root 1.5 object Ruggilli
1750 root 1.1 arch scale_mail,b_scale_mail
1751     chance 2
1752     diff 25
1753     exp 80000
1754     trans 1
1755     yield 1
1756     skill smithery
1757     cauldron forge
1758     ingred scale mail,wyvern's steak,dragon scale,fire para-elemental's residue
1759     #
1760 root 1.5 object Gaea
1761 root 1.1 arch leather_armour
1762     chance 3
1763     diff 15
1764     exp 30000
1765     trans 1
1766     yield 1
1767     skill smithery
1768     cauldron forge
1769     ingred armour,potion of resist draining,potion of recuperation
1770     #
1771 root 1.5 object Gaea
1772 root 1.1 arch ring_mail
1773     chance 3
1774     diff 12
1775     exp 20000
1776     trans 1
1777     yield 1
1778     skill smithery
1779     cauldron forge
1780     ingred hauberk,potion of resist draining,potion of recuperation
1781     #
1782 root 1.5 object Protection
1783 root 1.1 arch chain_mail
1784     chance 5
1785     diff 20
1786     exp 40000
1787     trans 1
1788     yield 1
1789     skill smithery
1790     cauldron forge
1791     ingred chain mail,balm of aethereality,lead
1792     #
1793 root 1.5 object Protection
1794 root 1.1 arch ring_mail2
1795     chance 5
1796     diff 20
1797     exp 40000
1798     trans 1
1799     yield 1
1800     skill smithery
1801     cauldron forge
1802     ingred ring mail,balm of aethereality,lead
1803     #
1804 root 1.5 object Power
1805 root 1.1 arch plate_mail,b_plate_mail
1806     chance 2
1807     diff 40
1808     exp 150000
1809     trans 1
1810     yield 1
1811     skill smithery
1812     cauldron forge
1813     ingred plate mail,3 dragon's steak,balm of aethereality,potion of strength
1814     #
1815 root 1.5 object Displacement
1816 root 1.1 arch robe,robe2
1817     diff 20
1818     exp 50000
1819     chance 4
1820     trans 1
1821     yield 1
1822     skill smithery
1823     cauldron forge
1824     ingred robe,balm of transparency,3 mercury
1825     #
1826 root 1.5 object metal weave
1827 root 1.1 arch robe,robe2
1828     diff 10
1829     exp 20000
1830     chance 4
1831     trans 1
1832     yield 1
1833     skill smithery
1834     cauldron forge
1835     ingred robe,lead,balm of aethereality
1836     #
1837 root 1.5 object NONE
1838 root 1.1 arch elven_robe
1839     diff 40
1840     exp 150000
1841     chance 2
1842     yield 1
1843     skill smithery
1844     cauldron forge
1845     ingred robe,potion of dexterity,3 potion of resist confusion,clover,unicorn horn
1846     #
1847     # ------------------
1848     # Helmets
1849     # ------------------
1850     #
1851 root 1.5 object Xebinon
1852 root 1.1 arch helmet,a_helmet,b_helmet
1853     chance 2
1854     diff 5
1855     exp 10000
1856     trans 1
1857     yield 1
1858     skill smithery
1859     cauldron forge
1860     ingred helmet,magic power potion,bottle of philosophical oil
1861     #
1862 root 1.5 object Dark Vision
1863 root 1.1 arch helmet,a_helmet,b_helmet
1864     chance 3
1865     diff 5
1866     exp 10000
1867     trans 1
1868     yield 1
1869     skill smithery
1870     cauldron forge
1871     ingred helmet,3 dust of night vision,bottle of philosophical oil
1872     #
1873 root 1.5 object Might
1874 root 1.1 arch full_helmet,b_full_helmet
1875     chance 3
1876     diff 10
1877     exp 20000
1878     trans 1
1879     yield 1
1880     skill smithery
1881     cauldron forge
1882     ingred full helmet,potion of strength,ogre's corpse,bottle of philosophical oil
1883     #
1884 root 1.5 object Valriel
1885 root 1.1 arch full_helmet,b_full_helmet
1886     chance 4
1887     diff 10
1888     exp 20000
1889     trans 1
1890     yield 1
1891     skill smithery
1892     cauldron forge
1893     ingred full helmet,3 balm of beauty,bottle of philosophical oil
1894     #
1895 root 1.5 object Argoth
1896 root 1.1 arch full_helmet,b_full_helmet
1897     chance 2
1898     diff 12
1899     exp 25000
1900     trans 1
1901     yield 1
1902     skill smithery
1903     cauldron forge
1904     ingred full helmet,3 dragon's steak,mithril crystal,bottle of philosophical oil
1905     #
1906 root 1.5 object Lythander
1907 root 1.1 arch helmet,a_helmet,b_helmet
1908     chance 5
1909     diff 6
1910     exp 12000
1911     trans 1
1912     yield 1
1913     skill smithery
1914     cauldron forge
1915     ingred helmet,clover,bottle of philosophical oil
1916     #
1917 root 1.5 object Sorig
1918 root 1.1 arch crown,crown_dark,crown_gray,crown_r,crown_white
1919     chance 3
1920     diff 20
1921     exp 40000
1922     trans 1
1923     yield 1
1924     skill smithery
1925     cauldron forge
1926     ingred crown,lightning para-elemental's residue,balm of insulation,bottle of philosophical oil
1927     #
1928     # ------------------
1929     # Shields
1930     # ------------------
1931     #
1932 root 1.5 object Deflection
1933 root 1.1 arch high_shield
1934     chance 5
1935     diff 5
1936     exp 500
1937     trans 1
1938     yield 1
1939     skill smithery
1940     cauldron forge
1941     ingred high shield,balm of aethereality,3 lead
1942     #
1943 root 1.5 object Mostrai
1944 root 1.1 arch small_shield,b_small_shield
1945     chance 3
1946     diff 7
1947     exp 1000
1948     trans 1
1949     yield 1
1950     skill smithery
1951     cauldron forge
1952     ingred small shield,balm of asbestos,mithril crystal
1953     #
1954 root 1.5 object Mostrai
1955 root 1.1 arch high_shield
1956     chance 3
1957     diff 7
1958     exp 1000
1959     trans 1
1960     yield 1
1961     skill smithery
1962     cauldron forge
1963     ingred high shield,balm of asbestos,mithril crystal
1964     #
1965 root 1.5 object Gnarg
1966 root 1.1 arch spiked_shield
1967     chance 3
1968     diff 7
1969     exp 1000
1970     trans 1
1971     yield 1
1972     skill smithery
1973     cauldron forge
1974     ingred spiked shield,pixie dust,booze
1975     #
1976     # ------------------
1977     # Gauntlets / Gloves
1978     # ------------------
1979     #
1980 root 1.5 object Havok
1981 root 1.1 arch gloves,gloves_b,gloves_w
1982     chance 4
1983     diff 5
1984     exp 12000
1985     trans 1
1986     yield 1
1987     skill woodsman
1988     cauldron tanbench
1989     ingred gloves,ogre's corpse,bottle of philosophical oil
1990     #
1991 root 1.5 object marksmanship
1992 root 1.1 arch gloves,gloves_b,gloves_w
1993     chance 5
1994     trans 1
1995     yield 1
1996     diff 8
1997     exp 16000
1998     skill woodsman
1999     cauldron tanbench
2000     ingred gloves,5 arrow of Accuracy,bottle of mineral oil
2001     #
2002 root 1.5 object Sorig
2003 root 1.1 arch gloves,gloves_b,gloves_w
2004     chance 3
2005     trans 1
2006     yield 1
2007     diff 13
2008     exp 20000
2009     skill woodsman
2010     cauldron tanbench
2011     ingred gloves,hill giant's hand,lightning para-elemental's residue,bottle of philosophical oil
2012     #
2013 root 1.5 object the Titans
2014 root 1.1 arch gauntlets,b_gauntlets
2015     chance 3
2016     diff 14
2017     exp 22000
2018     trans 1
2019     yield 1
2020     skill smithery
2021     cauldron forge
2022     ingred gauntlets,hill giant's heart,bottle of philosophical oil
2023     #
2024 root 1.5 object bladed steel
2025 root 1.1 arch gloves,gloves_b,gloves_w
2026     chance 5
2027     diff 10
2028     exp 20000
2029     trans 1
2030     yield 1
2031     skill woodsman
2032     cauldron tanbench
2033     ingred gloves,hill giant's hand,bottle of mineral oil
2034     #
2035 root 1.5 object Sorig
2036 root 1.1 arch gauntlets,b_gauntlets
2037     chance 1
2038     diff 35
2039     exp 120000
2040     trans 1
2041     yield 1
2042     skill smithery
2043     cauldron forge
2044     ingred gauntlets,hill giant's hand,lightning para-elemental's residue,bottle of philosophical oil,electric dragon's steak
2045     #
2046     # ------------------
2047     # Bows / Crossbows
2048     # ------------------
2049     #
2050 root 1.5 object Auriga
2051 root 1.1 arch bow
2052     chance 1
2053     trans 1
2054     yield 1
2055     diff 15
2056     exp 15000
2057     skill bowyer
2058     cauldron workbench
2059     ingred bow,3 potion of strength,hill giant's corpse,troll's heart
2060     #
2061 root 1.5 object Thunder
2062 root 1.1 arch bow
2063     chance 3
2064     diff 16
2065     exp 16000
2066     trans 1
2067     yield 1
2068     skill bowyer
2069     cauldron workbench
2070     ingred bow,titan's head,dust of stasis
2071     #
2072 root 1.5 object Thunder
2073 root 1.1 arch crossbow
2074     chance 3
2075     diff 16
2076     exp 16500
2077     trans 1
2078     yield 1
2079     skill bowyer
2080     cauldron workbench
2081     ingred crossbow,titan's head,dust of stasis
2082     #
2083 root 1.5 object Lythander
2084 root 1.1 arch longbow
2085     chance 5
2086     diff 10
2087     exp 10000
2088     trans 1
2089     yield 1
2090     skill bowyer
2091     cauldron workbench
2092     ingred long bow,4 clover,troll's liver
2093     #
2094 root 1.5 object Ruggilli
2095 root 1.1 arch crossbow
2096     chance 4
2097     diff 12
2098     exp 11000
2099     trans 1
2100     yield 1
2101     skill bowyer
2102     cauldron workbench
2103     ingred crossbow,3 potion of fire,dragon's wing
2104     #
2105 root 1.5 object Sorig
2106 root 1.1 arch huntersbow
2107     chance 5
2108     diff 12
2109     exp 11500
2110     trans 1
2111     yield 1
2112     skill bowyer
2113     cauldron workbench
2114     ingred hunter's bow,potion of lasting shock,lightning para-elemental's residue
2115     #
2116 root 1.5 object Accuracy
2117 root 1.1 arch bow
2118     chance 10
2119     diff 3
2120     exp 4000
2121     trans 1
2122     yield 1
2123     skill bowyer
2124     cauldron workbench
2125     ingred bow,3 mushroom of Quickness,mercury
2126     #
2127 root 1.5 object Valriel
2128 root 1.1 arch compositebow
2129     chance 9
2130     diff 5
2131     exp 6000
2132     trans 1
2133     yield 1
2134     skill bowyer
2135     cauldron workbench
2136     ingred composite bow,demon's head,3 dust of frost
2137     #
2138 root 1.5 object Gorokh
2139 root 1.1 arch longbow
2140     chance 2
2141     diff 20
2142     exp 18000
2143     trans 1
2144     yield 1
2145     skill bowyer
2146     cauldron workbench
2147     ingred long bow,3 dust of conflagration,gaelotroll's liver,ogre's heart
2148     #
2149 root 1.5 object Mostrai
2150 root 1.1 arch crossbow
2151     diff 18
2152     chance 3
2153     diff 18
2154     exp 17500
2155     trans 1
2156     yield 1
2157     skill bowyer
2158     cauldron workbench
2159     ingred crossbow,3 dust of consuming wrath,hill giant's heart,3 mithril crystal
2160     #
2161     # ------------------
2162     # Weapons
2163     # ------------------
2164     #
2165 root 1.5 object Madness
2166 root 1.1 arch dagger,b_dagger
2167     chance 5
2168     diff 5
2169     exp 8000
2170     trans 1
2171     yield 1
2172     skill smithery
2173     cauldron forge
2174     ingred dagger,madman's head,bottle of mineral oil
2175     #
2176 root 1.5 object Poisoning
2177 root 1.1 arch dagger,b_dagger
2178     chance 5
2179     diff 5
2180     exp 5000
2181     trans 1
2182     yield 1
2183     skill smithery
2184     cauldron forge
2185     ingred dagger,xan's wing,bottle of mineral oil
2186     #
2187 root 1.5 object Poisoning
2188 root 1.1 arch falchion
2189     chance 3
2190     diff 6
2191     exp 6000
2192     trans 1
2193     yield 1
2194     skill smithery
2195     cauldron forge
2196     ingred falchion,3 xan's wing,bottle of philosophical oil
2197     #
2198 root 1.5 object Fear
2199 root 1.1 arch morningstar
2200     chance 5
2201     diff 8
2202     exp 10000
2203     trans 1
2204     yield 1
2205     skill smithery
2206     cauldron forge
2207     ingred morningstar,wyvern's steak,bottle of philosophical oil
2208     #
2209 root 1.5 object Fear
2210 root 1.1 arch club
2211     chance 5
2212     diff 4
2213     exp 5000
2214     trans 1
2215     yield 1
2216     skill smithery
2217     cauldron forge
2218     ingred club,wyvern's steak,bottle of philosophical oil
2219     #
2220 root 1.5 object Fear
2221 root 1.1 arch big_club
2222     chance 5
2223     diff 5
2224     exp 6000
2225     trans 1
2226     yield 1
2227     skill smithery
2228     cauldron forge
2229     ingred large club,wyvern's steak,bottle of philosophical oil
2230     #
2231 root 1.5 object Gnarg
2232 root 1.1 arch sword,b_sword_1,b_sword_2,sword_2
2233     chance 5
2234     diff 8
2235     exp 8000
2236     trans 1
2237     yield 1
2238     skill smithery
2239     cauldron forge
2240     ingred long sword,3 xan's wing,bottle of philosophical oil
2241     #
2242 root 1.5 object Gnarg
2243 root 1.1 arch stonehammer
2244     chance 5
2245     diff 8
2246     exp 8000
2247     trans 1
2248     yield 1
2249     skill smithery
2250     cauldron forge
2251     ingred stonehammer,3 xan's wing,bottle of philosophical oil
2252     #
2253 root 1.5 object Kragi
2254 root 1.1 arch sword_4
2255     chance 10
2256     trans 1
2257     yield 1
2258     diff 10
2259     exp 10000
2260     skill smithery
2261     cauldron forge
2262     ingred sword,potion of health,bottle of philosophical oil
2263     #
2264 root 1.5 object Kragi
2265 root 1.1 arch hammer
2266     chance 10
2267     diff 11
2268     exp 12000
2269     trans 1
2270     yield 1
2271     skill smithery
2272     cauldron forge
2273     ingred hammer,potion of health,bottle of philosophical oil
2274     #
2275 root 1.5 object Slay Ogre
2276 root 1.1 arch sword_4
2277     chance 6
2278     diff 7
2279     exp 8000
2280     trans 1
2281     yield 1
2282     skill smithery
2283     cauldron forge
2284     ingred sword,ogre's heart,bottle of philosophical oil
2285     #
2286 root 1.5 object Slay Ogre
2287 root 1.1 arch axe_5
2288     chance 6
2289     diff 6
2290     exp 7000
2291     trans 1
2292     yield 1
2293     skill smithery
2294     cauldron forge
2295     ingred vicious axe,ogre's heart,bottle of philosophical oil
2296     #
2297 root 1.5 object Valriel
2298 root 1.1 arch morningstar
2299     chance 3
2300     diff 12
2301     exp 15000
2302     trans 1
2303     yield 1
2304     skill smithery
2305     cauldron forge
2306     ingred morningstar,demon's head,bottle of philosophical oil
2307     #
2308 root 1.5 object Valriel
2309 root 1.1 arch katana_1
2310     diff 13
2311     exp 16000
2312     chance 3
2313     trans 1
2314     yield 1
2315     skill smithery
2316     cauldron forge
2317     ingred katana,demon's head,bottle of philosophical oil
2318     #
2319 root 1.5 object Gorokh
2320 root 1.1 arch broadsword,b_bsword_1,b_bsword_2,broadsword_2
2321     chance 3
2322     diff 15
2323     exp 20000
2324     trans 1
2325     yield 1
2326     skill smithery
2327     cauldron forge
2328     ingred broadsword,light angel's head,bottle of philosophical oil
2329     #
2330 root 1.5 object Gorokh
2331 root 1.1 arch poleaxe
2332     chance 3
2333     diff 16
2334     exp 21000
2335     trans 1
2336     yield 1
2337     skill smithery
2338     cauldron forge
2339     ingred poleaxe,light angel's head,bottle of philosophical oil
2340     #
2341 root 1.5 object the Devourers
2342 root 1.1 arch mace,mace_2
2343     diff 20
2344     exp 32000
2345     chance 3
2346     trans 1
2347     yield 1
2348     skill smithery
2349     cauldron forge
2350     ingred mace,ice para-elemental's residue,bottle of philosophical oil
2351     #
2352 root 1.5 object the Devourers
2353 root 1.1 arch nunchacu_1,nunchacu_2
2354     chance 3
2355     diff 25
2356     exp 43000
2357     trans 1
2358     yield 1
2359     skill smithery
2360     cauldron forge
2361     ingred nunchacu,ice para-elemental's residue,bottle of mineral oil
2362     #
2363 root 1.5 object Slay Troll
2364 root 1.1 arch sword,b_sword_1,b_sword_2,sword_2
2365     chance 5
2366     diff 10
2367     exp 13000
2368     trans 1
2369     yield 1
2370     skill smithery
2371     cauldron forge
2372     ingred long sword,small troll's heart,bottle of philosophical oil
2373     #
2374 root 1.5 object Slay Troll
2375 root 1.1 arch b_ssword_1,b_ssword_2,shortsword,shortsword_2
2376     chance 5
2377     diff 10
2378     exp 13000
2379     trans 1
2380     yield 1
2381     skill smithery
2382     cauldron forge
2383     ingred shortsword,small troll's heart,bottle of philosophical oil
2384     #
2385 root 1.5 object Slay Undead
2386 root 1.1 arch axe,axe_2,axe_3,axe_4,b_axe1,dhaxe2,shaxe1
2387     chance 5
2388     yield 1
2389     diff 6
2390     trans 1
2391     exp 8000
2392     skill smithery
2393     cauldron forge
2394     ingred axe,zombie's corpse,bottle of philosophical oil
2395     #
2396 root 1.5 object Slay Undead
2397 root 1.1 arch shortsword_2,b_ssword_1,b_ssword_2,shortsword
2398     chance 5
2399     diff 5
2400     exp 7000
2401     trans 1
2402     yield 1
2403     skill smithery
2404     cauldron forge
2405     ingred shortsword,zombie's corpse,bottle of philosophical oil
2406     #
2407     # this ones just an upgrade - robbing it of possible god enchantments
2408 root 1.5 object Slay Undead
2409 root 1.1 arch skullcleaver
2410     chance 5
2411     diff 30
2412     exp 50000
2413     trans 1
2414     yield 1
2415     skill smithery
2416     cauldron forge
2417     ingred Skullcleaver,vampire's heart,bottle of philosophical oil
2418     #
2419 root 1.5 object Slay Beholder
2420 root 1.1 arch lspear
2421     chance 5
2422     diff 15
2423     exp 15000
2424     trans 1
2425     yield 1
2426     skill smithery
2427     cauldron forge
2428     ingred long spear,3 beholdereye,bottle of philosophical oil
2429     #
2430 root 1.5 object Slay Beholder
2431 root 1.1 arch taifu_1
2432     chance 5
2433     diff 18
2434     exp 23000
2435     trans 1
2436     yield 1
2437     skill smithery
2438     cauldron forge
2439     ingred Taifu,3 beholdereye,bottle of philosophical oil
2440     #
2441 root 1.5 object Slay Dragon
2442 root 1.1 arch mace,mace_2
2443     diff 20
2444     exp 40000
2445     chance 5
2446     trans 1
2447     yield 1
2448     skill smithery
2449     cauldron forge
2450     ingred mace,3 dragon's steak,bottle of philosophical oil
2451     #
2452     # frostbrand and firebrand have only fire/cold attacks - so will do no damage
2453     # to the wrong kind of dragon. Again we rob potential god enchantments
2454 root 1.5 object Slay Dragon
2455 root 1.1 arch firebrand
2456     chance 5
2457     diff 30
2458     exp 90000
2459     trans 1
2460     yield 1
2461     skill smithery
2462     cauldron forge
2463     ingred Firebrand,3 chinese dragon's steak,chinese dragon's heart,bottle of philosophical oil
2464     #
2465 root 1.5 object Slay Dragon
2466 root 1.1 arch frostbrand
2467     chance 5
2468     diff 30
2469     exp 90000
2470     trans 1
2471     yield 1
2472     skill smithery
2473     cauldron forge
2474     ingred Frostbrand,3 dragon's steak,dragon's heart,bottle of philosophical oil
2475     #
2476 root 1.5 object Glamdri
2477 root 1.1 arch sabre
2478     diff 10
2479     exp 12000
2480     chance 2
2481     trans 1
2482     yield 1
2483     skill smithery
2484     cauldron forge
2485     ingred sabre,potion of resist magic,beholdereye,bottle of philosophical oil
2486     #
2487 root 1.5 object Glamdri
2488 root 1.1 arch light_sword,b_lsword
2489     chance 2
2490     diff 11
2491     exp 13000
2492     trans 1
2493     yield 1
2494     skill smithery
2495     cauldron forge
2496     ingred light sword,potion of resist magic,beholdereye,bottle of philosophical oil
2497     #
2498 root 1.5 object Sorig
2499 root 1.1 arch scimitar,b_scimitar
2500     chance 3
2501     diff 14
2502     exp 15000
2503     trans 1
2504     yield 1
2505     skill smithery
2506     cauldron forge
2507     ingred scimitar,lightning para-elemental's residue,bottle of philosophical oil
2508     #
2509 root 1.5 object Sorig
2510 root 1.1 arch poleaxe
2511     chance 3
2512     diff 16
2513     exp 20000
2514     trans 1
2515     yield 1
2516     skill smithery
2517     cauldron forge
2518     ingred poleaxe,lightning para-elemental's residue,bottle of philosophical oil
2519     #
2520 root 1.5 object Ruggilli
2521 root 1.1 arch large_morningstar
2522     chance 3
2523     diff 14
2524     exp 17000
2525     trans 1
2526     yield 1
2527     skill smithery
2528     cauldron forge
2529     ingred large morningstar,wyvern's steak,bottle of philosophical oil
2530     #
2531 root 1.5 object Ruggilli
2532 root 1.1 arch trident
2533     chance 3
2534     diff 15
2535     exp 18000
2536     trans 1
2537     yield 1
2538     skill smithery
2539     cauldron forge
2540     ingred trident,wyvern's steak,bottle of philosophical oil
2541     #
2542 root 1.5 object Paralysis
2543 root 1.1 arch dagger,b_dagger
2544     chance 6
2545     diff 8
2546     exp 8000
2547     trans 1
2548     yield 1
2549     skill smithery
2550     cauldron forge
2551     ingred dagger,dust of stasis,bottle of mineral oil
2552     #
2553     # -------------------
2554     # Horns
2555     # -------------------
2556     #
2557 root 1.5 object Plenty
2558 root 1.1 arch horn2
2559     chance 15
2560     diff 20
2561     exp 20000
2562     yield 1
2563     skill thaumaturgy
2564     cauldron thaumaturg_desk
2565     ingred unicorn horn,3 mushroom of Gourmet,3 waybread of Aelingas
2566     #
2567 root 1.5 object Fire
2568 root 1.1 arch horn2
2569     chance 10
2570     diff 20
2571     exp 20000
2572     yield 1
2573     skill thaumaturgy
2574     cauldron thaumaturg_desk
2575     ingred unicorn horn,3 dust of ignition
2576     #
2577 root 1.5 object Frost
2578 root 1.1 arch horn2
2579     chance 10
2580     diff 20
2581     exp 20000
2582     yield 1
2583     skill thaumaturgy
2584     cauldron thaumaturg_desk
2585     ingred unicorn horn,3 dust of frost
2586     #
2587 root 1.5 object Eorlingas
2588 root 1.1 arch horn2
2589     chance 5
2590     diff 20
2591     exp 20000
2592     yield 1
2593     skill thaumaturgy
2594     cauldron thaumaturg_desk
2595     ingred unicorn horn,3 dust of ignition,potion of mystic power
2596     #
2597     # -------------------
2598     # Talismans
2599     # -------------------
2600     #
2601 root 1.5 object Fire
2602 root 1.1 arch talisman_pyromancy
2603     chance 5
2604     diff 25
2605     exp 35000
2606     yield 1
2607     skill thaumaturgy
2608     cauldron thaumaturg_desk
2609     ingred talisman of pyromancy,ring of Fire,dragon's heart
2610     #
2611 root 1.5 object Frost
2612 root 1.1 arch talisman_evocation
2613     chance 5
2614     diff 25
2615     exp 35000
2616     yield 1
2617     skill thaumaturgy
2618     cauldron thaumaturg_desk
2619     ingred talisman of evocation,ring of Ice,chinese dragon's heart
2620     #
2621 root 1.5 object Elements
2622 root 1.1 arch talisman_pyromancy
2623     chance 2
2624     diff 35
2625     exp 75000
2626     yield 1
2627     skill thaumaturgy
2628     cauldron thaumaturg_desk
2629     ingred talisman of Fire,talisman of Frost,3 electric dragon's steak,3 diamond of flawless beauty
2630     #
2631 root 1.5 object Unified Mind
2632 root 1.1 arch talisman_sorcery
2633     chance 10
2634     diff 25
2635     exp 35000
2636     yield 1
2637     skill thaumaturgy
2638     cauldron thaumaturg_desk
2639     ingred talisman of sorcery,potion of intelligence,helmet of Xebinon
2640     #
2641 root 1.5 object Evocation
2642 root 1.1 arch talisman_evocation
2643     chance 3
2644     diff 25
2645     exp 35000
2646     yield 1
2647     skill thaumaturgy
2648     cauldron thaumaturg_desk
2649     ingred talisman of evocation,3 figurine of a clenched hand,3 balm of traveling
2650     #
2651     # -------------------
2652     # Holy Symbols
2653     # -------------------
2654     #
2655 root 1.5 object Probity
2656 root 1.1 arch holy_symbol
2657     chance 7
2658     diff 25
2659     exp 35000
2660     yield 1
2661     skill thaumaturgy
2662     cauldron thaumaturg_desk
2663     ingred holy symbol,balm of asbestos,balm of warmth,balm of insulation
2664     #
2665 root 1.5 object Turning
2666 root 1.1 arch holy_symbol
2667     chance 10
2668     diff 25
2669     exp 35000
2670     yield 1
2671     skill thaumaturgy
2672     cauldron thaumaturg_desk
2673     ingred holy symbol,7 dust of repelling undead,bottle of philosophical oil
2674     #
2675 root 1.5 object Calling
2676 root 1.1 arch holy_symbol
2677     chance 10
2678     diff 25
2679     exp 35000
2680     yield 1
2681     skill thaumaturgy
2682     cauldron thaumaturg_desk
2683     ingred holy symbol,figurine of stone,figurine of a great wave,figurine of a flame
2684     #
2685 root 1.5 object The Dark Path
2686 root 1.1 arch holy_symbol
2687     chance 5
2688     diff 25
2689     exp 35000
2690     yield 1
2691     skill thaumaturgy
2692     cauldron thaumaturg_desk
2693     ingred holy symbol,10 arrow of Assassinating dragons,vampire's heart
2694     #
2695 root 1.5 object Great Virtue
2696 root 1.1 arch holy_symbol
2697     chance 2
2698     diff 25
2699     exp 35000
2700     yield 1
2701     skill thaumaturgy
2702     cauldron thaumaturg_desk
2703     ingred holy symbol,figurine of a clenched hand,3 healing potion,3 dust of clairvoyance,2 potion of wisdom
2704     #
2705     # -------------------
2706     # Food
2707     # -------------------
2708     #
2709 root 1.5 object Gourmet
2710 root 1.1 arch mushroom_1
2711     chance 40
2712     diff 5
2713     exp 2000
2714     yield 7
2715     skill woodsman
2716     cauldron stove
2717     ingred 7 mushroom,water of the wise
2718     #
2719 root 1.5 object Magic
2720 root 1.1 arch mushroom_2
2721     chance 20
2722     diff 8
2723     exp 4000
2724     yield 7
2725     skill woodsman
2726     cauldron stove
2727     ingred 7 mushroom of Gourmet,potion of mystic power
2728     #
2729 root 1.5 object Healing
2730 root 1.1 arch mushroom_3
2731     chance 20
2732     diff 8
2733     exp 4000
2734     yield 7
2735     skill woodsman
2736     cauldron stove
2737     ingred 7 mushroom of Gourmet,balm of first aid
2738     #
2739 root 1.5 object Stamina
2740 root 1.1 arch food
2741     chance 30
2742     diff 5
2743     exp 2000
2744     yield 7
2745     skill woodsman
2746     cauldron stove
2747     ingred 7 food,potion of recuperation
2748     #
2749 root 1.5 object Aelingas
2750 root 1.1 arch waybread
2751     chance 30
2752     diff 10
2753     exp 6000
2754     yield 7
2755     skill woodsman
2756     cauldron stove
2757     ingred 7 waybread,potion of heroism
2758     #
2759 root 1.5 object Strength
2760 root 1.1 arch mushroom_2
2761     chance 30
2762     diff 10
2763     exp 7000
2764     yield 7
2765     skill woodsman
2766     cauldron stove
2767     ingred 7 mushroom of Gourmet,potion of strength
2768     #
2769 root 1.5 object Quickness
2770 root 1.1 arch mushroom_3
2771     chance 30
2772     diff 12
2773     exp 8000
2774     yield 7
2775     skill woodsman
2776     cauldron stove
2777     ingred 7 mushroom of Gourmet,potion of agility
2778     #
2779 root 1.5 object Heat Resistance
2780 root 1.1 arch mushroom_1
2781     chance 20
2782     diff 8
2783     exp 7000
2784     yield 7
2785     skill woodsman
2786     cauldron stove
2787     ingred 7 mushroom of Gourmet,balm of asbestos
2788     #
2789 root 1.5 object Frost Resistance
2790 root 1.1 arch mushroom_2
2791     chance 20
2792     diff 8
2793     exp 7000
2794     yield 7
2795     skill woodsman
2796     cauldron stove
2797     ingred 7 mushroom of Gourmet,balm of warmth
2798     #
2799 root 1.5 object Bravery
2800 root 1.1 arch mushroom_3
2801     chance 30
2802     diff 8
2803     exp 7000
2804     yield 7
2805     skill woodsman
2806     cauldron stove
2807     ingred 7 mushroom of Gourmet,dust of fright
2808     #
2809 root 1.5 object Magic Resistance
2810 root 1.1 arch mushroom_3
2811     chance 20
2812     diff 8
2813     exp 7000
2814     yield 7
2815     skill woodsman
2816     cauldron stove
2817     ingred 7 mushroom of Gourmet,potion of resist magic
2818     #
2819 root 1.5 object Life
2820 root 1.1 arch mushroom_3
2821     diff 8
2822     exp 7000
2823     chance 30
2824     yield 7
2825     skill woodsman
2826     cauldron stove
2827     ingred 7 mushroom of Gourmet,potion of resist draining