Module:Table of spellbooks
Revision as of 22:32, 27 March 2015 by CommanderC (talk | contribs) (Undo revision 35339 by CommanderC (talk))
Module:Table of spellbooks is a Lua module which contains information used by Module:Spellbook. If you want to add new Lua functions to process this page, write them in Module:Spellbook.
To generate this script, see https://github.com/jkornelsen/crawl-wiki-modules. Or, update it by hand.
Note: the value of a book is simply 20 * (sum of spell levels of spells in book + number of spells in book)
. See item_value() in shopping.cc for more info.
--[=[ Table of spellbooks (0.16) ]=]-- local m = {} m["Akashic Record"] = { { ["letter"] = "a", ["name"] = "Dispersal", ["image"] = "[[File:dispersal.png]]", ["level"] = "6", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "b", ["name"] = "Controlled Blink", ["image"] = "[[File:controlled blink.png]]", ["level"] = "7", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "c", ["name"] = "Malign Gateway", ["image"] = "[[File:malign gateway.png]]", ["level"] = "7", ["schools"] = "[[Summonings|Summoning]]/[[Translocations|Translocation]]", }, { ["letter"] = "d", ["name"] = "Disjunction", ["image"] = "[[File:disjunction.png]]", ["level"] = "8", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "e", ["name"] = "Singularity", ["image"] = "[[File:singularity.png]]", ["level"] = "9", ["schools"] = "[[Translocations|Translocation]]", }, } m["Book of Air"] = { { ["letter"] = "a", ["name"] = "Shock", ["image"] = "[[File:shock.png]]", ["level"] = "1", ["schools"] = "[[Conjurations|Conjuration]]/[[Air Magic|Air]]", }, { ["letter"] = "b", ["name"] = "Swiftness", ["image"] = "[[File:swiftness.png]]", ["level"] = "2", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "c", ["name"] = "Repel Missiles", ["image"] = "[[File:repel missiles.png]]", ["level"] = "2", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "d", ["name"] = "Flight", ["image"] = "[[File:flight.png]]", ["level"] = "3", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "e", ["name"] = "Static Discharge", ["image"] = "[[File:static discharge.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Air Magic|Air]]", }, { ["letter"] = "f", ["name"] = "Lightning Bolt", ["image"] = "[[File:lightning bolt.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Air Magic|Air]]", }, } m["Book of Alchemy"] = { { ["letter"] = "a", ["name"] = "Sublimation of Blood", ["image"] = "[[File:sublimation of blood.png]]", ["level"] = "2", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "b", ["name"] = "Alistair's Intoxication", ["image"] = "[[File:alistair's intoxication.png]]", ["level"] = "4", ["schools"] = "[[Transmutations|Transmutation]]/[[Poison Magic|Poison]]", }, { ["letter"] = "c", ["name"] = "Condensation Shield", ["image"] = "[[File:condensation shield.png]]", ["level"] = "4", ["schools"] = "[[Ice Magic|Ice]]", }, { ["letter"] = "d", ["name"] = "Petrify", ["image"] = "[[File:petrify.png]]", ["level"] = "4", ["schools"] = "[[Transmutations|Transmutation]]/[[Earth Magic|Earth]]", }, { ["letter"] = "e", ["name"] = "Ignite Poison", ["image"] = "[[File:ignite poison.png]]", ["level"] = "5", ["schools"] = "[[Fire Magic|Fire]]/[[Transmutations|Transmutation]]", }, { ["letter"] = "f", ["name"] = "Irradiate", ["image"] = "[[File:irradiate.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Transmutations|Transmutation]]", }, } m["Book of Annihilations"] = { { ["letter"] = "a", ["name"] = "Poison Arrow", ["image"] = "[[File:poison arrow.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]", }, { ["letter"] = "b", ["name"] = "Chain Lightning", ["image"] = "[[File:chain lightning.png]]", ["level"] = "8", ["schools"] = "[[Air Magic|Air]]/[[Conjurations|Conjuration]]", }, { ["letter"] = "c", ["name"] = "Lehudib's Crystal Spear", ["image"] = "[[File:lehudib's crystal spear.png]]", ["level"] = "8", ["schools"] = "[[Conjurations|Conjuration]]/[[Earth Magic|Earth]]", }, { ["letter"] = "d", ["name"] = "Glaciate", ["image"] = "[[File:glaciate.png]]", ["level"] = "9", ["schools"] = "[[Conjurations|Conjuration]]/[[Ice Magic|Ice]]", }, { ["letter"] = "e", ["name"] = "Fire Storm", ["image"] = "[[File:fire storm.png]]", ["level"] = "9", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, } m["Book of Battle"] = { { ["letter"] = "a", ["name"] = "Infusion", ["image"] = "[[File:infusion.png]]", ["level"] = "1", ["schools"] = "[[Charms]]", }, { ["letter"] = "b", ["name"] = "Shroud of Golubria", ["image"] = "[[File:shroud of golubria.png]]", ["level"] = "2", ["schools"] = "[[Charms]]/[[Translocations|Translocation]]", }, { ["letter"] = "c", ["name"] = "Song of Slaying", ["image"] = "[[File:song of slaying.png]]", ["level"] = "2", ["schools"] = "[[Charms]]", }, { ["letter"] = "d", ["name"] = "Spectral Weapon", ["image"] = "[[File:spectral weapon.png]]", ["level"] = "3", ["schools"] = "[[Hexes]]/[[Charms]]", }, { ["letter"] = "e", ["name"] = "Regeneration", ["image"] = "[[File:regeneration.png]]", ["level"] = "3", ["schools"] = "[[Charms]]/[[Necromancy]]", }, } m["Book of Beasts"] = { { ["letter"] = "a", ["name"] = "Summon Butterflies", ["image"] = "[[File:summon butterflies.png]]", ["level"] = "1", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "b", ["name"] = "Call Canine Familiar", ["image"] = "[[File:call canine familiar.png]]", ["level"] = "3", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "c", ["name"] = "Summon Ice Beast", ["image"] = "[[File:summon ice beast.png]]", ["level"] = "4", ["schools"] = "[[Ice Magic|Ice]]/[[Summonings|Summoning]]", }, { ["letter"] = "d", ["name"] = "Summon Mana Viper", ["image"] = "[[File:summon mana viper.png]]", ["level"] = "5", ["schools"] = "[[Summonings|Summoning]]/[[Hexes]]", }, { ["letter"] = "e", ["name"] = "Monstrous Menagerie", ["image"] = "[[File:monstrous menagerie.png]]", ["level"] = "6", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "f", ["name"] = "Summon Hydra", ["image"] = "[[File:summon hydra.png]]", ["level"] = "7", ["schools"] = "[[Summonings|Summoning]]", }, } m["Book of Burglary"] = { { ["letter"] = "a", ["name"] = "Swiftness", ["image"] = "[[File:swiftness.png]]", ["level"] = "2", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "b", ["name"] = "Passwall", ["image"] = "[[File:passwall.png]]", ["level"] = "3", ["schools"] = "[[Transmutations|Transmutation]]/[[Earth Magic|Earth]]", }, { ["letter"] = "c", ["name"] = "Passage of Golubria", ["image"] = "[[File:passage of golubria.png]]", ["level"] = "4", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "d", ["name"] = "Lee's Rapid Deconstruction", ["image"] = "[[File:lee's rapid deconstruction.png]]", ["level"] = "5", ["schools"] = "[[Earth Magic|Earth]]", }, { ["letter"] = "e", ["name"] = "Invisibility", ["image"] = "[[File:invisibility.png]]", ["level"] = "6", ["schools"] = "[[Hexes]]", }, { ["letter"] = "f", ["name"] = "Darkness", ["image"] = "[[File:darkness.png]]", ["level"] = "7", ["schools"] = "[[Hexes]]", }, } m["Book of Callings"] = { { ["letter"] = "a", ["name"] = "Summon Small Mammal", ["image"] = "[[File:summon small mammal.png]]", ["level"] = "1", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "b", ["name"] = "Call Imp", ["image"] = "[[File:call imp.png]]", ["level"] = "2", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "c", ["name"] = "Call Canine Familiar", ["image"] = "[[File:call canine familiar.png]]", ["level"] = "3", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "d", ["name"] = "Summon Guardian Golem", ["image"] = "[[File:summon guardian golem.png]]", ["level"] = "4", ["schools"] = "[[Summonings|Summoning]]/[[Hexes]]", }, { ["letter"] = "e", ["name"] = "Summon Lightning Spire", ["image"] = "[[File:summon lightning spire.png]]", ["level"] = "4", ["schools"] = "[[Summonings|Summoning]]/[[Air Magic|Air]]", }, { ["letter"] = "f", ["name"] = "Summon Ice Beast", ["image"] = "[[File:summon ice beast.png]]", ["level"] = "4", ["schools"] = "[[Ice Magic|Ice]]/[[Summonings|Summoning]]", }, } m["Book of Cantrips"] = { { ["letter"] = "a", ["name"] = "Corona", ["image"] = "[[File:corona.png]]", ["level"] = "1", ["schools"] = "[[Hexes]]", }, { ["letter"] = "b", ["name"] = "Animate Skeleton", ["image"] = "[[File:animate skeleton.png]]", ["level"] = "1", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "c", ["name"] = "Summon Small Mammal", ["image"] = "[[File:summon small mammal.png]]", ["level"] = "1", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "d", ["name"] = "Apportation", ["image"] = "[[File:apportation.png]]", ["level"] = "1", ["schools"] = "[[Translocations|Translocation]]", }, } m["Book of Changes"] = { { ["letter"] = "a", ["name"] = "Beastly Appendage", ["image"] = "[[File:beastly appendage.png]]", ["level"] = "1", ["schools"] = "[[Transmutations|Transmutation]]", }, { ["letter"] = "b", ["name"] = "Sticks to Snakes", ["image"] = "[[File:sticks to snakes.png]]", ["level"] = "2", ["schools"] = "[[Transmutations|Transmutation]]", }, { ["letter"] = "c", ["name"] = "Spider Form", ["image"] = "[[File:spider form.png]]", ["level"] = "3", ["schools"] = "[[Transmutations|Transmutation]]/[[Poison Magic|Poison]]", }, { ["letter"] = "d", ["name"] = "Ice Form", ["image"] = "[[File:ice form.png]]", ["level"] = "4", ["schools"] = "[[Ice Magic|Ice]]/[[Transmutations|Transmutation]]", }, { ["letter"] = "e", ["name"] = "Blade Hands", ["image"] = "[[File:blade hands.png]]", ["level"] = "5", ["schools"] = "[[Transmutations|Transmutation]]", }, } m["Book of Clouds"] = { { ["letter"] = "a", ["name"] = "Mephitic Cloud", ["image"] = "[[File:mephitic cloud.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]/[[Air Magic|Air]]", }, { ["letter"] = "b", ["name"] = "Conjure Flame", ["image"] = "[[File:conjure flame.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "c", ["name"] = "Poisonous Cloud", ["image"] = "[[File:poisonous cloud.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]/[[Air Magic|Air]]", }, { ["letter"] = "d", ["name"] = "Freezing Cloud", ["image"] = "[[File:freezing cloud.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Ice Magic|Ice]]/[[Air Magic|Air]]", }, { ["letter"] = "e", ["name"] = "Ring of Flames", ["image"] = "[[File:ring of flames.png]]", ["level"] = "7", ["schools"] = "[[Charms]]/[[Fire Magic|Fire]]", }, } m["Book of Conjurations"] = { { ["letter"] = "a", ["name"] = "Magic Dart", ["image"] = "[[File:magic dart.png]]", ["level"] = "1", ["schools"] = "[[Conjurations|Conjuration]]", }, { ["letter"] = "b", ["name"] = "Searing Ray", ["image"] = "[[File:searing ray.png]]", ["level"] = "2", ["schools"] = "[[Conjurations|Conjuration]]", }, { ["letter"] = "c", ["name"] = "Dazzling Spray", ["image"] = "[[File:dazzling spray.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Hexes]]", }, { ["letter"] = "d", ["name"] = "Fulminant Prism", ["image"] = "[[File:fulminant prism.png]]", ["level"] = "4", ["schools"] = "[[Conjurations|Conjuration]]/[[Hexes]]", }, { ["letter"] = "e", ["name"] = "Iskenderun's Mystic Blast", ["image"] = "[[File:iskenderun's mystic blast.png]]", ["level"] = "4", ["schools"] = "[[Conjurations|Conjuration]]", }, { ["letter"] = "f", ["name"] = "Iskenderun's Battlesphere", ["image"] = "[[File:iskenderun's battlesphere.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Charms]]", }, } m["Book of Control"] = { { ["letter"] = "a", ["name"] = "Control Teleport", ["image"] = "[[File:control teleport.png]]", ["level"] = "4", ["schools"] = "[[Charms]]/[[Translocations|Translocation]]", }, { ["letter"] = "b", ["name"] = "Control Undead", ["image"] = "[[File:control undead.png]]", ["level"] = "4", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "c", ["name"] = "Enslavement", ["image"] = "[[File:enslavement.png]]", ["level"] = "4", ["schools"] = "[[Hexes]]", }, { ["letter"] = "d", ["name"] = "Metabolic Englaciation", ["image"] = "[[File:metabolic englaciation.png]]", ["level"] = "5", ["schools"] = "[[Hexes]]/[[Ice Magic|Ice]]", }, { ["letter"] = "e", ["name"] = "Mass Confusion", ["image"] = "[[File:mass confusion.png]]", ["level"] = "6", ["schools"] = "[[Hexes]]", }, } m["Book of Death"] = { { ["letter"] = "a", ["name"] = "Corpse Rot", ["image"] = "[[File:corpse rot.png]]", ["level"] = "2", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "b", ["name"] = "Sublimation of Blood", ["image"] = "[[File:sublimation of blood.png]]", ["level"] = "2", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "c", ["name"] = "Agony", ["image"] = "[[File:agony.png]]", ["level"] = "5", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "d", ["name"] = "Dispel Undead", ["image"] = "[[File:dispel undead.png]]", ["level"] = "5", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "e", ["name"] = "Excruciating Wounds", ["image"] = "[[File:excruciating wounds.png]]", ["level"] = "5", ["schools"] = "[[Charms]]/[[Necromancy]]", }, { ["letter"] = "f", ["name"] = "Bolt of Draining", ["image"] = "[[File:bolt of draining.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Necromancy]]", }, } m["Book of Debilitation"] = { { ["letter"] = "a", ["name"] = "Corona", ["image"] = "[[File:corona.png]]", ["level"] = "1", ["schools"] = "[[Hexes]]", }, { ["letter"] = "b", ["name"] = "Slow", ["image"] = "[[File:slow.png]]", ["level"] = "2", ["schools"] = "[[Hexes]]", }, { ["letter"] = "c", ["name"] = "Inner Flame", ["image"] = "[[File:inner flame.png]]", ["level"] = "3", ["schools"] = "[[Hexes]]/[[Fire Magic|Fire]]", }, { ["letter"] = "d", ["name"] = "Enslavement", ["image"] = "[[File:enslavement.png]]", ["level"] = "4", ["schools"] = "[[Hexes]]", }, { ["letter"] = "e", ["name"] = "Cause Fear", ["image"] = "[[File:cause fear.png]]", ["level"] = "4", ["schools"] = "[[Hexes]]", }, { ["letter"] = "f", ["name"] = "Leda's Liquefaction", ["image"] = "[[File:leda's liquefaction.png]]", ["level"] = "4", ["schools"] = "[[Earth Magic|Earth]]/[[Hexes]]", }, } m["Book of Dreams"] = { { ["letter"] = "a", ["name"] = "Ensorcelled Hibernation", ["image"] = "[[File:ensorcelled hibernation.png]]", ["level"] = "2", ["schools"] = "[[Hexes]]/[[Ice Magic|Ice]]", }, { ["letter"] = "b", ["name"] = "Flight", ["image"] = "[[File:flight.png]]", ["level"] = "3", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "c", ["name"] = "Phase Shift", ["image"] = "[[File:phase shift.png]]", ["level"] = "5", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "d", ["name"] = "Shadow Creatures", ["image"] = "[[File:shadow creatures.png]]", ["level"] = "5", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "e", ["name"] = "Mass Confusion", ["image"] = "[[File:mass confusion.png]]", ["level"] = "6", ["schools"] = "[[Hexes]]", }, { ["letter"] = "f", ["name"] = "Darkness", ["image"] = "[[File:darkness.png]]", ["level"] = "7", ["schools"] = "[[Hexes]]", }, } m["Book of Earth"] = { { ["letter"] = "a", ["name"] = "Leda's Liquefaction", ["image"] = "[[File:leda's liquefaction.png]]", ["level"] = "4", ["schools"] = "[[Earth Magic|Earth]]/[[Hexes]]", }, { ["letter"] = "b", ["name"] = "Bolt of Magma", ["image"] = "[[File:bolt of magma.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]/[[Earth Magic|Earth]]", }, { ["letter"] = "c", ["name"] = "Statue Form", ["image"] = "[[File:statue form.png]]", ["level"] = "6", ["schools"] = "[[Transmutations|Transmutation]]/[[Earth Magic|Earth]]", }, { ["letter"] = "d", ["name"] = "Iron Shot", ["image"] = "[[File:iron shot.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Earth Magic|Earth]]", }, { ["letter"] = "e", ["name"] = "Shatter", ["image"] = "[[File:shatter.png]]", ["level"] = "9", ["schools"] = "[[Earth Magic|Earth]]", }, } m["Book of Enchantments"] = { { ["letter"] = "a", ["name"] = "Tukima's Dance", ["image"] = "[[File:tukima's dance.png]]", ["level"] = "3", ["schools"] = "[[Hexes]]", }, { ["letter"] = "b", ["name"] = "Cause Fear", ["image"] = "[[File:cause fear.png]]", ["level"] = "4", ["schools"] = "[[Hexes]]", }, { ["letter"] = "c", ["name"] = "Silence", ["image"] = "[[File:silence.png]]", ["level"] = "5", ["schools"] = "[[Hexes]]/[[Air Magic|Air]]", }, { ["letter"] = "d", ["name"] = "Deflect Missiles", ["image"] = "[[File:deflect missiles.png]]", ["level"] = "6", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "e", ["name"] = "Haste", ["image"] = "[[File:haste.png]]", ["level"] = "6", ["schools"] = "[[Charms]]", }, { ["letter"] = "f", ["name"] = "Discord", ["image"] = "[[File:discord.png]]", ["level"] = "8", ["schools"] = "[[Hexes]]", }, } m["Book of Envenomations"] = { { ["letter"] = "a", ["name"] = "Spider Form", ["image"] = "[[File:spider form.png]]", ["level"] = "3", ["schools"] = "[[Transmutations|Transmutation]]/[[Poison Magic|Poison]]", }, { ["letter"] = "b", ["name"] = "Alistair's Intoxication", ["image"] = "[[File:alistair's intoxication.png]]", ["level"] = "4", ["schools"] = "[[Transmutations|Transmutation]]/[[Poison Magic|Poison]]", }, { ["letter"] = "c", ["name"] = "Olgreb's Toxic Radiance", ["image"] = "[[File:olgreb's toxic radiance.png]]", ["level"] = "4", ["schools"] = "[[Poison Magic|Poison]]", }, { ["letter"] = "d", ["name"] = "Poisonous Cloud", ["image"] = "[[File:poisonous cloud.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]/[[Air Magic|Air]]", }, } m["Book of Fire"] = { { ["letter"] = "a", ["name"] = "Ignite Poison", ["image"] = "[[File:ignite poison.png]]", ["level"] = "5", ["schools"] = "[[Fire Magic|Fire]]/[[Transmutations|Transmutation]]", }, { ["letter"] = "b", ["name"] = "Fireball", ["image"] = "[[File:fireball.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "c", ["name"] = "Bolt of Fire", ["image"] = "[[File:bolt of fire.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "d", ["name"] = "Delayed Fireball", ["image"] = "[[File:delayed fireball.png]]", ["level"] = "7", ["schools"] = "[[Fire Magic|Fire]]/[[Conjurations|Conjuration]]", }, { ["letter"] = "e", ["name"] = "Ring of Flames", ["image"] = "[[File:ring of flames.png]]", ["level"] = "7", ["schools"] = "[[Charms]]/[[Fire Magic|Fire]]", }, } m["Book of Flames"] = { { ["letter"] = "a", ["name"] = "Flame Tongue", ["image"] = "[[File:flame tongue.png]]", ["level"] = "1", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "b", ["name"] = "Throw Flame", ["image"] = "[[File:throw flame.png]]", ["level"] = "2", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "c", ["name"] = "Conjure Flame", ["image"] = "[[File:conjure flame.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "d", ["name"] = "Inner Flame", ["image"] = "[[File:inner flame.png]]", ["level"] = "3", ["schools"] = "[[Hexes]]/[[Fire Magic|Fire]]", }, { ["letter"] = "e", ["name"] = "Sticky Flame", ["image"] = "[[File:sticky flame.png]]", ["level"] = "4", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "f", ["name"] = "Fireball", ["image"] = "[[File:fireball.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, } m["Book of Frost"] = { { ["letter"] = "a", ["name"] = "Freeze", ["image"] = "[[File:freeze.png]]", ["level"] = "1", ["schools"] = "[[Ice Magic|Ice]]", }, { ["letter"] = "b", ["name"] = "Throw Frost", ["image"] = "[[File:throw frost.png]]", ["level"] = "2", ["schools"] = "[[Conjurations|Conjuration]]/[[Ice Magic|Ice]]", }, { ["letter"] = "c", ["name"] = "Ozocubu's Armour", ["image"] = "[[File:ozocubu's armour.png]]", ["level"] = "3", ["schools"] = "[[Charms]]/[[Ice Magic|Ice]]", }, { ["letter"] = "d", ["name"] = "Throw Icicle", ["image"] = "[[File:throw icicle.png]]", ["level"] = "4", ["schools"] = "[[Conjurations|Conjuration]]/[[Ice Magic|Ice]]", }, { ["letter"] = "e", ["name"] = "Summon Ice Beast", ["image"] = "[[File:summon ice beast.png]]", ["level"] = "4", ["schools"] = "[[Ice Magic|Ice]]/[[Summonings|Summoning]]", }, { ["letter"] = "f", ["name"] = "Condensation Shield", ["image"] = "[[File:condensation shield.png]]", ["level"] = "4", ["schools"] = "[[Ice Magic|Ice]]", }, } m["Book of Geomancy"] = { { ["letter"] = "a", ["name"] = "Sandblast", ["image"] = "[[File:sandblast.png]]", ["level"] = "1", ["schools"] = "[[Earth Magic|Earth]]", }, { ["letter"] = "b", ["name"] = "Stoneskin", ["image"] = "[[File:stoneskin.png]]", ["level"] = "2", ["schools"] = "[[Earth Magic|Earth]]/[[Transmutations|Transmutation]]", }, { ["letter"] = "c", ["name"] = "Passwall", ["image"] = "[[File:passwall.png]]", ["level"] = "3", ["schools"] = "[[Transmutations|Transmutation]]/[[Earth Magic|Earth]]", }, { ["letter"] = "d", ["name"] = "Stone Arrow", ["image"] = "[[File:stone arrow.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Earth Magic|Earth]]", }, { ["letter"] = "e", ["name"] = "Petrify", ["image"] = "[[File:petrify.png]]", ["level"] = "4", ["schools"] = "[[Transmutations|Transmutation]]/[[Earth Magic|Earth]]", }, { ["letter"] = "f", ["name"] = "Lee's Rapid Deconstruction", ["image"] = "[[File:lee's rapid deconstruction.png]]", ["level"] = "5", ["schools"] = "[[Earth Magic|Earth]]", }, } m["Book of Hinderance"] = { { ["letter"] = "a", ["name"] = "Confusing Touch", ["image"] = "[[File:confusing touch.png]]", ["level"] = "2", ["schools"] = "[[Hexes]]", }, { ["letter"] = "b", ["name"] = "Confuse", ["image"] = "[[File:confuse.png]]", ["level"] = "3", ["schools"] = "[[Hexes]]", }, { ["letter"] = "c", ["name"] = "Petrify", ["image"] = "[[File:petrify.png]]", ["level"] = "4", ["schools"] = "[[Transmutations|Transmutation]]/[[Earth Magic|Earth]]", }, { ["letter"] = "d", ["name"] = "Metabolic Englaciation", ["image"] = "[[File:metabolic englaciation.png]]", ["level"] = "5", ["schools"] = "[[Hexes]]/[[Ice Magic|Ice]]", }, { ["letter"] = "e", ["name"] = "Gell's Gravitas", ["image"] = "[[File:gell's gravitas.png]]", ["level"] = "5", ["schools"] = "[[Translocations|Translocation]]/[[Hexes]]", }, { ["letter"] = "f", ["name"] = "Summon Mana Viper", ["image"] = "[[File:summon mana viper.png]]", ["level"] = "5", ["schools"] = "[[Summonings|Summoning]]/[[Hexes]]", }, } m["Book of Ice"] = { { ["letter"] = "a", ["name"] = "Ice Form", ["image"] = "[[File:ice form.png]]", ["level"] = "4", ["schools"] = "[[Ice Magic|Ice]]/[[Transmutations|Transmutation]]", }, { ["letter"] = "b", ["name"] = "Metabolic Englaciation", ["image"] = "[[File:metabolic englaciation.png]]", ["level"] = "5", ["schools"] = "[[Hexes]]/[[Ice Magic|Ice]]", }, { ["letter"] = "c", ["name"] = "Ozocubu's Refrigeration", ["image"] = "[[File:ozocubu's refrigeration.png]]", ["level"] = "6", ["schools"] = "[[Ice Magic|Ice]]", }, { ["letter"] = "d", ["name"] = "Bolt of Cold", ["image"] = "[[File:bolt of cold.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Ice Magic|Ice]]", }, { ["letter"] = "e", ["name"] = "Freezing Cloud", ["image"] = "[[File:freezing cloud.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Ice Magic|Ice]]/[[Air Magic|Air]]", }, { ["letter"] = "f", ["name"] = "Simulacrum", ["image"] = "[[File:simulacrum.png]]", ["level"] = "6", ["schools"] = "[[Ice Magic|Ice]]/[[Necromancy]]", }, } m["Book of Maledictions"] = { { ["letter"] = "a", ["name"] = "Corona", ["image"] = "[[File:corona.png]]", ["level"] = "1", ["schools"] = "[[Hexes]]", }, { ["letter"] = "b", ["name"] = "Sure Blade", ["image"] = "[[File:sure blade.png]]", ["level"] = "2", ["schools"] = "[[Hexes]]/[[Charms]]", }, { ["letter"] = "c", ["name"] = "Ensorcelled Hibernation", ["image"] = "[[File:ensorcelled hibernation.png]]", ["level"] = "2", ["schools"] = "[[Hexes]]/[[Ice Magic|Ice]]", }, { ["letter"] = "d", ["name"] = "Confuse", ["image"] = "[[File:confuse.png]]", ["level"] = "3", ["schools"] = "[[Hexes]]", }, { ["letter"] = "e", ["name"] = "Dazzling Spray", ["image"] = "[[File:dazzling spray.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Hexes]]", }, { ["letter"] = "f", ["name"] = "Enslavement", ["image"] = "[[File:enslavement.png]]", ["level"] = "4", ["schools"] = "[[Hexes]]", }, } m["Book of Minor Magic"] = { { ["letter"] = "a", ["name"] = "Magic Dart", ["image"] = "[[File:magic dart.png]]", ["level"] = "1", ["schools"] = "[[Conjurations|Conjuration]]", }, { ["letter"] = "b", ["name"] = "Blink", ["image"] = "[[File:blink.png]]", ["level"] = "2", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "c", ["name"] = "Call Imp", ["image"] = "[[File:call imp.png]]", ["level"] = "2", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "d", ["name"] = "Repel Missiles", ["image"] = "[[File:repel missiles.png]]", ["level"] = "2", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "e", ["name"] = "Slow", ["image"] = "[[File:slow.png]]", ["level"] = "2", ["schools"] = "[[Hexes]]", }, { ["letter"] = "f", ["name"] = "Conjure Flame", ["image"] = "[[File:conjure flame.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "g", ["name"] = "Mephitic Cloud", ["image"] = "[[File:mephitic cloud.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]/[[Air Magic|Air]]", }, } m["Book of Necromancy"] = { { ["letter"] = "a", ["name"] = "Pain", ["image"] = "[[File:pain.png]]", ["level"] = "1", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "b", ["name"] = "Animate Skeleton", ["image"] = "[[File:animate skeleton.png]]", ["level"] = "1", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "c", ["name"] = "Vampiric Draining", ["image"] = "[[File:vampiric draining.png]]", ["level"] = "3", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "d", ["name"] = "Regeneration", ["image"] = "[[File:regeneration.png]]", ["level"] = "3", ["schools"] = "[[Charms]]/[[Necromancy]]", }, { ["letter"] = "e", ["name"] = "Animate Dead", ["image"] = "[[File:animate dead.png]]", ["level"] = "4", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "f", ["name"] = "Control Undead", ["image"] = "[[File:control undead.png]]", ["level"] = "4", ["schools"] = "[[Necromancy]]", }, } m["Book of Party Tricks"] = { { ["letter"] = "a", ["name"] = "Summon Butterflies", ["image"] = "[[File:summon butterflies.png]]", ["level"] = "1", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "b", ["name"] = "Apportation", ["image"] = "[[File:apportation.png]]", ["level"] = "1", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "c", ["name"] = "Tukima's Dance", ["image"] = "[[File:tukima's dance.png]]", ["level"] = "3", ["schools"] = "[[Hexes]]", }, { ["letter"] = "d", ["name"] = "Alistair's Intoxication", ["image"] = "[[File:alistair's intoxication.png]]", ["level"] = "4", ["schools"] = "[[Transmutations|Transmutation]]/[[Poison Magic|Poison]]", }, { ["letter"] = "e", ["name"] = "Invisibility", ["image"] = "[[File:invisibility.png]]", ["level"] = "6", ["schools"] = "[[Hexes]]", }, } m["Book of Power"] = { { ["letter"] = "a", ["name"] = "Fulminant Prism", ["image"] = "[[File:fulminant prism.png]]", ["level"] = "4", ["schools"] = "[[Conjurations|Conjuration]]/[[Hexes]]", }, { ["letter"] = "b", ["name"] = "Iskenderun's Mystic Blast", ["image"] = "[[File:iskenderun's mystic blast.png]]", ["level"] = "4", ["schools"] = "[[Conjurations|Conjuration]]", }, { ["letter"] = "c", ["name"] = "Venom Bolt", ["image"] = "[[File:venom bolt.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]", }, { ["letter"] = "d", ["name"] = "Bolt of Magma", ["image"] = "[[File:bolt of magma.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]/[[Earth Magic|Earth]]", }, { ["letter"] = "e", ["name"] = "Iron Shot", ["image"] = "[[File:iron shot.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Earth Magic|Earth]]", }, { ["letter"] = "f", ["name"] = "Orb of Destruction", ["image"] = "[[File:orb of destruction.png]]", ["level"] = "7", ["schools"] = "[[Conjurations|Conjuration]]", }, { ["letter"] = "g", ["name"] = "Spellforged Servitor", ["image"] = "[[File:spellforged servitor.png]]", ["level"] = "7", ["schools"] = "[[Conjurations|Conjuration]]/[[Summonings|Summoning]]", }, } m["Book of Spatial Translocations"] = { { ["letter"] = "a", ["name"] = "Apportation", ["image"] = "[[File:apportation.png]]", ["level"] = "1", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "b", ["name"] = "Blink", ["image"] = "[[File:blink.png]]", ["level"] = "2", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "c", ["name"] = "Shroud of Golubria", ["image"] = "[[File:shroud of golubria.png]]", ["level"] = "2", ["schools"] = "[[Charms]]/[[Translocations|Translocation]]", }, { ["letter"] = "d", ["name"] = "Portal Projectile", ["image"] = "[[File:portal projectile.png]]", ["level"] = "3", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "e", ["name"] = "Teleport Other", ["image"] = "[[File:teleport other.png]]", ["level"] = "3", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "f", ["name"] = "Passage of Golubria", ["image"] = "[[File:passage of golubria.png]]", ["level"] = "4", ["schools"] = "[[Translocations|Translocation]]", }, } m["Book of Summonings"] = { { ["letter"] = "a", ["name"] = "Abjuration", ["image"] = "[[File:abjuration.png]]", ["level"] = "3", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "b", ["name"] = "Recall", ["image"] = "[[File:recall.png]]", ["level"] = "3", ["schools"] = "[[Summonings|Summoning]]/[[Translocations|Translocation]]", }, { ["letter"] = "c", ["name"] = "Shadow Creatures", ["image"] = "[[File:shadow creatures.png]]", ["level"] = "5", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "d", ["name"] = "Summon Demon", ["image"] = "[[File:summon demon.png]]", ["level"] = "5", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "e", ["name"] = "Summon Forest", ["image"] = "[[File:summon forest.png]]", ["level"] = "5", ["schools"] = "[[Summonings|Summoning]]/[[Translocations|Translocation]]", }, { ["letter"] = "f", ["name"] = "Monstrous Menagerie", ["image"] = "[[File:monstrous menagerie.png]]", ["level"] = "6", ["schools"] = "[[Summonings|Summoning]]", }, } m["Book of Transfigurations"] = { { ["letter"] = "a", ["name"] = "Stoneskin", ["image"] = "[[File:stoneskin.png]]", ["level"] = "2", ["schools"] = "[[Earth Magic|Earth]]/[[Transmutations|Transmutation]]", }, { ["letter"] = "b", ["name"] = "Irradiate", ["image"] = "[[File:irradiate.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Transmutations|Transmutation]]", }, { ["letter"] = "c", ["name"] = "Statue Form", ["image"] = "[[File:statue form.png]]", ["level"] = "6", ["schools"] = "[[Transmutations|Transmutation]]/[[Earth Magic|Earth]]", }, { ["letter"] = "d", ["name"] = "Hydra Form", ["image"] = "[[File:hydra form.png]]", ["level"] = "6", ["schools"] = "[[Transmutations|Transmutation]]", }, { ["letter"] = "e", ["name"] = "Dragon Form", ["image"] = "[[File:dragon form.png]]", ["level"] = "7", ["schools"] = "[[Transmutations|Transmutation]]", }, } m["Book of Unlife"] = { { ["letter"] = "a", ["name"] = "Recall", ["image"] = "[[File:recall.png]]", ["level"] = "3", ["schools"] = "[[Summonings|Summoning]]/[[Translocations|Translocation]]", }, { ["letter"] = "b", ["name"] = "Animate Dead", ["image"] = "[[File:animate dead.png]]", ["level"] = "4", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "c", ["name"] = "Control Undead", ["image"] = "[[File:control undead.png]]", ["level"] = "4", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "d", ["name"] = "Cigotuvi's Embrace", ["image"] = "[[File:cigotuvi's embrace.png]]", ["level"] = "5", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "e", ["name"] = "Death Channel", ["image"] = "[[File:death channel.png]]", ["level"] = "6", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "f", ["name"] = "Simulacrum", ["image"] = "[[File:simulacrum.png]]", ["level"] = "6", ["schools"] = "[[Ice Magic|Ice]]/[[Necromancy]]", }, } m["Book of the Dragon"] = { { ["letter"] = "a", ["name"] = "Flight", ["image"] = "[[File:flight.png]]", ["level"] = "3", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "b", ["name"] = "Cause Fear", ["image"] = "[[File:cause fear.png]]", ["level"] = "4", ["schools"] = "[[Hexes]]", }, { ["letter"] = "c", ["name"] = "Bolt of Fire", ["image"] = "[[File:bolt of fire.png]]", ["level"] = "6", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "d", ["name"] = "Dragon Form", ["image"] = "[[File:dragon form.png]]", ["level"] = "7", ["schools"] = "[[Transmutations|Transmutation]]", }, { ["letter"] = "e", ["name"] = "Dragon's Call", ["image"] = "[[File:dragon's call.png]]", ["level"] = "9", ["schools"] = "[[Summonings|Summoning]]", }, } m["Book of the Sky"] = { { ["letter"] = "a", ["name"] = "Flight", ["image"] = "[[File:flight.png]]", ["level"] = "3", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "b", ["name"] = "Airstrike", ["image"] = "[[File:airstrike.png]]", ["level"] = "4", ["schools"] = "[[Air Magic|Air]]", }, { ["letter"] = "c", ["name"] = "Silence", ["image"] = "[[File:silence.png]]", ["level"] = "5", ["schools"] = "[[Hexes]]/[[Air Magic|Air]]", }, { ["letter"] = "d", ["name"] = "Deflect Missiles", ["image"] = "[[File:deflect missiles.png]]", ["level"] = "6", ["schools"] = "[[Charms]]/[[Air Magic|Air]]", }, { ["letter"] = "e", ["name"] = "Conjure Ball Lightning", ["image"] = "[[File:conjure ball lightning.png]]", ["level"] = "6", ["schools"] = "[[Air Magic|Air]]/[[Conjurations|Conjuration]]", }, { ["letter"] = "f", ["name"] = "Tornado", ["image"] = "[[File:tornado.png]]", ["level"] = "9", ["schools"] = "[[Air Magic|Air]]", }, } m["Book of the Tempests"] = { { ["letter"] = "a", ["name"] = "Static Discharge", ["image"] = "[[File:static discharge.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Air Magic|Air]]", }, { ["letter"] = "b", ["name"] = "Lightning Bolt", ["image"] = "[[File:lightning bolt.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Air Magic|Air]]", }, { ["letter"] = "c", ["name"] = "Fireball", ["image"] = "[[File:fireball.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Fire Magic|Fire]]", }, { ["letter"] = "d", ["name"] = "Tornado", ["image"] = "[[File:tornado.png]]", ["level"] = "9", ["schools"] = "[[Air Magic|Air]]", }, { ["letter"] = "e", ["name"] = "Shatter", ["image"] = "[[File:shatter.png]]", ["level"] = "9", ["schools"] = "[[Earth Magic|Earth]]", }, } m["Book of the Warp"] = { { ["letter"] = "a", ["name"] = "Recall", ["image"] = "[[File:recall.png]]", ["level"] = "3", ["schools"] = "[[Summonings|Summoning]]/[[Translocations|Translocation]]", }, { ["letter"] = "b", ["name"] = "Control Teleport", ["image"] = "[[File:control teleport.png]]", ["level"] = "4", ["schools"] = "[[Charms]]/[[Translocations|Translocation]]", }, { ["letter"] = "c", ["name"] = "Force Lance", ["image"] = "[[File:force lance.png]]", ["level"] = "4", ["schools"] = "[[Conjurations|Conjuration]]/[[Translocations|Translocation]]", }, { ["letter"] = "d", ["name"] = "Phase Shift", ["image"] = "[[File:phase shift.png]]", ["level"] = "5", ["schools"] = "[[Translocations|Translocation]]", }, { ["letter"] = "e", ["name"] = "Warp Weapon", ["image"] = "[[File:warp weapon.png]]", ["level"] = "5", ["schools"] = "[[Charms]]/[[Translocations|Translocation]]", }, { ["letter"] = "f", ["name"] = "Gell's Gravitas", ["image"] = "[[File:gell's gravitas.png]]", ["level"] = "5", ["schools"] = "[[Translocations|Translocation]]/[[Hexes]]", }, { ["letter"] = "g", ["name"] = "Summon Forest", ["image"] = "[[File:summon forest.png]]", ["level"] = "5", ["schools"] = "[[Summonings|Summoning]]/[[Translocations|Translocation]]", }, } m["Fen Folio"] = { { ["letter"] = "a", ["name"] = "Corpse Rot", ["image"] = "[[File:corpse rot.png]]", ["level"] = "2", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "b", ["name"] = "Stone Arrow", ["image"] = "[[File:stone arrow.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Earth Magic|Earth]]", }, { ["letter"] = "c", ["name"] = "Leda's Liquefaction", ["image"] = "[[File:leda's liquefaction.png]]", ["level"] = "4", ["schools"] = "[[Earth Magic|Earth]]/[[Hexes]]", }, { ["letter"] = "d", ["name"] = "Summon Forest", ["image"] = "[[File:summon forest.png]]", ["level"] = "5", ["schools"] = "[[Summonings|Summoning]]/[[Translocations|Translocation]]", }, { ["letter"] = "e", ["name"] = "Hydra Form", ["image"] = "[[File:hydra form.png]]", ["level"] = "6", ["schools"] = "[[Transmutations|Transmutation]]", }, { ["letter"] = "f", ["name"] = "Summon Hydra", ["image"] = "[[File:summon hydra.png]]", ["level"] = "7", ["schools"] = "[[Summonings|Summoning]]", }, } m["Grand Grimoire"] = { { ["letter"] = "a", ["name"] = "Aura of Abjuration", ["image"] = "[[File:aura of abjuration.png]]", ["level"] = "6", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "b", ["name"] = "Summon Greater Demon", ["image"] = "[[File:summon greater demon.png]]", ["level"] = "7", ["schools"] = "[[Summonings|Summoning]]", }, { ["letter"] = "c", ["name"] = "Malign Gateway", ["image"] = "[[File:malign gateway.png]]", ["level"] = "7", ["schools"] = "[[Summonings|Summoning]]/[[Translocations|Translocation]]", }, { ["letter"] = "d", ["name"] = "Summon Horrible Things", ["image"] = "[[File:summon horrible things.png]]", ["level"] = "8", ["schools"] = "[[Summonings|Summoning]]", }, } m["Necronomicon"] = { { ["letter"] = "a", ["name"] = "Haunt", ["image"] = "[[File:haunt.png]]", ["level"] = "7", ["schools"] = "[[Summonings|Summoning]]/[[Necromancy]]", }, { ["letter"] = "b", ["name"] = "Borgnjor's Revivification", ["image"] = "[[File:borgnjor's revivification.png]]", ["level"] = "8", ["schools"] = "[[Necromancy]]", }, { ["letter"] = "c", ["name"] = "Death's Door", ["image"] = "[[File:death's door.png]]", ["level"] = "8", ["schools"] = "[[Charms]]/[[Necromancy]]", }, { ["letter"] = "d", ["name"] = "Necromutation", ["image"] = "[[File:necromutation.png]]", ["level"] = "8", ["schools"] = "[[Transmutations|Transmutation]]/[[Necromancy]]", }, } m["Young Poisoner's Handbook"] = { { ["letter"] = "a", ["name"] = "Sting", ["image"] = "[[File:sting.png]]", ["level"] = "1", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]", }, { ["letter"] = "b", ["name"] = "Cure Poison", ["image"] = "[[File:cure poison.png]]", ["level"] = "2", ["schools"] = "[[Poison Magic|Poison]]", }, { ["letter"] = "c", ["name"] = "Mephitic Cloud", ["image"] = "[[File:mephitic cloud.png]]", ["level"] = "3", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]/[[Air Magic|Air]]", }, { ["letter"] = "d", ["name"] = "Olgreb's Toxic Radiance", ["image"] = "[[File:olgreb's toxic radiance.png]]", ["level"] = "4", ["schools"] = "[[Poison Magic|Poison]]", }, { ["letter"] = "e", ["name"] = "Venom Bolt", ["image"] = "[[File:venom bolt.png]]", ["level"] = "5", ["schools"] = "[[Conjurations|Conjuration]]/[[Poison Magic|Poison]]", }, } return m