ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/formulae
(Generate patch)

Comparing deliantra/server/lib/formulae (file contents):
Revision 1.1.1.1 by root, Fri Feb 3 07:14:13 2006 UTC vs.
Revision 1.9 by root, Wed Apr 28 20:51:58 2010 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines