Last active
January 2, 2016 14:38
-
-
Save Heimdell/8317593 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| db = RunewordDB (fromList | |
| [ ( ["ber", "tir", "um", "mal", "lum"] | |
| , Runeword | |
| { name = "Beast" | |
| , item = "scepter" | |
| , description = | |
| [ "fanaticism 9 when quipped" | |
| , "+40% ias" | |
| , "+240-270% dmg" | |
| , "20% crushing blow" | |
| , "25% open wounds" | |
| , "+3 Wherebear (to all)" | |
| , "+3 Lycantropy (to all)" | |
| , "prevents heal" | |
| , "+25-40 strength" | |
| , "+10 energy" | |
| , "+2 mana after each kill" | |
| , "grizly 4 (19 charges)" | |
| ] | |
| , keywords = | |
| [ "wherebear" | |
| , "ias" | |
| ] | |
| } | |
| ) | |
| , ( ["ral", "ort", "tal"] | |
| , Runeword | |
| { name = "Ancient's Pledge" | |
| , item = "shield" | |
| , description = | |
| [ "+48% to all res" | |
| , "-5% cold res" | |
| , "10% dmg to mana" | |
| , "+50% def" | |
| ] | |
| , keywords = | |
| [ "res" | |
| , "shield" | |
| , "shields" | |
| , "defense" | |
| , "def" | |
| , "dmg2mana" | |
| , "ancients" | |
| , "ancient" | |
| ] | |
| } | |
| ) | |
| ]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { "ral ort tal" : | |
| { "name" : "Ancient's Pledge" | |
| , "description" : | |
| [ "+48% to all res" | |
| , "-5% cold res" | |
| , "10% dmg to mana" | |
| , "+50% def" | |
| ] | |
| , "item" : "shield" | |
| , "keywords" : | |
| [ "res" | |
| , "shield", "shields" | |
| , "defense", "def" | |
| , "dmg2mana" | |
| , "ancients", "ancient" | |
| ] | |
| } | |
| , "ber tir um mal lum" : | |
| { "name" : "Beast" | |
| , "item" : "scepter" | |
| , "description" : | |
| [ "fanaticism 9 when quipped" | |
| , "+40% ias" | |
| , "+240-270% dmg" | |
| , "20% crushing blow" | |
| , "25% open wounds" | |
| , "+3 Wherebear (to all)" | |
| , "+3 Lycantropy (to all)" | |
| , "prevents heal" | |
| , "+25-40 strength" | |
| , "+10 energy" | |
| , "+2 mana after each kill" | |
| , "grizly 4 (19 charges)" | |
| ] | |
| , "keywords" : | |
| [ "wherebear" | |
| , "ias" | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment