ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/formulae
Revision: 1.9
Committed: Wed Apr 28 20:51:58 2010 UTC (14 years ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.8: +0 -0 lines
State: FILE REMOVED
Log Message:
move resource files to arch

File Contents

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