# # Herein lie the formulae for alchemical products. # # The code is designed so that any fancy combination # of objects may be combined to comprise a formula. Because # the code only requests that the 'names' (see def below) # of cauldron ingredients match those listed in the formula # you can use *anything* found in the game as a possible # ingredient. Legal names include both obj->name and a # title field, if it exists. Therefore, it *is* legal to use # an artifact like "cloak of protection" as an ingredient. # # Definitions of fields: # # "object" This is the title of the formula. In # conjunction with a value in "arch" these # are used to lookup artifacts from the # artifacts file (ie. of ). # If you want to just create the arch w/o # making it an artifact, designate the # object field as "NONE". # # "chance" is how likely a formula is to appear in # an alchemical grimore. Chance of 0 indicates # the formula never appears. # # "arch" indicates the possible archetype that may # be used to generate the item. # # "ingred" is a comma delimited list of ingredients # that are needed to create the item. Each # alchemical formula *should* be unique! but # note that this is not required. Values of # ingredients must be the object names. Prepend # an integer value to denote the number of that # ingredient ("1" is not needed for single # ingredients). Note that the ordering of the # ingredients is *not* important. # # "yield" is the theoretical possible maximum # of # items the recipe can generate. # It is fundamentally useful for balancing # reward/effort for these recipes. One intention # is to enforce conservation of mass by means # of this #. # # "trans" defaults to '0' and is not explicitly needed. # If you define it to any value (ie '1') then # one of the ingredients will be used as the base # arch for the product. Obviously, the ingredient # so used *must* have the same archetype as the # product so don't be a fool and leave out a # common archetype ingredient!! See bolt of Dragon # slaying for an example of a transmution formula. # # "keycode" A string, such as "fire". In order for the alchemist # to execute this recipe, he must have a FORCE with a # slaying field matching the keycode # # "skill" A string, such as "alchemy". This is the name of the skill # that is used to create this formula. This is a required field # and must match one of the following: # smithery, bowyer, jeweler, alchemy, thaumaturgy, literacy, # woodsman # # "cauldron" A string, which must be the valid archetype name for an # archetype. In the example of a true alchemy formula, this # would be a cauldron. A smithery formula might use something # like a forge. You can create formulae that are only usable # with a specific facilities. This field is required. # # "exp" A required integer. This is the amount of experience a user # gets by using this formula. You should factor difficulty in # when setting exp. The game does not do this for you. # # "diff" A required integer. This is the percentage difficulty out of # 100 of how hard this formula is. This is the only factor used in # determining success or failure of the creation. # # IMPORTANT NOTE ----> # It is not enough to construct ad-hoc lists of # ingredients to make a formula. Playbalance will # be adversely effected if you make a formula for # a powerfull artifact (potion of stat raising, for # example) that is common, and/or easy to assemble # the ingredients, and/or has few ingredients. Thus, # here are some general guidelines for making formulae: # # 1) no fewer than 2 ingredients # 2) at least one ingredient needs to be found # in the dungeon, or is rarely appearing in shop. # 3) more ingredients for more powerfull stuff. # 4) more 'expensive' ingredients for more powerfull # stuff. 'expensive' here means its harder to get, # more costly to buy, rarer to find. # 5) Run deliantra with the -m9 switch to check your formula - # It does some sanity checking and price checking # # # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> # F O R M U L A E B E G I N # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> # # -------------- # Basic formulae - these formulae make some of the most often used # ingredients. # -------------- # # true lead object NONE arch true_lead yield 2 chance 5 diff 20 exp 100000 skill alchemy cauldron cauldron ingred lead,pile of philosophical salt,bottle of philosophical oil,pile of philosophical sulphur,pile of philosophical phosphorus # # fixed mercury object NONE arch fix_mercury yield 2 chance 5 diff 20 exp 100000 skill alchemy cauldron cauldron ingred mercury,pile of philosophical salt,bottle of philosophical oil,pile of philosophical sulphur,pile of philosophical phosphorus # # mercury object NONE arch mercury chance 10 diff 5 exp 1000 skill alchemy cauldron cauldron ingred 3 pile of cinnabar # # philosophical salt object NONE arch phil_salt chance 10 diff 5 exp 1000 yield 7 skill alchemy cauldron cauldron ingred 7 pile of salt # # philosophical sulphur object NONE arch phil_sulphur chance 10 diff 5 exp 1000 yield 7 skill alchemy cauldron cauldron ingred 7 pile of sulphur # # philosophical phosphorus object NONE arch phil_phosphorus chance 10 diff 5 exp 1000 yield 7 skill alchemy cauldron cauldron ingred 7 pile of phosphorus # # philosophical oil object NONE arch phil_oil chance 9 diff 5 exp 1000 yield 7 skill alchemy cauldron cauldron ingred 7 bottle of mineral oil # # water of the wise object the wise arch water chance 30 diff 8 exp 1000 yield 7 skill alchemy cauldron cauldron ingred 7 water # # water of diamond object diamond arch water chance 30 diff 10 exp 5000 yield 1 skill alchemy cauldron cauldron ingred water of the wise,3 diamond # # water of ruby object ruby arch water diff 10 exp 5000 chance 35 skill alchemy cauldron cauldron ingred 3 ruby,water of the wise # # water of sapphire object sapphire arch water diff 10 exp 5000 chance 40 skill alchemy cauldron cauldron ingred 3 sapphire,water of the wise # # water of emerald object emerald arch water chance 40 diff 10 exp 5000 skill alchemy cauldron cauldron ingred 3 emerald,water of the wise # # water of pearl object pearl arch water chance 40 diff 10 exp 5000 skill alchemy cauldron cauldron ingred 3 pearl,water of the wise # # # -------------- # Potions -- incl. balms, figurines, and dusts # -------------- # # -- Balms of protection. Since balm is rubbed on, I made only # protections vs. things that 'physically' must touch you. # Other protections are in potion. # # -- balms of protection -- # # -- fire prot. object asbestos arch balm_generic chance 25 diff 15 exp 8000 skill alchemy cauldron cauldron ingred 3 dragon scale,water of the wise # # -- cold prot. #1 object warmth arch balm_generic chance 25 diff 16 exp 9000 skill alchemy cauldron cauldron ingred vampire's heart,water of the wise,icecube # # -- cold prot. #2 object warmth arch balm_generic chance 25 diff 14 exp 6000 skill alchemy cauldron cauldron ingred vampire's heart,water of the wise,water of pearl # # -- elect prot. object insulation arch balm_generic chance 25 diff 14 exp 7000 skill alchemy cauldron cauldron ingred beholdereye,water of the wise,2 key # # -- phys. prot. object aethereality arch balm_generic chance 28 diff 17 exp 8000 skill alchemy cauldron cauldron ingred 3 ghost's ectoplasm,water of emerald # # -- misc. balms -- # # -- word of recall object return home arch balm_generic chance 2 diff 12 exp 6000 yield 3 skill alchemy cauldron cauldron ingred 3 xan's wing,3 pixie's wings,3 water of sapphire # # -- invisible object transparency arch balm_generic chance 8 diff 14 exp 7000 skill alchemy cauldron cauldron ingred ghost's ectoplasm,water of emerald,3 onion # # -- invisible to undead object invisible to undead arch balm_generic chance 15 diff 10 exp 5000 skill alchemy cauldron cauldron ingred zombie's corpse,graveyard dirt # # -- minor heal object first aid arch balm_generic chance 27 diff 9 exp 4000 skill alchemy cauldron cauldron ingred water of the wise,mandrake root # # -- levitation object flying arch balm_generic chance 20 diff 13 exp 7000 skill alchemy cauldron cauldron ingred 2 giant bat's wing,water of the wise # # -- serpent to snake (you rub it on your staff!) object the serpent arch balm_generic chance 12 diff 12 exp 6000 skill alchemy cauldron cauldron ingred snake's skin,bottle of philosophical oil # # Figurines -- these devices should only summon 'golems'; never any # other effects. # # -- summon golem object clay arch figurine_generic chance 8 diff 8 exp 3000 skill alchemy cauldron cauldron ingred 3 graveyard dirt,water of the wise # # -- summon air elem object whirlwind arch figurine_generic chance 7 diff 20 exp 20000 yield 4 skill alchemy cauldron cauldron ingred air para-elemental's residue,7 pile of gypsum,bottle of philosophical oil # # -- summon earth elem object stone arch figurine_generic chance 5 diff 20 exp 20000 yield 4 skill alchemy cauldron cauldron ingred earth para-elemental's residue,7 pile of pyrite,bottle of philosophical oil # # -- summon water elem object a great wave arch figurine_generic chance 4 diff 20 exp 20000 yield 4 skill alchemy cauldron cauldron ingred water para-elemental's residue,7 water,bottle of philosophical oil # # -- summon fire elem object a flame arch figurine_generic chance 3 diff 20 exp 20000 yield 4 skill alchemy cauldron cauldron ingred fire para-elemental's residue,7 pile of sulphur,bottle of philosophical oil # # -- mystic fist object a clenched hand arch figurine_generic chance 1 yield 7 diff 14 exp 10000 skill alchemy cauldron cauldron ingred figurine of clay,hill giant's hand,bottle of philosophical oil # # Dusts -- these either allow 360 deg 'attacks' or effect some kind of # detection. # # -- dusts w/ 360 effect -- # # -- paralyze object stasis arch dust_generic chance 15 diff 10 exp 5000 skill alchemy cauldron cauldron ingred mountain stone,goblin's liver # # -- mass confusion object madness arch dust_generic chance 15 diff 12 exp 6000 yield 2 skill alchemy cauldron cauldron ingred madman's corpse,2 water of the wise # # -- burning hands object ignition arch dust_generic chance 19 yield 4 diff 15 exp 8000 skill alchemy cauldron cauldron ingred water of diamond,pile of salt,pile of phosphorus,pile of sulphur # # -- hellfire object conflagration arch dust_generic chance 5 yield 4 diff 20 exp 20000 skill alchemy cauldron cauldron ingred water of diamond,pile of philosophical salt,pile of philosophical phosphorus,pile of philosophical sulphur # # -- counterspell object countermagic arch dust_generic chance 23 diff 15 exp 9000 yield 4 skill alchemy cauldron cauldron ingred 2 lead,pile of philosophical phosphorus # # -- icestorm #1 object frost arch dust_generic chance 18 diff 12 exp 10000 yield 4 skill alchemy cauldron cauldron ingred icecube,icecube,icecube,water of diamond # # -- icestorm #2 object frost arch dust_generic chance 18 diff 14 exp 8000 yield 3 skill alchemy cauldron cauldron ingred water of pearl,water of diamond,pile of gypsum # # -- shockwave object concussion arch dust_generic chance 8 diff 10 exp 5000 yield 2 skill alchemy cauldron cauldron ingred dust of conflagration,dust of ignition # # -- fear object fright arch dust_generic chance 16 diff 12 exp 6000 yield 2 skill alchemy cauldron cauldron ingred orc's heart,water of the wise # # -- turn undead object repelling undead arch dust_generic chance 11 diff 9 exp 4500 yield 6 skill alchemy cauldron cauldron ingred pile of salt,graveyard dirt # # -- face of death -- this is potent stuff!! # unfortuneately its currently buggy :< #Object Necrocritis #arch dust_generic #chance 0 #ingred 3 graveyard dirt,vampire's heart,zombie corpse,lich dust # # -- dusts of detection -- # # -- magic mapping object clairvoyance arch dust_generic chance 14 diff 7 exp 4000 yield 6 skill alchemy cauldron cauldron ingred 2 beholdereye,water of sapphire # # -- show invisible object revealing arch dust_generic chance 3 diff 9 exp 4500 yield 5 skill alchemy cauldron cauldron ingred 3 pile of gypsum,Dread's eye,water of emerald # # -- detect magic object show enchantment arch dust_generic chance 38 diff 5 exp 2000 yield 5 skill alchemy cauldron cauldron ingred pixie dust,pile of pyrite # # -- dark vision object night vision arch dust_generic chance 17 diff 15 exp 9000 yield 10 skill alchemy cauldron cauldron ingred beholdereye,3 carrots,water of the wise # # -- xray object piercing vision arch dust_generic chance 11 yield 10 diff 9 exp 4500 skill alchemy cauldron cauldron ingred water of sapphire,7 carrots # # -- faery fire object clinging glow arch dust_generic chance 21 diff 14 exp 8000 yield 10 skill alchemy cauldron cauldron ingred pile of pyrite,3 pixie dust,water of the wise # # -- fog, ok, ok. Not a detection spell. Not 360. But where else # to put it? And after all the work I put in this game, # can't I name an artifact after a favorite character? :) # -- b.t. object Biren's mist arch dust_generic chance 6 diff 15 exp 7000 yield 3 skill alchemy cauldron cauldron ingred water of the wise,icecube,booze # # biren's mist #2 object Biren's mist arch dust_generic chance 6 yield 6 diff 14 exp 7500 skill alchemy cauldron cauldron ingred water of the wise,water of pearl,booze # # -- command undead object the Dead arch dust_generic chance 14 diff 14 exp 7000 yield 5 skill alchemy cauldron cauldron ingred skull's tongue,zombie's corpse,graveyard dirt # # -- light object brightness arch dust_generic chance 24 diff 12 exp 6000 yield 6 skill alchemy cauldron cauldron ingred torch,water of ruby,pile of sulphur # # -- darkness object impenatrability arch dust_generic chance 15 diff 18 exp 12000 yield 3 skill alchemy cauldron cauldron ingred burnt out torch,lead,dust of Biren's mist # # -- mana blast object consuming wrath arch dust_generic chance 16 diff 18 exp 12000 yield 5 skill alchemy cauldron cauldron ingred water of diamond,pile of phosphorus,lead,pile of sulphur # # -- medium mana ball object encompassing rage arch dust_generic chance 4 diff 20 exp 20000 yield 5 skill alchemy cauldron cauldron ingred water of diamond,pile of philosophical phosphorus,lead,pile of philosophical sulphur # # # -- medium snowstowm object blizzards arch dust_generic chance 5 yield 5 diff 15 exp 10000 skill alchemy cauldron cauldron ingred water of sapphire,dust of frost,bottle of philosophical oil # # Potions -- these give 'non-contact' protections, have # attack effects on the 'drinker' (or one it is # thrown at ;), give immunities, give cures and # have the more powerfull misc. effects. # # -- stat enchancing potion. (temporary, allowing players to make # permantent stat raising items is a playbalance no no I think). # # -- strength spell object strength arch potion_generic chance 18 diff 16 exp 12000 skill alchemy cauldron cauldron ingred 3 water of the wise,ogre's arm,pile of philosophical salt # # -- dex spell object agility arch potion_generic chance 18 diff 16 exp 12000 yield 7 skill alchemy cauldron cauldron ingred 3 water of the wise,pixie dust,pile of philosophical salt # # -- con spell object fortitude arch potion_generic chance 17 diff 16 exp 12000 yield 7 skill alchemy cauldron cauldron ingred 3 water of the wise,small troll's liver,pile of philosophical salt # # -- cha spell (gets rid of wrinkles, better as balm! :) object beauty arch balm_generic chance 5 diff 16 exp 12000 yield 7 skill alchemy cauldron cauldron ingred woman's head,3 mint sprig,water of the wise # # -- heroism object NONE arch potion_heroism chance 11 diff 16 exp 12000 yield 8 skill alchemy cauldron cauldron ingred ogre's heart,3 water of the wise,pile of philosophical salt,pirate's heart # # -- immunity potion, these are separate archs each already -- # Note the 0 chance--these formulae are quest items. # # -- fire immune # (quest: peterm/FireTemple) object NONE arch potion_cold chance 0 diff 50 exp 500000 yield 10 skill alchemy cauldron cauldron ingred fire para-elemental's residue,3 balm of asbestos,dragon's steak,7 water of ruby keycode fire alchemist # # -- cold immune object NONE arch potion_fire chance 1 diff 50 exp 500000 yield 10 skill alchemy cauldron cauldron ingred ice para-elemental's residue,3 balm of warmth,chinese dragon's steak,7 water of sapphire # # -- guess what this is.... object NONE arch potion_invulnerability chance 0 diff 50 exp 500000 yield 4 skill alchemy cauldron cauldron ingred spectre's ectoplasm,demon's head,7 water of ruby,3 balm of aethereality # # -- magic immunity (very powerful) object magic resistance arch potion_generic chance 0 diff 50 exp 500000 yield 14 skill alchemy cauldron cauldron ingred block of true lead,demon's heart,7 water of diamond,3 potion of resist magic # # -- electric immunity (very powerful) object shock resistance arch potion_generic chance 0 diff 50 exp 500000 yield 14 skill alchemy cauldron cauldron ingred lightning para-elemental's residue,block of fixed mercury,titan's head,7 water of ruby # # -- prot from magic object resist magic arch potion_generic chance 25 diff 20 exp 20000 yield 2 skill alchemy cauldron cauldron ingred water of ruby,beholder's tongue,mandrake root # # -- prot from confusion object resist confusion arch potion_generic chance 22 diff 20 exp 20000 skill alchemy cauldron cauldron ingred madman's head,beholdereye,water of ruby # # -- prot from draining object resist draining arch potion_generic chance 21 diff 15 exp 12000 yield 10 skill alchemy cauldron cauldron ingred wight's corpse,water of ruby,graveyard dirt # # -- prot from paralysis object resist paralysis arch potion_generic chance 24 diff 14 exp 11000 yield 10 skill alchemy cauldron cauldron ingred mercury,water of ruby,cunning gnome's corpse # # -- prot from slow object resist slow arch potion_generic chance 24 diff 14 exp 11000 yield 10 skill alchemy cauldron cauldron ingred water of ruby,2 xan's wing # # -- prot from poison object resist poison arch potion_generic chance 20 diff 15 exp 12000 yield 10 skill alchemy cauldron cauldron ingred scorpion's stinger,water of ruby,clover # # -- curative potion # # -- cure blindness object cure vision arch potion_generic chance 15 diff 12 exp 9000 yield 5 skill alchemy cauldron cauldron ingred man's eye,carrots,balm of first aid # # -- cure poison object cure poison arch potion_generic chance 16 diff 12 exp 9000 yield 5 skill alchemy cauldron cauldron ingred snake's skin,apple,balm of first aid # # -- cure confusion object cure madness arch potion_generic chance 17 diff 12 exp 9000 yield 9 skill alchemy cauldron cauldron ingred madman's head,apple,balm of first aid # # -- potion casting other magic, dedicated archs first, then potion_gen # # -- sp regen. Recipe #1 object NONE arch potion_magic chance 0 diff 20 exp 20000 yield 5 skill alchemy cauldron cauldron ingred 3 potion of mystic power,block of fixed mercury,water of diamond # # -- sp regen. Recipe #2 object NONE arch potion_magic chance 0 diff 20 exp 25000 yield 4 skill alchemy cauldron cauldron ingred potion of mystic power,mushroom of Magic,water of diamond # # -- restoration object NONE arch potion_restoration chance 7 diff 10 exp 10000 yield 5 skill alchemy cauldron cauldron ingred unicorn horn,3 booze # # -- healing recipe #1 object NONE arch potion_heal chance 4 diff 13 exp 13000 yield 4 skill alchemy cauldron cauldron ingred potion of life,mushroom of Healing,red rose # # -- healing recipe #2 object NONE arch potion_heal chance 2 diff 13 exp 13000 yield 5 skill alchemy cauldron cauldron ingred unicorn horn,balm of first aid,red rose # # -- regeneration object recuperation arch potion_generic chance 9 diff 13 exp 13000 yield 7 skill alchemy cauldron cauldron ingred troll's liver,water of the wise,3 booze # # -- haste object speed arch potion_generic chance 1 diff 20 exp 20000 yield 4 skill alchemy cauldron cauldron ingred pixie's wings,xan's wing,water of diamond # # -- transfer object mystic power arch potion_generic chance 8 diff 12 exp 12000 yield 6 skill alchemy cauldron cauldron ingred 3 water of diamond,sage's head,clover # # -- perceive self object self knowledge arch potion_generic chance 20 diff 10 exp 10000 yield 3 skill alchemy cauldron cauldron ingred sage's head,water of the wise # # -- cure disease object cure disease arch potion_generic chance 20 diff 5 exp 5000 yield 5 skill alchemy cauldron cauldron ingred booze,balm of first aid,red rose # # -- attack potion. Drinker/target is effected adversely # # -- sm. lightning object electric shock arch potion_generic chance 4 diff 10 exp 10000 yield 3 skill alchemy cauldron cauldron ingred lightning para-elemental's residue,water of diamond # # -- firebolt object fire arch potion_generic chance 4 diff 10 exp 10000 yield 3 skill alchemy cauldron cauldron ingred fire para-elemental's residue,water of ruby # # -- frostbolt object freezing arch potion_generic chance 4 diff 10 exp 10000 yield 3 skill alchemy cauldron cauldron ingred ice para-elemental's residue,water of sapphire # # -- sunspear object sunfire arch potion_generic chance 4 diff 10 exp 10000 yield 3 skill alchemy cauldron cauldron ingred lava para-elemental's residue,water of diamond # # -- comet object black fire arch potion_generic chance 2 diff 10 exp 10000 yield 5 skill alchemy cauldron cauldron ingred potion of fire,potion of sunfire,water of diamond # # -- meteor storm, very powerful. object fiery destruction arch potion_generic chance 0 diff 50 exp 50000 yield 6 skill alchemy cauldron cauldron ingred potion of black fire,water of diamond,water of ruby,water of sapphire,water of emerald # # -- s. fireball object firestorm arch potion_generic chance 12 diff 18 exp 18000 yield 7 skill alchemy cauldron cauldron ingred dust of ignition,3 booze,bottle of philosophical oil # # -- m. fireball object great firestorm arch potion_generic chance 4 diff 18 exp 18000 yield 7 skill alchemy cauldron cauldron ingred dust of conflagration,3 booze,bottle of philosophical oil # # -- poison cloud object noxious fumes arch potion_generic chance 15 diff 18 exp 18000 yield 7 skill alchemy cauldron cauldron ingred 3 xan's wing,water of emerald # # -- color spray. very powerful, probably should be a quest item object Rainbow Wave arch potion_generic chance 0 diff 50 exp 100000 yield 6 skill alchemy cauldron cauldron ingred wyvern of chaos's steak,7 water of diamond,potion of electric shock,skull's tongue # # -- ball lightning object lasting shock arch potion_generic chance 3 diff 28 exp 40000 yield 3 skill alchemy cauldron cauldron ingred 3 water of diamond,3 potion of electric shock,electric dragon's steak # # ------------------- # Missile weapons # ------------------- # object Slay Dragon arch arrow chance 3 trans 1 diff 5 exp 5000 yield 20 skill bowyer cauldron workbench ingred 20 arrow,dragon's claw # object Slay Dragon arch bolt chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,dragon's claw # # object Assassinating Dragons arch bolt chance 0 diff 30 exp 50000 yield 20 trans 1 skill bowyer cauldron workbench ingred 20 bolt,dragon's heart,water of emerald,scorpion's stinger # # object Assassinating Dragons arch arrow chance 0 diff 30 exp 50000 yield 20 trans 1 skill bowyer cauldron workbench ingred 20 arrow,dragon's heart,water of emerald,scorpion's stinger # object Assassinating Trolls arch bolt chance 0 diff 30 exp 50000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,troll's heart,scorpion's stinger # # object Assassinating Trolls arch arrow chance 0 diff 30 exp 50000 yield 20 trans 1 skill bowyer cauldron workbench ingred 20 arrow,troll's heart,scorpion's stinger # # object Blessedness arch bolt chance 0 diff 30 exp 50000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,unicorn horn,2 water of sapphire # # object Blessedness arch arrow chance 0 diff 30 exp 50000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 arrow,unicorn horn,2 water of sapphire # # object Magic arch arrow chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 arrow,potion of mystic power # # object Magic arch bolt chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,potion of mystic power # # object Fire arch arrow chance 4 trans 1 diff 5 exp 5000 yield 20 skill bowyer cauldron workbench ingred 20 arrow,wyvern's steak # # object Fire arch bolt chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,wyvern's steak # # object Frost arch arrow chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 arrow,ghost's ectoplasm # # object Frost arch bolt chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,ghost's ectoplasm # # object Lightning arch arrow chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 arrow,skull's tooth # # object Lightning arch bolt chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,skull's tooth # # object Paralysis arch arrow chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 arrow,beholdereye # # object Paralysis arch bolt chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,beholdereye # # object Poison arch arrow chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 arrow,scorpion's stinger # # object Poison arch bolt chance 4 diff 5 exp 5000 trans 1 yield 20 skill bowyer cauldron workbench ingred 20 bolt,scorpion's stinger # # ------------------- # Cloaks # ------------------- # object minor protection arch cloak chance 5 diff 5 exp 5000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,balm of aethereality # object intermediate protection arch cloak chance 4 diff 10 exp 15000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,ghost's ectoplasm,balm of aethereality # object greater protection arch cloak chance 2 diff 20 exp 30000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,spectre's ectoplasm,potion of aethereality # object Insulation arch cloak chance 3 diff 10 exp 10000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,3 electric dragon's steak,balm of insulation # object Warmth arch cloak diff 10 exp 10000 chance 3 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,3 chinese dragon's steak,balm of insulation # object Asbestos arch cloak chance 3 diff 10 exp 10000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,3 dragon's steak,balm of insulation # object Acid Proofing arch cloak chance 3 diff 25 exp 50000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,gaelotroll's corpse,block of true lead # object Lythander arch cloak chance 1 diff 25 exp 50000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,Dread's eye,holy symbol,2 potion of power # object Gaea arch cloak chance 1 yield 1 diff 26 trans 1 exp 55000 skill woodsman cauldron tanbench ingred cloak,balm of asbestos,balm of insulation,balm of warmth,holy symbol # object the Magi arch cloak chance 1 diff 26 exp 80000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,potion of wisdom,2 potion of power # object Unholy Protection arch cloak chance 3 diff 25 exp 50000 trans 1 yield 1 skill woodsman cauldron tanbench ingred cloak,ring of Doom,amulet of Unholiness,lich dust,vampire's heart # # ------------------- # Boots # ------------------- # object granite arch high_boots,high_boots_b,high_boots_w chance 5 diff 5 exp 10000 trans 1 yield 1 skill smithery cauldron forge ingred jack boots,3 lead # object granite arch low_boots chance 5 diff 5 exp 10000 trans 1 yield 1 skill smithery cauldron forge ingred shoes,3 lead # object mobility arch low_boots chance 3 diff 10 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred shoes,beholdereye,3 lead # object mobility arch elvenboots chance 1 diff 10 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred elven boots,Dread's eye,block of true lead # object mobility arch levitationboots chance 1 diff 20 exp 50000 trans 1 yield 1 skill smithery cauldron forge ingred levitation boots,Dread's eye,block of true lead # object clawing arch low_boots chance 5 diff 10 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred shoes,goblin's head,lead # object clawing arch high_boots,high_boots_b,high_boots_w chance 5 diff 10 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred jack boots,goblin's head,lead # object steel arch high_boots,high_boots_b,high_boots_w chance 5 diff 15 exp 25000 trans 1 yield 1 skill smithery cauldron forge ingred jack boots,3 mithril crystal # object steel arch low_boots chance 5 diff 15 exp 25000 trans 1 yield 1 skill smithery cauldron forge ingred shoes,3 mithril crystal # # ------------------- # Armour # ------------------- # object Gorokh arch scale_mail,b_scale_mail chance 3 diff 12 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred scale mail,potion of magic resistance,demon's head # object Gorokh arch plate_mail,b_plate_mail chance 3 diff 12 exp 25000 trans 1 yield 1 skill smithery cauldron forge ingred plate mail,potion of magic resistance,demon's head # object Gnarg arch scale_mail,b_scale_mail chance 4 diff 15 exp 30000 trans 1 yield 1 skill smithery cauldron forge ingred scale mail,potion of resist poison,troll's heart # object Gnarg arch plate_mail,b_plate_mail chance 4 diff 18 exp 40000 trans 1 yield 1 skill smithery cauldron forge ingred plate mail,potion of resist poison,troll's heart # object Protection arch scale_mail,b_scale_mail chance 6 diff 25 exp 80000 trans 1 yield 1 skill smithery cauldron forge ingred scale mail,amulet of Shielding,lead # object Protection arch plate_mail,b_plate_mail chance 6 diff 30 exp 100000 trans 1 yield 1 skill smithery cauldron forge ingred plate mail,amulet of Shielding,3 lead # object Berwean arch plate_mail,b_plate_mail chance 4 diff 10 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred plate mail,3 pixie's wings,3 xan's wing # object Berwean arch mithril_chainmail chance 2 diff 20 exp 40000 trans 1 yield 1 skill smithery cauldron forge ingred mithril chainmail,3 pixie's wings,3 xan's wing,potion of speed # object Ruggilli arch dragon_mail chance 1 diff 30 exp 100000 trans 1 yield 1 skill smithery cauldron forge ingred dragon mail,3 dragon's steak,dragon's eye,dragon scale,fire para-elemental's residue # object Ruggilli arch scale_mail,b_scale_mail chance 2 diff 25 exp 80000 trans 1 yield 1 skill smithery cauldron forge ingred scale mail,wyvern's steak,dragon scale,fire para-elemental's residue # object Gaea arch leather_armour chance 3 diff 15 exp 30000 trans 1 yield 1 skill smithery cauldron forge ingred armour,potion of resist draining,potion of recuperation # object Gaea arch ring_mail chance 3 diff 12 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred hauberk,potion of resist draining,potion of recuperation # object Protection arch chain_mail chance 5 diff 20 exp 40000 trans 1 yield 1 skill smithery cauldron forge ingred chain mail,balm of aethereality,lead # object Protection arch ring_mail2 chance 5 diff 20 exp 40000 trans 1 yield 1 skill smithery cauldron forge ingred ring mail,balm of aethereality,lead # object Power arch plate_mail,b_plate_mail chance 2 diff 40 exp 150000 trans 1 yield 1 skill smithery cauldron forge ingred plate mail,3 dragon's steak,balm of aethereality,potion of strength # object Displacement arch robe,robe2 diff 20 exp 50000 chance 4 trans 1 yield 1 skill smithery cauldron forge ingred robe,balm of transparency,3 mercury # object metal weave arch robe,robe2 diff 10 exp 20000 chance 4 trans 1 yield 1 skill smithery cauldron forge ingred robe,lead,balm of aethereality # object NONE arch elven_robe diff 40 exp 150000 chance 2 yield 1 skill smithery cauldron forge ingred robe,potion of dexterity,3 potion of resist confusion,clover,unicorn horn # # ------------------ # Helmets # ------------------ # object Xebinon arch helmet,a_helmet,b_helmet chance 2 diff 5 exp 10000 trans 1 yield 1 skill smithery cauldron forge ingred helmet,magic power potion,bottle of philosophical oil # object Dark Vision arch helmet,a_helmet,b_helmet chance 3 diff 5 exp 10000 trans 1 yield 1 skill smithery cauldron forge ingred helmet,3 dust of night vision,bottle of philosophical oil # object Might arch full_helmet,b_full_helmet chance 3 diff 10 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred full helmet,potion of strength,ogre's corpse,bottle of philosophical oil # object Valriel arch full_helmet,b_full_helmet chance 4 diff 10 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred full helmet,3 balm of beauty,bottle of philosophical oil # object Argoth arch full_helmet,b_full_helmet chance 2 diff 12 exp 25000 trans 1 yield 1 skill smithery cauldron forge ingred full helmet,3 dragon's steak,mithril crystal,bottle of philosophical oil # object Lythander arch helmet,a_helmet,b_helmet chance 5 diff 6 exp 12000 trans 1 yield 1 skill smithery cauldron forge ingred helmet,clover,bottle of philosophical oil # object Sorig arch crown,crown_dark,crown_gray,crown_r,crown_white chance 3 diff 20 exp 40000 trans 1 yield 1 skill smithery cauldron forge ingred crown,lightning para-elemental's residue,balm of insulation,bottle of philosophical oil # # ------------------ # Shields # ------------------ # object Deflection arch high_shield chance 5 diff 5 exp 500 trans 1 yield 1 skill smithery cauldron forge ingred high shield,balm of aethereality,3 lead # object Mostrai arch small_shield,b_small_shield chance 3 diff 7 exp 1000 trans 1 yield 1 skill smithery cauldron forge ingred small shield,balm of asbestos,mithril crystal # object Mostrai arch high_shield chance 3 diff 7 exp 1000 trans 1 yield 1 skill smithery cauldron forge ingred high shield,balm of asbestos,mithril crystal # object Gnarg arch spiked_shield chance 3 diff 7 exp 1000 trans 1 yield 1 skill smithery cauldron forge ingred spiked shield,pixie dust,booze # # ------------------ # Gauntlets / Gloves # ------------------ # object Havok arch gloves,gloves_b,gloves_w chance 4 diff 5 exp 12000 trans 1 yield 1 skill woodsman cauldron tanbench ingred gloves,ogre's corpse,bottle of philosophical oil # object marksmanship arch gloves,gloves_b,gloves_w chance 5 trans 1 yield 1 diff 8 exp 16000 skill woodsman cauldron tanbench ingred gloves,5 arrow of Accuracy,bottle of mineral oil # object Sorig arch gloves,gloves_b,gloves_w chance 3 trans 1 yield 1 diff 13 exp 20000 skill woodsman cauldron tanbench ingred gloves,hill giant's hand,lightning para-elemental's residue,bottle of philosophical oil # object the Titans arch gauntlets,b_gauntlets chance 3 diff 14 exp 22000 trans 1 yield 1 skill smithery cauldron forge ingred gauntlets,hill giant's heart,bottle of philosophical oil # object bladed steel arch gloves,gloves_b,gloves_w chance 5 diff 10 exp 20000 trans 1 yield 1 skill woodsman cauldron tanbench ingred gloves,hill giant's hand,bottle of mineral oil # object Sorig arch gauntlets,b_gauntlets chance 1 diff 35 exp 120000 trans 1 yield 1 skill smithery cauldron forge ingred gauntlets,hill giant's hand,lightning para-elemental's residue,bottle of philosophical oil,electric dragon's steak # # ------------------ # Bows / Crossbows # ------------------ # object Auriga arch bow chance 1 trans 1 yield 1 diff 15 exp 15000 skill bowyer cauldron workbench ingred bow,3 potion of strength,hill giant's corpse,troll's heart # object Thunder arch bow chance 3 diff 16 exp 16000 trans 1 yield 1 skill bowyer cauldron workbench ingred bow,titan's head,dust of stasis # object Thunder arch crossbow chance 3 diff 16 exp 16500 trans 1 yield 1 skill bowyer cauldron workbench ingred crossbow,titan's head,dust of stasis # object Lythander arch longbow chance 5 diff 10 exp 10000 trans 1 yield 1 skill bowyer cauldron workbench ingred long bow,4 clover,troll's liver # object Ruggilli arch crossbow chance 4 diff 12 exp 11000 trans 1 yield 1 skill bowyer cauldron workbench ingred crossbow,3 potion of fire,dragon's wing # object Sorig arch huntersbow chance 5 diff 12 exp 11500 trans 1 yield 1 skill bowyer cauldron workbench ingred hunter's bow,potion of lasting shock,lightning para-elemental's residue # object Accuracy arch bow chance 10 diff 3 exp 4000 trans 1 yield 1 skill bowyer cauldron workbench ingred bow,3 mushroom of Quickness,mercury # object Valriel arch compositebow chance 9 diff 5 exp 6000 trans 1 yield 1 skill bowyer cauldron workbench ingred composite bow,demon's head,3 dust of frost # object Gorokh arch longbow chance 2 diff 20 exp 18000 trans 1 yield 1 skill bowyer cauldron workbench ingred long bow,3 dust of conflagration,gaelotroll's liver,ogre's heart # object Mostrai arch crossbow diff 18 chance 3 diff 18 exp 17500 trans 1 yield 1 skill bowyer cauldron workbench ingred crossbow,3 dust of consuming wrath,hill giant's heart,3 mithril crystal # # ------------------ # Weapons # ------------------ # object Madness arch dagger,b_dagger chance 5 diff 5 exp 8000 trans 1 yield 1 skill smithery cauldron forge ingred dagger,madman's head,bottle of mineral oil # object Poisoning arch dagger,b_dagger chance 5 diff 5 exp 5000 trans 1 yield 1 skill smithery cauldron forge ingred dagger,xan's wing,bottle of mineral oil # object Poisoning arch falchion chance 3 diff 6 exp 6000 trans 1 yield 1 skill smithery cauldron forge ingred falchion,3 xan's wing,bottle of philosophical oil # object Fear arch morningstar chance 5 diff 8 exp 10000 trans 1 yield 1 skill smithery cauldron forge ingred morningstar,wyvern's steak,bottle of philosophical oil # object Fear arch club chance 5 diff 4 exp 5000 trans 1 yield 1 skill smithery cauldron forge ingred club,wyvern's steak,bottle of philosophical oil # object Fear arch big_club chance 5 diff 5 exp 6000 trans 1 yield 1 skill smithery cauldron forge ingred large club,wyvern's steak,bottle of philosophical oil # object Gnarg arch sword,b_sword_1,b_sword_2,sword_2 chance 5 diff 8 exp 8000 trans 1 yield 1 skill smithery cauldron forge ingred long sword,3 xan's wing,bottle of philosophical oil # object Gnarg arch stonehammer chance 5 diff 8 exp 8000 trans 1 yield 1 skill smithery cauldron forge ingred stonehammer,3 xan's wing,bottle of philosophical oil # object Kragi arch sword_4 chance 10 trans 1 yield 1 diff 10 exp 10000 skill smithery cauldron forge ingred sword,potion of health,bottle of philosophical oil # object Kragi arch hammer chance 10 diff 11 exp 12000 trans 1 yield 1 skill smithery cauldron forge ingred hammer,potion of health,bottle of philosophical oil # object Slay Ogre arch sword_4 chance 6 diff 7 exp 8000 trans 1 yield 1 skill smithery cauldron forge ingred sword,ogre's heart,bottle of philosophical oil # object Slay Ogre arch axe_5 chance 6 diff 6 exp 7000 trans 1 yield 1 skill smithery cauldron forge ingred vicious axe,ogre's heart,bottle of philosophical oil # object Valriel arch morningstar chance 3 diff 12 exp 15000 trans 1 yield 1 skill smithery cauldron forge ingred morningstar,demon's head,bottle of philosophical oil # object Valriel arch katana_1 diff 13 exp 16000 chance 3 trans 1 yield 1 skill smithery cauldron forge ingred katana,demon's head,bottle of philosophical oil # object Gorokh arch broadsword,b_bsword_1,b_bsword_2,broadsword_2 chance 3 diff 15 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred broadsword,light angel's head,bottle of philosophical oil # object Gorokh arch poleaxe chance 3 diff 16 exp 21000 trans 1 yield 1 skill smithery cauldron forge ingred poleaxe,light angel's head,bottle of philosophical oil # object the Devourers arch mace,mace_2 diff 20 exp 32000 chance 3 trans 1 yield 1 skill smithery cauldron forge ingred mace,ice para-elemental's residue,bottle of philosophical oil # object the Devourers arch nunchacu_1,nunchacu_2 chance 3 diff 25 exp 43000 trans 1 yield 1 skill smithery cauldron forge ingred nunchacu,ice para-elemental's residue,bottle of mineral oil # object Slay Troll arch sword,b_sword_1,b_sword_2,sword_2 chance 5 diff 10 exp 13000 trans 1 yield 1 skill smithery cauldron forge ingred long sword,small troll's heart,bottle of philosophical oil # object Slay Troll arch b_ssword_1,b_ssword_2,shortsword,shortsword_2 chance 5 diff 10 exp 13000 trans 1 yield 1 skill smithery cauldron forge ingred shortsword,small troll's heart,bottle of philosophical oil # object Slay Undead arch axe,axe_2,axe_3,axe_4,b_axe1,dhaxe2,shaxe1 chance 5 yield 1 diff 6 trans 1 exp 8000 skill smithery cauldron forge ingred axe,zombie's corpse,bottle of philosophical oil # object Slay Undead arch shortsword_2,b_ssword_1,b_ssword_2,shortsword chance 5 diff 5 exp 7000 trans 1 yield 1 skill smithery cauldron forge ingred shortsword,zombie's corpse,bottle of philosophical oil # # this ones just an upgrade - robbing it of possible god enchantments object Slay Undead arch skullcleaver chance 5 diff 30 exp 50000 trans 1 yield 1 skill smithery cauldron forge ingred Skullcleaver,vampire's heart,bottle of philosophical oil # object Slay Beholder arch lspear chance 5 diff 15 exp 15000 trans 1 yield 1 skill smithery cauldron forge ingred long spear,3 beholdereye,bottle of philosophical oil # object Slay Beholder arch taifu_1 chance 5 diff 18 exp 23000 trans 1 yield 1 skill smithery cauldron forge ingred Taifu,3 beholdereye,bottle of philosophical oil # object Slay Dragon arch mace,mace_2 diff 20 exp 40000 chance 5 trans 1 yield 1 skill smithery cauldron forge ingred mace,3 dragon's steak,bottle of philosophical oil # # frostbrand and firebrand have only fire/cold attacks - so will do no damage # to the wrong kind of dragon. Again we rob potential god enchantments object Slay Dragon arch firebrand chance 5 diff 30 exp 90000 trans 1 yield 1 skill smithery cauldron forge ingred Firebrand,3 chinese dragon's steak,chinese dragon's heart,bottle of philosophical oil # object Slay Dragon arch frostbrand chance 5 diff 30 exp 90000 trans 1 yield 1 skill smithery cauldron forge ingred Frostbrand,3 dragon's steak,dragon's heart,bottle of philosophical oil # object Glamdri arch sabre diff 10 exp 12000 chance 2 trans 1 yield 1 skill smithery cauldron forge ingred sabre,potion of resist magic,beholdereye,bottle of philosophical oil # object Glamdri arch light_sword,b_lsword chance 2 diff 11 exp 13000 trans 1 yield 1 skill smithery cauldron forge ingred light sword,potion of resist magic,beholdereye,bottle of philosophical oil # object Sorig arch scimitar,b_scimitar chance 3 diff 14 exp 15000 trans 1 yield 1 skill smithery cauldron forge ingred scimitar,lightning para-elemental's residue,bottle of philosophical oil # object Sorig arch poleaxe chance 3 diff 16 exp 20000 trans 1 yield 1 skill smithery cauldron forge ingred poleaxe,lightning para-elemental's residue,bottle of philosophical oil # object Ruggilli arch large_morningstar chance 3 diff 14 exp 17000 trans 1 yield 1 skill smithery cauldron forge ingred large morningstar,wyvern's steak,bottle of philosophical oil # object Ruggilli arch trident chance 3 diff 15 exp 18000 trans 1 yield 1 skill smithery cauldron forge ingred trident,wyvern's steak,bottle of philosophical oil # object Paralysis arch dagger,b_dagger chance 6 diff 8 exp 8000 trans 1 yield 1 skill smithery cauldron forge ingred dagger,dust of stasis,bottle of mineral oil # # ------------------- # Horns # ------------------- # object Plenty arch horn2 chance 15 diff 20 exp 20000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred unicorn horn,3 mushroom of Gourmet,3 waybread of Aelingas # object Fire arch horn2 chance 10 diff 20 exp 20000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred unicorn horn,3 dust of ignition # object Frost arch horn2 chance 10 diff 20 exp 20000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred unicorn horn,3 dust of frost # object Eorlingas arch horn2 chance 5 diff 20 exp 20000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred unicorn horn,3 dust of ignition,potion of mystic power # # ------------------- # Talismans # ------------------- # object Fire arch talisman_pyromancy chance 5 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred talisman of pyromancy,ring of Fire,dragon's heart # object Frost arch talisman_evocation chance 5 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred talisman of evocation,ring of Ice,chinese dragon's heart # object Elements arch talisman_pyromancy chance 2 diff 35 exp 75000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred talisman of Fire,talisman of Frost,3 electric dragon's steak,3 diamond of flawless beauty # object Unified Mind arch talisman_sorcery chance 10 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred talisman of sorcery,potion of intelligence,helmet of Xebinon # object Evocation arch talisman_evocation chance 3 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred talisman of evocation,3 figurine of a clenched hand,3 balm of traveling # # ------------------- # Holy Symbols # ------------------- # object Probity arch holy_symbol chance 7 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred holy symbol,balm of asbestos,balm of warmth,balm of insulation # object Turning arch holy_symbol chance 10 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred holy symbol,7 dust of repelling undead,bottle of philosophical oil # object Calling arch holy_symbol chance 10 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred holy symbol,figurine of stone,figurine of a great wave,figurine of a flame # object The Dark Path arch holy_symbol chance 5 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred holy symbol,10 arrow of Assassinating dragons,vampire's heart # object Great Virtue arch holy_symbol chance 2 diff 25 exp 35000 yield 1 skill thaumaturgy cauldron thaumaturg_desk ingred holy symbol,figurine of a clenched hand,3 healing potion,3 dust of clairvoyance,2 potion of wisdom # # ------------------- # Food # ------------------- # object Gourmet arch mushroom_1 chance 40 diff 5 exp 2000 yield 7 skill woodsman cauldron stove ingred 7 mushroom,water of the wise # object Magic arch mushroom_2 chance 20 diff 8 exp 4000 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,potion of mystic power # object Healing arch mushroom_3 chance 20 diff 8 exp 4000 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,balm of first aid # object Stamina arch food chance 30 diff 5 exp 2000 yield 7 skill woodsman cauldron stove ingred 7 food,potion of recuperation # object Aelingas arch waybread chance 30 diff 10 exp 6000 yield 7 skill woodsman cauldron stove ingred 7 waybread,potion of heroism # object Strength arch mushroom_2 chance 30 diff 10 exp 7000 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,potion of strength # object Quickness arch mushroom_3 chance 30 diff 12 exp 8000 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,potion of agility # object Heat Resistance arch mushroom_1 chance 20 diff 8 exp 7000 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,balm of asbestos # object Frost Resistance arch mushroom_2 chance 20 diff 8 exp 7000 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,balm of warmth # object Bravery arch mushroom_3 chance 30 diff 8 exp 7000 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,dust of fright # object Magic Resistance arch mushroom_3 chance 20 diff 8 exp 7000 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,potion of resist magic # object Life arch mushroom_3 diff 8 exp 7000 chance 30 yield 7 skill woodsman cauldron stove ingred 7 mushroom of Gourmet,potion of resist draining