├── .gitignore ├── README.md ├── Releases ├── Applications │ ├── MACOS APPLICATION.zip │ └── WINDOWS EXE.zip ├── MAC-OS-1.0 │ ├── DatFiles │ │ ├── DwarvenFemaleNames.dat │ │ ├── DwarvenMaleNames.dat │ │ ├── ElvenFemaleNames.dat │ │ ├── ElvenMaleNames.dat │ │ ├── ElvenSurnames.dat │ │ ├── GnomeFemaleNames.dat │ │ ├── GnomeMaleNames.dat │ │ ├── GnomeSurnames.dat │ │ ├── HalfElvenFemaleNames.dat │ │ ├── HalfElvenMaleNames.dat │ │ ├── HalfElvenSurnames.dat │ │ ├── HalflingFemaleNames.dat │ │ ├── HalflingMaleNames.dat │ │ ├── HalflingSurnames.dat │ │ ├── HumanFemaleNames.dat │ │ ├── HumanMaleNames.dat │ │ ├── HumanSurnames.dat │ │ ├── OrkishFemaleNames.dat │ │ ├── OrkishMaleNames.dat │ │ ├── OrkishSurnames.dat │ │ └── UrbanEncounters.dat │ ├── FantasyBoardGamesTools.py │ ├── Scripts │ │ ├── EncounterGenerator.py │ │ ├── NameGenerator.py │ │ ├── WeaponGenerator.py │ │ └── npcgenerator.py │ ├── dist │ │ └── FantasyBoardGamesTools.app │ │ │ └── Contents │ │ │ ├── Frameworks │ │ │ ├── Python.framework │ │ │ │ ├── Python │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── 2.7 │ │ │ │ │ ├── Python │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── include │ │ │ │ │ │ └── python2.7 │ │ │ │ │ │ └── pyconfig.h │ │ │ │ │ └── Current │ │ │ ├── libcrypto.1.0.0.dylib │ │ │ └── libssl.1.0.0.dylib │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── FantasyBoardGamesTools │ │ │ └── python │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── DatFiles │ │ │ ├── DwarvenFemaleNames.dat │ │ │ ├── DwarvenMaleNames.dat │ │ │ ├── ElvenFemaleNames.dat │ │ │ ├── ElvenMaleNames.dat │ │ │ ├── ElvenSurnames.dat │ │ │ ├── GnomeFemaleNames.dat │ │ │ ├── GnomeMaleNames.dat │ │ │ ├── GnomeSurnames.dat │ │ │ ├── HalfElvenFemaleNames.dat │ │ │ ├── HalfElvenMaleNames.dat │ │ │ ├── HalfElvenSurnames.dat │ │ │ ├── HalflingFemaleNames.dat │ │ │ ├── HalflingMaleNames.dat │ │ │ ├── HalflingSurnames.dat │ │ │ ├── HumanFemaleNames.dat │ │ │ ├── HumanMaleNames.dat │ │ │ ├── HumanSurnames.dat │ │ │ ├── OrkishFemaleNames.dat │ │ │ ├── OrkishMaleNames.dat │ │ │ ├── OrkishSurnames.dat │ │ │ └── UrbanEncounters.dat │ │ │ ├── FantasyBoardGamesTools.py │ │ │ ├── Scripts │ │ │ ├── EncounterGenerator.py │ │ │ ├── NameGenerator.py │ │ │ ├── WeaponGenerator.py │ │ │ └── npcgenerator.py │ │ │ ├── __boot__.py │ │ │ ├── __error__.sh │ │ │ ├── icon.icns │ │ │ ├── include │ │ │ └── python2.7 │ │ │ │ └── pyconfig.h │ │ │ ├── lib │ │ │ └── python2.7 │ │ │ │ ├── lib-dynload │ │ │ │ ├── MacOS.so │ │ │ │ ├── Nav.so │ │ │ │ ├── _AE.so │ │ │ │ ├── _Ctl.so │ │ │ │ ├── _Dlg.so │ │ │ │ ├── _Evt.so │ │ │ │ ├── _File.so │ │ │ │ ├── _Menu.so │ │ │ │ ├── _Qd.so │ │ │ │ ├── _Res.so │ │ │ │ ├── _Win.so │ │ │ │ ├── _codecs_cn.so │ │ │ │ ├── _codecs_hk.so │ │ │ │ ├── _codecs_iso2022.so │ │ │ │ ├── _codecs_jp.so │ │ │ │ ├── _codecs_kr.so │ │ │ │ ├── _codecs_tw.so │ │ │ │ ├── _collections.so │ │ │ │ ├── _ctypes.so │ │ │ │ ├── _functools.so │ │ │ │ ├── _hashlib.so │ │ │ │ ├── _heapq.so │ │ │ │ ├── _io.so │ │ │ │ ├── _locale.so │ │ │ │ ├── _multibytecodec.so │ │ │ │ ├── _random.so │ │ │ │ ├── _scproxy.so │ │ │ │ ├── _socket.so │ │ │ │ ├── _ssl.so │ │ │ │ ├── _struct.so │ │ │ │ ├── _tkinter.so │ │ │ │ ├── array.so │ │ │ │ ├── binascii.so │ │ │ │ ├── bz2.so │ │ │ │ ├── cPickle.so │ │ │ │ ├── cStringIO.so │ │ │ │ ├── datetime.so │ │ │ │ ├── fcntl.so │ │ │ │ ├── gestalt.so │ │ │ │ ├── grp.so │ │ │ │ ├── itertools.so │ │ │ │ ├── math.so │ │ │ │ ├── operator.so │ │ │ │ ├── parser.so │ │ │ │ ├── pyexpat.so │ │ │ │ ├── resource.so │ │ │ │ ├── select.so │ │ │ │ ├── strop.so │ │ │ │ ├── termios.so │ │ │ │ ├── time.so │ │ │ │ ├── unicodedata.so │ │ │ │ └── zlib.so │ │ │ │ ├── site-packages.zip │ │ │ │ └── site.pyc │ │ │ └── site.pyc │ ├── icon.icns │ └── setup.py └── WINDOWS-1.0 │ ├── .eggs │ └── README.txt │ ├── DatFiles │ ├── DwarvenFemaleNames.dat │ ├── DwarvenMaleNames.dat │ ├── ElvenFemaleNames.dat │ ├── ElvenMaleNames.dat │ ├── ElvenSurnames.dat │ ├── GnomeFemaleNames.dat │ ├── GnomeMaleNames.dat │ ├── GnomeSurnames.dat │ ├── HalfElvenFemaleNames.dat │ ├── HalfElvenMaleNames.dat │ ├── HalfElvenSurnames.dat │ ├── HalflingFemaleNames.dat │ ├── HalflingMaleNames.dat │ ├── HalflingSurnames.dat │ ├── HumanFemaleNames.dat │ ├── HumanMaleNames.dat │ ├── HumanSurnames.dat │ ├── OrkishFemaleNames.dat │ ├── OrkishMaleNames.dat │ ├── OrkishSurnames.dat │ └── UrbanEncounters.dat │ ├── FantasyBoardGamesTools.py │ ├── Scripts │ ├── EncounterGenerator.py │ ├── EncounterGenerator.pyc │ ├── NameGenerator.py │ ├── NameGenerator.pyc │ ├── WeaponGenerator.py │ ├── WeaponGenerator.pyc │ ├── npcgenerator.py │ └── npcgenerator.pyc │ ├── dist │ └── FantasyBoardGamesTools-1.0-win32.msi │ └── setup.py ├── SingleScripts ├── DiceRoller │ ├── DiceRoller.py │ ├── DiceRollerGUI.py │ └── __init__.py ├── EncounterGenerator │ ├── EncounterGenerator.py │ ├── EncounterGenerator.pyc │ ├── EncounterGeneratorGUI.py │ ├── UrbanEncounters.dat │ └── __init__.py ├── NPCGenerator │ ├── NPCgeneratorGUI.py │ ├── __init__.py │ ├── npcgenerator.py │ └── npcgenerator.pyc ├── NameGenerator │ ├── DwarvenFemaleNames.dat │ ├── DwarvenMaleNames.dat │ ├── ElvenFemaleNames.dat │ ├── ElvenMaleNames.dat │ ├── ElvenSurnames.dat │ ├── GnomeFemaleNames.dat │ ├── GnomeMaleNames.dat │ ├── GnomeSurnames.dat │ ├── HalfElvenFemaleNames.dat │ ├── HalfElvenMaleNames.dat │ ├── HalfElvenSurnames.dat │ ├── HalflingFemaleNames.dat │ ├── HalflingMaleNames.dat │ ├── HalflingSurnames.dat │ ├── HumanFemaleNames.dat │ ├── HumanMaleNames.dat │ ├── HumanSurnames.dat │ ├── NameGenerator.py │ ├── NameGenerator.pyc │ ├── NameGeneratorGUI.py │ ├── OrkishFemaleNames.dat │ ├── OrkishMaleNames.dat │ ├── OrkishSurnames.dat │ └── __init__.py └── WeaponGenerator │ ├── DatFiles │ ├── Bard │ │ ├── Bard0SpellList.txt │ │ ├── Bard1SpellList.txt │ │ ├── Bard2SpellList.txt │ │ ├── Bard3SpellList.txt │ │ ├── Bard4SpellList.txt │ │ ├── Bard5SpellList.txt │ │ └── Bard6SpellList.txt │ ├── Cleric │ │ ├── Cleric0SpellList.txt │ │ ├── Cleric1SpellList.txt │ │ ├── Cleric2SpellList.txt │ │ ├── Cleric3SpellList.txt │ │ ├── Cleric4SpellList.txt │ │ ├── Cleric5SpellList.txt │ │ ├── Cleric6SpellList.txt │ │ ├── Cleric7SpellList.txt │ │ ├── Cleric8SpellList.txt │ │ └── Cleric9SpellList.txt │ ├── Druid │ │ ├── Druid0SpellList.txt │ │ ├── Druid1SpellList.txt │ │ ├── Druid2SpellList.txt │ │ ├── Druid3SpellList.txt │ │ └── Druid4SpellList.txt │ ├── Mage │ │ ├── Mage0SpellList.txt │ │ ├── Mage1SpellList.txt │ │ ├── Mage2SpellList.txt │ │ ├── Mage3SpellList.txt │ │ └── Mage4SpellList.txt │ ├── MagicEffects.txt │ ├── Paladin │ │ ├── Paladin1SpellList.txt │ │ ├── Paladin2SpellList.txt │ │ ├── Paladin3SpellList.txt │ │ └── Paladin4SpellList.txt │ └── Ranger │ │ ├── Ranger1SpellList.txt │ │ ├── Ranger2SpellList.txt │ │ ├── Ranger3SpellList.txt │ │ └── Ranger4SpellList.txt │ ├── WandGenerator.py │ ├── WandGenerator.pyc │ ├── WeaponGenerator.py │ ├── WeaponGenerator.pyc │ ├── WeaponGeneratorGUI.py │ └── __init__.py └── WindowTKINTER.py /README.md: -------------------------------------------------------------------------------- 1 | #Dungeons And Dragons Tools 2 | 3 | Hello there! 4 | 5 | If you came in here there is a good chance you like D&D and you either are a player or a DM. 6 | If you ever found yourself throwing tons and tons and tons of dices or spent hours on generators, this is the application for you! 7 | 8 | Generate whatever you want, from Weapons, to random encounters to full NPCs ready to be met or fought. 9 | 10 | So right now I have completed a very basic release, I'd not even call it an Alpha version, using some really basic graphics. 11 | I wanted to see how the app would behave on different systems and I'm quite pleased with how it turend out. 12 | 13 | As I'm updating this Readme I have already began working on a new graphic and I got it working on Mac, on PC and on Android; but I'm still focusing on the single scripts, trying to improve them and trying to expand the databases. 14 | 15 | If you want to try the application (if you do, feedback would be *highly* appreciated), you can find the .exe or .app files in *Releases*, depending on what your system is. 16 | 17 | Also if you want something to be implemented in the app be sure to email me or tweet at me, my contacts can be found at the end of this Readme!! 18 | 19 | A quick final recap: 20 | Right now the app consists in: 21 | - A basic dice roller, 22 | - A basic weapon generator, 23 | - A name generator, 24 | - A NPC generator, 25 | - A random encounter generator. 26 | 27 | What I'm working on is: 28 | - Creating more types of encounter and improving what I already have 29 | - Expanding the database of the names and working on algorithms to implement to generate better names. 30 | 31 | Pietro Bongiovanni 32 | bongiovanni.pietro.vc@gmail.com 33 | 4800 Ca'oan Road - Jiading - Shanghai - China 34 | @pietrogoodjohn on Twitter 35 | -------------------------------------------------------------------------------- /Releases/Applications/MACOS APPLICATION.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/Applications/MACOS APPLICATION.zip -------------------------------------------------------------------------------- /Releases/Applications/WINDOWS EXE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/Applications/WINDOWS EXE.zip -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/DwarvenFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Agana 2 | Agna 3 | Ailga 4 | Ailglia 5 | Ailila 6 | Aimura 7 | Airthlia 8 | Aitha 9 | Arthna 10 | Arura 11 | Bagona 12 | Barglia 13 | Bathiel 14 | Bavola 15 | Dama 16 | Davina 17 | Davola 18 | Gigriel 19 | Digiel 20 | Digrura 21 | Diliel 22 | Dilvola 23 | Dinana 24 | Donina 25 | Dralola 26 | Dravila 27 | Gindina 28 | Garana 29 | Dravana 30 | Dunila 31 | Durna 32 | Galvura 33 | Ganiel 34 | Gavira 35 | Gavna 36 | Gigna 37 | Gigola 38 | Gindlia 39 | Glodora 40 | Glodura 41 | Glograna 42 | Glolina 43 | Glondola 44 | Glonola 45 | Glovila 46 | Mediel 47 | Menola 48 | Merglia 49 | Merthila 50 | Ralgura 51 | Ralvola 52 | Rullia 53 | Rurna 54 | Rurthana 55 | Ruvila 56 | Ruvira 57 | Ruvira 58 | Thodina 59 | Thomiel 60 | Thondiel 61 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/DwarvenMaleNames.dat: -------------------------------------------------------------------------------- 1 | Alaric 2 | Aldin 3 | Alfginnar 4 | Algrim 5 | Alrik 6 | Argam 7 | Arik 8 | Arngrim 9 | Azram 10 | Baldrick 11 | Balik 12 | Balin 13 | Balzud 14 | Baragor 15 | Bardin 16 | Barik 17 | Barin 18 | Belgar 19 | Belgol 20 | Belgond 21 | Borgo 22 | Borin 23 | Borri 24 | Brand 25 | Brokki 26 | Brond 27 | Bronn 28 | Budrik 29 | Burlok 30 | Dadrin 31 | Daled 32 | Dammin 33 | Dared 34 | Darek 35 | Dertain 36 | Dimgol 37 | Dimrond 38 | Dimzad 39 | Dorin 40 | Dorri 41 | Drakki 42 | Drokki 43 | Drong 44 | Drumin 45 | Dumin 46 | Dunhilda 47 | Durak 48 | Duregar 49 | Durgim 50 | Durim 51 | Durin 52 | Durrag 53 | Falgrim 54 | Fargrim 55 | Fimbur 56 | Finn 57 | Flakki 58 | Fodrin 59 | Fregar 60 | Furgil 61 | Gadrin 62 | Garag 63 | Garik 64 | Garil 65 | Garin 66 | Gharth 67 | Gimli 68 | Gomrund 69 | Gorazin 70 | Gorek 71 | Gorem 72 | Gorin 73 | Gorm 74 | Gorrin 75 | Gotrek 76 | Gottri 77 | Grim 78 | Grimbul 79 | Grimdal 80 | Grimli 81 | Grimnir 82 | Grimwold 83 | Grodrik 84 | Grogan 85 | Grogril 86 | Grom 87 | Grond 88 | Groth 89 | Grum 90 | Grumdi 91 | Grun 92 | Grundi 93 | Grung 94 | Grunni 95 | Guddi 96 | Gudrun 97 | Gumli 98 | Gundrik 99 | Gurni 100 | Gurtrud 101 | Guttri 102 | Haakon 103 | Hadrin 104 | Haki 105 | Harek 106 | Hargin 107 | Harkaz 108 | Heganbor 109 | Herger 110 | Holgar 111 | Horgar 112 | Hrungnor 113 | Hugen 114 | Hurgin 115 | Janek 116 | Kadrin 117 | Kaz 118 | Kazador 119 | Kazrik 120 | Ketil 121 | Kimril 122 | Korgan 123 | Kragg 124 | Krudd 125 | Krung 126 | Kurgan 127 | Kurgaz 128 | Logan 129 | Logazor 130 | Loki 131 | Lokri 132 | Lothor 133 | Lunn 134 | Magnund 135 | Morag 136 | Mordin 137 | Mordred 138 | Morek 139 | Morgrim 140 | Morngrim 141 | Mundri 142 | Okri 143 | Oldor 144 | Orek 145 | Orgri 146 | Othos 147 | Ragnar 148 | Ragni 149 | Ranulf 150 | Rarek 151 | Rorek 152 | Rukh 153 | Sindri 154 | Skag 155 | Skaggi 156 | Skaldor 157 | Skalf 158 | Skalli 159 | Skorri 160 | Skudd 161 | Smakki 162 | Snaddri 163 | Snarri 164 | Snorri 165 | Storri 166 | Strom 167 | Stromni 168 | Thialfi 169 | Thingrim 170 | Thorbal 171 | Thorek 172 | Thorgrim 173 | Thori 174 | Thorin 175 | Thorlek 176 | Throbbi 177 | Throbin 178 | Thrung 179 | Trygg 180 | Ulfar 181 | Ulrik 182 | Ulther 183 | Yorri 184 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/ElvenSurnames.dat: -------------------------------------------------------------------------------- 1 | Aelasar 2 | Aelorothi 3 | Aendryr 4 | Aerasumé 5 | Aeravansel 6 | Agayous 7 | Agrivar 8 | Ahmaquissar 9 | Alaenree 10 | Alantar 11 | Alastrarra 12 | Alavara 13 | Alenuath 14 | Alerothi 15 | Alluth 16 | Aloevan 17 | Aluianti 18 | Aluviirsaan 19 | Amalith 20 | Amarallis 21 | Amaratharr 22 | Amarthen 23 | Ammath 24 | Amrallatha 25 | Anuaer 26 | Argentaamn 27 | Arren 28 | Ash 29 | Ashgrove 30 | Audark 31 | Auglamyr 32 | Auglathla 33 | Aunglor 34 | Autumnfire 35 | Bellas 36 | Berethryl 37 | Berilan 38 | Bharaclaiev 39 | Bhephel 40 | Blackhelm 41 | Braegen 42 | Briarbosk 43 | Brightcloak 44 | Brightsong 45 | Brightwing 46 | Caersaelk 47 | Calaudra 48 | Calauth 49 | Camusiil 50 | Cathdeiryn 51 | Ceretlan 52 | Chaadren 53 | Chamaranthe 54 | Clatharla 55 | Cormyth 56 | Coudoarluth 57 | Craulnober 58 | Crystalembers 59 | Dahast 60 | Dawnhorn 61 | Dhorinshyl 62 | Dlardrageth 63 | Doedance 64 | Donnathlascen 65 | Dracoseir 66 | Dree 67 | Duirsar 68 | Durothil 69 | Duskmere 70 | Duthjuth 71 | Ealoeth 72 | Echorn 73 | Elaéyadar 74 | Elassidil 75 | Elian 76 | Ellarian 77 | Elond 78 | Eluarshee 79 | Ereuvyn 80 | Erkowe 81 | Erladden 82 | Erlshade 83 | Eroth 84 | Estelda 85 | Evanara 86 | Eveningfall 87 | Everlove 88 | Evioro 89 | Eyriendor 90 | Faerondaerl 91 | Faerondarl 92 | Falanae 93 | Felinaun 94 | Fellmirr 95 | Fenmarel 96 | Fflannidan 97 | Floshin 98 | Fynnasla 99 | Gildenguard 100 | Goadulphyn 101 | Goldenleaf 102 | Gourael 103 | Greencloak 104 | Gwaelon 105 | Haell 106 | Haerlgent 107 | Haevaul 108 | Haladar 109 | Halavanthlarr 110 | Hawksong 111 | Hlarr 112 | Hyshaanth 113 | Iazymnal 114 | Ibryiil 115 | Ilbaereth 116 | Ilbenalu 117 | Ildacer 118 | Ildroun 119 | Iliathor 120 | Iliathor 121 | Iliathorr 122 | Ilnatar 123 | Immeril 124 | Ipyllasc 125 | Irian 126 | Irithyl 127 | Irithyl 128 | Ithruen 129 | Iydril 130 | Jaglene 131 | Kadelaryn 132 | Kelerandri 133 | Kelpor’ral 134 | Keove 135 | Kevanarial 136 | Korianthil 137 | Kraok 138 | Laelithar 139 | Laralytha 140 | Larenthanil 141 | Larethian 142 | Laughingwater 143 | Le’Quella 144 | Leafbower 145 | Leafsigil 146 | Lharithlyn 147 | Lhoril 148 | Lightshiver 149 | Llundlar 150 | Loceath 151 | M'Haaren 152 | Maendellyn 153 | Maerdrym 154 | Meirityn 155 | Melruth 156 | Miritar 157 | Mistrivvin 158 | Mistwinter 159 | Mithalvarin 160 | Moonbow 161 | Moondown 162 | Moonflower 163 | Moonglade 164 | Moonglamaer 165 | Moonsnow 166 | Moonweather 167 | Morningdove 168 | Mornmist 169 | Mrhulaedir 170 | Nacnar 171 | Naelgrath 172 | Narlbeth 173 | Narlbeth 174 | Neirdre 175 | Nelnueve 176 | Never 177 | Nhachashaal 178 | Nhaéslal 179 | Nharimlur 180 | Ni’Tessine 181 | Nierde 182 | Nightmeadow 183 | Nightstar 184 | Nightwing 185 | Nihmedu 186 | Nimesin 187 | Nlossae 188 | Nlossae 189 | Nolbrae 190 | Nyamtharsar 191 | Nyntynel 192 | Oakstaff 193 | Oakwood 194 | Olortynnal 195 | Olyrnn 196 | Omberdawn 197 | Ongluth 198 | Orama 199 | Orbryn 200 | Orbryn 201 | Ortauré 202 | Oumryn 203 | Phenthae 204 | Pholont 205 | Presrae 206 | Q'Naepp, 207 | Rachiilstar 208 | Raedrimn 209 | Raryndur 210 | Reithel 211 | Revven 212 | Rhaevaern 213 | Rhothomir 214 | Rhuidhen 215 | Rhyllgallohyr 216 | Rivleam 217 | Rivvikyn 218 | Runemaster 219 | Sarsantyr 220 | Selakiir 221 | Selmer 222 | Selorn 223 | Shadowmantle 224 | Shadowwater 225 | Shaeremae 226 | Shaethe 227 | Shalandalan 228 | Sharrith 229 | Shaurlanglar 230 | Shraiee 231 | Shyr 232 | Sicafei 233 | Siltral 234 | Silverbow 235 | Silverhand 236 | Silveroak 237 | Silverspear 238 | Sinaran 239 | Slenderbow 240 | Soryn 241 | Spellstalker 242 | Srinshee 243 | Starbrow 244 | Starglance 245 | Starglow 246 | Starnar 247 | Starym 248 | Stillhawk 249 | Stilmyst 250 | Straeth 251 | Strongbow 252 | Suldusk 253 | Sultaasar 254 | Summerstars 255 | Sunweaver 256 | Swordstar 257 | Symbaern 258 | Talandren 259 | Talesspur 260 | Tamlyranth 261 | Tanagathor 262 | Tarnruth 263 | Tarsap 264 | Tarsis 265 | Tassarion 266 | Taurntyrith 267 | Tellynnan 268 | Teshurr 269 | Thea 270 | Tlanbourn 271 | Tohrthaal 272 | Toralynnsyr 273 | Tornglara 274 | Tornglara 275 | Torthtan 276 | Toryvhallen 277 | Trueshot 278 | Tsornyl 279 | Tyrneladhelu 280 | Uirthur 281 | Ulondarr 282 | Ulongyr 283 | Vandiir 284 | Veverell 285 | Vispasial 286 | Vyshaan 287 | Waelvor 288 | Whitethistle 289 | Windstar 290 | Windwalker 291 | Xantrani 292 | Yeschant 293 | Yhendorn 294 | Yraueme 295 | Yridnae 296 | Yundraer 297 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/GnomeFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Adan 2 | Adva 3 | Aiko 4 | Aithne 5 | Allison 6 | Amorette 7 | Armida 8 | Belita 9 | Bitsy 10 | Bitty 11 | Bonita 12 | Brenna 13 | Brooke 14 | Carlin 15 | Charlene 16 | Darra 17 | Demi 18 | Dinky 19 | Jenn 20 | Jinxie 21 | Kiara 22 | Kierna 23 | Koemi 24 | Lil 25 | Maleah 26 | Miette 27 | Miki 28 | Nina 29 | Penny 30 | Piera 31 | Pipi 32 | Pippy 33 | Posy 34 | Rosine 35 | Rowan 36 | Shanna 37 | Solita 38 | Tawnie 39 | Teagan 40 | Tina 41 | Topsy 42 | Tulla 43 | Viveca 44 | Whitley 45 | Yves 46 | Zita 47 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/GnomeMaleNames.dat: -------------------------------------------------------------------------------- 1 | Arno 2 | Babak 3 | Beagan 4 | Bingles 5 | Bink 6 | Bixi 7 | Carlin 8 | Cerin 9 | Coty 10 | Dell 11 | Egan 12 | Fishel 13 | Gair 14 | Galeno 15 | Gavin 16 | Gigget 17 | Giles 18 | Girvin 19 | Gnorbitt 20 | Goban 21 | Gorman 22 | Hackett 23 | Half-pint 24 | Hamle 25 | Hampton 26 | Herble 27 | Hewitt 28 | Iven 29 | Jinky 30 | Jubie 31 | Kane 32 | Keegan 33 | Keller 34 | Kern 35 | Killian 36 | Knaz 37 | Krankle 38 | Leib 39 | Lilliput 40 | Loman 41 | Lorcan 42 | Mainchin 43 | Malin 44 | Mannix 45 | Miki 46 | Nibert 47 | Peanut 48 | Renny 49 | Rordan 50 | Rowan 51 | Runt 52 | Short-shot 53 | Simon 54 | Small-fry 55 | Tallie 56 | Tansi 57 | Toby 58 | Tomlin 59 | Torji 60 | Trixie 61 | Two-bit 62 | Wicket 63 | Wizzle 64 | Ziggy 65 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/GnomeSurnames.dat: -------------------------------------------------------------------------------- 1 | Cogglefiz 2 | Electrogauge 3 | Fusegadget 4 | Gearbit 5 | Greasesprocket 6 | Gyroscope 7 | Rocketfuel 8 | Sprocketcog 9 | Thermobolt 10 | Thermogauge 11 | Thermojet 12 | Tiddlywink 13 | Tinkertonk 14 | Triggerblast 15 | Wizzbolt 16 | Wobblecog 17 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/HalfElvenSurnames.dat: -------------------------------------------------------------------------------- 1 | Aelasar 2 | Aelorothi 3 | Aendryr 4 | Aerasumé 5 | Aeravansel 6 | Agayous 7 | Agrivar 8 | Ahmaquissar 9 | Alaenree 10 | Alantar 11 | Alastrarra 12 | Alavara 13 | Alenuath 14 | Alerothi 15 | Alluth 16 | Aloevan 17 | Aluianti 18 | Aluviirsaan 19 | Amalith 20 | Amarallis 21 | Amaratharr 22 | Amarthen 23 | Ammath 24 | Amrallatha 25 | Anuaer 26 | Argentaamn 27 | Arren 28 | Ash 29 | Ashgrove 30 | Audark 31 | Auglamyr 32 | Auglathla 33 | Aunglor 34 | Autumnfire 35 | Bellas 36 | Berethryl 37 | Berilan 38 | Bharaclaiev 39 | Bhephel 40 | Blackhelm 41 | Braegen 42 | Briarbosk 43 | Brightcloak 44 | Brightsong 45 | Brightwing 46 | Caersaelk 47 | Calaudra 48 | Calauth 49 | Camusiil 50 | Cathdeiryn 51 | Ceretlan 52 | Chaadren 53 | Chamaranthe 54 | Clatharla 55 | Cormyth 56 | Coudoarluth 57 | Craulnober 58 | Crystalembers 59 | Dahast 60 | Dawnhorn 61 | Dhorinshyl 62 | Dlardrageth 63 | Doedance 64 | Donnathlascen 65 | Dracoseir 66 | Dree 67 | Duirsar 68 | Durothil 69 | Duskmere 70 | Duthjuth 71 | Ealoeth 72 | Echorn 73 | Elaéyadar 74 | Elassidil 75 | Elian 76 | Ellarian 77 | Elond 78 | Eluarshee 79 | Ereuvyn 80 | Erkowe 81 | Erladden 82 | Erlshade 83 | Eroth 84 | Estelda 85 | Evanara 86 | Eveningfall 87 | Everlove 88 | Evioro 89 | Eyriendor 90 | Faerondaerl 91 | Faerondarl 92 | Falanae 93 | Felinaun 94 | Fellmirr 95 | Fenmarel 96 | Fflannidan 97 | Floshin 98 | Fynnasla 99 | Gildenguard 100 | Goadulphyn 101 | Goldenleaf 102 | Gourael 103 | Greencloak 104 | Gwaelon 105 | Haell 106 | Haerlgent 107 | Haevaul 108 | Haladar 109 | Halavanthlarr 110 | Hawksong 111 | Hlarr 112 | Hyshaanth 113 | Iazymnal 114 | Ibryiil 115 | Ilbaereth 116 | Ilbenalu 117 | Ildacer 118 | Ildroun 119 | Iliathor 120 | Iliathor 121 | Iliathorr 122 | Ilnatar 123 | Immeril 124 | Ipyllasc 125 | Irian 126 | Irithyl 127 | Irithyl 128 | Ithruen 129 | Iydril 130 | Jaglene 131 | Kadelaryn 132 | Kelerandri 133 | Kelpor’ral 134 | Keove 135 | Kevanarial 136 | Korianthil 137 | Kraok 138 | Laelithar 139 | Laralytha 140 | Larenthanil 141 | Larethian 142 | Laughingwater 143 | Le’Quella 144 | Leafbower 145 | Leafsigil 146 | Lharithlyn 147 | Lhoril 148 | Lightshiver 149 | Llundlar 150 | Loceath 151 | M'Haaren 152 | Maendellyn 153 | Maerdrym 154 | Meirityn 155 | Melruth 156 | Miritar 157 | Mistrivvin 158 | Mistwinter 159 | Mithalvarin 160 | Moonbow 161 | Moondown 162 | Moonflower 163 | Moonglade 164 | Moonglamaer 165 | Moonsnow 166 | Moonweather 167 | Morningdove 168 | Mornmist 169 | Mrhulaedir 170 | Nacnar 171 | Naelgrath 172 | Narlbeth 173 | Narlbeth 174 | Neirdre 175 | Nelnueve 176 | Never 177 | Nhachashaal 178 | Nhaéslal 179 | Nharimlur 180 | Ni’Tessine 181 | Nierde 182 | Nightmeadow 183 | Nightstar 184 | Nightwing 185 | Nihmedu 186 | Nimesin 187 | Nlossae 188 | Nlossae 189 | Nolbrae 190 | Nyamtharsar 191 | Nyntynel 192 | Oakstaff 193 | Oakwood 194 | Olortynnal 195 | Olyrnn 196 | Omberdawn 197 | Ongluth 198 | Orama 199 | Orbryn 200 | Orbryn 201 | Ortauré 202 | Oumryn 203 | Phenthae 204 | Pholont 205 | Presrae 206 | Q'Naepp, 207 | Rachiilstar 208 | Raedrimn 209 | Raryndur 210 | Reithel 211 | Revven 212 | Rhaevaern 213 | Rhothomir 214 | Rhuidhen 215 | Rhyllgallohyr 216 | Rivleam 217 | Rivvikyn 218 | Runemaster 219 | Sarsantyr 220 | Selakiir 221 | Selmer 222 | Selorn 223 | Shadowmantle 224 | Shadowwater 225 | Shaeremae 226 | Shaethe 227 | Shalandalan 228 | Sharrith 229 | Shaurlanglar 230 | Shraiee 231 | Shyr 232 | Sicafei 233 | Siltral 234 | Silverbow 235 | Silverhand 236 | Silveroak 237 | Silverspear 238 | Sinaran 239 | Slenderbow 240 | Soryn 241 | Spellstalker 242 | Srinshee 243 | Starbrow 244 | Starglance 245 | Starglow 246 | Starnar 247 | Starym 248 | Stillhawk 249 | Stilmyst 250 | Straeth 251 | Strongbow 252 | Suldusk 253 | Sultaasar 254 | Summerstars 255 | Sunweaver 256 | Swordstar 257 | Symbaern 258 | Talandren 259 | Talesspur 260 | Tamlyranth 261 | Tanagathor 262 | Tarnruth 263 | Tarsap 264 | Tarsis 265 | Tassarion 266 | Taurntyrith 267 | Tellynnan 268 | Teshurr 269 | Thea 270 | Tlanbourn 271 | Tohrthaal 272 | Toralynnsyr 273 | Tornglara 274 | Tornglara 275 | Torthtan 276 | Toryvhallen 277 | Trueshot 278 | Tsornyl 279 | Tyrneladhelu 280 | Uirthur 281 | Ulondarr 282 | Ulongyr 283 | Vandiir 284 | Veverell 285 | Vispasial 286 | Vyshaan 287 | Waelvor 288 | Whitethistle 289 | Windstar 290 | Windwalker 291 | Xantrani 292 | Yeschant 293 | Yhendorn 294 | Yraueme 295 | Yridnae 296 | Yundraer 297 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/HalflingFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Adaldrida 2 | Amaryllis 3 | Amranth 4 | Angelica 5 | Aspodel 6 | Belba 7 | Belladonna 8 | Berylla 9 | Camellia 10 | Carissa 11 | Celandine 12 | Charmaine 13 | Cora 14 | Crystal 15 | Daisy 16 | Diamond 17 | Donamira 18 | Dora 19 | Eglantine 20 | Elanor 21 | Esmerelda 22 | Euphemia 23 | Gilly 24 | Gwiston 25 | Hilda 26 | Jillian 27 | Lavinia 28 | Lidda 29 | Lily 30 | Lobelia 31 | Malva 32 | Marigold 33 | May 34 | Melindy 35 | Mentha 36 | Merla 37 | Mimosa 38 | Mirabella 39 | Myrtle 40 | Pansy 41 | Pearl 42 | Pedderee 43 | Peony 44 | Petrilly 45 | Poppy 46 | Portia 47 | Primula 48 | Prisca 49 | Rose 50 | Ruby 51 | Seraphina 52 | Susannah 53 | Verna 54 | Viloet 55 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/HalflingMaleNames.dat: -------------------------------------------------------------------------------- 1 | Adalgrim 2 | Adelard 3 | Alton 4 | Andwise 5 | Anson 6 | Balbo 7 | Bandobras 8 | Beau 9 | Bill 10 | Bingo 11 | Bodo 12 | Bolger 13 | Bungo 14 | Cade 15 | Calkin 16 | Cotman 17 | Cottar 18 | Drogo 19 | Dudo 20 | Eldon 21 | Falco 22 | Fastolph 23 | Filibert 24 | Flambard 25 | Fosco 26 | Garret 27 | Genrill 28 | Griffo 29 | Halfred 30 | Hildigrim 31 | Hob 32 | Holman 33 | Kepli 34 | Largo 35 | Longo 36 | Lotho 37 | Lyle 38 | Milo 39 | Minto 40 | Morro 41 | Mosco 42 | Mungo 43 | Odo 44 | Olo 45 | Osborn 46 | Otho 47 | Paldo 48 | Peregrin 49 | Pervince 50 | Pimpernell 51 | Polo 52 | Ponto 53 | Porto 54 | Posco 55 | Ronald 56 | Rorimac 57 | Roscoe 58 | Rufus 59 | Sam 60 | Sancho 61 | Saradac 62 | Seredoc 63 | Theadric 64 | Tolman 65 | Wellby 66 | Wilcome 67 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/HalflingSurnames.dat: -------------------------------------------------------------------------------- 1 | Amster 2 | Ashworthy 3 | Bandawax 4 | Boffin 5 | Bolger 6 | Bracegirdle 7 | Brownlock 8 | Brushgather 9 | Bullroarer 10 | Bunce 11 | Burrows 12 | Chubb 13 | Cotton 14 | Dale 15 | Dudley 16 | Gammidge 17 | Gamwich 18 | Gardner 19 | Goodbarrel 20 | Goodbody 21 | Greenbottle 22 | Greenspan 23 | Grub 24 | Hamson 25 | Heathertoe 26 | Highhill 27 | Hilltopple 28 | Hornblower 29 | Jallisall 30 | Kaese 31 | Kalliwart 32 | Leagallow 33 | Lindenbrook 34 | Marmidas 35 | Melilot 36 | Millbridge 37 | Milliciny 38 | Montajay 39 | Newtan 40 | Oldfur 41 | Orgulas 42 | Ostgood 43 | Overhill 44 | Quettory 45 | Shortwick 46 | Sire 47 | Talbot 48 | Tealeaf 49 | Thorngage 50 | Tighfield 51 | Tosscobble 52 | Trill 53 | Underbough 54 | Weatherbee≤ 55 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/HumanFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Acele 2 | Acholate 3 | Ada 4 | Adiannon 5 | Adorra 6 | Ahanna 7 | Akara 8 | Akassa 9 | Akia 10 | Amaerilde 11 | Amara 12 | Amarisa 13 | Amarizi 14 | Ana 15 | Andonna 16 | Ani 17 | Annalyn 18 | Archane 19 | Ariannona 20 | Arina 21 | Arryn 22 | Arya 23 | Asada 24 | Awnia 25 | Ayne 26 | Basete 27 | Bathelie 28 | Bethe 29 | Brana 30 | Brianan 31 | Bridonna 32 | Brynhilde 33 | Calene 34 | Calina 35 | Celestine 36 | Celoa 37 | Cephenrene 38 | Chani 39 | Chivahle 40 | Chrystyne 41 | Corda 42 | Cyelena 43 | Dalavesta 44 | Desini 45 | Dylena 46 | Ebatryne 47 | Ecematare 48 | Efari 49 | Enaldie 50 | Enoka 51 | Enoona 52 | Errinaya 53 | Fayne 54 | Frederika 55 | Frida 56 | Gene 57 | Gessane 58 | Gronalyn 59 | Gvene 60 | Gwethana 61 | Halete 62 | Helenia 63 | Hildandi 64 | Hyza 65 | Idona 66 | Ikini 67 | Ilene 68 | Illia 69 | Iona 70 | Jessika 71 | Jezzine 72 | Justalyne 73 | Kassina 74 | Kilayox 75 | Kilia 76 | Kilyne 77 | Kressara 78 | Laela 79 | Laenaya 80 | Lelani 81 | Lenala 82 | Linovahle 83 | Linyah 84 | Lloyanda 85 | Lolinda 86 | Lyna 87 | Lynessa 88 | Mehande 89 | Melisande 90 | Midiga 91 | Mirayam 92 | Mylene 93 | Nachaloa 94 | Naria 95 | Narisa 96 | Nelenna 97 | Niraya 98 | Nymira 99 | Ochala 100 | Olivia 101 | Onathe 102 | Ondola 103 | Orwyne 104 | Parthinia 105 | Pascheine 106 | Pela 107 | Peri’el 108 | Pharysene 109 | Philadona 110 | Prisane 111 | Prysala 112 | Pythe 113 | Q’ara 114 | Q’pala 115 | Quasee 116 | Rhyanon 117 | Rivatha 118 | Ryiah 119 | Sanala 120 | Sathe 121 | Senira 122 | Sennetta 123 | Sepherene 124 | Serane 125 | Sevestra 126 | Sidara 127 | Sidathe 128 | Sina 129 | Sunete 130 | Synestra 131 | Sythini 132 | Szene 133 | Tabika 134 | Tabithi 135 | Tajule 136 | Tamare 137 | Teresse 138 | Tolida 139 | Tonica 140 | Treka 141 | Tressa 142 | Trinsa 143 | Tryane 144 | Tybressa 145 | Tycane 146 | Tysinni 147 | Undaria 148 | Uneste 149 | Urda 150 | Usara 151 | Useli 152 | Ussesa 153 | Venessa 154 | Veseere 155 | Voladea 156 | Vysarane 157 | Vythica 158 | Wanera 159 | Welisarne 160 | Wellisa 161 | Wesolyne 162 | Wyeta 163 | Yilvoxe 164 | Ysane 165 | Yve 166 | Yviene 167 | Yvonnette 168 | Yysara 169 | Zana 170 | Zathe 171 | Zecele 172 | Zenobia 173 | Zephale 174 | Zephere 175 | Zerma 176 | Zestia 177 | Zilka 178 | Zoura 179 | Zrye 180 | Zyneste 181 | Zynoa 182 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/DatFiles/OrkishSurnames.dat: -------------------------------------------------------------------------------- 1 | Agadbu 2 | Agamph 3 | Aglakh 4 | Agum 5 | Atumph 6 | Azorku 7 | Badbu 8 | Bagdub 9 | Bagol 10 | Bagrat 11 | Bagul 12 | Bamog 13 | Bar 14 | Bar 15 | Barak 16 | Bargamph 17 | Bargol 18 | Baroth 19 | Bashnag 20 | Bat 21 | Batul 22 | Bharg 23 | Boga 24 | Bogamakh 25 | Bogharz 26 | Bogla 27 | Boglar 28 | Bogrol 29 | Boguk 30 | Bol 31 | Bol 32 | Bolak 33 | Bolmog 34 | Bonk 35 | Borbog 36 | Borbul 37 | Brok 38 | Bug 39 | Bugarn 40 | Buglump 41 | Bulag 42 | Bularz 43 | Bulfim 44 | Bulfish 45 | Bumph 46 | Bura 47 | Burbog 48 | Burbug 49 | Burish 50 | Burol 51 | Burzag 52 | Buzga 53 | Coblug 54 | Cromgog 55 | Dragol 56 | Dugul 57 | Dul 58 | Dula 59 | Dulob 60 | Dumul 61 | Dumulg 62 | Durga 63 | Durog 64 | Durug 65 | Dush 66 | Dushnikh 67 | Galash 68 | Gamorn 69 | Gar 70 | Gash 71 | Gashel 72 | Gat 73 | Gatuk 74 | Gharz 75 | Ghash 76 | Ghasharzol 77 | Gholfim 78 | Gholob 79 | Ghorak 80 | Ghoth 81 | Glorzuf 82 | Gluk 83 | Glurkub 84 | Glurzog 85 | Golpok 86 | Gonk 87 | Gortwog 88 | Gorzog 89 | Gorzoth 90 | Grambak 91 | Grulam 92 | Gularz 93 | Gulfim 94 | Gurakh 95 | Gurub 96 | Hubrag 97 | Izburg 98 | Kashug 99 | Khagdum 100 | Khar 101 | Kharbush 102 | Kharz 103 | Khash 104 | Khash 105 | Khashnar 106 | Khatub 107 | Khazor 108 | Khazun 109 | Lag 110 | Lagdub 111 | Largash 112 | Largum 113 | Larishak 114 | Lazgarn 115 | Loghash 116 | Logob 117 | Logrob 118 | Lorga 119 | Lumbuk 120 | Lumob 121 | Lurkul 122 | Lurn 123 | Luzgan 124 | Magar 125 | Magrish 126 | Magul 127 | Malog 128 | Mar 129 | Marad 130 | Marob 131 | Mashnar 132 | Mogakh 133 | Mogduk 134 | Moghakh 135 | Morgrump 136 | Mughol 137 | Muk 138 | Mulakh 139 | Murgak 140 | Murgol 141 | Murug 142 | Murz 143 | Muzgob 144 | Muzgol 145 | Muzgub 146 | Muzgur 147 | Nagorm 148 | Naybek 149 | Nolob 150 | Ogar 151 | Ogdub 152 | Ogdum 153 | Olor 154 | Olurba 155 | Orbuma 156 | Orkul 157 | Orkulg 158 | Orum 159 | Rimph 160 | Rugdush 161 | Rugob 162 | Rush 163 | Rushub 164 | Shadborgob 165 | Shadbuk 166 | Shagdub 167 | Shagdulg 168 | Shagk 169 | Shagrak 170 | Shagramph 171 | Shak 172 | Sham 173 | Shamub 174 | Sharbag 175 | Sharga 176 | Shargakh 177 | Sharob 178 | Sharob 179 | Sharolg 180 | Shat 181 | Shatub 182 | Shatur 183 | Shazog 184 | Shub 185 | Shug 186 | Shug 187 | Shugarz 188 | Shugdurbam 189 | Shugham 190 | Shugurz 191 | Shula 192 | Shulor 193 | Shumba 194 | Shura 195 | Shurgak 196 | Shurkul 197 | Shuzgub 198 | Skandar 199 | Snagarz 200 | Snagdu 201 | Trailslag 202 | Ufthamph 203 | Uftharz 204 | Ugdub 205 | Ugruma 206 | Ular 207 | Ulfimph 208 | Ulfish 209 | Urgak 210 | Urgash 211 | Ushar 212 | Ushug 213 | Ushul 214 | Uzgash 215 | Uzgurn 216 | Uzug 217 | Uzuk 218 | Yagarz 219 | Yak 220 | Yamwort 221 | Yargul 222 | Yarug 223 | Yarzol 224 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/Scripts/EncounterGenerator.py: -------------------------------------------------------------------------------- 1 | from random import randint 2 | import os 3 | 4 | def encounter(place): 5 | ''' 6 | Ok, how do i want this one to work. 7 | How do encounters work while playing? 8 | I know where players are at so i have to get that somehow, i get an variable 9 | and i relate ints to different places(city, forest, hills... etc). 10 | I should also know their level so i probably need to get also that 11 | From that I have to randomize the encounter 12 | I'll have to have different files for the places, in these files there will 13 | be the enemies, weaker enemies will be in more lines, stronger enemies will 14 | be in less lines, some lines will be empty. 15 | I'll take a random number and choose randomly from the enemies in the list 16 | who the players will face. 17 | I think this should in theory work. 18 | 19 | Will this one generate evil AND good encounters? 20 | Will the master be able to choose if evil or good or also that will be random? 21 | Uhm... Interesting. 22 | Maybe I'll add some spice to the encounters. 23 | 24 | I like how the encounters are handled in the masters manual. Probably will go 25 | on that same line. 26 | ''' 27 | #LETS START FROM A BIG IF THAT CHECK WHERE THE PLAYERS' AT 28 | 29 | #PLACE == 1 --> URBAN 30 | if (place == 1): 31 | file_dir = 'datFiles/UrbanEncounters.dat' 32 | encounterArray = [line.strip() for line in open(file_dir, 'r')] 33 | dice = randint(0, len(encounterArray)-1) 34 | enemiesString = encounterArray[dice] 35 | else: 36 | enemiesString = 'We had a problem Sir' 37 | return enemiesString 38 | 39 | #print encounter(1) 40 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/Python.framework/Python: -------------------------------------------------------------------------------- 1 | Versions/Current/Python -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/Python.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/Python.framework/Versions/2.7/Python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/Python.framework/Versions/2.7/Python -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/Python.framework/Versions/2.7/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | Python 9 | CFBundleGetInfoString 10 | Python Runtime and Library 11 | CFBundleIdentifier 12 | org.python.python 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Python 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 2.7.10, (c) 2001-2015 Python Software Foundation. 21 | CFBundleLongVersionString 22 | 2.7.10, (c) 2001-2015 Python Software Foundation. 23 | CFBundleSignature 24 | ???? 25 | CFBundleVersion 26 | 2.7.10 27 | 28 | 29 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/Python.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 2.7 -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/libcrypto.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/libcrypto.1.0.0.dylib -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/libssl.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Frameworks/libssl.1.0.0.dylib -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleDisplayName 8 | FantasyBoardGamesTools 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeOSTypes 13 | 14 | **** 15 | fold 16 | disk 17 | 18 | CFBundleTypeRole 19 | Viewer 20 | 21 | 22 | CFBundleExecutable 23 | FantasyBoardGamesTools 24 | CFBundleIconFile 25 | icon.icns 26 | CFBundleIdentifier 27 | org.pythonmac.unspecified.FantasyBoardGamesTools 28 | CFBundleInfoDictionaryVersion 29 | 6.0 30 | CFBundleName 31 | FantasyBoardGamesTools 32 | CFBundlePackageType 33 | APPL 34 | CFBundleShortVersionString 35 | 0.0.0 36 | CFBundleSignature 37 | ???? 38 | CFBundleVersion 39 | 0.0.0 40 | LSHasLocalizedDisplayName 41 | 42 | NSAppleScriptEnabled 43 | 44 | NSHumanReadableCopyright 45 | Copyright not specified 46 | NSMainNibFile 47 | MainMenu 48 | NSPrincipalClass 49 | NSApplication 50 | PyMainFileNames 51 | 52 | __boot__ 53 | 54 | PyOptions 55 | 56 | alias 57 | 58 | argv_emulation 59 | 60 | emulate_shell_environment 61 | 62 | no_chdir 63 | 64 | prefer_ppc 65 | 66 | site_packages 67 | 68 | use_faulthandler 69 | 70 | use_pythonpath 71 | 72 | verbose 73 | 74 | 75 | PyResourcePackages 76 | 77 | 78 | PyRuntimeLocations 79 | 80 | @executable_path/../Frameworks/Python.framework/Versions/2.7/Python 81 | 82 | PythonInfoDict 83 | 84 | PythonExecutable 85 | /usr/local/opt/python/bin/python2.7 86 | PythonLongVersion 87 | 2.7.10 (default, Dec 2 2015, 18:14:46) 88 | [GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.1.76)] 89 | PythonShortVersion 90 | 2.7 91 | py2app 92 | 93 | alias 94 | 95 | template 96 | app 97 | version 98 | 0.9 99 | 100 | 101 | 102 | 103 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/MacOS/FantasyBoardGamesTools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/MacOS/FantasyBoardGamesTools -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/MacOS/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/MacOS/python -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/DwarvenFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Agana 2 | Agna 3 | Ailga 4 | Ailglia 5 | Ailila 6 | Aimura 7 | Airthlia 8 | Aitha 9 | Arthna 10 | Arura 11 | Bagona 12 | Barglia 13 | Bathiel 14 | Bavola 15 | Dama 16 | Davina 17 | Davola 18 | Gigriel 19 | Digiel 20 | Digrura 21 | Diliel 22 | Dilvola 23 | Dinana 24 | Donina 25 | Dralola 26 | Dravila 27 | Gindina 28 | Garana 29 | Dravana 30 | Dunila 31 | Durna 32 | Galvura 33 | Ganiel 34 | Gavira 35 | Gavna 36 | Gigna 37 | Gigola 38 | Gindlia 39 | Glodora 40 | Glodura 41 | Glograna 42 | Glolina 43 | Glondola 44 | Glonola 45 | Glovila 46 | Mediel 47 | Menola 48 | Merglia 49 | Merthila 50 | Ralgura 51 | Ralvola 52 | Rullia 53 | Rurna 54 | Rurthana 55 | Ruvila 56 | Ruvira 57 | Ruvira 58 | Thodina 59 | Thomiel 60 | Thondiel 61 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/DwarvenMaleNames.dat: -------------------------------------------------------------------------------- 1 | Alaric 2 | Aldin 3 | Alfginnar 4 | Algrim 5 | Alrik 6 | Argam 7 | Arik 8 | Arngrim 9 | Azram 10 | Baldrick 11 | Balik 12 | Balin 13 | Balzud 14 | Baragor 15 | Bardin 16 | Barik 17 | Barin 18 | Belgar 19 | Belgol 20 | Belgond 21 | Borgo 22 | Borin 23 | Borri 24 | Brand 25 | Brokki 26 | Brond 27 | Bronn 28 | Budrik 29 | Burlok 30 | Dadrin 31 | Daled 32 | Dammin 33 | Dared 34 | Darek 35 | Dertain 36 | Dimgol 37 | Dimrond 38 | Dimzad 39 | Dorin 40 | Dorri 41 | Drakki 42 | Drokki 43 | Drong 44 | Drumin 45 | Dumin 46 | Dunhilda 47 | Durak 48 | Duregar 49 | Durgim 50 | Durim 51 | Durin 52 | Durrag 53 | Falgrim 54 | Fargrim 55 | Fimbur 56 | Finn 57 | Flakki 58 | Fodrin 59 | Fregar 60 | Furgil 61 | Gadrin 62 | Garag 63 | Garik 64 | Garil 65 | Garin 66 | Gharth 67 | Gimli 68 | Gomrund 69 | Gorazin 70 | Gorek 71 | Gorem 72 | Gorin 73 | Gorm 74 | Gorrin 75 | Gotrek 76 | Gottri 77 | Grim 78 | Grimbul 79 | Grimdal 80 | Grimli 81 | Grimnir 82 | Grimwold 83 | Grodrik 84 | Grogan 85 | Grogril 86 | Grom 87 | Grond 88 | Groth 89 | Grum 90 | Grumdi 91 | Grun 92 | Grundi 93 | Grung 94 | Grunni 95 | Guddi 96 | Gudrun 97 | Gumli 98 | Gundrik 99 | Gurni 100 | Gurtrud 101 | Guttri 102 | Haakon 103 | Hadrin 104 | Haki 105 | Harek 106 | Hargin 107 | Harkaz 108 | Heganbor 109 | Herger 110 | Holgar 111 | Horgar 112 | Hrungnor 113 | Hugen 114 | Hurgin 115 | Janek 116 | Kadrin 117 | Kaz 118 | Kazador 119 | Kazrik 120 | Ketil 121 | Kimril 122 | Korgan 123 | Kragg 124 | Krudd 125 | Krung 126 | Kurgan 127 | Kurgaz 128 | Logan 129 | Logazor 130 | Loki 131 | Lokri 132 | Lothor 133 | Lunn 134 | Magnund 135 | Morag 136 | Mordin 137 | Mordred 138 | Morek 139 | Morgrim 140 | Morngrim 141 | Mundri 142 | Okri 143 | Oldor 144 | Orek 145 | Orgri 146 | Othos 147 | Ragnar 148 | Ragni 149 | Ranulf 150 | Rarek 151 | Rorek 152 | Rukh 153 | Sindri 154 | Skag 155 | Skaggi 156 | Skaldor 157 | Skalf 158 | Skalli 159 | Skorri 160 | Skudd 161 | Smakki 162 | Snaddri 163 | Snarri 164 | Snorri 165 | Storri 166 | Strom 167 | Stromni 168 | Thialfi 169 | Thingrim 170 | Thorbal 171 | Thorek 172 | Thorgrim 173 | Thori 174 | Thorin 175 | Thorlek 176 | Throbbi 177 | Throbin 178 | Thrung 179 | Trygg 180 | Ulfar 181 | Ulrik 182 | Ulther 183 | Yorri 184 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/ElvenSurnames.dat: -------------------------------------------------------------------------------- 1 | Aelasar 2 | Aelorothi 3 | Aendryr 4 | Aerasumé 5 | Aeravansel 6 | Agayous 7 | Agrivar 8 | Ahmaquissar 9 | Alaenree 10 | Alantar 11 | Alastrarra 12 | Alavara 13 | Alenuath 14 | Alerothi 15 | Alluth 16 | Aloevan 17 | Aluianti 18 | Aluviirsaan 19 | Amalith 20 | Amarallis 21 | Amaratharr 22 | Amarthen 23 | Ammath 24 | Amrallatha 25 | Anuaer 26 | Argentaamn 27 | Arren 28 | Ash 29 | Ashgrove 30 | Audark 31 | Auglamyr 32 | Auglathla 33 | Aunglor 34 | Autumnfire 35 | Bellas 36 | Berethryl 37 | Berilan 38 | Bharaclaiev 39 | Bhephel 40 | Blackhelm 41 | Braegen 42 | Briarbosk 43 | Brightcloak 44 | Brightsong 45 | Brightwing 46 | Caersaelk 47 | Calaudra 48 | Calauth 49 | Camusiil 50 | Cathdeiryn 51 | Ceretlan 52 | Chaadren 53 | Chamaranthe 54 | Clatharla 55 | Cormyth 56 | Coudoarluth 57 | Craulnober 58 | Crystalembers 59 | Dahast 60 | Dawnhorn 61 | Dhorinshyl 62 | Dlardrageth 63 | Doedance 64 | Donnathlascen 65 | Dracoseir 66 | Dree 67 | Duirsar 68 | Durothil 69 | Duskmere 70 | Duthjuth 71 | Ealoeth 72 | Echorn 73 | Elaéyadar 74 | Elassidil 75 | Elian 76 | Ellarian 77 | Elond 78 | Eluarshee 79 | Ereuvyn 80 | Erkowe 81 | Erladden 82 | Erlshade 83 | Eroth 84 | Estelda 85 | Evanara 86 | Eveningfall 87 | Everlove 88 | Evioro 89 | Eyriendor 90 | Faerondaerl 91 | Faerondarl 92 | Falanae 93 | Felinaun 94 | Fellmirr 95 | Fenmarel 96 | Fflannidan 97 | Floshin 98 | Fynnasla 99 | Gildenguard 100 | Goadulphyn 101 | Goldenleaf 102 | Gourael 103 | Greencloak 104 | Gwaelon 105 | Haell 106 | Haerlgent 107 | Haevaul 108 | Haladar 109 | Halavanthlarr 110 | Hawksong 111 | Hlarr 112 | Hyshaanth 113 | Iazymnal 114 | Ibryiil 115 | Ilbaereth 116 | Ilbenalu 117 | Ildacer 118 | Ildroun 119 | Iliathor 120 | Iliathor 121 | Iliathorr 122 | Ilnatar 123 | Immeril 124 | Ipyllasc 125 | Irian 126 | Irithyl 127 | Irithyl 128 | Ithruen 129 | Iydril 130 | Jaglene 131 | Kadelaryn 132 | Kelerandri 133 | Kelpor’ral 134 | Keove 135 | Kevanarial 136 | Korianthil 137 | Kraok 138 | Laelithar 139 | Laralytha 140 | Larenthanil 141 | Larethian 142 | Laughingwater 143 | Le’Quella 144 | Leafbower 145 | Leafsigil 146 | Lharithlyn 147 | Lhoril 148 | Lightshiver 149 | Llundlar 150 | Loceath 151 | M'Haaren 152 | Maendellyn 153 | Maerdrym 154 | Meirityn 155 | Melruth 156 | Miritar 157 | Mistrivvin 158 | Mistwinter 159 | Mithalvarin 160 | Moonbow 161 | Moondown 162 | Moonflower 163 | Moonglade 164 | Moonglamaer 165 | Moonsnow 166 | Moonweather 167 | Morningdove 168 | Mornmist 169 | Mrhulaedir 170 | Nacnar 171 | Naelgrath 172 | Narlbeth 173 | Narlbeth 174 | Neirdre 175 | Nelnueve 176 | Never 177 | Nhachashaal 178 | Nhaéslal 179 | Nharimlur 180 | Ni’Tessine 181 | Nierde 182 | Nightmeadow 183 | Nightstar 184 | Nightwing 185 | Nihmedu 186 | Nimesin 187 | Nlossae 188 | Nlossae 189 | Nolbrae 190 | Nyamtharsar 191 | Nyntynel 192 | Oakstaff 193 | Oakwood 194 | Olortynnal 195 | Olyrnn 196 | Omberdawn 197 | Ongluth 198 | Orama 199 | Orbryn 200 | Orbryn 201 | Ortauré 202 | Oumryn 203 | Phenthae 204 | Pholont 205 | Presrae 206 | Q'Naepp, 207 | Rachiilstar 208 | Raedrimn 209 | Raryndur 210 | Reithel 211 | Revven 212 | Rhaevaern 213 | Rhothomir 214 | Rhuidhen 215 | Rhyllgallohyr 216 | Rivleam 217 | Rivvikyn 218 | Runemaster 219 | Sarsantyr 220 | Selakiir 221 | Selmer 222 | Selorn 223 | Shadowmantle 224 | Shadowwater 225 | Shaeremae 226 | Shaethe 227 | Shalandalan 228 | Sharrith 229 | Shaurlanglar 230 | Shraiee 231 | Shyr 232 | Sicafei 233 | Siltral 234 | Silverbow 235 | Silverhand 236 | Silveroak 237 | Silverspear 238 | Sinaran 239 | Slenderbow 240 | Soryn 241 | Spellstalker 242 | Srinshee 243 | Starbrow 244 | Starglance 245 | Starglow 246 | Starnar 247 | Starym 248 | Stillhawk 249 | Stilmyst 250 | Straeth 251 | Strongbow 252 | Suldusk 253 | Sultaasar 254 | Summerstars 255 | Sunweaver 256 | Swordstar 257 | Symbaern 258 | Talandren 259 | Talesspur 260 | Tamlyranth 261 | Tanagathor 262 | Tarnruth 263 | Tarsap 264 | Tarsis 265 | Tassarion 266 | Taurntyrith 267 | Tellynnan 268 | Teshurr 269 | Thea 270 | Tlanbourn 271 | Tohrthaal 272 | Toralynnsyr 273 | Tornglara 274 | Tornglara 275 | Torthtan 276 | Toryvhallen 277 | Trueshot 278 | Tsornyl 279 | Tyrneladhelu 280 | Uirthur 281 | Ulondarr 282 | Ulongyr 283 | Vandiir 284 | Veverell 285 | Vispasial 286 | Vyshaan 287 | Waelvor 288 | Whitethistle 289 | Windstar 290 | Windwalker 291 | Xantrani 292 | Yeschant 293 | Yhendorn 294 | Yraueme 295 | Yridnae 296 | Yundraer 297 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/GnomeFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Adan 2 | Adva 3 | Aiko 4 | Aithne 5 | Allison 6 | Amorette 7 | Armida 8 | Belita 9 | Bitsy 10 | Bitty 11 | Bonita 12 | Brenna 13 | Brooke 14 | Carlin 15 | Charlene 16 | Darra 17 | Demi 18 | Dinky 19 | Jenn 20 | Jinxie 21 | Kiara 22 | Kierna 23 | Koemi 24 | Lil 25 | Maleah 26 | Miette 27 | Miki 28 | Nina 29 | Penny 30 | Piera 31 | Pipi 32 | Pippy 33 | Posy 34 | Rosine 35 | Rowan 36 | Shanna 37 | Solita 38 | Tawnie 39 | Teagan 40 | Tina 41 | Topsy 42 | Tulla 43 | Viveca 44 | Whitley 45 | Yves 46 | Zita 47 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/GnomeMaleNames.dat: -------------------------------------------------------------------------------- 1 | Arno 2 | Babak 3 | Beagan 4 | Bingles 5 | Bink 6 | Bixi 7 | Carlin 8 | Cerin 9 | Coty 10 | Dell 11 | Egan 12 | Fishel 13 | Gair 14 | Galeno 15 | Gavin 16 | Gigget 17 | Giles 18 | Girvin 19 | Gnorbitt 20 | Goban 21 | Gorman 22 | Hackett 23 | Half-pint 24 | Hamle 25 | Hampton 26 | Herble 27 | Hewitt 28 | Iven 29 | Jinky 30 | Jubie 31 | Kane 32 | Keegan 33 | Keller 34 | Kern 35 | Killian 36 | Knaz 37 | Krankle 38 | Leib 39 | Lilliput 40 | Loman 41 | Lorcan 42 | Mainchin 43 | Malin 44 | Mannix 45 | Miki 46 | Nibert 47 | Peanut 48 | Renny 49 | Rordan 50 | Rowan 51 | Runt 52 | Short-shot 53 | Simon 54 | Small-fry 55 | Tallie 56 | Tansi 57 | Toby 58 | Tomlin 59 | Torji 60 | Trixie 61 | Two-bit 62 | Wicket 63 | Wizzle 64 | Ziggy 65 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/GnomeSurnames.dat: -------------------------------------------------------------------------------- 1 | Cogglefiz 2 | Electrogauge 3 | Fusegadget 4 | Gearbit 5 | Greasesprocket 6 | Gyroscope 7 | Rocketfuel 8 | Sprocketcog 9 | Thermobolt 10 | Thermogauge 11 | Thermojet 12 | Tiddlywink 13 | Tinkertonk 14 | Triggerblast 15 | Wizzbolt 16 | Wobblecog 17 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/HalfElvenSurnames.dat: -------------------------------------------------------------------------------- 1 | Aelasar 2 | Aelorothi 3 | Aendryr 4 | Aerasumé 5 | Aeravansel 6 | Agayous 7 | Agrivar 8 | Ahmaquissar 9 | Alaenree 10 | Alantar 11 | Alastrarra 12 | Alavara 13 | Alenuath 14 | Alerothi 15 | Alluth 16 | Aloevan 17 | Aluianti 18 | Aluviirsaan 19 | Amalith 20 | Amarallis 21 | Amaratharr 22 | Amarthen 23 | Ammath 24 | Amrallatha 25 | Anuaer 26 | Argentaamn 27 | Arren 28 | Ash 29 | Ashgrove 30 | Audark 31 | Auglamyr 32 | Auglathla 33 | Aunglor 34 | Autumnfire 35 | Bellas 36 | Berethryl 37 | Berilan 38 | Bharaclaiev 39 | Bhephel 40 | Blackhelm 41 | Braegen 42 | Briarbosk 43 | Brightcloak 44 | Brightsong 45 | Brightwing 46 | Caersaelk 47 | Calaudra 48 | Calauth 49 | Camusiil 50 | Cathdeiryn 51 | Ceretlan 52 | Chaadren 53 | Chamaranthe 54 | Clatharla 55 | Cormyth 56 | Coudoarluth 57 | Craulnober 58 | Crystalembers 59 | Dahast 60 | Dawnhorn 61 | Dhorinshyl 62 | Dlardrageth 63 | Doedance 64 | Donnathlascen 65 | Dracoseir 66 | Dree 67 | Duirsar 68 | Durothil 69 | Duskmere 70 | Duthjuth 71 | Ealoeth 72 | Echorn 73 | Elaéyadar 74 | Elassidil 75 | Elian 76 | Ellarian 77 | Elond 78 | Eluarshee 79 | Ereuvyn 80 | Erkowe 81 | Erladden 82 | Erlshade 83 | Eroth 84 | Estelda 85 | Evanara 86 | Eveningfall 87 | Everlove 88 | Evioro 89 | Eyriendor 90 | Faerondaerl 91 | Faerondarl 92 | Falanae 93 | Felinaun 94 | Fellmirr 95 | Fenmarel 96 | Fflannidan 97 | Floshin 98 | Fynnasla 99 | Gildenguard 100 | Goadulphyn 101 | Goldenleaf 102 | Gourael 103 | Greencloak 104 | Gwaelon 105 | Haell 106 | Haerlgent 107 | Haevaul 108 | Haladar 109 | Halavanthlarr 110 | Hawksong 111 | Hlarr 112 | Hyshaanth 113 | Iazymnal 114 | Ibryiil 115 | Ilbaereth 116 | Ilbenalu 117 | Ildacer 118 | Ildroun 119 | Iliathor 120 | Iliathor 121 | Iliathorr 122 | Ilnatar 123 | Immeril 124 | Ipyllasc 125 | Irian 126 | Irithyl 127 | Irithyl 128 | Ithruen 129 | Iydril 130 | Jaglene 131 | Kadelaryn 132 | Kelerandri 133 | Kelpor’ral 134 | Keove 135 | Kevanarial 136 | Korianthil 137 | Kraok 138 | Laelithar 139 | Laralytha 140 | Larenthanil 141 | Larethian 142 | Laughingwater 143 | Le’Quella 144 | Leafbower 145 | Leafsigil 146 | Lharithlyn 147 | Lhoril 148 | Lightshiver 149 | Llundlar 150 | Loceath 151 | M'Haaren 152 | Maendellyn 153 | Maerdrym 154 | Meirityn 155 | Melruth 156 | Miritar 157 | Mistrivvin 158 | Mistwinter 159 | Mithalvarin 160 | Moonbow 161 | Moondown 162 | Moonflower 163 | Moonglade 164 | Moonglamaer 165 | Moonsnow 166 | Moonweather 167 | Morningdove 168 | Mornmist 169 | Mrhulaedir 170 | Nacnar 171 | Naelgrath 172 | Narlbeth 173 | Narlbeth 174 | Neirdre 175 | Nelnueve 176 | Never 177 | Nhachashaal 178 | Nhaéslal 179 | Nharimlur 180 | Ni’Tessine 181 | Nierde 182 | Nightmeadow 183 | Nightstar 184 | Nightwing 185 | Nihmedu 186 | Nimesin 187 | Nlossae 188 | Nlossae 189 | Nolbrae 190 | Nyamtharsar 191 | Nyntynel 192 | Oakstaff 193 | Oakwood 194 | Olortynnal 195 | Olyrnn 196 | Omberdawn 197 | Ongluth 198 | Orama 199 | Orbryn 200 | Orbryn 201 | Ortauré 202 | Oumryn 203 | Phenthae 204 | Pholont 205 | Presrae 206 | Q'Naepp, 207 | Rachiilstar 208 | Raedrimn 209 | Raryndur 210 | Reithel 211 | Revven 212 | Rhaevaern 213 | Rhothomir 214 | Rhuidhen 215 | Rhyllgallohyr 216 | Rivleam 217 | Rivvikyn 218 | Runemaster 219 | Sarsantyr 220 | Selakiir 221 | Selmer 222 | Selorn 223 | Shadowmantle 224 | Shadowwater 225 | Shaeremae 226 | Shaethe 227 | Shalandalan 228 | Sharrith 229 | Shaurlanglar 230 | Shraiee 231 | Shyr 232 | Sicafei 233 | Siltral 234 | Silverbow 235 | Silverhand 236 | Silveroak 237 | Silverspear 238 | Sinaran 239 | Slenderbow 240 | Soryn 241 | Spellstalker 242 | Srinshee 243 | Starbrow 244 | Starglance 245 | Starglow 246 | Starnar 247 | Starym 248 | Stillhawk 249 | Stilmyst 250 | Straeth 251 | Strongbow 252 | Suldusk 253 | Sultaasar 254 | Summerstars 255 | Sunweaver 256 | Swordstar 257 | Symbaern 258 | Talandren 259 | Talesspur 260 | Tamlyranth 261 | Tanagathor 262 | Tarnruth 263 | Tarsap 264 | Tarsis 265 | Tassarion 266 | Taurntyrith 267 | Tellynnan 268 | Teshurr 269 | Thea 270 | Tlanbourn 271 | Tohrthaal 272 | Toralynnsyr 273 | Tornglara 274 | Tornglara 275 | Torthtan 276 | Toryvhallen 277 | Trueshot 278 | Tsornyl 279 | Tyrneladhelu 280 | Uirthur 281 | Ulondarr 282 | Ulongyr 283 | Vandiir 284 | Veverell 285 | Vispasial 286 | Vyshaan 287 | Waelvor 288 | Whitethistle 289 | Windstar 290 | Windwalker 291 | Xantrani 292 | Yeschant 293 | Yhendorn 294 | Yraueme 295 | Yridnae 296 | Yundraer 297 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/HalflingFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Adaldrida 2 | Amaryllis 3 | Amranth 4 | Angelica 5 | Aspodel 6 | Belba 7 | Belladonna 8 | Berylla 9 | Camellia 10 | Carissa 11 | Celandine 12 | Charmaine 13 | Cora 14 | Crystal 15 | Daisy 16 | Diamond 17 | Donamira 18 | Dora 19 | Eglantine 20 | Elanor 21 | Esmerelda 22 | Euphemia 23 | Gilly 24 | Gwiston 25 | Hilda 26 | Jillian 27 | Lavinia 28 | Lidda 29 | Lily 30 | Lobelia 31 | Malva 32 | Marigold 33 | May 34 | Melindy 35 | Mentha 36 | Merla 37 | Mimosa 38 | Mirabella 39 | Myrtle 40 | Pansy 41 | Pearl 42 | Pedderee 43 | Peony 44 | Petrilly 45 | Poppy 46 | Portia 47 | Primula 48 | Prisca 49 | Rose 50 | Ruby 51 | Seraphina 52 | Susannah 53 | Verna 54 | Viloet 55 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/HalflingMaleNames.dat: -------------------------------------------------------------------------------- 1 | Adalgrim 2 | Adelard 3 | Alton 4 | Andwise 5 | Anson 6 | Balbo 7 | Bandobras 8 | Beau 9 | Bill 10 | Bingo 11 | Bodo 12 | Bolger 13 | Bungo 14 | Cade 15 | Calkin 16 | Cotman 17 | Cottar 18 | Drogo 19 | Dudo 20 | Eldon 21 | Falco 22 | Fastolph 23 | Filibert 24 | Flambard 25 | Fosco 26 | Garret 27 | Genrill 28 | Griffo 29 | Halfred 30 | Hildigrim 31 | Hob 32 | Holman 33 | Kepli 34 | Largo 35 | Longo 36 | Lotho 37 | Lyle 38 | Milo 39 | Minto 40 | Morro 41 | Mosco 42 | Mungo 43 | Odo 44 | Olo 45 | Osborn 46 | Otho 47 | Paldo 48 | Peregrin 49 | Pervince 50 | Pimpernell 51 | Polo 52 | Ponto 53 | Porto 54 | Posco 55 | Ronald 56 | Rorimac 57 | Roscoe 58 | Rufus 59 | Sam 60 | Sancho 61 | Saradac 62 | Seredoc 63 | Theadric 64 | Tolman 65 | Wellby 66 | Wilcome 67 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/HalflingSurnames.dat: -------------------------------------------------------------------------------- 1 | Amster 2 | Ashworthy 3 | Bandawax 4 | Boffin 5 | Bolger 6 | Bracegirdle 7 | Brownlock 8 | Brushgather 9 | Bullroarer 10 | Bunce 11 | Burrows 12 | Chubb 13 | Cotton 14 | Dale 15 | Dudley 16 | Gammidge 17 | Gamwich 18 | Gardner 19 | Goodbarrel 20 | Goodbody 21 | Greenbottle 22 | Greenspan 23 | Grub 24 | Hamson 25 | Heathertoe 26 | Highhill 27 | Hilltopple 28 | Hornblower 29 | Jallisall 30 | Kaese 31 | Kalliwart 32 | Leagallow 33 | Lindenbrook 34 | Marmidas 35 | Melilot 36 | Millbridge 37 | Milliciny 38 | Montajay 39 | Newtan 40 | Oldfur 41 | Orgulas 42 | Ostgood 43 | Overhill 44 | Quettory 45 | Shortwick 46 | Sire 47 | Talbot 48 | Tealeaf 49 | Thorngage 50 | Tighfield 51 | Tosscobble 52 | Trill 53 | Underbough 54 | Weatherbee≤ 55 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/HumanFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Acele 2 | Acholate 3 | Ada 4 | Adiannon 5 | Adorra 6 | Ahanna 7 | Akara 8 | Akassa 9 | Akia 10 | Amaerilde 11 | Amara 12 | Amarisa 13 | Amarizi 14 | Ana 15 | Andonna 16 | Ani 17 | Annalyn 18 | Archane 19 | Ariannona 20 | Arina 21 | Arryn 22 | Arya 23 | Asada 24 | Awnia 25 | Ayne 26 | Basete 27 | Bathelie 28 | Bethe 29 | Brana 30 | Brianan 31 | Bridonna 32 | Brynhilde 33 | Calene 34 | Calina 35 | Celestine 36 | Celoa 37 | Cephenrene 38 | Chani 39 | Chivahle 40 | Chrystyne 41 | Corda 42 | Cyelena 43 | Dalavesta 44 | Desini 45 | Dylena 46 | Ebatryne 47 | Ecematare 48 | Efari 49 | Enaldie 50 | Enoka 51 | Enoona 52 | Errinaya 53 | Fayne 54 | Frederika 55 | Frida 56 | Gene 57 | Gessane 58 | Gronalyn 59 | Gvene 60 | Gwethana 61 | Halete 62 | Helenia 63 | Hildandi 64 | Hyza 65 | Idona 66 | Ikini 67 | Ilene 68 | Illia 69 | Iona 70 | Jessika 71 | Jezzine 72 | Justalyne 73 | Kassina 74 | Kilayox 75 | Kilia 76 | Kilyne 77 | Kressara 78 | Laela 79 | Laenaya 80 | Lelani 81 | Lenala 82 | Linovahle 83 | Linyah 84 | Lloyanda 85 | Lolinda 86 | Lyna 87 | Lynessa 88 | Mehande 89 | Melisande 90 | Midiga 91 | Mirayam 92 | Mylene 93 | Nachaloa 94 | Naria 95 | Narisa 96 | Nelenna 97 | Niraya 98 | Nymira 99 | Ochala 100 | Olivia 101 | Onathe 102 | Ondola 103 | Orwyne 104 | Parthinia 105 | Pascheine 106 | Pela 107 | Peri’el 108 | Pharysene 109 | Philadona 110 | Prisane 111 | Prysala 112 | Pythe 113 | Q’ara 114 | Q’pala 115 | Quasee 116 | Rhyanon 117 | Rivatha 118 | Ryiah 119 | Sanala 120 | Sathe 121 | Senira 122 | Sennetta 123 | Sepherene 124 | Serane 125 | Sevestra 126 | Sidara 127 | Sidathe 128 | Sina 129 | Sunete 130 | Synestra 131 | Sythini 132 | Szene 133 | Tabika 134 | Tabithi 135 | Tajule 136 | Tamare 137 | Teresse 138 | Tolida 139 | Tonica 140 | Treka 141 | Tressa 142 | Trinsa 143 | Tryane 144 | Tybressa 145 | Tycane 146 | Tysinni 147 | Undaria 148 | Uneste 149 | Urda 150 | Usara 151 | Useli 152 | Ussesa 153 | Venessa 154 | Veseere 155 | Voladea 156 | Vysarane 157 | Vythica 158 | Wanera 159 | Welisarne 160 | Wellisa 161 | Wesolyne 162 | Wyeta 163 | Yilvoxe 164 | Ysane 165 | Yve 166 | Yviene 167 | Yvonnette 168 | Yysara 169 | Zana 170 | Zathe 171 | Zecele 172 | Zenobia 173 | Zephale 174 | Zephere 175 | Zerma 176 | Zestia 177 | Zilka 178 | Zoura 179 | Zrye 180 | Zyneste 181 | Zynoa 182 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/DatFiles/OrkishSurnames.dat: -------------------------------------------------------------------------------- 1 | Agadbu 2 | Agamph 3 | Aglakh 4 | Agum 5 | Atumph 6 | Azorku 7 | Badbu 8 | Bagdub 9 | Bagol 10 | Bagrat 11 | Bagul 12 | Bamog 13 | Bar 14 | Bar 15 | Barak 16 | Bargamph 17 | Bargol 18 | Baroth 19 | Bashnag 20 | Bat 21 | Batul 22 | Bharg 23 | Boga 24 | Bogamakh 25 | Bogharz 26 | Bogla 27 | Boglar 28 | Bogrol 29 | Boguk 30 | Bol 31 | Bol 32 | Bolak 33 | Bolmog 34 | Bonk 35 | Borbog 36 | Borbul 37 | Brok 38 | Bug 39 | Bugarn 40 | Buglump 41 | Bulag 42 | Bularz 43 | Bulfim 44 | Bulfish 45 | Bumph 46 | Bura 47 | Burbog 48 | Burbug 49 | Burish 50 | Burol 51 | Burzag 52 | Buzga 53 | Coblug 54 | Cromgog 55 | Dragol 56 | Dugul 57 | Dul 58 | Dula 59 | Dulob 60 | Dumul 61 | Dumulg 62 | Durga 63 | Durog 64 | Durug 65 | Dush 66 | Dushnikh 67 | Galash 68 | Gamorn 69 | Gar 70 | Gash 71 | Gashel 72 | Gat 73 | Gatuk 74 | Gharz 75 | Ghash 76 | Ghasharzol 77 | Gholfim 78 | Gholob 79 | Ghorak 80 | Ghoth 81 | Glorzuf 82 | Gluk 83 | Glurkub 84 | Glurzog 85 | Golpok 86 | Gonk 87 | Gortwog 88 | Gorzog 89 | Gorzoth 90 | Grambak 91 | Grulam 92 | Gularz 93 | Gulfim 94 | Gurakh 95 | Gurub 96 | Hubrag 97 | Izburg 98 | Kashug 99 | Khagdum 100 | Khar 101 | Kharbush 102 | Kharz 103 | Khash 104 | Khash 105 | Khashnar 106 | Khatub 107 | Khazor 108 | Khazun 109 | Lag 110 | Lagdub 111 | Largash 112 | Largum 113 | Larishak 114 | Lazgarn 115 | Loghash 116 | Logob 117 | Logrob 118 | Lorga 119 | Lumbuk 120 | Lumob 121 | Lurkul 122 | Lurn 123 | Luzgan 124 | Magar 125 | Magrish 126 | Magul 127 | Malog 128 | Mar 129 | Marad 130 | Marob 131 | Mashnar 132 | Mogakh 133 | Mogduk 134 | Moghakh 135 | Morgrump 136 | Mughol 137 | Muk 138 | Mulakh 139 | Murgak 140 | Murgol 141 | Murug 142 | Murz 143 | Muzgob 144 | Muzgol 145 | Muzgub 146 | Muzgur 147 | Nagorm 148 | Naybek 149 | Nolob 150 | Ogar 151 | Ogdub 152 | Ogdum 153 | Olor 154 | Olurba 155 | Orbuma 156 | Orkul 157 | Orkulg 158 | Orum 159 | Rimph 160 | Rugdush 161 | Rugob 162 | Rush 163 | Rushub 164 | Shadborgob 165 | Shadbuk 166 | Shagdub 167 | Shagdulg 168 | Shagk 169 | Shagrak 170 | Shagramph 171 | Shak 172 | Sham 173 | Shamub 174 | Sharbag 175 | Sharga 176 | Shargakh 177 | Sharob 178 | Sharob 179 | Sharolg 180 | Shat 181 | Shatub 182 | Shatur 183 | Shazog 184 | Shub 185 | Shug 186 | Shug 187 | Shugarz 188 | Shugdurbam 189 | Shugham 190 | Shugurz 191 | Shula 192 | Shulor 193 | Shumba 194 | Shura 195 | Shurgak 196 | Shurkul 197 | Shuzgub 198 | Skandar 199 | Snagarz 200 | Snagdu 201 | Trailslag 202 | Ufthamph 203 | Uftharz 204 | Ugdub 205 | Ugruma 206 | Ular 207 | Ulfimph 208 | Ulfish 209 | Urgak 210 | Urgash 211 | Ushar 212 | Ushug 213 | Ushul 214 | Uzgash 215 | Uzgurn 216 | Uzug 217 | Uzuk 218 | Yagarz 219 | Yak 220 | Yamwort 221 | Yargul 222 | Yarug 223 | Yarzol 224 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/Scripts/EncounterGenerator.py: -------------------------------------------------------------------------------- 1 | from random import randint 2 | import os 3 | 4 | def encounter(place): 5 | ''' 6 | Ok, how do i want this one to work. 7 | How do encounters work while playing? 8 | I know where players are at so i have to get that somehow, i get an variable 9 | and i relate ints to different places(city, forest, hills... etc). 10 | I should also know their level so i probably need to get also that 11 | From that I have to randomize the encounter 12 | I'll have to have different files for the places, in these files there will 13 | be the enemies, weaker enemies will be in more lines, stronger enemies will 14 | be in less lines, some lines will be empty. 15 | I'll take a random number and choose randomly from the enemies in the list 16 | who the players will face. 17 | I think this should in theory work. 18 | 19 | Will this one generate evil AND good encounters? 20 | Will the master be able to choose if evil or good or also that will be random? 21 | Uhm... Interesting. 22 | Maybe I'll add some spice to the encounters. 23 | 24 | I like how the encounters are handled in the masters manual. Probably will go 25 | on that same line. 26 | ''' 27 | #LETS START FROM A BIG IF THAT CHECK WHERE THE PLAYERS' AT 28 | 29 | #PLACE == 1 --> URBAN 30 | if (place == 1): 31 | file_dir = 'datFiles/UrbanEncounters.dat' 32 | encounterArray = [line.strip() for line in open(file_dir, 'r')] 33 | dice = randint(0, len(encounterArray)-1) 34 | enemiesString = encounterArray[dice] 35 | else: 36 | enemiesString = 'We had a problem Sir' 37 | return enemiesString 38 | 39 | #print encounter(1) 40 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/__error__.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # This is the default apptemplate error script 4 | # 5 | if ( test -n "$2" ) ; then 6 | echo "$1 Error" 7 | echo "An unexpected error has occurred during execution of the main script" 8 | echo "" 9 | echo "$2: $3" 10 | echo "" 11 | echo "See the Console for a detailed traceback." 12 | else 13 | echo "$1 Error" 14 | 15 | # Usage: ERRORURL , this is used by the 16 | # bundle runner to put up a dialog. 17 | #echo "ERRORURL: http://www.python.org/ Visit the Python Website 18 | # echo "ERRORURL: http://homepages.cwi.nl/~jack/macpython/index.html Visit the MacPython Website" 19 | fi 20 | -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/MacOS.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/MacOS.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/Nav.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/Nav.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_AE.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_AE.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Ctl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Ctl.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Dlg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Dlg.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Evt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Evt.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_File.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_File.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Menu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Menu.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Qd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Qd.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Res.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Res.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Win.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_Win.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_cn.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_cn.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_hk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_hk.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_iso2022.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_iso2022.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_jp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_jp.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_kr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_kr.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_tw.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_codecs_tw.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_collections.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_collections.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_ctypes.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_ctypes.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_functools.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_functools.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_hashlib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_hashlib.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_heapq.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_heapq.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_io.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_io.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_locale.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_locale.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_multibytecodec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_multibytecodec.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_random.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_random.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_scproxy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_scproxy.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_socket.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_socket.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_ssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_ssl.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_struct.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_struct.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_tkinter.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/_tkinter.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/array.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/array.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/binascii.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/binascii.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/bz2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/bz2.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/cPickle.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/cPickle.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/cStringIO.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/cStringIO.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/datetime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/datetime.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/fcntl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/fcntl.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/gestalt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/gestalt.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/grp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/grp.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/itertools.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/itertools.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/math.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/math.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/operator.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/operator.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/parser.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/parser.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/pyexpat.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/pyexpat.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/resource.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/resource.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/select.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/select.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/strop.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/strop.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/termios.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/termios.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/time.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/time.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/unicodedata.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/unicodedata.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/zlib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/lib-dynload/zlib.so -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/site-packages.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/site-packages.zip -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/lib/python2.7/site.pyc: -------------------------------------------------------------------------------- 1 | ../../site.pyc -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/site.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/dist/FantasyBoardGamesTools.app/Contents/Resources/site.pyc -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/MAC-OS-1.0/icon.icns -------------------------------------------------------------------------------- /Releases/MAC-OS-1.0/setup.py: -------------------------------------------------------------------------------- 1 | """ 2 | This is a setup.py script generated by py2applet 3 | 4 | Usage: 5 | python setup.py py2app 6 | """ 7 | 8 | from setuptools import setup 9 | 10 | APP = ['FantasyBoardGamesTools.py'] 11 | DATA_FILES = [ 12 | 'Scripts', 13 | 'DatFiles', 14 | ] 15 | OPTIONS = {'argv_emulation': True, 16 | 'iconfile':'icon.icns',} 17 | 18 | setup( 19 | app=APP, 20 | data_files=DATA_FILES, 21 | options={'py2app': OPTIONS}, 22 | setup_requires=['py2app'], 23 | ) 24 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/.eggs/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins. 2 | 3 | This directory caches those eggs to prevent repeated downloads. 4 | 5 | However, it is safe to delete this directory. 6 | 7 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/DwarvenFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Agana 2 | Agna 3 | Ailga 4 | Ailglia 5 | Ailila 6 | Aimura 7 | Airthlia 8 | Aitha 9 | Arthna 10 | Arura 11 | Bagona 12 | Barglia 13 | Bathiel 14 | Bavola 15 | Dama 16 | Davina 17 | Davola 18 | Gigriel 19 | Digiel 20 | Digrura 21 | Diliel 22 | Dilvola 23 | Dinana 24 | Donina 25 | Dralola 26 | Dravila 27 | Gindina 28 | Garana 29 | Dravana 30 | Dunila 31 | Durna 32 | Galvura 33 | Ganiel 34 | Gavira 35 | Gavna 36 | Gigna 37 | Gigola 38 | Gindlia 39 | Glodora 40 | Glodura 41 | Glograna 42 | Glolina 43 | Glondola 44 | Glonola 45 | Glovila 46 | Mediel 47 | Menola 48 | Merglia 49 | Merthila 50 | Ralgura 51 | Ralvola 52 | Rullia 53 | Rurna 54 | Rurthana 55 | Ruvila 56 | Ruvira 57 | Ruvira 58 | Thodina 59 | Thomiel 60 | Thondiel 61 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/DwarvenMaleNames.dat: -------------------------------------------------------------------------------- 1 | Alaric 2 | Aldin 3 | Alfginnar 4 | Algrim 5 | Alrik 6 | Argam 7 | Arik 8 | Arngrim 9 | Azram 10 | Baldrick 11 | Balik 12 | Balin 13 | Balzud 14 | Baragor 15 | Bardin 16 | Barik 17 | Barin 18 | Belgar 19 | Belgol 20 | Belgond 21 | Borgo 22 | Borin 23 | Borri 24 | Brand 25 | Brokki 26 | Brond 27 | Bronn 28 | Budrik 29 | Burlok 30 | Dadrin 31 | Daled 32 | Dammin 33 | Dared 34 | Darek 35 | Dertain 36 | Dimgol 37 | Dimrond 38 | Dimzad 39 | Dorin 40 | Dorri 41 | Drakki 42 | Drokki 43 | Drong 44 | Drumin 45 | Dumin 46 | Dunhilda 47 | Durak 48 | Duregar 49 | Durgim 50 | Durim 51 | Durin 52 | Durrag 53 | Falgrim 54 | Fargrim 55 | Fimbur 56 | Finn 57 | Flakki 58 | Fodrin 59 | Fregar 60 | Furgil 61 | Gadrin 62 | Garag 63 | Garik 64 | Garil 65 | Garin 66 | Gharth 67 | Gimli 68 | Gomrund 69 | Gorazin 70 | Gorek 71 | Gorem 72 | Gorin 73 | Gorm 74 | Gorrin 75 | Gotrek 76 | Gottri 77 | Grim 78 | Grimbul 79 | Grimdal 80 | Grimli 81 | Grimnir 82 | Grimwold 83 | Grodrik 84 | Grogan 85 | Grogril 86 | Grom 87 | Grond 88 | Groth 89 | Grum 90 | Grumdi 91 | Grun 92 | Grundi 93 | Grung 94 | Grunni 95 | Guddi 96 | Gudrun 97 | Gumli 98 | Gundrik 99 | Gurni 100 | Gurtrud 101 | Guttri 102 | Haakon 103 | Hadrin 104 | Haki 105 | Harek 106 | Hargin 107 | Harkaz 108 | Heganbor 109 | Herger 110 | Holgar 111 | Horgar 112 | Hrungnor 113 | Hugen 114 | Hurgin 115 | Janek 116 | Kadrin 117 | Kaz 118 | Kazador 119 | Kazrik 120 | Ketil 121 | Kimril 122 | Korgan 123 | Kragg 124 | Krudd 125 | Krung 126 | Kurgan 127 | Kurgaz 128 | Logan 129 | Logazor 130 | Loki 131 | Lokri 132 | Lothor 133 | Lunn 134 | Magnund 135 | Morag 136 | Mordin 137 | Mordred 138 | Morek 139 | Morgrim 140 | Morngrim 141 | Mundri 142 | Okri 143 | Oldor 144 | Orek 145 | Orgri 146 | Othos 147 | Ragnar 148 | Ragni 149 | Ranulf 150 | Rarek 151 | Rorek 152 | Rukh 153 | Sindri 154 | Skag 155 | Skaggi 156 | Skaldor 157 | Skalf 158 | Skalli 159 | Skorri 160 | Skudd 161 | Smakki 162 | Snaddri 163 | Snarri 164 | Snorri 165 | Storri 166 | Strom 167 | Stromni 168 | Thialfi 169 | Thingrim 170 | Thorbal 171 | Thorek 172 | Thorgrim 173 | Thori 174 | Thorin 175 | Thorlek 176 | Throbbi 177 | Throbin 178 | Thrung 179 | Trygg 180 | Ulfar 181 | Ulrik 182 | Ulther 183 | Yorri 184 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/ElvenSurnames.dat: -------------------------------------------------------------------------------- 1 | Aelasar 2 | Aelorothi 3 | Aendryr 4 | Aerasumé 5 | Aeravansel 6 | Agayous 7 | Agrivar 8 | Ahmaquissar 9 | Alaenree 10 | Alantar 11 | Alastrarra 12 | Alavara 13 | Alenuath 14 | Alerothi 15 | Alluth 16 | Aloevan 17 | Aluianti 18 | Aluviirsaan 19 | Amalith 20 | Amarallis 21 | Amaratharr 22 | Amarthen 23 | Ammath 24 | Amrallatha 25 | Anuaer 26 | Argentaamn 27 | Arren 28 | Ash 29 | Ashgrove 30 | Audark 31 | Auglamyr 32 | Auglathla 33 | Aunglor 34 | Autumnfire 35 | Bellas 36 | Berethryl 37 | Berilan 38 | Bharaclaiev 39 | Bhephel 40 | Blackhelm 41 | Braegen 42 | Briarbosk 43 | Brightcloak 44 | Brightsong 45 | Brightwing 46 | Caersaelk 47 | Calaudra 48 | Calauth 49 | Camusiil 50 | Cathdeiryn 51 | Ceretlan 52 | Chaadren 53 | Chamaranthe 54 | Clatharla 55 | Cormyth 56 | Coudoarluth 57 | Craulnober 58 | Crystalembers 59 | Dahast 60 | Dawnhorn 61 | Dhorinshyl 62 | Dlardrageth 63 | Doedance 64 | Donnathlascen 65 | Dracoseir 66 | Dree 67 | Duirsar 68 | Durothil 69 | Duskmere 70 | Duthjuth 71 | Ealoeth 72 | Echorn 73 | Elaéyadar 74 | Elassidil 75 | Elian 76 | Ellarian 77 | Elond 78 | Eluarshee 79 | Ereuvyn 80 | Erkowe 81 | Erladden 82 | Erlshade 83 | Eroth 84 | Estelda 85 | Evanara 86 | Eveningfall 87 | Everlove 88 | Evioro 89 | Eyriendor 90 | Faerondaerl 91 | Faerondarl 92 | Falanae 93 | Felinaun 94 | Fellmirr 95 | Fenmarel 96 | Fflannidan 97 | Floshin 98 | Fynnasla 99 | Gildenguard 100 | Goadulphyn 101 | Goldenleaf 102 | Gourael 103 | Greencloak 104 | Gwaelon 105 | Haell 106 | Haerlgent 107 | Haevaul 108 | Haladar 109 | Halavanthlarr 110 | Hawksong 111 | Hlarr 112 | Hyshaanth 113 | Iazymnal 114 | Ibryiil 115 | Ilbaereth 116 | Ilbenalu 117 | Ildacer 118 | Ildroun 119 | Iliathor 120 | Iliathor 121 | Iliathorr 122 | Ilnatar 123 | Immeril 124 | Ipyllasc 125 | Irian 126 | Irithyl 127 | Irithyl 128 | Ithruen 129 | Iydril 130 | Jaglene 131 | Kadelaryn 132 | Kelerandri 133 | Kelpor’ral 134 | Keove 135 | Kevanarial 136 | Korianthil 137 | Kraok 138 | Laelithar 139 | Laralytha 140 | Larenthanil 141 | Larethian 142 | Laughingwater 143 | Le’Quella 144 | Leafbower 145 | Leafsigil 146 | Lharithlyn 147 | Lhoril 148 | Lightshiver 149 | Llundlar 150 | Loceath 151 | M'Haaren 152 | Maendellyn 153 | Maerdrym 154 | Meirityn 155 | Melruth 156 | Miritar 157 | Mistrivvin 158 | Mistwinter 159 | Mithalvarin 160 | Moonbow 161 | Moondown 162 | Moonflower 163 | Moonglade 164 | Moonglamaer 165 | Moonsnow 166 | Moonweather 167 | Morningdove 168 | Mornmist 169 | Mrhulaedir 170 | Nacnar 171 | Naelgrath 172 | Narlbeth 173 | Narlbeth 174 | Neirdre 175 | Nelnueve 176 | Never 177 | Nhachashaal 178 | Nhaéslal 179 | Nharimlur 180 | Ni’Tessine 181 | Nierde 182 | Nightmeadow 183 | Nightstar 184 | Nightwing 185 | Nihmedu 186 | Nimesin 187 | Nlossae 188 | Nlossae 189 | Nolbrae 190 | Nyamtharsar 191 | Nyntynel 192 | Oakstaff 193 | Oakwood 194 | Olortynnal 195 | Olyrnn 196 | Omberdawn 197 | Ongluth 198 | Orama 199 | Orbryn 200 | Orbryn 201 | Ortauré 202 | Oumryn 203 | Phenthae 204 | Pholont 205 | Presrae 206 | Q'Naepp, 207 | Rachiilstar 208 | Raedrimn 209 | Raryndur 210 | Reithel 211 | Revven 212 | Rhaevaern 213 | Rhothomir 214 | Rhuidhen 215 | Rhyllgallohyr 216 | Rivleam 217 | Rivvikyn 218 | Runemaster 219 | Sarsantyr 220 | Selakiir 221 | Selmer 222 | Selorn 223 | Shadowmantle 224 | Shadowwater 225 | Shaeremae 226 | Shaethe 227 | Shalandalan 228 | Sharrith 229 | Shaurlanglar 230 | Shraiee 231 | Shyr 232 | Sicafei 233 | Siltral 234 | Silverbow 235 | Silverhand 236 | Silveroak 237 | Silverspear 238 | Sinaran 239 | Slenderbow 240 | Soryn 241 | Spellstalker 242 | Srinshee 243 | Starbrow 244 | Starglance 245 | Starglow 246 | Starnar 247 | Starym 248 | Stillhawk 249 | Stilmyst 250 | Straeth 251 | Strongbow 252 | Suldusk 253 | Sultaasar 254 | Summerstars 255 | Sunweaver 256 | Swordstar 257 | Symbaern 258 | Talandren 259 | Talesspur 260 | Tamlyranth 261 | Tanagathor 262 | Tarnruth 263 | Tarsap 264 | Tarsis 265 | Tassarion 266 | Taurntyrith 267 | Tellynnan 268 | Teshurr 269 | Thea 270 | Tlanbourn 271 | Tohrthaal 272 | Toralynnsyr 273 | Tornglara 274 | Tornglara 275 | Torthtan 276 | Toryvhallen 277 | Trueshot 278 | Tsornyl 279 | Tyrneladhelu 280 | Uirthur 281 | Ulondarr 282 | Ulongyr 283 | Vandiir 284 | Veverell 285 | Vispasial 286 | Vyshaan 287 | Waelvor 288 | Whitethistle 289 | Windstar 290 | Windwalker 291 | Xantrani 292 | Yeschant 293 | Yhendorn 294 | Yraueme 295 | Yridnae 296 | Yundraer 297 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/GnomeFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Adan 2 | Adva 3 | Aiko 4 | Aithne 5 | Allison 6 | Amorette 7 | Armida 8 | Belita 9 | Bitsy 10 | Bitty 11 | Bonita 12 | Brenna 13 | Brooke 14 | Carlin 15 | Charlene 16 | Darra 17 | Demi 18 | Dinky 19 | Jenn 20 | Jinxie 21 | Kiara 22 | Kierna 23 | Koemi 24 | Lil 25 | Maleah 26 | Miette 27 | Miki 28 | Nina 29 | Penny 30 | Piera 31 | Pipi 32 | Pippy 33 | Posy 34 | Rosine 35 | Rowan 36 | Shanna 37 | Solita 38 | Tawnie 39 | Teagan 40 | Tina 41 | Topsy 42 | Tulla 43 | Viveca 44 | Whitley 45 | Yves 46 | Zita 47 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/GnomeMaleNames.dat: -------------------------------------------------------------------------------- 1 | Arno 2 | Babak 3 | Beagan 4 | Bingles 5 | Bink 6 | Bixi 7 | Carlin 8 | Cerin 9 | Coty 10 | Dell 11 | Egan 12 | Fishel 13 | Gair 14 | Galeno 15 | Gavin 16 | Gigget 17 | Giles 18 | Girvin 19 | Gnorbitt 20 | Goban 21 | Gorman 22 | Hackett 23 | Half-pint 24 | Hamle 25 | Hampton 26 | Herble 27 | Hewitt 28 | Iven 29 | Jinky 30 | Jubie 31 | Kane 32 | Keegan 33 | Keller 34 | Kern 35 | Killian 36 | Knaz 37 | Krankle 38 | Leib 39 | Lilliput 40 | Loman 41 | Lorcan 42 | Mainchin 43 | Malin 44 | Mannix 45 | Miki 46 | Nibert 47 | Peanut 48 | Renny 49 | Rordan 50 | Rowan 51 | Runt 52 | Short-shot 53 | Simon 54 | Small-fry 55 | Tallie 56 | Tansi 57 | Toby 58 | Tomlin 59 | Torji 60 | Trixie 61 | Two-bit 62 | Wicket 63 | Wizzle 64 | Ziggy 65 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/GnomeSurnames.dat: -------------------------------------------------------------------------------- 1 | Cogglefiz 2 | Electrogauge 3 | Fusegadget 4 | Gearbit 5 | Greasesprocket 6 | Gyroscope 7 | Rocketfuel 8 | Sprocketcog 9 | Thermobolt 10 | Thermogauge 11 | Thermojet 12 | Tiddlywink 13 | Tinkertonk 14 | Triggerblast 15 | Wizzbolt 16 | Wobblecog 17 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/HalfElvenSurnames.dat: -------------------------------------------------------------------------------- 1 | Aelasar 2 | Aelorothi 3 | Aendryr 4 | Aerasumé 5 | Aeravansel 6 | Agayous 7 | Agrivar 8 | Ahmaquissar 9 | Alaenree 10 | Alantar 11 | Alastrarra 12 | Alavara 13 | Alenuath 14 | Alerothi 15 | Alluth 16 | Aloevan 17 | Aluianti 18 | Aluviirsaan 19 | Amalith 20 | Amarallis 21 | Amaratharr 22 | Amarthen 23 | Ammath 24 | Amrallatha 25 | Anuaer 26 | Argentaamn 27 | Arren 28 | Ash 29 | Ashgrove 30 | Audark 31 | Auglamyr 32 | Auglathla 33 | Aunglor 34 | Autumnfire 35 | Bellas 36 | Berethryl 37 | Berilan 38 | Bharaclaiev 39 | Bhephel 40 | Blackhelm 41 | Braegen 42 | Briarbosk 43 | Brightcloak 44 | Brightsong 45 | Brightwing 46 | Caersaelk 47 | Calaudra 48 | Calauth 49 | Camusiil 50 | Cathdeiryn 51 | Ceretlan 52 | Chaadren 53 | Chamaranthe 54 | Clatharla 55 | Cormyth 56 | Coudoarluth 57 | Craulnober 58 | Crystalembers 59 | Dahast 60 | Dawnhorn 61 | Dhorinshyl 62 | Dlardrageth 63 | Doedance 64 | Donnathlascen 65 | Dracoseir 66 | Dree 67 | Duirsar 68 | Durothil 69 | Duskmere 70 | Duthjuth 71 | Ealoeth 72 | Echorn 73 | Elaéyadar 74 | Elassidil 75 | Elian 76 | Ellarian 77 | Elond 78 | Eluarshee 79 | Ereuvyn 80 | Erkowe 81 | Erladden 82 | Erlshade 83 | Eroth 84 | Estelda 85 | Evanara 86 | Eveningfall 87 | Everlove 88 | Evioro 89 | Eyriendor 90 | Faerondaerl 91 | Faerondarl 92 | Falanae 93 | Felinaun 94 | Fellmirr 95 | Fenmarel 96 | Fflannidan 97 | Floshin 98 | Fynnasla 99 | Gildenguard 100 | Goadulphyn 101 | Goldenleaf 102 | Gourael 103 | Greencloak 104 | Gwaelon 105 | Haell 106 | Haerlgent 107 | Haevaul 108 | Haladar 109 | Halavanthlarr 110 | Hawksong 111 | Hlarr 112 | Hyshaanth 113 | Iazymnal 114 | Ibryiil 115 | Ilbaereth 116 | Ilbenalu 117 | Ildacer 118 | Ildroun 119 | Iliathor 120 | Iliathor 121 | Iliathorr 122 | Ilnatar 123 | Immeril 124 | Ipyllasc 125 | Irian 126 | Irithyl 127 | Irithyl 128 | Ithruen 129 | Iydril 130 | Jaglene 131 | Kadelaryn 132 | Kelerandri 133 | Kelpor’ral 134 | Keove 135 | Kevanarial 136 | Korianthil 137 | Kraok 138 | Laelithar 139 | Laralytha 140 | Larenthanil 141 | Larethian 142 | Laughingwater 143 | Le’Quella 144 | Leafbower 145 | Leafsigil 146 | Lharithlyn 147 | Lhoril 148 | Lightshiver 149 | Llundlar 150 | Loceath 151 | M'Haaren 152 | Maendellyn 153 | Maerdrym 154 | Meirityn 155 | Melruth 156 | Miritar 157 | Mistrivvin 158 | Mistwinter 159 | Mithalvarin 160 | Moonbow 161 | Moondown 162 | Moonflower 163 | Moonglade 164 | Moonglamaer 165 | Moonsnow 166 | Moonweather 167 | Morningdove 168 | Mornmist 169 | Mrhulaedir 170 | Nacnar 171 | Naelgrath 172 | Narlbeth 173 | Narlbeth 174 | Neirdre 175 | Nelnueve 176 | Never 177 | Nhachashaal 178 | Nhaéslal 179 | Nharimlur 180 | Ni’Tessine 181 | Nierde 182 | Nightmeadow 183 | Nightstar 184 | Nightwing 185 | Nihmedu 186 | Nimesin 187 | Nlossae 188 | Nlossae 189 | Nolbrae 190 | Nyamtharsar 191 | Nyntynel 192 | Oakstaff 193 | Oakwood 194 | Olortynnal 195 | Olyrnn 196 | Omberdawn 197 | Ongluth 198 | Orama 199 | Orbryn 200 | Orbryn 201 | Ortauré 202 | Oumryn 203 | Phenthae 204 | Pholont 205 | Presrae 206 | Q'Naepp, 207 | Rachiilstar 208 | Raedrimn 209 | Raryndur 210 | Reithel 211 | Revven 212 | Rhaevaern 213 | Rhothomir 214 | Rhuidhen 215 | Rhyllgallohyr 216 | Rivleam 217 | Rivvikyn 218 | Runemaster 219 | Sarsantyr 220 | Selakiir 221 | Selmer 222 | Selorn 223 | Shadowmantle 224 | Shadowwater 225 | Shaeremae 226 | Shaethe 227 | Shalandalan 228 | Sharrith 229 | Shaurlanglar 230 | Shraiee 231 | Shyr 232 | Sicafei 233 | Siltral 234 | Silverbow 235 | Silverhand 236 | Silveroak 237 | Silverspear 238 | Sinaran 239 | Slenderbow 240 | Soryn 241 | Spellstalker 242 | Srinshee 243 | Starbrow 244 | Starglance 245 | Starglow 246 | Starnar 247 | Starym 248 | Stillhawk 249 | Stilmyst 250 | Straeth 251 | Strongbow 252 | Suldusk 253 | Sultaasar 254 | Summerstars 255 | Sunweaver 256 | Swordstar 257 | Symbaern 258 | Talandren 259 | Talesspur 260 | Tamlyranth 261 | Tanagathor 262 | Tarnruth 263 | Tarsap 264 | Tarsis 265 | Tassarion 266 | Taurntyrith 267 | Tellynnan 268 | Teshurr 269 | Thea 270 | Tlanbourn 271 | Tohrthaal 272 | Toralynnsyr 273 | Tornglara 274 | Tornglara 275 | Torthtan 276 | Toryvhallen 277 | Trueshot 278 | Tsornyl 279 | Tyrneladhelu 280 | Uirthur 281 | Ulondarr 282 | Ulongyr 283 | Vandiir 284 | Veverell 285 | Vispasial 286 | Vyshaan 287 | Waelvor 288 | Whitethistle 289 | Windstar 290 | Windwalker 291 | Xantrani 292 | Yeschant 293 | Yhendorn 294 | Yraueme 295 | Yridnae 296 | Yundraer 297 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/HalflingFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Adaldrida 2 | Amaryllis 3 | Amranth 4 | Angelica 5 | Aspodel 6 | Belba 7 | Belladonna 8 | Berylla 9 | Camellia 10 | Carissa 11 | Celandine 12 | Charmaine 13 | Cora 14 | Crystal 15 | Daisy 16 | Diamond 17 | Donamira 18 | Dora 19 | Eglantine 20 | Elanor 21 | Esmerelda 22 | Euphemia 23 | Gilly 24 | Gwiston 25 | Hilda 26 | Jillian 27 | Lavinia 28 | Lidda 29 | Lily 30 | Lobelia 31 | Malva 32 | Marigold 33 | May 34 | Melindy 35 | Mentha 36 | Merla 37 | Mimosa 38 | Mirabella 39 | Myrtle 40 | Pansy 41 | Pearl 42 | Pedderee 43 | Peony 44 | Petrilly 45 | Poppy 46 | Portia 47 | Primula 48 | Prisca 49 | Rose 50 | Ruby 51 | Seraphina 52 | Susannah 53 | Verna 54 | Viloet 55 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/HalflingMaleNames.dat: -------------------------------------------------------------------------------- 1 | Adalgrim 2 | Adelard 3 | Alton 4 | Andwise 5 | Anson 6 | Balbo 7 | Bandobras 8 | Beau 9 | Bill 10 | Bingo 11 | Bodo 12 | Bolger 13 | Bungo 14 | Cade 15 | Calkin 16 | Cotman 17 | Cottar 18 | Drogo 19 | Dudo 20 | Eldon 21 | Falco 22 | Fastolph 23 | Filibert 24 | Flambard 25 | Fosco 26 | Garret 27 | Genrill 28 | Griffo 29 | Halfred 30 | Hildigrim 31 | Hob 32 | Holman 33 | Kepli 34 | Largo 35 | Longo 36 | Lotho 37 | Lyle 38 | Milo 39 | Minto 40 | Morro 41 | Mosco 42 | Mungo 43 | Odo 44 | Olo 45 | Osborn 46 | Otho 47 | Paldo 48 | Peregrin 49 | Pervince 50 | Pimpernell 51 | Polo 52 | Ponto 53 | Porto 54 | Posco 55 | Ronald 56 | Rorimac 57 | Roscoe 58 | Rufus 59 | Sam 60 | Sancho 61 | Saradac 62 | Seredoc 63 | Theadric 64 | Tolman 65 | Wellby 66 | Wilcome 67 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/HalflingSurnames.dat: -------------------------------------------------------------------------------- 1 | Amster 2 | Ashworthy 3 | Bandawax 4 | Boffin 5 | Bolger 6 | Bracegirdle 7 | Brownlock 8 | Brushgather 9 | Bullroarer 10 | Bunce 11 | Burrows 12 | Chubb 13 | Cotton 14 | Dale 15 | Dudley 16 | Gammidge 17 | Gamwich 18 | Gardner 19 | Goodbarrel 20 | Goodbody 21 | Greenbottle 22 | Greenspan 23 | Grub 24 | Hamson 25 | Heathertoe 26 | Highhill 27 | Hilltopple 28 | Hornblower 29 | Jallisall 30 | Kaese 31 | Kalliwart 32 | Leagallow 33 | Lindenbrook 34 | Marmidas 35 | Melilot 36 | Millbridge 37 | Milliciny 38 | Montajay 39 | Newtan 40 | Oldfur 41 | Orgulas 42 | Ostgood 43 | Overhill 44 | Quettory 45 | Shortwick 46 | Sire 47 | Talbot 48 | Tealeaf 49 | Thorngage 50 | Tighfield 51 | Tosscobble 52 | Trill 53 | Underbough 54 | Weatherbee≤ 55 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/HumanFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Acele 2 | Acholate 3 | Ada 4 | Adiannon 5 | Adorra 6 | Ahanna 7 | Akara 8 | Akassa 9 | Akia 10 | Amaerilde 11 | Amara 12 | Amarisa 13 | Amarizi 14 | Ana 15 | Andonna 16 | Ani 17 | Annalyn 18 | Archane 19 | Ariannona 20 | Arina 21 | Arryn 22 | Arya 23 | Asada 24 | Awnia 25 | Ayne 26 | Basete 27 | Bathelie 28 | Bethe 29 | Brana 30 | Brianan 31 | Bridonna 32 | Brynhilde 33 | Calene 34 | Calina 35 | Celestine 36 | Celoa 37 | Cephenrene 38 | Chani 39 | Chivahle 40 | Chrystyne 41 | Corda 42 | Cyelena 43 | Dalavesta 44 | Desini 45 | Dylena 46 | Ebatryne 47 | Ecematare 48 | Efari 49 | Enaldie 50 | Enoka 51 | Enoona 52 | Errinaya 53 | Fayne 54 | Frederika 55 | Frida 56 | Gene 57 | Gessane 58 | Gronalyn 59 | Gvene 60 | Gwethana 61 | Halete 62 | Helenia 63 | Hildandi 64 | Hyza 65 | Idona 66 | Ikini 67 | Ilene 68 | Illia 69 | Iona 70 | Jessika 71 | Jezzine 72 | Justalyne 73 | Kassina 74 | Kilayox 75 | Kilia 76 | Kilyne 77 | Kressara 78 | Laela 79 | Laenaya 80 | Lelani 81 | Lenala 82 | Linovahle 83 | Linyah 84 | Lloyanda 85 | Lolinda 86 | Lyna 87 | Lynessa 88 | Mehande 89 | Melisande 90 | Midiga 91 | Mirayam 92 | Mylene 93 | Nachaloa 94 | Naria 95 | Narisa 96 | Nelenna 97 | Niraya 98 | Nymira 99 | Ochala 100 | Olivia 101 | Onathe 102 | Ondola 103 | Orwyne 104 | Parthinia 105 | Pascheine 106 | Pela 107 | Peri’el 108 | Pharysene 109 | Philadona 110 | Prisane 111 | Prysala 112 | Pythe 113 | Q’ara 114 | Q’pala 115 | Quasee 116 | Rhyanon 117 | Rivatha 118 | Ryiah 119 | Sanala 120 | Sathe 121 | Senira 122 | Sennetta 123 | Sepherene 124 | Serane 125 | Sevestra 126 | Sidara 127 | Sidathe 128 | Sina 129 | Sunete 130 | Synestra 131 | Sythini 132 | Szene 133 | Tabika 134 | Tabithi 135 | Tajule 136 | Tamare 137 | Teresse 138 | Tolida 139 | Tonica 140 | Treka 141 | Tressa 142 | Trinsa 143 | Tryane 144 | Tybressa 145 | Tycane 146 | Tysinni 147 | Undaria 148 | Uneste 149 | Urda 150 | Usara 151 | Useli 152 | Ussesa 153 | Venessa 154 | Veseere 155 | Voladea 156 | Vysarane 157 | Vythica 158 | Wanera 159 | Welisarne 160 | Wellisa 161 | Wesolyne 162 | Wyeta 163 | Yilvoxe 164 | Ysane 165 | Yve 166 | Yviene 167 | Yvonnette 168 | Yysara 169 | Zana 170 | Zathe 171 | Zecele 172 | Zenobia 173 | Zephale 174 | Zephere 175 | Zerma 176 | Zestia 177 | Zilka 178 | Zoura 179 | Zrye 180 | Zyneste 181 | Zynoa 182 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/DatFiles/OrkishSurnames.dat: -------------------------------------------------------------------------------- 1 | Agadbu 2 | Agamph 3 | Aglakh 4 | Agum 5 | Atumph 6 | Azorku 7 | Badbu 8 | Bagdub 9 | Bagol 10 | Bagrat 11 | Bagul 12 | Bamog 13 | Bar 14 | Bar 15 | Barak 16 | Bargamph 17 | Bargol 18 | Baroth 19 | Bashnag 20 | Bat 21 | Batul 22 | Bharg 23 | Boga 24 | Bogamakh 25 | Bogharz 26 | Bogla 27 | Boglar 28 | Bogrol 29 | Boguk 30 | Bol 31 | Bol 32 | Bolak 33 | Bolmog 34 | Bonk 35 | Borbog 36 | Borbul 37 | Brok 38 | Bug 39 | Bugarn 40 | Buglump 41 | Bulag 42 | Bularz 43 | Bulfim 44 | Bulfish 45 | Bumph 46 | Bura 47 | Burbog 48 | Burbug 49 | Burish 50 | Burol 51 | Burzag 52 | Buzga 53 | Coblug 54 | Cromgog 55 | Dragol 56 | Dugul 57 | Dul 58 | Dula 59 | Dulob 60 | Dumul 61 | Dumulg 62 | Durga 63 | Durog 64 | Durug 65 | Dush 66 | Dushnikh 67 | Galash 68 | Gamorn 69 | Gar 70 | Gash 71 | Gashel 72 | Gat 73 | Gatuk 74 | Gharz 75 | Ghash 76 | Ghasharzol 77 | Gholfim 78 | Gholob 79 | Ghorak 80 | Ghoth 81 | Glorzuf 82 | Gluk 83 | Glurkub 84 | Glurzog 85 | Golpok 86 | Gonk 87 | Gortwog 88 | Gorzog 89 | Gorzoth 90 | Grambak 91 | Grulam 92 | Gularz 93 | Gulfim 94 | Gurakh 95 | Gurub 96 | Hubrag 97 | Izburg 98 | Kashug 99 | Khagdum 100 | Khar 101 | Kharbush 102 | Kharz 103 | Khash 104 | Khash 105 | Khashnar 106 | Khatub 107 | Khazor 108 | Khazun 109 | Lag 110 | Lagdub 111 | Largash 112 | Largum 113 | Larishak 114 | Lazgarn 115 | Loghash 116 | Logob 117 | Logrob 118 | Lorga 119 | Lumbuk 120 | Lumob 121 | Lurkul 122 | Lurn 123 | Luzgan 124 | Magar 125 | Magrish 126 | Magul 127 | Malog 128 | Mar 129 | Marad 130 | Marob 131 | Mashnar 132 | Mogakh 133 | Mogduk 134 | Moghakh 135 | Morgrump 136 | Mughol 137 | Muk 138 | Mulakh 139 | Murgak 140 | Murgol 141 | Murug 142 | Murz 143 | Muzgob 144 | Muzgol 145 | Muzgub 146 | Muzgur 147 | Nagorm 148 | Naybek 149 | Nolob 150 | Ogar 151 | Ogdub 152 | Ogdum 153 | Olor 154 | Olurba 155 | Orbuma 156 | Orkul 157 | Orkulg 158 | Orum 159 | Rimph 160 | Rugdush 161 | Rugob 162 | Rush 163 | Rushub 164 | Shadborgob 165 | Shadbuk 166 | Shagdub 167 | Shagdulg 168 | Shagk 169 | Shagrak 170 | Shagramph 171 | Shak 172 | Sham 173 | Shamub 174 | Sharbag 175 | Sharga 176 | Shargakh 177 | Sharob 178 | Sharob 179 | Sharolg 180 | Shat 181 | Shatub 182 | Shatur 183 | Shazog 184 | Shub 185 | Shug 186 | Shug 187 | Shugarz 188 | Shugdurbam 189 | Shugham 190 | Shugurz 191 | Shula 192 | Shulor 193 | Shumba 194 | Shura 195 | Shurgak 196 | Shurkul 197 | Shuzgub 198 | Skandar 199 | Snagarz 200 | Snagdu 201 | Trailslag 202 | Ufthamph 203 | Uftharz 204 | Ugdub 205 | Ugruma 206 | Ular 207 | Ulfimph 208 | Ulfish 209 | Urgak 210 | Urgash 211 | Ushar 212 | Ushug 213 | Ushul 214 | Uzgash 215 | Uzgurn 216 | Uzug 217 | Uzuk 218 | Yagarz 219 | Yak 220 | Yamwort 221 | Yargul 222 | Yarug 223 | Yarzol 224 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/Scripts/EncounterGenerator.py: -------------------------------------------------------------------------------- 1 | from random import randint 2 | import os 3 | 4 | def encounter(place): 5 | ''' 6 | Ok, how do i want this one to work. 7 | How do encounters work while playing? 8 | I know where players are at so i have to get that somehow, i get an variable 9 | and i relate ints to different places(city, forest, hills... etc). 10 | I should also know their level so i probably need to get also that 11 | From that I have to randomize the encounter 12 | I'll have to have different files for the places, in these files there will 13 | be the enemies, weaker enemies will be in more lines, stronger enemies will 14 | be in less lines, some lines will be empty. 15 | I'll take a random number and choose randomly from the enemies in the list 16 | who the players will face. 17 | I think this should in theory work. 18 | 19 | Will this one generate evil AND good encounters? 20 | Will the master be able to choose if evil or good or also that will be random? 21 | Uhm... Interesting. 22 | Maybe I'll add some spice to the encounters. 23 | 24 | I like how the encounters are handled in the masters manual. Probably will go 25 | on that same line. 26 | ''' 27 | #LETS START FROM A BIG IF THAT CHECK WHERE THE PLAYERS' AT 28 | 29 | #PLACE == 1 --> URBAN 30 | if (place == 1): 31 | file_dir = 'datFiles/UrbanEncounters.dat' 32 | encounterArray = [line.strip() for line in open(file_dir, 'r')] 33 | dice = randint(0, len(encounterArray)-1) 34 | enemiesString = encounterArray[dice] 35 | else: 36 | enemiesString = 'We had a problem Sir' 37 | return enemiesString 38 | 39 | #print encounter(1) 40 | -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/Scripts/EncounterGenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/WINDOWS-1.0/Scripts/EncounterGenerator.pyc -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/Scripts/NameGenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/WINDOWS-1.0/Scripts/NameGenerator.pyc -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/Scripts/WeaponGenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/WINDOWS-1.0/Scripts/WeaponGenerator.pyc -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/Scripts/npcgenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/WINDOWS-1.0/Scripts/npcgenerator.pyc -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/dist/FantasyBoardGamesTools-1.0-win32.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/Releases/WINDOWS-1.0/dist/FantasyBoardGamesTools-1.0-win32.msi -------------------------------------------------------------------------------- /Releases/WINDOWS-1.0/setup.py: -------------------------------------------------------------------------------- 1 | import sys 2 | from cx_Freeze import * 3 | 4 | #python setup.py bdist_msi 5 | 6 | # Dependencies are automatically detected, but it might need fine tuning. 7 | build_exe_options = {"packages": ["os"], "include_files": ["Scripts", "DatFiles", "d20.ico"]} 8 | 9 | # GUI applications require a different base on Windows (the default is for a 10 | # console application). 11 | base = None 12 | if sys.platform == "win32": 13 | base = "Win32GUI" 14 | 15 | shortcut_table = [ 16 | ("DesktopShortcut", # Shortcut 17 | "DesktopFolder", # Directory_ 18 | "FantasyBoardGamesTools", # Name 19 | "TARGETDIR", # Component_ 20 | "[TARGETDIR]FantasyBoardGamesTools.exe",# Target 21 | None, # Arguments 22 | None, # Description 23 | None, # Hotkey 24 | None, # Icon 25 | None, # IconIndex 26 | None, # ShowCmd 27 | 'TARGETDIR' # WkDir 28 | ) 29 | ] 30 | 31 | # Now create the table dictionary 32 | msi_data = {"Shortcut": shortcut_table} 33 | 34 | bdist_msi_options = {'data': msi_data} 35 | 36 | 37 | setup( name = "FantasyBoardGamesTools", 38 | version = "1.0", 39 | description = "Fantasy Board Games Tools for Masters", 40 | options = {"build_exe": build_exe_options, "bdist_msi": bdist_msi_options}, 41 | executables = [Executable("FantasyBoardGamesTools.py", base=base)]) -------------------------------------------------------------------------------- /SingleScripts/DiceRoller/DiceRoller.py: -------------------------------------------------------------------------------- 1 | ''' 2 | ___ _____ Python - Dice Roller - v 1.1 3 | | |_ _| A simple command-line dice roller based on Python's random number generator for tabletop games. 4 | | _ | | Update!! I made a GUI version, it uses the same script but is much nicer to use! 5 | |___| | | 6 | /_ / Pietro Goodjohn Bongiovanni - November 2015 7 | ''' 8 | 9 | from random import randint 10 | 11 | while True: 12 | diceNumber = input('Choose number of dices ') 13 | diceType = input('Choose dice type ') 14 | dice = 0 15 | diceTotal = 0 16 | 17 | for dice in range(0, int(diceNumber)): 18 | diceRoll = randint(1, int(diceType)) 19 | diceTotal = diceTotal + diceRoll 20 | print("Dice #%r = %r" % (dice+1, diceRoll)) 21 | print("Result is %r" % diceTotal) 22 | -------------------------------------------------------------------------------- /SingleScripts/DiceRoller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/DiceRoller/__init__.py -------------------------------------------------------------------------------- /SingleScripts/EncounterGenerator/EncounterGenerator.py: -------------------------------------------------------------------------------- 1 | ''' 2 | ___ _____ Python - Encounter Generator - v 0.1 3 | | |_ _| 4 | | _ | | 5 | |___| | | 6 | /_ / Pietro Goodjohn Bongiovanni - December 2015 7 | ''' 8 | 9 | from random import randint 10 | import os.path 11 | 12 | def encounter(place): 13 | #PLACE == 1 --> URBAN 14 | if (place == 1): 15 | directory,filename = os.path.split(__file__) 16 | encounterArray = [line.strip() for line in open(''.join((directory,"./UrbanEncounters.dat")), 'r',encoding='UTF-8')] 17 | dice = randint(0, len(encounterArray)-1) 18 | enemiesString = encounterArray[dice] 19 | else: 20 | enemiesString = 'We had a problem Sir' 21 | return enemiesString 22 | 23 | #print encounter(1) 24 | -------------------------------------------------------------------------------- /SingleScripts/EncounterGenerator/EncounterGenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/EncounterGenerator/EncounterGenerator.pyc -------------------------------------------------------------------------------- /SingleScripts/EncounterGenerator/EncounterGeneratorGUI.py: -------------------------------------------------------------------------------- 1 | ''' 2 | ___ _____ Python - Encounter Generator - v 1.0 3 | | |_ _| 4 | | _ | | 5 | |___| | | 6 | /_ / Pietro Goodjohn Bongiovanni - December 2015 7 | ''' 8 | 9 | import tkinter as tk 10 | from tkinter import * 11 | from tkinter.messagebox import * 12 | from random import randint 13 | 14 | 15 | import EncounterGenerator as ec 16 | import os.path 17 | directory,filename = os.path.split(__file__) 18 | 19 | 20 | class EncounterGenerator(tk.Frame): 21 | def __init__(self, root): 22 | tk.Frame.__init__(self, root) 23 | 24 | self.place = IntVar() 25 | self.placemodifier = IntVar() 26 | 27 | self.text = Text(root) #self 28 | self.text.config(state=DISABLED) 29 | self.text.config(height = 12, width = 50) 30 | 31 | smalltown = Radiobutton(root, text = 'Small Town', variable = self.place, value = 1)#self 32 | town = Radiobutton(root, text = 'Town', variable = self.place, value = 2)#self 33 | metropolis = Radiobutton(root, text = 'Metropolis', variable = self.place, value = 3)#self 34 | encounter = Button(root, text = 'Generate Encounter', command = self.encounter)#self 35 | quit = Button(root, text = 'Quit', command = self.quit) #self 36 | 37 | self.text.pack() 38 | smalltown.pack() 39 | town.pack() 40 | metropolis.pack() 41 | encounter.pack() 42 | quit.pack() 43 | 44 | def encounter(self): 45 | placevar = self.place.get() 46 | if(placevar): 47 | string = ec.encounter(placevar) 48 | self.text.config(state=NORMAL) 49 | self.text.delete(1.0, END) 50 | self.text.insert(INSERT,string) 51 | self.text.config(state=DISABLED) 52 | else: 53 | showerror('Error', 'Please select a place') 54 | 55 | def quit(self): 56 | sys.exit() 57 | 58 | 59 | if __name__ == '__main__': 60 | root = tk.Tk() 61 | root.wm_title("Encounter Generator") 62 | 63 | app = EncounterGenerator(root) 64 | 65 | root.grid_columnconfigure(0,weight=1) 66 | root.grid_rowconfigure(0,weight=1) 67 | root.mainloop() 68 | -------------------------------------------------------------------------------- /SingleScripts/EncounterGenerator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/EncounterGenerator/__init__.py -------------------------------------------------------------------------------- /SingleScripts/NPCGenerator/NPCgeneratorGUI.py: -------------------------------------------------------------------------------- 1 | from tkinter import * 2 | 3 | import os.path 4 | directory,filename = os.path.split(__file__) 5 | import sys 6 | sys.path.append(directory) 7 | import npcgenerator 8 | 9 | def GenerateRandom(): 10 | string = npcgenerator.generateNPC(0) 11 | text.config(state=NORMAL) 12 | text.delete(1.0, END) 13 | text.insert(INSERT, string) 14 | text.config(state=DISABLED) 15 | 16 | def GenerateCitizen(): 17 | string = npcgenerator.generateNPC(1) 18 | text.config(state=NORMAL) 19 | text.delete(1.0, END) 20 | text.insert(INSERT, string) 21 | text.config(state=DISABLED) 22 | 23 | 24 | root = Tk() 25 | 26 | generate = Button(root, text = 'Generate a Non-Citizen', command = GenerateRandom) 27 | generate2 = Button(root, text = 'Generate a Citizen', command = GenerateCitizen) 28 | quit = Button(root, text = 'Quit', command = quit) 29 | 30 | text = Text(root) 31 | text.config(state=DISABLED) 32 | text.config(height = 12, width = 50) 33 | 34 | root.grid_columnconfigure(0,weight=1) 35 | root.grid_rowconfigure(0,weight=1) 36 | root.grid_rowconfigure(1,weight=1) 37 | root.grid_rowconfigure(2,weight=1) 38 | 39 | text.grid(row = 0, column = 0, sticky = E+W) 40 | generate.grid(row = 1, column = 0, sticky = E) 41 | generate2.grid(row = 2, column = 0, sticky = E) 42 | quit.grid(row = 3, column = 0, sticky = E) 43 | root.mainloop() 44 | -------------------------------------------------------------------------------- /SingleScripts/NPCGenerator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/NPCGenerator/__init__.py -------------------------------------------------------------------------------- /SingleScripts/NPCGenerator/npcgenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/NPCGenerator/npcgenerator.pyc -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/DwarvenFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Agana 2 | Agna 3 | Ailga 4 | Ailglia 5 | Ailila 6 | Aimura 7 | Airthlia 8 | Aitha 9 | Arthna 10 | Arura 11 | Bagona 12 | Barglia 13 | Bathiel 14 | Bavola 15 | Dama 16 | Davina 17 | Davola 18 | Gigriel 19 | Digiel 20 | Digrura 21 | Diliel 22 | Dilvola 23 | Dinana 24 | Donina 25 | Dralola 26 | Dravila 27 | Gindina 28 | Garana 29 | Dravana 30 | Dunila 31 | Durna 32 | Galvura 33 | Ganiel 34 | Gavira 35 | Gavna 36 | Gigna 37 | Gigola 38 | Gindlia 39 | Glodora 40 | Glodura 41 | Glograna 42 | Glolina 43 | Glondola 44 | Glonola 45 | Glovila 46 | Mediel 47 | Menola 48 | Merglia 49 | Merthila 50 | Ralgura 51 | Ralvola 52 | Rullia 53 | Rurna 54 | Rurthana 55 | Ruvila 56 | Ruvira 57 | Ruvira 58 | Thodina 59 | Thomiel 60 | Thondiel 61 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/DwarvenMaleNames.dat: -------------------------------------------------------------------------------- 1 | Alaric 2 | Aldin 3 | Alfginnar 4 | Algrim 5 | Alrik 6 | Argam 7 | Arik 8 | Arngrim 9 | Azram 10 | Baldrick 11 | Balik 12 | Balin 13 | Balzud 14 | Baragor 15 | Bardin 16 | Barik 17 | Barin 18 | Belgar 19 | Belgol 20 | Belgond 21 | Borgo 22 | Borin 23 | Borri 24 | Brand 25 | Brokki 26 | Brond 27 | Bronn 28 | Budrik 29 | Burlok 30 | Dadrin 31 | Daled 32 | Dammin 33 | Dared 34 | Darek 35 | Dertain 36 | Dimgol 37 | Dimrond 38 | Dimzad 39 | Dorin 40 | Dorri 41 | Drakki 42 | Drokki 43 | Drong 44 | Drumin 45 | Dumin 46 | Dunhilda 47 | Durak 48 | Duregar 49 | Durgim 50 | Durim 51 | Durin 52 | Durrag 53 | Falgrim 54 | Fargrim 55 | Fimbur 56 | Finn 57 | Flakki 58 | Fodrin 59 | Fregar 60 | Furgil 61 | Gadrin 62 | Garag 63 | Garik 64 | Garil 65 | Garin 66 | Gharth 67 | Gimli 68 | Gomrund 69 | Gorazin 70 | Gorek 71 | Gorem 72 | Gorin 73 | Gorm 74 | Gorrin 75 | Gotrek 76 | Gottri 77 | Grim 78 | Grimbul 79 | Grimdal 80 | Grimli 81 | Grimnir 82 | Grimwold 83 | Grodrik 84 | Grogan 85 | Grogril 86 | Grom 87 | Grond 88 | Groth 89 | Grum 90 | Grumdi 91 | Grun 92 | Grundi 93 | Grung 94 | Grunni 95 | Guddi 96 | Gudrun 97 | Gumli 98 | Gundrik 99 | Gurni 100 | Gurtrud 101 | Guttri 102 | Haakon 103 | Hadrin 104 | Haki 105 | Harek 106 | Hargin 107 | Harkaz 108 | Heganbor 109 | Herger 110 | Holgar 111 | Horgar 112 | Hrungnor 113 | Hugen 114 | Hurgin 115 | Janek 116 | Kadrin 117 | Kaz 118 | Kazador 119 | Kazrik 120 | Ketil 121 | Kimril 122 | Korgan 123 | Kragg 124 | Krudd 125 | Krung 126 | Kurgan 127 | Kurgaz 128 | Logan 129 | Logazor 130 | Loki 131 | Lokri 132 | Lothor 133 | Lunn 134 | Magnund 135 | Morag 136 | Mordin 137 | Mordred 138 | Morek 139 | Morgrim 140 | Morngrim 141 | Mundri 142 | Okri 143 | Oldor 144 | Orek 145 | Orgri 146 | Othos 147 | Ragnar 148 | Ragni 149 | Ranulf 150 | Rarek 151 | Rorek 152 | Rukh 153 | Sindri 154 | Skag 155 | Skaggi 156 | Skaldor 157 | Skalf 158 | Skalli 159 | Skorri 160 | Skudd 161 | Smakki 162 | Snaddri 163 | Snarri 164 | Snorri 165 | Storri 166 | Strom 167 | Stromni 168 | Thialfi 169 | Thingrim 170 | Thorbal 171 | Thorek 172 | Thorgrim 173 | Thori 174 | Thorin 175 | Thorlek 176 | Throbbi 177 | Throbin 178 | Thrung 179 | Trygg 180 | Ulfar 181 | Ulrik 182 | Ulther 183 | Yorri 184 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/ElvenSurnames.dat: -------------------------------------------------------------------------------- 1 | Aelasar 2 | Aelorothi 3 | Aendryr 4 | Aerasumé 5 | Aeravansel 6 | Agayous 7 | Agrivar 8 | Ahmaquissar 9 | Alaenree 10 | Alantar 11 | Alastrarra 12 | Alavara 13 | Alenuath 14 | Alerothi 15 | Alluth 16 | Aloevan 17 | Aluianti 18 | Aluviirsaan 19 | Amalith 20 | Amarallis 21 | Amaratharr 22 | Amarthen 23 | Ammath 24 | Amrallatha 25 | Anuaer 26 | Argentaamn 27 | Arren 28 | Ash 29 | Ashgrove 30 | Audark 31 | Auglamyr 32 | Auglathla 33 | Aunglor 34 | Autumnfire 35 | Bellas 36 | Berethryl 37 | Berilan 38 | Bharaclaiev 39 | Bhephel 40 | Blackhelm 41 | Braegen 42 | Briarbosk 43 | Brightcloak 44 | Brightsong 45 | Brightwing 46 | Caersaelk 47 | Calaudra 48 | Calauth 49 | Camusiil 50 | Cathdeiryn 51 | Ceretlan 52 | Chaadren 53 | Chamaranthe 54 | Clatharla 55 | Cormyth 56 | Coudoarluth 57 | Craulnober 58 | Crystalembers 59 | Dahast 60 | Dawnhorn 61 | Dhorinshyl 62 | Dlardrageth 63 | Doedance 64 | Donnathlascen 65 | Dracoseir 66 | Dree 67 | Duirsar 68 | Durothil 69 | Duskmere 70 | Duthjuth 71 | Ealoeth 72 | Echorn 73 | Elaéyadar 74 | Elassidil 75 | Elian 76 | Ellarian 77 | Elond 78 | Eluarshee 79 | Ereuvyn 80 | Erkowe 81 | Erladden 82 | Erlshade 83 | Eroth 84 | Estelda 85 | Evanara 86 | Eveningfall 87 | Everlove 88 | Evioro 89 | Eyriendor 90 | Faerondaerl 91 | Faerondarl 92 | Falanae 93 | Felinaun 94 | Fellmirr 95 | Fenmarel 96 | Fflannidan 97 | Floshin 98 | Fynnasla 99 | Gildenguard 100 | Goadulphyn 101 | Goldenleaf 102 | Gourael 103 | Greencloak 104 | Gwaelon 105 | Haell 106 | Haerlgent 107 | Haevaul 108 | Haladar 109 | Halavanthlarr 110 | Hawksong 111 | Hlarr 112 | Hyshaanth 113 | Iazymnal 114 | Ibryiil 115 | Ilbaereth 116 | Ilbenalu 117 | Ildacer 118 | Ildroun 119 | Iliathor 120 | Iliathor 121 | Iliathorr 122 | Ilnatar 123 | Immeril 124 | Ipyllasc 125 | Irian 126 | Irithyl 127 | Irithyl 128 | Ithruen 129 | Iydril 130 | Jaglene 131 | Kadelaryn 132 | Kelerandri 133 | Kelpor’ral 134 | Keove 135 | Kevanarial 136 | Korianthil 137 | Kraok 138 | Laelithar 139 | Laralytha 140 | Larenthanil 141 | Larethian 142 | Laughingwater 143 | Le’Quella 144 | Leafbower 145 | Leafsigil 146 | Lharithlyn 147 | Lhoril 148 | Lightshiver 149 | Llundlar 150 | Loceath 151 | M'Haaren 152 | Maendellyn 153 | Maerdrym 154 | Meirityn 155 | Melruth 156 | Miritar 157 | Mistrivvin 158 | Mistwinter 159 | Mithalvarin 160 | Moonbow 161 | Moondown 162 | Moonflower 163 | Moonglade 164 | Moonglamaer 165 | Moonsnow 166 | Moonweather 167 | Morningdove 168 | Mornmist 169 | Mrhulaedir 170 | Nacnar 171 | Naelgrath 172 | Narlbeth 173 | Narlbeth 174 | Neirdre 175 | Nelnueve 176 | Never 177 | Nhachashaal 178 | Nhaéslal 179 | Nharimlur 180 | Ni’Tessine 181 | Nierde 182 | Nightmeadow 183 | Nightstar 184 | Nightwing 185 | Nihmedu 186 | Nimesin 187 | Nlossae 188 | Nlossae 189 | Nolbrae 190 | Nyamtharsar 191 | Nyntynel 192 | Oakstaff 193 | Oakwood 194 | Olortynnal 195 | Olyrnn 196 | Omberdawn 197 | Ongluth 198 | Orama 199 | Orbryn 200 | Orbryn 201 | Ortauré 202 | Oumryn 203 | Phenthae 204 | Pholont 205 | Presrae 206 | Q'Naepp, 207 | Rachiilstar 208 | Raedrimn 209 | Raryndur 210 | Reithel 211 | Revven 212 | Rhaevaern 213 | Rhothomir 214 | Rhuidhen 215 | Rhyllgallohyr 216 | Rivleam 217 | Rivvikyn 218 | Runemaster 219 | Sarsantyr 220 | Selakiir 221 | Selmer 222 | Selorn 223 | Shadowmantle 224 | Shadowwater 225 | Shaeremae 226 | Shaethe 227 | Shalandalan 228 | Sharrith 229 | Shaurlanglar 230 | Shraiee 231 | Shyr 232 | Sicafei 233 | Siltral 234 | Silverbow 235 | Silverhand 236 | Silveroak 237 | Silverspear 238 | Sinaran 239 | Slenderbow 240 | Soryn 241 | Spellstalker 242 | Srinshee 243 | Starbrow 244 | Starglance 245 | Starglow 246 | Starnar 247 | Starym 248 | Stillhawk 249 | Stilmyst 250 | Straeth 251 | Strongbow 252 | Suldusk 253 | Sultaasar 254 | Summerstars 255 | Sunweaver 256 | Swordstar 257 | Symbaern 258 | Talandren 259 | Talesspur 260 | Tamlyranth 261 | Tanagathor 262 | Tarnruth 263 | Tarsap 264 | Tarsis 265 | Tassarion 266 | Taurntyrith 267 | Tellynnan 268 | Teshurr 269 | Thea 270 | Tlanbourn 271 | Tohrthaal 272 | Toralynnsyr 273 | Tornglara 274 | Tornglara 275 | Torthtan 276 | Toryvhallen 277 | Trueshot 278 | Tsornyl 279 | Tyrneladhelu 280 | Uirthur 281 | Ulondarr 282 | Ulongyr 283 | Vandiir 284 | Veverell 285 | Vispasial 286 | Vyshaan 287 | Waelvor 288 | Whitethistle 289 | Windstar 290 | Windwalker 291 | Xantrani 292 | Yeschant 293 | Yhendorn 294 | Yraueme 295 | Yridnae 296 | Yundraer 297 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/GnomeFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Adan 2 | Adva 3 | Aiko 4 | Aithne 5 | Allison 6 | Amorette 7 | Armida 8 | Belita 9 | Bitsy 10 | Bitty 11 | Bonita 12 | Brenna 13 | Brooke 14 | Carlin 15 | Charlene 16 | Darra 17 | Demi 18 | Dinky 19 | Jenn 20 | Jinxie 21 | Kiara 22 | Kierna 23 | Koemi 24 | Lil 25 | Maleah 26 | Miette 27 | Miki 28 | Nina 29 | Penny 30 | Piera 31 | Pipi 32 | Pippy 33 | Posy 34 | Rosine 35 | Rowan 36 | Shanna 37 | Solita 38 | Tawnie 39 | Teagan 40 | Tina 41 | Topsy 42 | Tulla 43 | Viveca 44 | Whitley 45 | Yves 46 | Zita 47 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/GnomeMaleNames.dat: -------------------------------------------------------------------------------- 1 | Arno 2 | Babak 3 | Beagan 4 | Bingles 5 | Bink 6 | Bixi 7 | Carlin 8 | Cerin 9 | Coty 10 | Dell 11 | Egan 12 | Fishel 13 | Gair 14 | Galeno 15 | Gavin 16 | Gigget 17 | Giles 18 | Girvin 19 | Gnorbitt 20 | Goban 21 | Gorman 22 | Hackett 23 | Half-pint 24 | Hamle 25 | Hampton 26 | Herble 27 | Hewitt 28 | Iven 29 | Jinky 30 | Jubie 31 | Kane 32 | Keegan 33 | Keller 34 | Kern 35 | Killian 36 | Knaz 37 | Krankle 38 | Leib 39 | Lilliput 40 | Loman 41 | Lorcan 42 | Mainchin 43 | Malin 44 | Mannix 45 | Miki 46 | Nibert 47 | Peanut 48 | Renny 49 | Rordan 50 | Rowan 51 | Runt 52 | Short-shot 53 | Simon 54 | Small-fry 55 | Tallie 56 | Tansi 57 | Toby 58 | Tomlin 59 | Torji 60 | Trixie 61 | Two-bit 62 | Wicket 63 | Wizzle 64 | Ziggy 65 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/GnomeSurnames.dat: -------------------------------------------------------------------------------- 1 | Cogglefiz 2 | Electrogauge 3 | Fusegadget 4 | Gearbit 5 | Greasesprocket 6 | Gyroscope 7 | Rocketfuel 8 | Sprocketcog 9 | Thermobolt 10 | Thermogauge 11 | Thermojet 12 | Tiddlywink 13 | Tinkertonk 14 | Triggerblast 15 | Wizzbolt 16 | Wobblecog 17 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/HalfElvenSurnames.dat: -------------------------------------------------------------------------------- 1 | Aelasar 2 | Aelorothi 3 | Aendryr 4 | Aerasumé 5 | Aeravansel 6 | Agayous 7 | Agrivar 8 | Ahmaquissar 9 | Alaenree 10 | Alantar 11 | Alastrarra 12 | Alavara 13 | Alenuath 14 | Alerothi 15 | Alluth 16 | Aloevan 17 | Aluianti 18 | Aluviirsaan 19 | Amalith 20 | Amarallis 21 | Amaratharr 22 | Amarthen 23 | Ammath 24 | Amrallatha 25 | Anuaer 26 | Argentaamn 27 | Arren 28 | Ash 29 | Ashgrove 30 | Audark 31 | Auglamyr 32 | Auglathla 33 | Aunglor 34 | Autumnfire 35 | Bellas 36 | Berethryl 37 | Berilan 38 | Bharaclaiev 39 | Bhephel 40 | Blackhelm 41 | Braegen 42 | Briarbosk 43 | Brightcloak 44 | Brightsong 45 | Brightwing 46 | Caersaelk 47 | Calaudra 48 | Calauth 49 | Camusiil 50 | Cathdeiryn 51 | Ceretlan 52 | Chaadren 53 | Chamaranthe 54 | Clatharla 55 | Cormyth 56 | Coudoarluth 57 | Craulnober 58 | Crystalembers 59 | Dahast 60 | Dawnhorn 61 | Dhorinshyl 62 | Dlardrageth 63 | Doedance 64 | Donnathlascen 65 | Dracoseir 66 | Dree 67 | Duirsar 68 | Durothil 69 | Duskmere 70 | Duthjuth 71 | Ealoeth 72 | Echorn 73 | Elaéyadar 74 | Elassidil 75 | Elian 76 | Ellarian 77 | Elond 78 | Eluarshee 79 | Ereuvyn 80 | Erkowe 81 | Erladden 82 | Erlshade 83 | Eroth 84 | Estelda 85 | Evanara 86 | Eveningfall 87 | Everlove 88 | Evioro 89 | Eyriendor 90 | Faerondaerl 91 | Faerondarl 92 | Falanae 93 | Felinaun 94 | Fellmirr 95 | Fenmarel 96 | Fflannidan 97 | Floshin 98 | Fynnasla 99 | Gildenguard 100 | Goadulphyn 101 | Goldenleaf 102 | Gourael 103 | Greencloak 104 | Gwaelon 105 | Haell 106 | Haerlgent 107 | Haevaul 108 | Haladar 109 | Halavanthlarr 110 | Hawksong 111 | Hlarr 112 | Hyshaanth 113 | Iazymnal 114 | Ibryiil 115 | Ilbaereth 116 | Ilbenalu 117 | Ildacer 118 | Ildroun 119 | Iliathor 120 | Iliathor 121 | Iliathorr 122 | Ilnatar 123 | Immeril 124 | Ipyllasc 125 | Irian 126 | Irithyl 127 | Irithyl 128 | Ithruen 129 | Iydril 130 | Jaglene 131 | Kadelaryn 132 | Kelerandri 133 | Kelpor’ral 134 | Keove 135 | Kevanarial 136 | Korianthil 137 | Kraok 138 | Laelithar 139 | Laralytha 140 | Larenthanil 141 | Larethian 142 | Laughingwater 143 | Le’Quella 144 | Leafbower 145 | Leafsigil 146 | Lharithlyn 147 | Lhoril 148 | Lightshiver 149 | Llundlar 150 | Loceath 151 | M'Haaren 152 | Maendellyn 153 | Maerdrym 154 | Meirityn 155 | Melruth 156 | Miritar 157 | Mistrivvin 158 | Mistwinter 159 | Mithalvarin 160 | Moonbow 161 | Moondown 162 | Moonflower 163 | Moonglade 164 | Moonglamaer 165 | Moonsnow 166 | Moonweather 167 | Morningdove 168 | Mornmist 169 | Mrhulaedir 170 | Nacnar 171 | Naelgrath 172 | Narlbeth 173 | Narlbeth 174 | Neirdre 175 | Nelnueve 176 | Never 177 | Nhachashaal 178 | Nhaéslal 179 | Nharimlur 180 | Ni’Tessine 181 | Nierde 182 | Nightmeadow 183 | Nightstar 184 | Nightwing 185 | Nihmedu 186 | Nimesin 187 | Nlossae 188 | Nlossae 189 | Nolbrae 190 | Nyamtharsar 191 | Nyntynel 192 | Oakstaff 193 | Oakwood 194 | Olortynnal 195 | Olyrnn 196 | Omberdawn 197 | Ongluth 198 | Orama 199 | Orbryn 200 | Orbryn 201 | Ortauré 202 | Oumryn 203 | Phenthae 204 | Pholont 205 | Presrae 206 | Q'Naepp, 207 | Rachiilstar 208 | Raedrimn 209 | Raryndur 210 | Reithel 211 | Revven 212 | Rhaevaern 213 | Rhothomir 214 | Rhuidhen 215 | Rhyllgallohyr 216 | Rivleam 217 | Rivvikyn 218 | Runemaster 219 | Sarsantyr 220 | Selakiir 221 | Selmer 222 | Selorn 223 | Shadowmantle 224 | Shadowwater 225 | Shaeremae 226 | Shaethe 227 | Shalandalan 228 | Sharrith 229 | Shaurlanglar 230 | Shraiee 231 | Shyr 232 | Sicafei 233 | Siltral 234 | Silverbow 235 | Silverhand 236 | Silveroak 237 | Silverspear 238 | Sinaran 239 | Slenderbow 240 | Soryn 241 | Spellstalker 242 | Srinshee 243 | Starbrow 244 | Starglance 245 | Starglow 246 | Starnar 247 | Starym 248 | Stillhawk 249 | Stilmyst 250 | Straeth 251 | Strongbow 252 | Suldusk 253 | Sultaasar 254 | Summerstars 255 | Sunweaver 256 | Swordstar 257 | Symbaern 258 | Talandren 259 | Talesspur 260 | Tamlyranth 261 | Tanagathor 262 | Tarnruth 263 | Tarsap 264 | Tarsis 265 | Tassarion 266 | Taurntyrith 267 | Tellynnan 268 | Teshurr 269 | Thea 270 | Tlanbourn 271 | Tohrthaal 272 | Toralynnsyr 273 | Tornglara 274 | Tornglara 275 | Torthtan 276 | Toryvhallen 277 | Trueshot 278 | Tsornyl 279 | Tyrneladhelu 280 | Uirthur 281 | Ulondarr 282 | Ulongyr 283 | Vandiir 284 | Veverell 285 | Vispasial 286 | Vyshaan 287 | Waelvor 288 | Whitethistle 289 | Windstar 290 | Windwalker 291 | Xantrani 292 | Yeschant 293 | Yhendorn 294 | Yraueme 295 | Yridnae 296 | Yundraer 297 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/HalflingFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Adaldrida 2 | Amaryllis 3 | Amranth 4 | Angelica 5 | Aspodel 6 | Belba 7 | Belladonna 8 | Berylla 9 | Camellia 10 | Carissa 11 | Celandine 12 | Charmaine 13 | Cora 14 | Crystal 15 | Daisy 16 | Diamond 17 | Donamira 18 | Dora 19 | Eglantine 20 | Elanor 21 | Esmerelda 22 | Euphemia 23 | Gilly 24 | Gwiston 25 | Hilda 26 | Jillian 27 | Lavinia 28 | Lidda 29 | Lily 30 | Lobelia 31 | Malva 32 | Marigold 33 | May 34 | Melindy 35 | Mentha 36 | Merla 37 | Mimosa 38 | Mirabella 39 | Myrtle 40 | Pansy 41 | Pearl 42 | Pedderee 43 | Peony 44 | Petrilly 45 | Poppy 46 | Portia 47 | Primula 48 | Prisca 49 | Rose 50 | Ruby 51 | Seraphina 52 | Susannah 53 | Verna 54 | Viloet 55 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/HalflingMaleNames.dat: -------------------------------------------------------------------------------- 1 | Adalgrim 2 | Adelard 3 | Alton 4 | Andwise 5 | Anson 6 | Balbo 7 | Bandobras 8 | Beau 9 | Bill 10 | Bingo 11 | Bodo 12 | Bolger 13 | Bungo 14 | Cade 15 | Calkin 16 | Cotman 17 | Cottar 18 | Drogo 19 | Dudo 20 | Eldon 21 | Falco 22 | Fastolph 23 | Filibert 24 | Flambard 25 | Fosco 26 | Garret 27 | Genrill 28 | Griffo 29 | Halfred 30 | Hildigrim 31 | Hob 32 | Holman 33 | Kepli 34 | Largo 35 | Longo 36 | Lotho 37 | Lyle 38 | Milo 39 | Minto 40 | Morro 41 | Mosco 42 | Mungo 43 | Odo 44 | Olo 45 | Osborn 46 | Otho 47 | Paldo 48 | Peregrin 49 | Pervince 50 | Pimpernell 51 | Polo 52 | Ponto 53 | Porto 54 | Posco 55 | Ronald 56 | Rorimac 57 | Roscoe 58 | Rufus 59 | Sam 60 | Sancho 61 | Saradac 62 | Seredoc 63 | Theadric 64 | Tolman 65 | Wellby 66 | Wilcome 67 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/HalflingSurnames.dat: -------------------------------------------------------------------------------- 1 | Amster 2 | Ashworthy 3 | Bandawax 4 | Boffin 5 | Bolger 6 | Bracegirdle 7 | Brownlock 8 | Brushgather 9 | Bullroarer 10 | Bunce 11 | Burrows 12 | Chubb 13 | Cotton 14 | Dale 15 | Dudley 16 | Gammidge 17 | Gamwich 18 | Gardner 19 | Goodbarrel 20 | Goodbody 21 | Greenbottle 22 | Greenspan 23 | Grub 24 | Hamson 25 | Heathertoe 26 | Highhill 27 | Hilltopple 28 | Hornblower 29 | Jallisall 30 | Kaese 31 | Kalliwart 32 | Leagallow 33 | Lindenbrook 34 | Marmidas 35 | Melilot 36 | Millbridge 37 | Milliciny 38 | Montajay 39 | Newtan 40 | Oldfur 41 | Orgulas 42 | Ostgood 43 | Overhill 44 | Quettory 45 | Shortwick 46 | Sire 47 | Talbot 48 | Tealeaf 49 | Thorngage 50 | Tighfield 51 | Tosscobble 52 | Trill 53 | Underbough 54 | Weatherbee≤ 55 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/HumanFemaleNames.dat: -------------------------------------------------------------------------------- 1 | Acele 2 | Acholate 3 | Ada 4 | Adiannon 5 | Adorra 6 | Ahanna 7 | Akara 8 | Akassa 9 | Akia 10 | Amaerilde 11 | Amara 12 | Amarisa 13 | Amarizi 14 | Ana 15 | Andonna 16 | Ani 17 | Annalyn 18 | Archane 19 | Ariannona 20 | Arina 21 | Arryn 22 | Arya 23 | Asada 24 | Awnia 25 | Ayne 26 | Basete 27 | Bathelie 28 | Bethe 29 | Brana 30 | Brianan 31 | Bridonna 32 | Brynhilde 33 | Calene 34 | Calina 35 | Celestine 36 | Celoa 37 | Cephenrene 38 | Chani 39 | Chivahle 40 | Chrystyne 41 | Corda 42 | Cyelena 43 | Dalavesta 44 | Desini 45 | Dylena 46 | Ebatryne 47 | Ecematare 48 | Efari 49 | Enaldie 50 | Enoka 51 | Enoona 52 | Errinaya 53 | Fayne 54 | Frederika 55 | Frida 56 | Gene 57 | Gessane 58 | Gronalyn 59 | Gvene 60 | Gwethana 61 | Halete 62 | Helenia 63 | Hildandi 64 | Hyza 65 | Idona 66 | Ikini 67 | Ilene 68 | Illia 69 | Iona 70 | Jessika 71 | Jezzine 72 | Justalyne 73 | Kassina 74 | Kilayox 75 | Kilia 76 | Kilyne 77 | Kressara 78 | Laela 79 | Laenaya 80 | Lelani 81 | Lenala 82 | Linovahle 83 | Linyah 84 | Lloyanda 85 | Lolinda 86 | Lyna 87 | Lynessa 88 | Mehande 89 | Melisande 90 | Midiga 91 | Mirayam 92 | Mylene 93 | Nachaloa 94 | Naria 95 | Narisa 96 | Nelenna 97 | Niraya 98 | Nymira 99 | Ochala 100 | Olivia 101 | Onathe 102 | Ondola 103 | Orwyne 104 | Parthinia 105 | Pascheine 106 | Pela 107 | Peri’el 108 | Pharysene 109 | Philadona 110 | Prisane 111 | Prysala 112 | Pythe 113 | Q’ara 114 | Q’pala 115 | Quasee 116 | Rhyanon 117 | Rivatha 118 | Ryiah 119 | Sanala 120 | Sathe 121 | Senira 122 | Sennetta 123 | Sepherene 124 | Serane 125 | Sevestra 126 | Sidara 127 | Sidathe 128 | Sina 129 | Sunete 130 | Synestra 131 | Sythini 132 | Szene 133 | Tabika 134 | Tabithi 135 | Tajule 136 | Tamare 137 | Teresse 138 | Tolida 139 | Tonica 140 | Treka 141 | Tressa 142 | Trinsa 143 | Tryane 144 | Tybressa 145 | Tycane 146 | Tysinni 147 | Undaria 148 | Uneste 149 | Urda 150 | Usara 151 | Useli 152 | Ussesa 153 | Venessa 154 | Veseere 155 | Voladea 156 | Vysarane 157 | Vythica 158 | Wanera 159 | Welisarne 160 | Wellisa 161 | Wesolyne 162 | Wyeta 163 | Yilvoxe 164 | Ysane 165 | Yve 166 | Yviene 167 | Yvonnette 168 | Yysara 169 | Zana 170 | Zathe 171 | Zecele 172 | Zenobia 173 | Zephale 174 | Zephere 175 | Zerma 176 | Zestia 177 | Zilka 178 | Zoura 179 | Zrye 180 | Zyneste 181 | Zynoa 182 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/NameGenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/NameGenerator/NameGenerator.pyc -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/NameGeneratorGUI.py: -------------------------------------------------------------------------------- 1 | ''' 2 | ___ _____ Python - Name Generator GUI- v 1.0 3 | | |_ _| Name Generator for fantasy charachters. I want to add more names to the ones I have. 4 | | _ | | I want to add more races and more stuff, and probably I will also ad some kind of option to create some sort of 5 | |___| | | family like Parents, Sons, Granparents and maybe Greatgranparents. 6 | /_ / Pietro Goodjohn Bongiovanni - November 2015 7 | ''' 8 | 9 | from tkinter import * 10 | import NameGenerator 11 | from tkinter.messagebox import * 12 | 13 | def create(): 14 | gendervar = gender.get() 15 | if(gendervar == 0 or gendervar == 1): 16 | racevar = race.get() 17 | if(racevar): 18 | string = NameGenerator.generate(gendervar,racevar) 19 | text.config(state=NORMAL) 20 | text.delete(1.0, END) 21 | text.insert(INSERT,string) 22 | text.config(state=DISABLED) 23 | else: 24 | showerror('Error', 'Please select a race') 25 | else: 26 | showerror('Error', 'Please select a gender') 27 | 28 | main = Tk() 29 | main.wm_title('Name Generator') 30 | 31 | #initializing the two variables 32 | gender = IntVar() 33 | race = IntVar() 34 | 35 | #Labels 36 | genderLabel = Label(main, text = 'Gender:') 37 | raceLabel = Label(main, text = 'Race:') 38 | 39 | #Radio button for gender 40 | male = Radiobutton(main, text = 'Male', variable = gender, value = 0) 41 | female = Radiobutton(main, text = 'Female', variable = gender, value = 1) 42 | 43 | #Radio button for race 44 | dwarf = Radiobutton(main, text = 'Dwarf', variable = race, value = 1) 45 | elves = Radiobutton(main, text = 'Elves', variable = race, value = 2) 46 | human = Radiobutton(main, text = 'Human', variable = race, value = 3) 47 | gnome = Radiobutton(main, text = 'Gnome', variable = race, value = 4) 48 | halfelf = Radiobutton(main, text = 'Half Elf', variable = race, value = 5) 49 | orc = Radiobutton(main, text = 'Orc', variable = race, value = 6) 50 | halfling = Radiobutton(main, text = 'Halfling', variable = race, value = 7) 51 | 52 | #Text widget were the result of every single dice and the result of the sum of dices will be displayed 53 | text = Text(main) 54 | text.config(state=DISABLED) 55 | text.config(height = 6, width = 25) 56 | 57 | #Buttons 58 | create = Button(main, text = 'Generate Name', command = create) 59 | quit = Button(main, text = 'Quit', command = quit) 60 | 61 | #Geometry 62 | main.grid_columnconfigure(0,weight=1) 63 | main.grid_columnconfigure(1,weight=1) 64 | main.grid_columnconfigure(2,weight=1) 65 | main.grid_columnconfigure(3,weight=1) 66 | main.grid_rowconfigure(0,weight=1) 67 | main.grid_rowconfigure(1,weight=1) 68 | main.grid_rowconfigure(2,weight=1) 69 | main.grid_rowconfigure(3,weight=1) 70 | main.grid_rowconfigure(4,weight=1) 71 | main.grid_rowconfigure(5,weight=1) 72 | main.grid_rowconfigure(6,weight=1) 73 | main.grid_rowconfigure(7,weight=1) 74 | main.grid_rowconfigure(8,weight=1) 75 | 76 | text.grid(row = 0, column = 0, columnspan = 3, sticky = E+W) 77 | genderLabel.grid(row = 1, column = 0, sticky = NW) 78 | raceLabel.grid(row = 1, column = 1, sticky = NW) 79 | dwarf.grid(row = 2, column = 1, sticky = NW) 80 | elves.grid(row = 3, column = 1, sticky = NW) 81 | human.grid(row = 4, column = 1, sticky = NW) 82 | gnome.grid(row = 5, column = 1, sticky = NW) 83 | halfelf.grid(row = 6, column = 1, sticky = NW) 84 | orc.grid(row = 7, column = 1, sticky = NW) 85 | halfling.grid(row = 8, column = 1, sticky = NW) 86 | male.grid(row = 2, column = 0, sticky = NW) 87 | female.grid(row = 3, column = 0, sticky = NW) 88 | create.grid(row = 2, column = 3, sticky = NW) 89 | quit.grid(row = 4, column = 3, sticky = NW) 90 | 91 | ''' 92 | text.pack() 93 | genderLabel.pack() 94 | raceLabel.pack() 95 | dwarf.pack() 96 | elves.pack() 97 | human.pack() 98 | male.pack() 99 | female.pack() 100 | create.pack() 101 | quit.pack() 102 | ''' 103 | main.mainloop() 104 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/OrkishSurnames.dat: -------------------------------------------------------------------------------- 1 | Agadbu 2 | Agamph 3 | Aglakh 4 | Agum 5 | Atumph 6 | Azorku 7 | Badbu 8 | Bagdub 9 | Bagol 10 | Bagrat 11 | Bagul 12 | Bamog 13 | Bar 14 | Bar 15 | Barak 16 | Bargamph 17 | Bargol 18 | Baroth 19 | Bashnag 20 | Bat 21 | Batul 22 | Bharg 23 | Boga 24 | Bogamakh 25 | Bogharz 26 | Bogla 27 | Boglar 28 | Bogrol 29 | Boguk 30 | Bol 31 | Bol 32 | Bolak 33 | Bolmog 34 | Bonk 35 | Borbog 36 | Borbul 37 | Brok 38 | Bug 39 | Bugarn 40 | Buglump 41 | Bulag 42 | Bularz 43 | Bulfim 44 | Bulfish 45 | Bumph 46 | Bura 47 | Burbog 48 | Burbug 49 | Burish 50 | Burol 51 | Burzag 52 | Buzga 53 | Coblug 54 | Cromgog 55 | Dragol 56 | Dugul 57 | Dul 58 | Dula 59 | Dulob 60 | Dumul 61 | Dumulg 62 | Durga 63 | Durog 64 | Durug 65 | Dush 66 | Dushnikh 67 | Galash 68 | Gamorn 69 | Gar 70 | Gash 71 | Gashel 72 | Gat 73 | Gatuk 74 | Gharz 75 | Ghash 76 | Ghasharzol 77 | Gholfim 78 | Gholob 79 | Ghorak 80 | Ghoth 81 | Glorzuf 82 | Gluk 83 | Glurkub 84 | Glurzog 85 | Golpok 86 | Gonk 87 | Gortwog 88 | Gorzog 89 | Gorzoth 90 | Grambak 91 | Grulam 92 | Gularz 93 | Gulfim 94 | Gurakh 95 | Gurub 96 | Hubrag 97 | Izburg 98 | Kashug 99 | Khagdum 100 | Khar 101 | Kharbush 102 | Kharz 103 | Khash 104 | Khash 105 | Khashnar 106 | Khatub 107 | Khazor 108 | Khazun 109 | Lag 110 | Lagdub 111 | Largash 112 | Largum 113 | Larishak 114 | Lazgarn 115 | Loghash 116 | Logob 117 | Logrob 118 | Lorga 119 | Lumbuk 120 | Lumob 121 | Lurkul 122 | Lurn 123 | Luzgan 124 | Magar 125 | Magrish 126 | Magul 127 | Malog 128 | Mar 129 | Marad 130 | Marob 131 | Mashnar 132 | Mogakh 133 | Mogduk 134 | Moghakh 135 | Morgrump 136 | Mughol 137 | Muk 138 | Mulakh 139 | Murgak 140 | Murgol 141 | Murug 142 | Murz 143 | Muzgob 144 | Muzgol 145 | Muzgub 146 | Muzgur 147 | Nagorm 148 | Naybek 149 | Nolob 150 | Ogar 151 | Ogdub 152 | Ogdum 153 | Olor 154 | Olurba 155 | Orbuma 156 | Orkul 157 | Orkulg 158 | Orum 159 | Rimph 160 | Rugdush 161 | Rugob 162 | Rush 163 | Rushub 164 | Shadborgob 165 | Shadbuk 166 | Shagdub 167 | Shagdulg 168 | Shagk 169 | Shagrak 170 | Shagramph 171 | Shak 172 | Sham 173 | Shamub 174 | Sharbag 175 | Sharga 176 | Shargakh 177 | Sharob 178 | Sharob 179 | Sharolg 180 | Shat 181 | Shatub 182 | Shatur 183 | Shazog 184 | Shub 185 | Shug 186 | Shug 187 | Shugarz 188 | Shugdurbam 189 | Shugham 190 | Shugurz 191 | Shula 192 | Shulor 193 | Shumba 194 | Shura 195 | Shurgak 196 | Shurkul 197 | Shuzgub 198 | Skandar 199 | Snagarz 200 | Snagdu 201 | Trailslag 202 | Ufthamph 203 | Uftharz 204 | Ugdub 205 | Ugruma 206 | Ular 207 | Ulfimph 208 | Ulfish 209 | Urgak 210 | Urgash 211 | Ushar 212 | Ushug 213 | Ushul 214 | Uzgash 215 | Uzgurn 216 | Uzug 217 | Uzuk 218 | Yagarz 219 | Yak 220 | Yamwort 221 | Yargul 222 | Yarug 223 | Yarzol 224 | -------------------------------------------------------------------------------- /SingleScripts/NameGenerator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/NameGenerator/__init__.py -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Bard/Bard0SpellList.txt: -------------------------------------------------------------------------------- 1 | Dancing Lights(PH p216) – Creates torches or other lights. 2 | Daze(PH p217) – Humanoid creature of 4HD or less loses next action. 3 | Detect Crossroads(MoF p88) – Detect fey crossroads within 60’. 4 | Detect Magic(PH p219) – Detects spells and magic items within 60’. 5 | Flare(PH p232) – Dazzles one creature (–1 on attack rolls). 6 | Fleeting Flame(DR326 p73) – Gives you a +2 bonus on one Bluff, Diplomacy, or Intimidate check. 7 | Ghost Sound(PH p235) – Figment sounds. 8 | Ghostharp(MoF p97) – Object records, plays a song at your command. 9 | Glimpse of Fear(DR333 p71) – A flash of horror causes the target to become shaken. 10 | Know Direction(PH p246) – You discern north. 11 | Light(PH p248) – Object shines like a torch. 12 | Lullaby(PH p249) – Makes subject drowsy; –5 on Spot & Listen checks, –2 Will saves against Sleep. 13 | Mage Hand(PH p249) – 5 pound telekinesis. 14 | Mending(PH p253) – Makes minor repairs on an object. 15 | Message(PH p253) – Whispered conversation at distance. 16 | Minor Disguise(MoF p108) – Makes slight changes to your appearance. 17 | Open/Close(PH p258) – Opens or closes small or light things. 18 | Prestidigitation(PH p264) – Performs minor tricks. 19 | Read Magic(PH p269) – Reads scrolls and spellbooks. 20 | Resistance(PH p272) – Subject gains +1 resistance bonus on all saving throws. 21 | Seeker’s Chant(DR326 p74) – Gives you a +1 bonus on Search checks, but a –2 penalty on Move Silently checks. 22 | Songbird(MoF p120) – Perform and gain +1 Competence bonus on your next Charisma check. 23 | Stick(Und p61) – Glues an object weighting 5 pounds or less to a larger object. 24 | Summon Instrument(PH p285) – Summons one instrument of the caster’s choice. 25 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Bard/Bard1SpellList.txt: -------------------------------------------------------------------------------- 1 | Accelerated Movement(CAdv p142) – Swift. Balance, Climb, or Move Silently at normal speed with no penalty on skill check. 2 | Alarm(PH p197) – Wards an area for 2 hours per level. 3 | Amplify(MoF p77) – Lowers Listen DC by 20. 4 | Animate Rope(PH p199) – Makes a rope move at your command. 5 | Appraising Touch(DR325 p70) – Grants a bonus on Appraise checks. 6 | Balagarn’s Iron Horn(MoF p79) – Intense vibrations trip those in the area. 7 | Cause Fear(PH p208) – One creature of 5HD or less flees for 1d4 rounds. 8 | Charm Person(PH p209) – Make one person your friend. 9 | Comprehend Languages(PH p212) – You understand all spoken and written languages. 10 | Confusion, Lesser(PH p212) – One creature acts randomly for 1 round. 11 | Cure Light Wounds(PH p215) – Cures 1d8 + 1 per level damage (max +5). 12 | Dead End(DR325 p71) – Illusions conceal the targets’ trail. 13 | Detect Secret Doors(PH p220) – Reveals hidden doors within 60’. 14 | Discern Bloodline(RoD p165) – Know the race of one creature per level. 15 | Disguise Self(PH p222) – Changes your appearance 16 | Disquietude(MoF p90) – Target avoids physical contact with others. 17 | Distort Speech(CAdv p145) – Subject’s speech is 50% unintelligible; subject may miscast spells. 18 | Distract(DR314 p20) – One creature per level has trouble concentrating & receives a –4 penalty on Concentration, Search, Spot, & Listen checks. 19 | Empathy(DR313 p93) – Read the emotions of one living creature; gain a +2 Competence bonus on Charisma-based skill checks against the target. 20 | Erase(PH p227) – Mundane or magical writing vanishes. 21 | Expeditious Retreat(PH p228) – Your land speed increases by 30’. 22 | Expeditious Retreat, Swift(CAdv p149) – Swift. Your speed increases by 30’ for 1 round. 23 | Feather Fall(PH p229) – Objects or creatures fall slowly. 24 | Focusing Chant(CAdv p149) – Gain +1 on attack rolls, skill checks, and ability checks, so long as you don’t speak or cast other spells. 25 | Friendly Face(RoD p166) – Gain a +5 Circumstance bonus on Diplomacy and Gather Information checks. 26 | Grease(PH p237) – Makes 10’ square or 1 object slippery. 27 | Harmony(PGF p104) – Increases Inspire Courage ability to +4/+2. 28 | Healthful Rest(CAdv p151) – Subjects heal at twice the normal rate. 29 | Herald’s Call(CAdv p151)(MoF p100) – Swift. Creatures of 5HD or less within 20’ are Slow’d for 1 round. 30 | Hypnotism(PH p242) – Fascinates 2d4 HD of creatures. 31 | Identify(PH p243) – Determines properties of a magic item. 32 | Inspirational Boost(CAdv p153) – Swift. The bonuses granted by you Inspire Courage ability are increased by 1. 33 | Joyful Noise(CAdv p154) – You negate Silence in a 10’ radius Emanation for as long as you concentrate. 34 | Know Protections(MoF p104) – Determine target’s defenses. 35 | Locate City(RoD p166) – Find nearest city. 36 | Magic Mouth(PH p251) – Speaks once when triggered. 37 | Master’s Touch(CAdv p154) – Swift. You gain proficiency in a touched weapon or shield for 1 minute per level. 38 | Nystul’s Magic Aura(PH p257) – Alters object’s magic aura. 39 | Obscure Object(PH p258) – Masks object against scrying. 40 | Phade’s Fearsome Aspect(DR333 p72) – The target looks like a demon, gaining a +5 bonus on Intimidate checks and can Demoralize as a Swift Action. 41 | Ray of Hope(BoED p105) – Subject gains +2 Morale bonus on attacks, saves, & checks. 42 | Remove Fear(PH p271) – Suppresses fear or gives +4 on saves against fear for one subject + one per four levels. 43 | Scholar’s Touch(RoD p167) – Read book in seconds. 44 | Serene Visage(DR325 p72) – Grants a bonus on Bluff checks. 45 | Shock and Awe(DR325 p72) – Reduces a surprised creature’s initiative roll. 46 | Silent Image(PH p279) – Creates a minor illusion of your design. 47 | Sleep(PH p280) – Puts 4HD of creatures into magical slumber. 48 | Summon Monster I(PH p285) – Summons an extraplanar creature to fight for you. 49 | Tasha’s Hideous Laughter(PH p292) – Subject loses actions for 1 round per level. 50 | Undersong(DR328 p72) – You may make Perform checks in place of Concentration checks. 51 | Undetectable Alignment(PH p297) – Conceals alignment for 24 hours. 52 | Unseen Servant(PH p297) – Invisible force obeys your commands. 53 | Ventriloquism(PH p298) – Throws voice for 1 minute per level. 54 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Bard/Bard3SpellList.txt: -------------------------------------------------------------------------------- 1 | Allegro(CAdv p142) – You and your allies gain +30’ speed for 1 minute per level. 2 | Analyze Portal(FR p66) – Detects and analyzes Portals within 60’. 3 | Anamensis(DR338 p77) – Taps into an alien unconscious, providing a bonus on Knowledge skill checks. 4 | Blink(PH p206) – You randomly vanish and reappear for 1 round per level. 5 | Charm Monster(PH p209) – Makes monster believe it is your ally. 6 | Clairaudience/Clairvoyance(PH p209) – Hear or see at a distance for 1 minute per level. 7 | Confusion(PH p212) – Makes subject behave oddly for 1 round per level. 8 | Crushing Despair(PH p215) – Subject takes –2 on attack rolls, damage rolls, saves, & checks. 9 | Cure Serious Wounds(PH p216) – Cures 3d8 damage + 1 per level (max +15). 10 | Daylight(PH p216) – 60’ radius of bright light. 11 | Deep Slumber(PH p217) – Puts 10HD of creatures to sleep. 12 | Dirge of Discord(CAdv p145) – All within 20’ take –4 on attack rolls, Concentration checks, and 13 | Dexterity, and reduce speed by 50%. 14 | Dispel Magic(PH p223)(PH3.5e)+ – Cancels magical spells and effects. 15 | Displacement(PH p223) – Attacks miss subject 50% of the time. 16 | Dissonant Chord(CAdv p145) – Deals 1d8 per two levels of Sonic damage in a 10’ burst. Fear(PH p229) – Subjects within cone flee for 1 round per level. 17 | G’elsewhere Chant(MoF p96) – Teleport target to random safe place within 100’. 18 | Gaseous Form(PH p234) – Subject becomes insubstantial and can fly slowly. 19 | Geas, Lesser(PH p235) – Commands subject of 7 HD or less. 20 | Glibness(PH p235)(PH3.5e)+ – You gain +30 bonus on Bluff checks, and your lies can escape magical discernment. 21 | Good Hope(PH p237) – Subjects gain +2 on attack rolls, damage rolls, saves, and checks. 22 | Harmonic Chorus(CAdv p150) – Give another caster +2 caster levels and a +2 on save DC’s as long as you concentrate. 23 | Haste(PH p239) – One creature per level moves faster, +1 on attack rolls, AC, and Reflex saves. 24 | Haunting Tune(MoF p99) – 1 target per level becomes shaken. 25 | Hymn of Praise(CAdv p152) – Add +2 caster levels to all Good Divine casters within range. 26 | Illusory Script(PH p243) – Only intended reader can decipher. 27 | Infernal Threnody(CAdv p152) – Add +2 cater levels to all Evil Divine casters within range. 28 | Insignia of Healing(RoD p166) – Bearers of a special insignia are healed 1d8 + 1/lvl hit-points (max 1d8+10). 29 | Invisibility Sphere(PH p245) – Makes everyone within 10’ invisible. 30 | Leomund’s Tiny Hut(PH p247) – Creates shelter for ten creatures. 31 | Love’s Lament(DR328 p70) – A cone of disheartening music deals 1d6 Wisdom damage and Nauseates those affected. 32 | Major Image(PH p252) – As Silent Image, but sound, smell, and thermal effects. 33 | Phantom Steed(PH p260) – Magical horse appears for 1 hour per level. 34 | Puppeteer(MoF p112) – Target mimics your actions. 35 | Refreshment(BoED p105) – Cures all non-lethal damage on creatures in a 20’ radius of the caster 36 | Remove Curse(PH p270) – Frees person or object from a curse. 37 | Scrying(PH p274)(PH3.5e)+ – Spies on subject from a distance. 38 | Sculpt Sound(PH p275) – Creates new sounds or changes existing ones. 39 | Secret Page(PH p275) – Changes one page to hide its real contents. 40 | See Invisibility(PH p275) – Reveals invisible creatures or objects. 41 | Sepia Snake Sigil(PH p276) – Creates text symbol that immobilizes reader. 42 | Slow(PH p280) – One subject per level takes only one action per round, –1 AC and attack rolls. 43 | Speak with Animals(PH p281) – You can communicate with animals. 44 | Speechlink(CAdv p157) – You and one other creature can talk, no matter how far apart. 45 | Summon Monster III(PH p286) – Summons an extraplanar creature to fight for you. 46 | Verraketh’s Shadow Crown(RoF p191) – +4 Competence bonus on Perform checks that doesn’t stack with Feat: Shadow Weave Magic. 47 | Vision of Fear(DR333 p73) – You gain knowledge of the target’s greatest or most recent fear. 48 | Warcry(BoED p111) – Creatures within a 30’ cone cower for 1d4 rounds. 49 | Winding Alleys(RoD p169) – Trap foe in phantasmal maze. 50 | Wounding Whispers(MoF p134) – Sonic aura damages foes that strike you. 51 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Bard/Bard4SpellList.txt: -------------------------------------------------------------------------------- 1 | Blinding Beauty(BoED p92) – You become as beautiful as a nymph, and can blind humanoids who look at you. 2 | Break Enchantment(PH p207) – Frees subject from enchantments, alterations, curses, and petrifaction. 3 | Celebration(MoF p84) – Intoxicate subjects. 4 | Charm Person, Mass(RoD p164)(DR312 p51) – As Charm Person, but up to 2 * Caster level of HD. 5 | Cure Critical Wounds(PH p215) – Cures 4d8 + 1 per level (max. +20). 6 | Detect Scrying(PH p219) – Alerts you to magical eavesdropping. 7 | Dimension Door(PH p221) – Teleports you a short distance. 8 | Dolorous Motes(BoED p97) – Creates clouds of flickering light (one 10’ cube per level) that dazes creatures. 9 | Dominate Person(PH p224) – Controls humanoid telepathically. 10 | Freedom of Movement(PH p233) – Subject moves normally despite impediments. 11 | Fugue of Tvash-Prull(DR328 p71) – Targets in a 30’ radius are hindered or harmed in a manner dictated by the caster’s Perform check. 12 | Hallucinatory Terrain(PH p238) – Makes one type of terrain appear like another (field into forest, or the like). 13 | Harmonize, Greater(RoS p162) – Bardic Music can be started as a Move Action, instead of a Standard Action. Also, maintaining Bardic Music is only a Move Action. 14 | Hold Monster(PH p241) – As Hold Person, but can effect any creature. 15 | Insidious Suggestion(RoE p187) – Suggestion repeats over and over in the target creature’s mind. 16 | Inspired Aim(BoED p101) – Allies within 40’ gain +2 Insight bonus on ranged attack rolls. 17 | Invisibility, Greater(PH p245) – As Invisibility, but subject can attack and stay invisible. 18 | Know Vulnerabilities(MoF p104) – Determine target’s vulnerabilities and resistances. 19 | Legend Lore(PH p246) – Lets you learn tales about a person, place, or thing. 20 | Leomund’s Secure Shelter(PH p247) – Creates study cottage. 21 | Listening Coin(CAdv p154) – You can eavesdrop through a magic coin. 22 | Locate Creature(PH p249) – Indicates direction to familiar creature. 23 | Modify Memory(PH p255) – Changes 5 minutes of subject’s memories. 24 | Neutralize Poison(PH p257) – Immunizes subject against poison, detoxifies venom in or on subject. 25 | Portal View(Und p60) – Turns target Portal transparent. 26 | Rainbow Pattern(PH p268) – Lights fascinate 24 HD of creatures. 27 | Repel Vermin(PH p271) – Insects, spiders, and other vermin stay 10’ away. 28 | Resonating Bolt(CArc p121) – Sonic energy deals 1d4 damage per level (max 10d4). 29 | Shadow Conjuration(PH p276) – Mimics conjuring below 4th level, but only 20% real. 30 | Shout(PH p279) – Deafens all within cone and deals 5d6 damage. 31 | Speak with Plants(PH p282) – You can talk to normal plants and plant creatures. 32 | Spectral Weapon(CAdv p157) – Swift. Use quasi-real weapon to make touch attacks. 33 | Speechlink(MoF p121) – You and the target can verbally communicate at any distance. 34 | Stone Shatter(MoF p124) – Shatter a stone object or creature. 35 | Summon Monster IV(PH p286) – Calls an extraplanar creature to fight for you. 36 | Unluck(CArc p128) – Target remakes all rolls, uses worst result for 1 round per level. 37 | Wall of Dispel Magic(Und p63) – Creatures passing through a transparent wall become subjects of targeted Dispel Magic. 38 | War Cry(CAdv p158)(MoF p132) – Swift. Gain +2 Morale bonus on attack and damage rolls, or +4 if you Charge, for 1 round per level. Any opponent you damage must save or become panicked for 1 round. 39 | Zone of Silence(PH p303) – Keeps eavesdroppers from overhearing conversations. 40 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Bard/Bard5SpellList.txt: -------------------------------------------------------------------------------- 1 | Blink, Improved / Greater (CArc p99)UE p50)(CDiv p154) – Controlled blinking between the Material and Ethereal Planes grants defenses for 1 round per level. 2 | Body Harmonics(DR314 p45) – Target creature’s body vibrates, causing ability damage each round. 3 | Cure Light Wounds, Mass(PH p216) – Cures 1d8 damage +1 per level for many creatures. 4 | Dispel Magic, Greater(PH p210)(PH3.5e) – As Dispel Magic, but up to +20 on the check. 5 | Dream(PH p225) – Sends message to anyone sleeping. 6 | False Vision(PH p229) – Fools scrying with an illusion. 7 | Heroism, Greater(PH p285) – Gives +4 bonus on attack rolls, saves, skill checks; immunity to fear; temporary hp. 8 | Improvisation(CAdv p152) – You gain a pool of Luck bonus points equal to twice your caster level and can spend them to improve attack rolls, skill checks, and ability checks. 9 | Inescapable Swarm(DR333 p72) – Targets feel as though they are covered by an invisible swarm of insects. 10 | Leomund’s Hidden Lodge(CArc p113) – Creates a sturdy cottage camouflaged to blend into natural surroundings. 11 | Mind Fog(PH p253) – Subjects in fog get a –10 on Will saves & Wisdom checks. 12 | Mirage Arcana(PH p254) – As Hallucinatory Terrain, plus structures. 13 | Mislead(PH p255) – Turns you invisible and creates illusory double. 14 | Nightmare(PH p257) – Send vision dealing 1d10 damage, fatigue. 15 | Persistent Image(PH p260) – As Major Image, but no concentration required. 16 | Reflective Disguise, Mass(Und p61) – Viewers see subjects as their own species and gender. 17 | Seeming(PH p275) – Changes the appearance of one person per two levels. 18 | Shadow Evocation(PH p277) – Mimics evocation of lower than 5th level, but only 20% real. 19 | Shadow Walk(PH p277) – Step into shadow to travel rapidly. 20 | Song of Discord(PH p281) – Forces targets to attack each other. 21 | Suggestion, Mass(PH p285) – As Suggestion, plus one subject per level. 22 | Summon Monster V(PH p287) – Summons an extraplanar creature to fight for you. 23 | Telepathy Block(BoED p109) – Blocks all telepathic communication within an 80’ radius. 24 | Unfettered Heroism(RoE p190) – Spend more than one Action Point per round, plus gain one free Action Point per round. 25 | Wail of Doom(CAdv p158) – Deal 1d4 per level damage in a 30’ cone, plus targets are panicked or shaken. 26 | Wall of Greater Dispel Magic(Und p63) – Creatures passing through a transparent wall become subjects of targeted Greater Dispel Magic. 27 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Bard/Bard6SpellList.txt: -------------------------------------------------------------------------------- 1 | Analyze Dweomer(PH p197) – Reveals magical aspects of subject. 2 | Animate Objects(PH p199) – Objects attack your foes. 3 | Bestow Curse, Greater(CDiv p153)(CDivErrata)+(RoD p164) – As Bestow Curse, but more severe penalties. 4 | Cacophonic Shield(CAdv p144)(MoF p83) – Shield 10’ from you blocks sound, deals 1d6+1 per level Sonic damage, and deafens creatures passing through. 5 | Cat’s Grace, Mass(PH p208) – As Cat’s Grace, affects one subject per level. 6 | City Stride(RoD p164) – Teleport between two cities. 7 | Cure Moderate Wounds, Mass(PH p216) – Cures 2d8 damage + 1 per level for many creatures. 8 | Dirge(MoF p89) – Enemies suffer 2 points of Strength & Dexterity damage per round. 9 | Dominate Person, Mass(DR312 p51) – As Dominate Person, but up to 2 * Caster level of HD. 10 | Eagle’s Splendor, Mass(PH p225) – As Eagle’s Splendor, affects one subject per level. 11 | Empyreal Ecstasy(BoED p98) – Targets become immune to pain and mind-influencing effects, and take half damage from melee and ranged attacks; –4 to skill checks. 12 | Eyebite(PH p228) – Target becomes panics, sickened, and comatose. 13 | Find the Path(PH p230) – Shows most direct way to a location. 14 | Fox’s Cunning, Mass(PH p233) – As Fox’s Cunning, affects one subject per level. 15 | Gate Seal(FR p70) – Permanently seals a Gate or Portal. 16 | Geas, Mass Lesser(DR312 p51) – As Lesser Geas, but affects one subject per level. 17 | Geas/Quest(PH p234) – As Lesser Geas, plus it affects any creature. 18 | Heroes’ Feast(PH p240) – Ford for one creature per level, cures, and grants combat bonuses. 19 | Hindsight(CAdv p151) – You see into the past. 20 | Nixie’s Grace(DR314 p46) – Caster gains attributes of a Nixie, including enhancements to Charisma, Dexterity, & Wisdom, the ability to breath water, and Damage Reduction 5 / cold iron. 21 | Otto’s Irresistible Dance(PH p259) – Forces subject to dance. 22 | Permanent Image(PH p260) – Includes sight, sound, and smell. 23 | Programmed Image(PH p265) – As Major Image, plus triggered by an event. 24 | Project Image(PH p265) – Illusory double can talk and cast spells. 25 | Protégé(CAdv p155) – Subject can use Bardic Music and Bardic Knowledge as a Bard of half your level. 26 | Scrying, Greater(PH p275)(PH3.5e)+ – As Scrying, but faster and longer. 27 | Shout, Greater(PH p279) – Devastating yell deals 10d6 sonic damage; stuns creatures, damages objects. 28 | Summon Monster VI(PH p287) – Summons an extraplanar creature to fight for you. 29 | Sympathetic Vibration(PH p291) – Inflicts 2d10 damage per round on a free-standing structure. 30 | Symphonic Nightmare(DR328 p72) – Disruptive music fills the target’s sleep, preventing him from resting, regaining spells, etc. 31 | Veil(PH p298) – Changes appearance of group of creatures. 32 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Cleric/Cleric0SpellList.txt: -------------------------------------------------------------------------------- 1 | Create Water(PH p215) – Creates 2 gallons/level of pure water. 2 | Cure Minor Wounds(PH p216) – Cures 1 point of damage. 3 | Detect Magic(PH p219) – Detects spells and magic items within 60’. 4 | Detect Poison(PH p219) – Detects poison in one creature or small object. 5 | Guidance(PH p238) – +1 on one attack roll, saving throw, or skill check. 6 | Inflict Minor Wounds(PH p244) – Touch attack, 1 point of damage. 7 | Fleeting Flame(DR326 p73) – Gives you a +2 bonus on one Bluff, Diplomacy, or Intimidate check. 8 | Light(PH p248) – Object shines like a torch. Mending(PH p253) – Makes minor repairs on an object. 9 | Purify Food and Drink(PH p267) – Purifies 1 cubic foot per level of food or water. 10 | Read Magic(PH p269) – Reads scrolls and spellbooks. 11 | Resistance(PH p272) – Subject gains +1 resistance bonus on all saving throws. 12 | Virtue(PH p289) – Subject gains 1 temporary hp. 13 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Cleric/Cleric1SpellList.txt: -------------------------------------------------------------------------------- 1 | Airbubble(DR314 p45) – If underwater, the caster’s head is surrounded by air for 1 minute per level. 2 | Bane(PH p203) – Enemies take –1 on attack rolls and saves against fear. 3 | Bless Water(PH p205) – Makes Holy Water. 4 | Bless(PH p205) – Allies gain+1 morale bonus to attacks & saves vs. fear. 5 | Cause Fear(PH p208) – One creature of 5HD or less flees for 1d4 rounds. 6 | Command(PH p211) – One subject obeys selected command for 1 round. 7 | Comprehend Languages(PH p212) – You understand all spoken and written languages. 8 | Cure Light Wounds(PH p215) – Cures 1d8 + 1 per level damage (max +5). 9 | Curse Water(PH p216) – Makes Unholy Water. 10 | Deathwatch(PH p217) – Reveals how near death subjects within 30’ are. 11 | Detect Chaos(PH p218) – Reveals chaotic creatures, spells, or objects. 12 | Detect Evil(PH p218) – Reveals evil creatures, spells, or objects. 13 | Detect Good(PH p219) – Reveals good creatures, spells, or objects. 14 | Detect Law(PH p219) – Reveals lawful creatures, spells, or objects. 15 | Detect Undead(PH p220) – Reveals undead within 60’. 16 | Divine Favor(PH p224) – You gain +1 per three levels on attack and damage rolls. 17 | Doom(PH p225) – One subject takes –2 on attack rolls, damage rolls, saves, and checks. 18 | Endure Elements(PH p226) – Exist comfortably in hot or cold environments. 19 | Entropic Shield(PH p227) – Ranged attacks against you suffer 20% miss chance. 20 | Eyes of the Avoral(BoED p99) – Subject gets +8 on Spot checks. 21 | Faith Healing(MoF p93) – Cures 8 hp +1/level damage (max +5) to worshiper of your patron. 22 | Float(DR334 p74) – Makes a willing creature or object buoyant. 23 | Glimpse of Fear(DR333 p71) – A flash of horror causes the target to become shaken. 24 | Grave Strike(CAdv p150) – Swift. You can Sneak attack Undead for 1 round. 25 | Hide from Undead(PH p241) – Undead can’t perceive one subject per level. 26 | Ice Gauntlet(DR312 p65) – One hand covered with ice, which acts like a +1 Spiked Gauntlet that does +1 Cold damage. 27 | Inflict Light Wounds(PH p244) – Touch deals 1d8 damage +1 per level (max +5). 28 | Lantern Light(BoED p101) – Ranged touch attacks deal 1d6 points of damage. 29 | Magic Stone(PH p251) – Three stones become +1 projectiles, 1d6+1 damage. 30 | Magic Weapon(PH p251) – Weapon gains +1 enhancement bonus. 31 | Nimbus of Light(CDiv p170) – Sunlight illuminates you until released as an attack for 1d8 +1/lvl damage. 32 | Obscuring Mist(PH p258) – Fog surrounds you. 33 | Omen of Peril(CDiv p171)(RoD p166) – You know how dangerous the future will be. 34 | Protection from Chaos(PH p266) – +2 bonus to AC & saves against chaos, counters mind control, & hedges out elementals & outsiders. 35 | Protection from Evil(PH p266) – +2 bonus to AC & saves against evil, counters mind control, & hedges out elementals & outsiders. 36 | Protection from Good(PH p266) – +2 bonus to AC & saves against good, counters mind control, & hedges out elementals & outsiders. 37 | Protection from Law(PH p266) – +2 bonus to AC & saves against law, counters mind control, & hedges out elementals & outsiders. 38 | Ray of Hope(BoED p105) – Subject gains +2 Morale bonus on attacks, saves, & checks. 39 | Remove Fear(PH p271) – Suppresses fear or gives +4 on saves against fear for one subject + one per four levels. 40 | Resurgence(CDiv p177) – You grant a subject a second chance at a saving throw. 41 | Sanctuary(PH p274) – Opponents can’t attack you and you can’t attack. 42 | Scholar’s Touch(RoD p167) – Read book in seconds. 43 | Shield of Faith(PH p278) – Aura grants +2 (or higher) deflection bonus. 44 | Snowshoes(DR312 p65) – Subject can walk on ice & snow without falling and not leaving an obvious trail. 45 | Summon Monster I(PH p285) – Summons an extraplanar creature to fight for you. 46 | Summon Undead I(PGF p114) – Summons undead to fight for you. 47 | Touch of Jorasco(RoE p190) – Touch heals up to 2hp/level, divided among multiple targets. 48 | Vigor, Lesser(CDiv p186)(DR324 p103)+ – Creature heals 1hp per round (max 15 rounds). 49 | Vision of Glory(MoF p131) – Target gains +1 morale bonus on next saving throw. 50 | Vision of Heaven(BoED p111) – Evil creature is dazed for 1 round. 51 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Cleric/Cleric2SpellList.txt: -------------------------------------------------------------------------------- 1 | Aid(PH p196) – +1 on attack rolls, +1 on saves against fear, 1d8 temporary hp +1/lvl (max +10) 2 | Align Weapon(PH p197) – Weapon becomes good, evil, lawful, or chaotic. 3 | Augury(PH p202) – Leans whether an action will be good or bad. 4 | Aura against Flame(MoF p78) – Ignore 12 flame damage/round and extinguish fires. 5 | Bear’s Endurance(PH p203) – Subject gains +4 Constitution for 1 minute per level. 6 | Body Blades(MoF p82) – You attack as if armed, deal bonus damage, harm grapples. 7 | Brambles(CDiv p156) – Wood weapon grows spikes that deal +1 damage per caster level (max +10). 8 | Bull’s Strength(PH p207) – Subject gains +4 Strength for 1 minute per level. 9 | Calm Emotions(PH p207) – Calms creatures, negating emotion effects. 10 | Consecrate(PH p212) – Fills area with positive energy, making undead weaker. 11 | Cure Moderate Wounds(PH p216) – Cures 2d8 damage +1 per level (max +10). 12 | Curse of Ill Fortune(CDiv p160) (MoF p86)(MoFe)+ – Subject suffers –3 penalty on attacks, saves, and checks. 13 | Darkness(PH p216) – 20’ radius of supernatural shadow. 14 | Death Knell(PH p217) – Kills dying creature; you gain 1d8 temporary hp, +2 Strength, and 1 level. 15 | Deific Vengeance(CDiv p161) – God’s punishment deals 1d6 damage per two levels (max 5d6). 16 | Delay Poison(PH p217) – Stops poison from harming subject for 1 hour per level. 17 | Desecrate(PH p218) – Fills area with negative energy, making undead stronger. 18 | Dispel Ward(DR313 p90) – As Dispel Magic, but only dispels Abjuration spells cast on objects and/or areas. 19 | DivineInsight(CAdvp147) - You gain Insight bonus of 5 + caster level on one single skill check. 20 | Eagle’s Splendor(PH p225) – Subject gains +4 Charisma for 1 minute per level. 21 | Ease Pain(BoED p97) – Remove lingering effects of pain. 22 | Elation(BoED p98) – Allies gain +2 Morale bonus to Strength & Dexterity, and +5’ movement. 23 | Enthrall(PH p227) – Captivates all within 100’ + 10’ per level. 24 | Estanna’s Stew(BoED p99) – Conjures stew the heals 1d6+1 per serving (one serving per two levels). 25 | Find Traps(PH p230) – Notice traps as a rogue does. 26 | Gentle Repose(PH p234) – Preserves one corpse. 27 | Hand of Divinity(MoF p98) – Gives +2 sacred or profane bonus on worshipers of your patron. 28 | Healing Lorecall(CAdv p151) If you have 5 or more ranks in Heal, you can remove harmful conditions with Conjuration (healing) spells. 29 | Hold Person(PH p241) – Paralyzes one person for up to 1 round per level. 30 | Inflict Moderate Wounds(PH p244) – Touch attack, 2d8 +1 per level (max +10). 31 | Insignia of Alarm(RoD p166) – Alert the bearers of a special insignia. 32 | Iron Silence(CAdv p153) Armor touched has no Armor Check penalty on Hide and Move Silently checks for 1 hour per level. 33 | Lastai’s Caress(BoED p102) – Intense feelings of good leave an evil subject cowering, frightened, nauseated, or shaken. 34 | Make Whole(PH p252) – Repairs an object. 35 | Mark of the Outcast(Und p59) – Subject takes –5 penalty on Bluff and Diplomacy checks and –2 penalty to AC. 36 | Owl’s Wisdom(PH p259) – Subject gains +4 Wisdom for 1 minute per level. 37 | Phade’s Fearsome Aspect(DR333 p72) – The target looks like a demon, gaining a +5 bonus on Intimidate checks and can Demoralize as a Swift Action. 38 | Remove Addiction(BoED p105) – Cures target of drug addiction. 39 | Remove Paralysis(PH p271) – Frees one or more creatures from paralysis, hold, or Slow. 40 | Resist Energy(PH p246) – Ignores the first 10 (or more) points of damage per attack from a specified energy type. 41 | Restoration, Lesser(PH p272) – Dispels magic ability penalty or repairs 1d4 ability damage. 42 | Shatter(PH p278) – Sonic vibration damages objects or crystalline creatures. 43 | Shield Other(PH p278) – You take half of subject’s damage. 44 | Silence(PH p279) – Negate sound in 15’ radius. 45 | Sound Burst(PH p281) – Deals 1d8 sonic damage to subjects; may stun them. 46 | Spiritual Weapon(PH p283) – Magical weapon attacks on its own. 47 | Status(PH p284) – Monitors condition & position of allies. 48 | Stone Bones(MoF p123) – Corporeal undead gains +3 natural armor bonus. 49 | Stone Fist(RoS p163) – Caster’s fists have their damage increased, are treated as ‘armed’, and do Bludgeoning damage. Dwarves and Goliaths have their fists treated as Cold Iron. 50 | Stonemantle(DR314 p29) – Target object becomes as hard as stone. 51 | Summon Monster II(PH p286) – Summons an extraplanar creature to fight for you. 52 | Summon Undead II(PGF p114) – Summons undead to fight for you. 53 | Undetectable Alignment(PH p297) – Conceals alignment for 24 hours. 54 | Unseen Crafter(RoE p191) – Invisible force obeys your command and can use the Craft skill. 55 | Venomous Volley(DR330 p73) – Cone of fangs damages and weakens targets. 56 | Wave of Grief(CDiv p188) – All in cone receive a –3 penalty on attacks, checks, and saves. 57 | Zone of Truth(PH p303) – Subjects within range cannot lie. 58 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Cleric/Cleric6SpellList.txt: -------------------------------------------------------------------------------- 1 | Animate Objects(PH p199) – Objects attack your foes. 2 | Antilife Shell(PH p199) – 10’ radius field hedges out living creatures. 3 | Auril’s Flowers(DR312 p62) – 30’ radius of non-dry ground explodes with rocks and ice. 4 | Azuth’s Exalted Triad(MoF p78) – Cast a prepared spell three times. 5 | Banishment(PH p202) – Banishes 2 HD per level of extraplanar creatures. 6 | Bear’s Endurance, Mass(PH p203) – As Bear’s Endurance, affects one subject per level. 7 | Blade Barrier(PH p205) – Wall of blades deals 1d6 per level damage. 8 | Bull’s Strength, Mass(PH p207) – As Bull’s Strength, affects one subject per level. 9 | Celestial Blood(BoED p94) – Grant energy resistance, +4 on saves against poison, and Damage Reduction 10 / evil. 10 | Cold Snap(DR312 p62) – Lowers the air temperature (possibly below freezing) in a 1 mile radius area for 2d4 hours (2x for Druids). 11 | Cometfall(CDiv p159)(CDivErrata)+ – Comet falls atop foes, damaging them and knocking them prone. 12 | Create Undead(PH p215) – Create ghouls, ghasts, mummies, or mohrgs. 13 | Cure Moderate Wounds, Mass(PH p216) – Cures 2d8 damage +1 per level for many creatures. 14 | Dispel Magic, Greater(PH p210)(PH3.5e)+ – As Dispel Magic, but up to +20 on the check. 15 | Eagle’s Splendor, Mass(PH p225) – As Eagle’s Splendor, affects one subject per level. 16 | Energy Immunity(CArc p105) – Subject and equipment gain immunity to damage of a specified energy type. 17 | Find the Path(PH p230) – Shows most direct way to a location. 18 | Forbiddance(PH p232) – Blocks planar travel, damages creatures of different alignment. 19 | Gate Seal(FR p70) – Permanently seals a Gate or Portal. 20 | Geas/Quest(PH p234) – As Lesser Geas, plus it affects any creature. 21 | Glyph of Warding, Greater(PH p237) – As Glyph of Warding, but up to 10d8 damage or a 6th level spell. 22 | Harm(PH p239) – Deals 10 hp per level to target 23 | Heal(PH p239) – Cures 10 points per level, all diseases and mental conditions. 24 | Heroes’ Feast(PH p240) – Ford for one creature per level, cures, and grants combat bonuses. 25 | Inflict Moderate Wounds, Mass(PH p244) – Deals 2d8 + 1 / level to many creatures. 26 | Owl’s Wisdom, Mass(PH p259) – As Owl’s Wisdom, affects one subject per level. 27 | Planar Ally(PH p261) – As Planar Ally, Lesser, but up to 12 HD. 28 | Sarcophagus of Stone(DR313 p91) – Creates an air-tight stone sarcophagus around one target of up to Medium-size. The sarcophagus is permanent, so the target must either be freed or will suffocate. 29 | Secure Corpse(BoED p106) – Traps corpse inside holy symbol. 30 | Serpent Storm(DR330 p71) – Creates a hail of deadly serpents that bite and poison everyone in the area. 31 | Stone Body(PGF p113) – Your body becomes living stone. 32 | Stone Metamorphosis, Greater(Und p61) – Changes 10 cubic feet + 10 cubic feet per level of stone into another type of stone. 33 | Summon Monster VI(PH p287) – Summons an extraplanar creature to fight for you. 34 | Suppress Glyph(MoF p126) – You notice but do not trigger magical writing traps. 35 | Symbol of Fear(PH p290) – Triggered rune panics nearby creatures. 36 | Symbol of Persuasion(PH p290) – Triggered rune charms nearby creatures. 37 | Touch of Adamantine(BoED p110) – Weapon gains the properties of an adamantine weapon. 38 | Undeath to Death(PH p297) – Destroys 1d4 per level HD of undead (max 20d4). 39 | Vengeance Halo(BoED p111) – Any creature that slays the spell’s recipient takes 1d6 per level damage. 40 | Vigorous Circle(CDiv p187) (DR324 p103)+ – As Mass Lesser Vigor, but 3hp per round (max 40 rnds). 41 | Visage of the Deity(CDiv p187) – As Lesser Visage of the Deity, but you become Celestial or Fiendish. 42 | Wind Walk(PH p302) – You and your allies turn vaporous and travel fast. 43 | Word of Recall(PH p303) – Teleports you back to a designated place. 44 | Zealot Pact(CDiv p191) – You automatically gain combat bonuses when you attack someone of opposite alignment. 45 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Cleric/Cleric7SpellList.txt: -------------------------------------------------------------------------------- 1 | Azuth’s Spell Shield(MoF p79) – Subjects gain +12 +1/level SR. 2 | Bastion of Good(BoED p92) – Acts as Minor Glob of Invulnerability and a double-strength Magic Circle against Evil. 3 | Bestow Curse, Greater(CDiv p153)(CDivErrata)+(RoD p164) – As Bestow Curse, but more severe penalties. 4 | Blasphemy(PH p205)(PH3.5e)+ – Kills, paralyzes, weakens, or dazes non-evil subjects. 5 | Blood to Water(DR314 p45) – Changes some of the blood in up to three creatures into water, causing Constitution damage. 6 | Control Weather(PH p214) – Changes weather in local area. 7 | Cure Serious Wounds, Mass(PH p216) – Cures 3d8 damage +1 per level for many creatures. 8 | Death Dragon(MoF p88) – You gain +4 natural armor, +4 deflection, and natural attacks. 9 | Destruction(PH p218) – Kills subject and destroys remains. 10 | Dictum(PH p220) – Kills, paralyzes, slows, or deafens non-lawful subjects. 11 | Ethereal Jaunt(PH p227) – You become ethereal for 1 round per level. 12 | Fortunate Fate(MoF p95) – Target immediately receives a Heal if killed by damage. 13 | Holy Word(PH p242) – Kills, paralyzes, blinds, or deafens non-good subjects. 14 | Humanoid Essence, Greater(RoE p186) – Gives a Construct the Humanoid type. 15 | Inflict Serious Wounds, Mass(PH p244) – Deals 3d8 + 1 / level to many creatures. 16 | Refuge(PH p270) – Alters item to transport its possessor to you. 17 | Regenerate(PH p270) – Subject’s severed limbs grow back, cures 4d8 damage +1 per level (max +35). 18 | Renewal Pact(CDiv p177) – Creature is automatically healed if adverse condition affects it. 19 | Repulsion(PH p271) – Creatures can’t approach you. 20 | Restoration, Greater(PH p272) – As Restoration, plus restores all levels and ability scores. 21 | Resurrection(PH p273) – Fully restore dead subject. 22 | Righteous Glare(BoED p105) – Your gaze attack kills evil creatures with less than 5HD, causes Fear in others. 23 | Righteous Smite(BoED p106) – Deals 1d6 damage per level (1d8 damage per level to Evil Outsiders) in a 20’ radius and blinds Evil foes. 24 | Righteous Wrath of the Faithful(CDiv p178)(CDivErrata)+ – Your allies get bonuses, especially if they worship your deity. 25 | Scrying, Greater(PH p275)(PH3.5e)+ – As Scrying, but faster and longer. 26 | Slime Wave(CDiv p180)(CDivErrata)+ – Creates a 15’ spread of Green Slime. 27 | Spell Resistance, Mass(CDiv p181) – As Spell Resistance, but multiple targets. 28 | Summon Monster VII(PH p287) – Summons an extraplanar creature to fight for you. 29 | Symbol of Stunning(PH p291) – Triggered rune stuns nearby creatures. 30 | Symbol of Weakness(PH p291) – Triggered rune weakens nearby creatures. 31 | Tomb of Light(BoED p110) – Entraps and harms evil extraplanar creatures. 32 | Withering Palm(Eb p117)(CArc p130) – Touch attack deals 1 point of Strength damage plus 1 point of Constitution damage per two levels. 33 | Word of Chaos(PH p2303 – Kills, confuses, stuns, or deafens non-chaotic subjects. 34 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Cleric/Cleric8SpellList.txt: -------------------------------------------------------------------------------- 1 | Antimagic Field(PH p200) – Negates magic within 10’. 2 | Brain Spider(CDiv p156) – Listen to thoughts of up to eight other creatures. 3 | Brilliant Blade(CArc p100) – Weapon or projectiles shed light, ignore armor. 4 | Cloak of Chaos(PH p210) – +4 to AC, +4 resistance, SR 25 vs. lawful spells. 5 | Create Greater Undead(PH p215) – Creates shadows, wraiths, spectres, or devourers. 6 | Cure Critical Wounds, Mass(PH p216) – Cures 4d8 damage +1 per level for many creatures. 7 | Death Pact(CDiv p161)(MoF p88) – Deity brings you back from the dead automatically. 8 | Dimensional Lock(PH p221) – Teleportation and interplanar travel are blocked for 1 day per level. 9 | Discern Location(PH p222) – Reveals the exact location of a creature or object. 10 | Earthquake(PH p225) – Intense tremor shakes 5’ per level radius. 11 | Fire Storm(PH p231) – Deals 1d6 per level fire damage. 12 | General of Undeath(MoF p96) – Increases your maximum HD of controlled undead by 10 times your level. 13 | Golem Immunity(RoE p186) – Grants a Construct the ‘magic immunity special quality’ of a particular golem. 14 | Heat Leech(DR312 p64) – Living creatures in a 30’ area loose hp due to cold & the caster gains them as healing & temporary hp. 15 | Holy Aura(PH p241) – +4 to AC, +4 resistance, SR25 against evil spells. 16 | Illusion Purge(RoE p187) – Dispels illusions within 5’/level radius. 17 | Inflict Critical Wounds, Mass(PH p244) – Deals 3d8 + 1 / level to many creatures. 18 | Planar Ally, Greater(PH p261) – As Lesser Planar Ally, but up to 18 HD. 19 | Shield of Law(PH p278) – +4 to AC, +4 resistance, SR25 against chaotic spells. 20 | Spell Immunity, Greater(PH p281) – As Spell Immunity, but up to 8th level spells. 21 | Spread of Contentment(BoED p107) – Calms hostile creatures within 10’ per level radius. 22 | Stormrage(CDiv p182)(MoF p125) – Fly, Wind Wall, protection from strong winds, and make electrical attacks. 23 | Summon Monster VIII(PH p287) – Summons an extraplanar creature to fight for you. 24 | Symbol of Death(PH p289) – Triggered rune slays nearby creatures. 25 | Symbol of Insanity(PH p290) – Triggered rune renders nearby creatures insane. 26 | Symbol, Death Symbol of Bane(MoF p127) – Functions like a Symbol of Death, plus 1d12 Cold damage and Doom effect. 27 | Symbol, Symbol of Spell Loss(MoF p127) – Spellcasters in the area loose highest-level spell. 28 | Unholy Aura(PH p297) – +4 to AC, +4 resistance, SR25 against good spells. 29 | Wall of Greater Dispel Magic(Und p63) – Creatures passing through a transparent wall become subjects of targeted Greater Dispel Magic. 30 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Cleric/Cleric9SpellList.txt: -------------------------------------------------------------------------------- 1 | Astral Projection(PH p201) – Projects you and companions into the Astral Plane. 2 | End to Strife(BoED p98) – Any attack made within 80’ of the caser causes attacker to take 1d6 points of lethal or non-lethal damage per caster level (max 20d6). 3 | Energy Drain(PH p226) – Subject gains 2d4 negative levels. 4 | Etherealness(PH p228) – Travel to Ethereal Plane with companions. 5 | Feast of Champions(Eb p111) – Food for one creature per level heals and grants comprehensive bonuses. 6 | Gate(PH p234) – Connects two planes for travel or summoning. 7 | Heal, Mass(PH p239) – As Heal, but with several subjects. 8 | Implosion(PH p243) – Kills one creature per round. 9 | Miracle(PH p254) – Requests a deity’s intercession. 10 | Raise from the Deep(DR314 p46) – Target object (usually a sunken ship) rises to the surface of the water and floats for 1 hour per level, allowing salvage or repair. 11 | Soul Bind(PH p226) – Traps newly dead soul to prevent Resurrection. 12 | Storm of Vengeance(PH p285) – Storm rains acid, lightning, and hail. 13 | Sublime Revelry(BoED p109) – Targets immune to pain and mind-influencing effects, and take half damage from melee and ranged attacks. 14 | Summon Elemental Monolith(CArc p124) – Calls a powerful elemental creature to fight for you. 15 | Summon Monster IX(PH p288) – Summons an extraplanar creature to fight for you. 16 | True Resurrection(PH p296) – As Resurrection, plus remains aren’t needed. 17 | Visage of the Deity, Greater(CDiv p187) – As Less Visage of the Deity, but you become a Half- Celestial or Half-Fiend. 18 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Druid/Druid0SpellList.txt: -------------------------------------------------------------------------------- 1 | Create Water(PH p215) – Creates 2 gallons/level of pure water. 2 | Cure Minor Wounds(PH p216) – Cures 1 point of damage. 3 | Detect Crossroads(MoF p88) – Detect fey crossroads within 60’. 4 | Detect Magic(PH p219) – Detects spells and magic items within 60’. 5 | Detect Poison(PH p219) – Detects poison in one creature or small object. 6 | Flare(PH p232) – Dazzles one creature (–1 on attack rolls). 7 | Ground Smoke(DR326 p73) – Prevents smoke from rising from a small fire. 8 | Guidance(PH p238) – +1 on one attack roll, saving throw, or skill check. 9 | Know Direction(PH p246) – You discern north. 10 | Light(PH p248) – Object shines like a torch. Mending(PH p253) – Makes minor repairs on an object. 11 | Naturewatch(CDiv p170)(MoF p110) – See how wound level of animals and plants within 30’. 12 | Purify Food and Drink(PH p267) – Purifies 1 cubic foot per level of food or water. 13 | Ram’s Might(MoF p112) – You hands become harder and your unarmed attacks inflict normal damage. 14 | Read Magic(PH p269) – Reads scrolls and spellbooks. 15 | Resistance(PH p272) – Subject gains +1 resistance bonus on all saving throws. 16 | Snowshoes(DR312 p65) – Subject can walk on ice & snow without falling and not leaving an obvious trail. 17 | Vengeful Mount(DR326 p74) – Makes an animal more difficult to ride or handle. 18 | Virtue(PH p289) – Subject gains 1 temporary hp. 19 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Druid/Druid1SpellList.txt: -------------------------------------------------------------------------------- 1 | Animate Water(CArc p96) – Turn Small or smaller quantity of water into an animated object. 2 | Animate Wood(CArc p96) – Turn Small or smaller wooden item into an animated object. 3 | Beget Bogun(CDiv p152) – You create a Tiny nature servant. 4 | Calm Animals(PH p207) – Calms (2d4 + level) HD of animals. 5 | Camouflage(CDiv p157)(Und p56) – Subject gains a +10 bonus on Hide checks. 6 | Charm Animal(PH p208) – Makes one animal your friend. 7 | Claws of the Beast(PGF p101) – Your hands become 1d6 weapons. 8 | Cure Light Wounds(PH p215) – Cures 1d8 + 1 per level damage (max +5). 9 | Deep Breath(DR314 p46) – Caster’s lungs constantly refill with air. 10 | Detect Animals or Plants(PH p218) – Detects species of animals or plants. 11 | Detect Snares and Pits(PH p220) – Reveals natural or primitive traps. 12 | Endure Elements(PH p226) – Exist comfortably in hot or cold environments. 13 | Entangle(PH p227) – Plants entangle everyone in a 40’ radius. 14 | Extend Shifting(RoE p185) – Extend duration of Shifting racial ability by 4 rounds. 15 | Eyes of the Avoral(BoED p99) – Subject gets +8 on Spot checks 16 | Faerie Fire(PH p229) – Outline subjects with light, canceling Blur, concealment, etc. 17 | Goodberry(PH p237) – 2d4 berries each cure 1 hp (max 8 hp per 24 hours). 18 | Hawkeye(CAdvp151) Increaserangeincrementsby 50%, +5 on Spot checks. 19 | Hawkeye(CDiv p166) – You gain +5 on Spot checks and fire ranged weapons better. 20 | HealthfulRest(CAdvp151) Subjectshealattwicethe normal rate. 21 | Hide from Animals(PH p241) – Animals can’t perceive one subject per level. 22 | Jump(PH p246) – Subject gains bonus on Jump checks. 23 | Longstrider(PH p249) – Increases your speed. 24 | Magic Fang(PH p250) – One natural weapon of 25 | subject creature gets +1 on attack and damage. 26 | Magic Stone(PH p251) – Three stones become +1 projectiles, 1d6+1 damage. 27 | Obscuring Mist(PH p258) – Fog surrounds you. 28 | Omen of Peril(CDiv p171)(RoD p166) – You know how dangerous the future will be. 29 | Pass without Trace(PH p259) – One subject per level leaves no tracks or scent trail for 1 hour per level. 30 | Produce Flame(PH p265) – 1d6 damage + 1 per level, touch or thrown. 31 | Raging Flame(DR314 p21) – A non-magical fire burns twice as bright, twice as hot, but half as long. 32 | Raptor’s Sight(RotW p175) – Gain +4 on Spot checks; range increment penalty is halved. 33 | Ride of the Valenar(RoE p189) – Gain +5 Competence bonus on Ride checks for 10 minutes per level. 34 | Sandblast(CDiv p178) – You fire hot sand that deals 1d6 nonlethal damage & stuns enemies. 35 | Shifter Prowess(RoE p190) – Shifter racial bonuses to skills increase to +8 while shifting. 36 | Shillelagh(PH p278) – Cudgel or quarterstaff becomes a +1 weapon for 1 minute per level. 37 | Silvered Claws(BoED p107) – One creature’s natural attacks are treated as silvered weapons. 38 | Slow Burn(DR314 p21) – A non-magical fire burns twice as long with the same amount of fuel, & is hard to put out. 39 | Speak with Animals(PH p281) – You can communicate with animals. 40 | Speed Swim(MoF p121) – Target gains swim speed 30’. 41 | Stonemantle(DR314 p29) – Target object becomes as hard as stone. 42 | Summon Nature’s Ally I(PH p288) – Calls creature to fight. 43 | Traveler’s Mount(CDiv p184) – Creature moves faster but can’t attack. 44 | Vigor, Lesser(CDiv p186) (DR324 p103)+ – Creature heals 1hp per round (max 15 rounds). 45 | Vine Strike(CAdv p158) – Swift. You can Sneak Attack Plant Creatures for 1 round. 46 | Wood Wose(CDiv p186) – Nature spirit does simple tasks for you 47 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Druid/Druid4SpellList.txt: -------------------------------------------------------------------------------- 1 | Air Walk(PH p196) – Subject treads on air as if solid (climb at 45 degree angle). 2 | Antiplant Shell(PH p200) – Keeps animated plants at bay. 3 | Arc of Lightning(CArc p97) – Line of electricity between two creatures (1d6/level damage). 4 | Aspect of the Werebeast(RoE p183) – Gain bonuses from hybrid animal form. 5 | Blight(PH p206) – Withers one plant or deals 1d6 per level damage to a plant creature. 6 | Blinding Beauty(BoED p92) – You become as beautiful as a nymph, and can blind humanoids who look at you. 7 | Bottle of Smoke(CDiv p155) – Uncorking a bottle creates a fast horse made of smoke. 8 | Camouflage, Mass(CDiv p157) (MoF p106)(MoFe)+ – As Camouflage, but multiple targets. 9 | Chain of Eyes(CDiv p158) – You attach a magical sensor to a target, who can unwittingly pass it on to anyone he/she touches, and so on. 10 | Command Plants(PH p211) – Sway the actions of one or more plant creatures. 11 | Control Water(PH p214) – Raises, lowers bodies of water. 12 | Corona of Cold(DR312 p63) – A 10’ radius area of cold protects the caster from heat and causes damage & shivers to anyone else in the area. 13 | Cure Serious Wounds(PH p216) – Cures 3d8 damage + 1 per level (max +15). 14 | Desert Burial(DR331 p71) – Buries targets up to their necks in sand. 15 | Dispel Magic(PH p223)(PH3.5e)+ – Cancels magical spells and effects. 16 | Energy Vortex(CDiv p164) – Burst of energy centered on you damages nearby creatures. 17 | Eye of the Hurricane(DR314 p38) – The caster is surrounded by a 40’ radius sphere of hurricane- force winds, with a 10’ radius “eye” in the center. The effect moves with the caster. 18 | Forestfold(CAdv p149)(CDiv p166) – Gain +20 Competence bonus on Hide and Move Silently checks in one type of terrain. 19 | Flame Strike(PH p231) – Smites foes with divine fire (1d6 / level). 20 | Freedom of Movement(PH p233) – Subject moves normally despite impediments. 21 | Freeze(DR312 p63) – Ray encases the target in a block of ice for 1 round per 2 levels. 22 | Giant Vermin(PH p235) – Turns centipedes, scorpions, or spiders into giant vermin. 23 | Icelance(PGF p105) – Changes ice into lance, which attacks target for 5d6 damage and stuns for 1d4 rounds. 24 | Ice Storm(PH p243) – Hail deals 5d6 damage in cylinder 40’ across. 25 | Jaws of the Wolf(MoF p102) – One carving/2 levels turns into a wolf with SR 13 and frightful presence. 26 | Land Womb(MoF p104) – You and one creature/level hide within the earth. 27 | Languor(CDiv p167) – Ray slows target and diminishes its Strength. 28 | Murderous Mist(CDiv p169) (MoF p109)(MoFe)+ – Steam deals 2d6 damage & blinds creatures. 29 | Nature’s Balance(PGF p107) – You transfer 4 ability score points to the target for 10 minutes/level. 30 | Reincarnate(PH p270) – Brings dead subject back in a random humanoid body. 31 | Repel Vermin(PH p271) – Insects, spiders, and other vermin stay 10’ away. 32 | Rusting Grasp(PH p273) – Your touch corrodes iron and alloys. 33 | Scrying(PH p274)(PH3.5e)+ – Spies on subject from a distance. 34 | Spike Stones(PH p283) – Creatures in area take 1d8 damage, may be slowed. 35 | Spitting Cobra(DR330 p73) – You make ranged attacks with a snake’s venom. 36 | Stars of Arvandor(BoED p108) – Tiny starbursts each deal 1d8 damage (half non-lethal) or 1d8 (all lethal) to evil creatures. 37 | Stone Metamorphosis(Und p61) – Changes type of stone. 38 | Summon Nature’s Ally IV(PH p288) – Calls creature to fight. 39 | Wall of Water(DR314 p47) – Creates a wall of water that creatures must swim through to cross. 40 | Wind at Back(MoF p134) – Doubles overland speed for targets for 1 day. 41 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Mage/Mage0SpellList.txt: -------------------------------------------------------------------------------- 1 | Resistance(PH p272) – Subject gains +1 resistance bonus on all saving throws. 2 | Acid Splash(PH p196) – Orb deals 1d3 damage. Divination 3 | Detect Poison(PH p219) – Detects poison in one creature or small object. 4 | Detect Magic(PH p219) – Detects spells and magic items within 60’. 5 | Read Magic(PH p269) – Reads scrolls and spellbooks. 6 | Seeker’s Chant(DR326 p74) – Gives you a +1 bonus on Search checks, but a –2 penalty on Move Silently checks. 7 | Daze(PH p217) – Humanoid creature of 4HD or less loses next action. 8 | Vengeful Mount(DR326 p74) – Makes an animal more difficult to ride or handle. 9 | Dancing Lights(PH p216) – Creates torches or other lights. 10 | Electric Jolt(MoF p91) – Ranged touch attack deals 1d3 electricity damage. 11 | Flare(PH p232) – Dazzles one creature (–1 on attack rolls). 12 | Horizikaul’s Cough(MoF p101) – Target takes 1 point of sonic damage and are deafened for 1 round. 13 | Light(PH p248) – Object shines like a torch. 14 | Ray of Frost(PH p269) – Ray deals 1d3 Cold damage. 15 | Chalkboard(DR324 p70) – Creates opaque plane you can write on. 16 | Fleeting Flame(DR326 p73) – Gives you a +2 bonus on one Bluff, Diplomacy, or Intimidate check. 17 | Ghost Sound(PH p235) – Figment sounds. 18 | Shadowplay(DR326 p74) – Manipulates the shape and movement of an existing shadow. 19 | Silent Portal(MoF p117) – Negates sound from door or window. 20 | Disrupt Undead(PH p223) – Deals 1d6 damage to one undead. 21 | Necrosurgery(DR326 p73) – Grants a +2 bonus to resisting a disease. 22 | Touch of Fatigue(PH p294) – Touch attack fatigues target. 23 | Ground Smoke(DR326 p73) – Prevents smoke from rising from a small fire. 24 | Launch Bolt(MoF p105) – Launches a crossbow bolt as if from a light crossbow up to 100’ + 10’ per level. 25 | Mage Hand(PH p249) – 5 pound telekinesis. 26 | Mending(PH p253) – Makes minor repairs on an object. 27 | Message(PH p253) – Whispered conversation at distance. 28 | Nosy Neighbor(DR326 p74) – Provides you with a +1 bonus on Listen checks. 29 | Open/Close(PH p258) – Opens or closes small or light things. 30 | Repair Minor Damage(CArc p120) – Repairs 1 point of damage to any Construct. 31 | Stick(Und p61) – Glues an object weighting 5 pounds or less to a larger object. 32 | Arcane Mark(PH201 p201) – Inscribes a personal rune (visible or invisible). 33 | Prestidigitation(PH p264) – Performs minor tricks. 34 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/MagicEffects.txt: -------------------------------------------------------------------------------- 1 | of Powerful Strenght. Increase strength of +3. 2 | of Powerful Dexterity. Increases dexterity of +3. 3 | of Powerful Constitution. Increase Constitution of +3. 4 | of Powerful Wisdom. Increase Wisdom of +3. 5 | of Powerful Intelligence. Increase Intelligence of +3. 6 | of Powerful Charisma. Increase Charisma of +3. 7 | of Strength. Increase Strength of +2. 8 | . 9 | of the Evil Slaughter. Basic attacks deal +2d6 damage to Evil targets. 10 | of Detect Good. Grants the wielder the ability to Detect Good. 11 | of Freezing. 25% chance of freezing an enemy for one round. 12 | of Lock picking. Once per day, the wielder can pick a lock he wants for free. 13 | of Invisibility. Grants invisibility to the wielder 1 minute per day. 14 | of the Humanoid Slayer. Basic attacks deal +2d6 damage to humanoid targets. 15 | of Detect Magic. Once a day, grants the wielder a successful action of Detect Magic. 16 | of Light. Creates light in a circular region around the wielder with range 9 meters. 17 | of strong Reflexes. The wielder gets a bonus of +3 to his Reflexes saving throw. 18 | of strong Fortitude. The wielder gets a bonus of +3 to his Fortitude saving throw. 19 | of strong Will. The wielder gets a bonus of +3 to his Will saving throw. 20 | of Dexterity. Increase Dexterity of +2 21 | of Revelation. Once per day, reveals to the wielder the position of all the enemies in a room. 22 | of Dark vision. Grants dark vision to the wielder. 23 | of Persuasion. Once per day, grants the ability to the wielder to obtain anything he wants from a person. 24 | of Transmutation. Once per day, can transmute any material into gold, the transformation will last for one hour. The amount of gold produced is equal to 1/5 of the weight of material transmuted. 25 | of Fortitude. The wielder gets a bonus of +2 to his Fortitude saving throw. 26 | of Wisdom. Increases Wisdom of +2. 27 | of Magic Leaking. Basic attacks have a 25% chance of inflicting Magic Leaking for 1d4 turns (1d4 damage per turn, stacking). 28 | of the Disorder Seeker. Basic attacks of the wielder deal +2d6 damage to neutral creatures. 29 | of Charisma. Increases Charisma of +2. 30 | of Absorption. Each time the wielder kills an enemy, this weapon gains the power of the enemy's weapons. 31 | of Magic Shield. Once per day, the wielder gains a Magic Shield (+3 AC) for one minute. 32 | . 33 | of Defense. +2 AC. 34 | of Reflexes. The wielder gets a bonus of +2 to his Reflexes saving throw. 35 | . 36 | of Life stealing. Basic attacks have 25% chance of healing the wielder of 1d4hp. 37 | of the Order Bringer. Basic attacks deals +2d6 vs chaotic targets. 38 | of Seeking the Invisible. The wielder gains the ability to see invisible things for one minute per day. 39 | of Detect Evil. Grants the wielder the ability to Detect Good. 40 | of Will. The wielder gets a bonus of +2 to his Will saving throw. 41 | of Spell Storing. can store any spell and launch it once per day, but it must be charged by a spell caster. 42 | of Rapidity. Grants the wielder the ability to perform another full attack per turn. 43 | of Range. Melee weapon have 1,5m of extended range; ranged weapons have 30m of extended range. 44 | of Sunfire. Deals 1d4 damage every turn to adjacent enemies. 45 | of Intelligence. Increases the Intelligence of +2. 46 | of Discord. Deals 1d8 extra damage, it has a 50% chance of hitting the wrong target. 47 | of the Diehard. Grants the wielder the feat of Diehard. 48 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Paladin/Paladin1SpellList.txt: -------------------------------------------------------------------------------- 1 | Bless(PH p205) – Allies gain+1 morale bonus to attacks & saves vs. fear. 2 | Bless Water(PH p205) – Makes Holy Water. 3 | Bless Weapon(PH p205) – Weapon strikes true against evil foes. 4 | Create Water(PH p215) – Creates 2 gallons/level of pure water. 5 | Cure Light Wounds(PH p215) – Cures 1d8 + 1 per level damage (max +5). 6 | Deafening Clang(MoF p87) – Weapon deafens with a successful touch attack. 7 | Detect Poison(PH p219) – Detects poison in one creature or small object. 8 | Detect Undead(PH p220) – Reveals undead within 60’. 9 | Divine Favor(PH p224) – You gain +1 per three levels on attack and damage rolls. 10 | Divine Sacrifice(CDiv p163) – Sacrifice hit points for a damage bonus. 11 | Endure Elements(PH p226) – Exist comfortably in hot or cold environments. 12 | Faith Healing(MoF p93) – Cures 8 +1/level damage (max +5) to worshiper of your patron. 13 | Grave Strike(CAdv p150) – Swift. You can Sneak Attack Undead for 1 round. 14 | Golden Barding(CDiv p166) – Your mount gets force armor. 15 | Lantern Light(BoED p101) – Ranged touch attacks deal 1d6 points of damage. 16 | Magic Weapon(PH p251) – Weapon gains +1 enhancement bonus. 17 | Protection from Evil(PH p266) – +2 bonus to AC & saves against evil, counters mind control, & hedges out elementals & outsiders. 18 | Protection from Chaos(PH p266) – +2 bonus to AC & saves against chaos, counters mind control, & hedges out elementals & outsiders. 19 | Read Magic(PH p269) – Reads scrolls and spellbooks. 20 | Resistance(PH p272) – Subject gains +1 resistance bonus on all saving throws. 21 | Restoration, Lesser(PH p272) – Dispels magic ability penalty or repairs 1d4 ability damage. 22 | Resurgence(CDiv p177) – You grant a subject a second chance at a saving throw. 23 | Second Wind(BoED p106) – Target gains the equivalent of the Endurance feat for 1hr/lvl. 24 | Silverbeard(MoF p117) – You grow a hard silver beard that gives +2 bonus to armor. 25 | Silvered Weapon(BoED p107) – Transforms one weapon into a silvered weapon. 26 | Strategic Charge(MoF p125) – You gain the benefits of the Mobility feat. 27 | Traveler’s Mount(CDiv p184) – Creature moves faster but can’t attack. 28 | Virtue(PH p289) – Subject gains 1 temporary hp. 29 | Warning Shout(MoF p132) – All living creatures within half a mile hear your shout. 30 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Paladin/Paladin2SpellList.txt: -------------------------------------------------------------------------------- 1 | Aura of Glory(MoF p78) – Bonus on Charisma-based skill checks, cure allies, and bolster them against fear. 2 | Bladebane(UE p48) – Slashing weapon becomes a bane weapon. 3 | Blessed Aim(CDiv p154) – +2 bonus of allies’ ranged attacks. 4 | Bull’s Strength(PH p207) – Subject gains +4 Strength for 1 minute per level. 5 | Call Mount(BoED p93) – Call your special mount, even if you have already called it today. 6 | Clarity of Mind(Und p57) – Grants +4 bonus on saves involving charm, compulsion, and glamer spells; reduces glamer miss chance by 10%. 7 | Cloak of Bravery(CWar p117) – You and your allies gain a bonus on saves against fear. 8 | Delay Poison(PH p217) – Stops poison from harming subject for 1 hour per level. 9 | Divine Insight(CAdv p147) – You gain Insight bonus of 5 + caster level on one single skill check. 10 | Eagle’s Splendor(PH p225) – Subject gains +4 Charisma for 1 minute per level. 11 | Estanna’s Stew(BoED p99) – Conjures stew the heals 1d6+1 per serving (one serving per two levels). 12 | Hand of Divinity(MoF p98) – Gives +2 sacred or profane bonus to worshipers of your patron. 13 | Insignia of Alarm(RoD p166) – Alert the bearers of a special insignia. 14 | Moment of Clarity(BoED p103) – Target immediately makes a new saving throw to resist a mind- affecting spell or effect. 15 | Owl’s Wisdom(PH p259) – Subject gains +4 Wisdom for 1 minute per level. 16 | Remove Paralysis(PH p271) – Frees one or more creatures from paralysis, hold, or Slow. 17 | Resist Energy(PH p246) – Ignores the first 10 (or more) points of damage per attack from a specified energy type. 18 | Righteous Fury(MoF p114) – Gain temporary hp, +2 natural armor, +2 to Strength and Dexterity. Undead that strike you take 1 point. 19 | Shield Other(PH p278) – You take half of subject’s damage. 20 | Stone Fist(RoS p163) – Caster’s fists have their damage increased, are treated as ‘armed’, and do Bludgeoning damage. Dwarves and Goliaths have their fists treated as Cold Iron. 21 | Strength of Stone(MoF p125) – Bull’s Strength that ends if you lose contact with the ground. 22 | Undetectable Alignment(PH p297) – Conceals alignment for 24 hours. 23 | Zeal(CDiv p191) – You move through foes to attack the enemy you want. 24 | Zone of Truth(PH p303) – Subjects within range cannot lie. 25 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Paladin/Paladin3SpellList.txt: -------------------------------------------------------------------------------- 1 | Blessed Sight(BoED p92) – Evil auras become visible to you. 2 | Blessing of Bahamut(CDiv p154) – You gain damage reduction 10 / magic. 3 | Cure Moderate Wounds(PH p216) – Cures 2d8 damage +1 per level (max +10). 4 | Daylight(PH p216) – 60’ radius of bright light. 5 | Discern Lies(PH p221) – Reveals deliberate falsehoods. 6 | Dispel Magic(PH p223)(PH3.5e)+ – Cancels magical spells and effects. 7 | Forceward(MoF p95) – Creates sphere that prevents intrusion. 8 | Heal Mount(PH p239) – As Heal on warhorse or other special mount. 9 | Insignia of Blessing(RoD p166) – Bearers of a special insignia gain +1 Morale bonus on attacks and saves against fear. 10 | Insignia of Warding(RoD p166) – Bearers of a special insignia gain +1 Divine bonus to AC and Fortitude saves. 11 | Magic Circle against Chaos(PH p249) – As Protection from Chaos, but 10’ radius and 10 minutes per level. 12 | Magic Circle against Evil(PH p249) – As Protection from Evil, but 10’ radius and 10 minutes per level. 13 | Magic Weapon, Greater(PH p251) – +1 bonus per four levels (max +5). 14 | Mind Bond(BoED p102) – You and your mount gain +4 flanking bonus when flanking the same opponent; mount gains bonus on attack rolls. 15 | Know Greatest Enemy(MoF p103) – Determines relative power level of creatures within the area. 16 | Loyal Vassal(MoF p106) – Ally gains +3 against mind-affecting effects and cannot be compelled to harm you. 17 | Prayer(PH p264) – Allies gain +1 bonus on most rolls, enemies suffer –1 penalty. 18 | Remove Blindness/Deafness(PH p270) – Cures normal or magical conditions. 19 | Remove Curse(PH p270) – Frees person or object from a curse. 20 | Resurgence, Mass(CDiv p177) – As Resurgence, but multiple targets. 21 | Smite Heretic(BoED p107) – You gain a +2 Sacred bonus on attack roll and deal extra damage with your ‘Smite Evil’ call ability when used against an evil creature that can cast divine spells. 22 | Undead Bane Weapon(MoF p128) – Weapon gains the Bane property and is considered blessed. 23 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Paladin/Paladin4SpellList.txt: -------------------------------------------------------------------------------- 1 | Aspect of the Deity, Lesser(BoED p91) – Your form becomes more like your deity’s. 2 | Blood of the Martyr(BoED p92) – You heal a target at range and take a like amount of damage. 3 | Break Enchantment(PH p207) – Frees subject from enchantments, alterations, curses, and petrifaction. 4 | Cure Serious Wounds(PH p216) – Cures 3d8 damage + 1 per level (max +15). 5 | Death Ward(PH p217) – Grants immunity to death spells and negative energy effects. 6 | Dispel Chaos(PH p222) – +4 bonus against attacks by chaotic creatures. 7 | Dispel Evil(PH p222) – +4 bonus against attacks by evil creatures. 8 | Favor of Ilmater(PGF p102) – Subject gains Endurance, plus immunity to nonlethal damage, charm and compulsion effects, pain attacks, and other adverse conditions; subject can function at –1 to –9 hp. 9 | Glory of the Martyr(BoED p99) – As Shield Other, but with multiple targets. 10 | Hand of Torm(MoF p99) – Immobile zone of warding stuns those of different patrons. 11 | Holy Sword(PH p215) – Weapon becomes +5, deals +2d6 damage against evil. 12 | Lawful Sword(PGF p105) – Weapon becomes +5 Axiomatic and emits Magic Circle against Chaos. 13 | Mark of Justice(PH p252) – Designates action that will trigger cure on subject. 14 | Neutralize Poison(PH p257) – Immunizes subject against poison, detoxifies venom in or on subject. 15 | Restoration(PH p272) – Restores level and ability score drains. 16 | Revenance(CDiv p178)(MoF p113) – Restores dead creature to life for 1 minute per level. 17 | Sacred Haven(CDiv p178)(BoED p106) – Creature gains AC bonus, and you can monitor & heal it magically. 18 | Seek Eternal Rest(MoF p115) – Turn undead as a paladin two levels higher. 19 | Spiritual Chariot(CDiv p181) – Creates ghostly chariot behind your mount. 20 | Sword of Conscience(BoED p109) – Evil creature confesses crime, takes Wisdom damage. 21 | Visage of the Deity, Lesser(CDiv p187) – You gain +4 Charisma & resistance 10 to certain energy types. 22 | Weapon of the Deity(CDiv p188) – Gives your weapon magical powers appropriate to your patron deity. 23 | Winged Mount(CDiv p190)(BoED p112) – Your mount sprouts wings and gains a fly speed of 60’ (good). 24 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Ranger/Ranger1SpellList.txt: -------------------------------------------------------------------------------- 1 | Accelerated Movement(CAdv p142) – Swift. Balance, Climb, or Move Silently at normal speed with no penalty on skill check. 2 | Alarm(PH p197) – Wards an area for 2 hours per level. 3 | Animal Messenger(PH p198) – Sends a Tiny animal to a specific place. 4 | Arrow Mind(CAdv p143) – Immediate. You threaten nearby squares with your bow and fire without provoking attacks of opportunity. 5 | Bloodhound(CAdv p144) – You gain an immediate retry if you fail a Survival check while tracking. 6 | Branch to Branch(CAdv p144)(MoF p83) – You gain +10 Competence bonus on Climb checks in trees and can brachiate through forest. 7 | Calm Animals(PH p207) – Calms (2d4 + level) HD of animals. 8 | Camouflage(CDiv p157)(Und p56) – Subject gains a +10 bonus on Hide checks. 9 | Charm Animal(PH p208) – Makes one animal your friend. 10 | Delay Poison(PH p217) – Stops poison from harming subject for 1 hour per level. 11 | Detect Animals or Plants(PH p218) – Detects species of animals or plants. 12 | Detect Poison(PH p219) – Detects poison in one creature or small object. 13 | Detect Snares and Pits(PH p220) – Reveals natural or primitive traps. 14 | Easy Trail(CAdv p147)(MoF p91) – You make a temporary trail through any kind of undergrowth. 15 | Embrace the Wild(CAdv p147) (MotW p87)(Sav p65) – You gain an animal’s sense for 10 minutes per level. 16 | Entangle(PH p227) – Plants entangle everyone in a 40’ radius. 17 | Exacting Shot(CAdv p148) – Your ranged weapon automatically confirms critical hits against your favored enemies. 18 | Extend Shifting(RoE p185) – Extend duration of Shifting racial ability by 4 rounds. 19 | Eyes of the Avoral(BoED p99) – Subject gets +8 on Spot checks. 20 | Ground Smoke(DR326 p73) – Prevents smoke from rising from a small fire. 21 | Guided Shot(CAdv p150) – Swift. You ignore distance penalties with your ranged attacks for 1 round. 22 | Hawkeye(CAdv p151) – Increase range increments by 50%, +5 on Spot checks. 23 | Healing Lorecall(CAdv p151) – If you have 5 or more ranks in Heal, you can remove harmful conditions with Conjuration(healing) spells. 24 | Hide from Animals(PH p241) – Animals can’t perceive one subject per level. 25 | Hunter’s Mercy(MoF p101) – Your next hit with a bow automatically threatens a critical hit. 26 | Instant Search(CAdv p153) – Swift. Make Search check at +2 as a Free Action. 27 | Jump(PH p246) – Subject gains bonus on Jump checks. 28 | Locate City(RoD p166) – Find nearest city. 29 | Longstrider(PH p249) – Increases your speed. 30 | Low-Light Vision(CArc p113) – See twice as far as a Human in poor illumination. 31 | Magic Fang(PH p250) – One natural weapon of subject creature gets +1 on attack and damage. 32 | Marked Man(DR325 p71) – Helps track a subject. 33 | Naturewatch(CDiv p170)(MoF p110) – See how wound level of animals and plants within 30’. 34 | Pass without Trace(PH p259) – One subject per level leaves no tracks or scent trail for 1 hour per level. 35 | Ram’s Might(MoF p112) – Your hands become harder and your unarmed attacks inflict normal damage. 36 | Raptor’s Sight(RotW p175) – Gain +4 on Spot checks; range increment penalty is halved. 37 | Read Magic(PH p269) – Reads scrolls and spellbooks. 38 | Resist Energy(PH p246) – Ignores the first 10 (or more) points of damage per attack from a specified energy type. 39 | Ride of the Valenar(RoE p189) – Gain +5 Competence bonus on Ride checks for 10 minutes per level. 40 | Shifter Prowess(RoE p190) – Shifter racial bonuses to skills increase to +8 while shifting. 41 | Silvered Claws(BoED p107) – One creature’s natural attacks are treated as silvered weapons. 42 | Smell of Fear(MoF p119) – Target’s aroma triples the chance of wandering encounters. 43 | Sniper’s Shot(CAdv p157) – Swift. No range limit on next ranged sneak attack. 44 | Snowshoes(DR312 p65) – Subject can walk on ice & snow without falling and not leaving an obvious trail. 45 | Speak with Animals(PH p281) – You can communicate with animals. 46 | Speed Swim(MoF p121) – Target gains swim speed 30. 47 | Stalking Brand(MoF p123) – Target marked with symbol you can see despite disguises. 48 | Summon Nature’s Ally I(PH p288) – Calls creature to fight. 49 | Surefoot(MoF p127) – +10 bonus on Balance checks. 50 | Towering Oak(MoF p128) – +10 on Intimidate checks. 51 | Traveler’s Mount(CDiv p184) – Creature moves faster but can’t attack. 52 | Vengeful Mount(DR326 p74) – Makes an animal more difficult to ride or handle. 53 | Vine Strike(CAdv p158) – Swift. You can Sneak Attack Plant Creatures for 1 round. 54 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Ranger/Ranger2SpellList.txt: -------------------------------------------------------------------------------- 1 | Balancing Lorecall(CAdv p143) – You gain a +4 bonus on Balance checks and can balance on impossible surfaces if you have 5 or more ranks in Balance. 2 | Barkskin(PH p202) – Grants +2 (or higher) enhancement to natural armor. 3 | Bear’s Endurance(PH p203) – Subject gains +4 Constitution for 1 minute per level. 4 | Blades of Fire(CArc p99) – Your melee weapons deal +1d6 Fire damage for 1 round. 5 | Briar Web(CDiv p156) – Area entangles creatures and thorns deal 2d6 damage. 6 | Burrow(Und p56) – Subject grows claws and gains a Burrowing speed of 10’. 7 | Cat’s Grace(PH 3.5 p208) – Subject gains +4 Dexterity for 1 minute per level. 8 | Claws of the Beast(PGF p101) – Your hands become 1d6 weapons. 9 | Cure Light Wounds(PH p215) – Cures 1d8 + 1 per level damage (max +5). 10 | Easy Climb(CAdv p147) – You make a vertical surface easy to Climb (i.e., DC 10). 11 | Haste, Swift(CAdv p151) – Swift. Move faster, +1 on attacks, AC, and Reflex saves. 12 | Hold Animal(PH p241) – Paralyzes one animal for 1 round per level. 13 | Listening Lorecall(CAdv p154) – You gain a +4 bonus on Listen checks, plus Blindsense or Blindsight if you 5 or more ranks in Listen. 14 | Nature’s Favor(CAdv p155) (CDiv p170) (CDivErrata) – A touched animal gains a Luck bonus on attack and damage rolls of +1 per three levels. 15 | One with the Land(MoF p111) – Link with nature gives a +2 bonus on nature-related skill checks. 16 | Owl’s Wisdom(PH p259) – Subject gains +4 Wisdom for 1 minute per level. 17 | Protection from Energy(PH p266) – Absorb 12 damage per level from one kind of energy. 18 | Reachwalker’s Wariness(RoE p189) – Automatically locate Aberrations within 30’. 19 | Scent(CDiv p178)(CDivErrata)+ – Grants the scent ability for 1 hour/level. 20 | Silvered Weapon(BoED p107) – Transforms one weapon into a silvered weapon. 21 | Snare(PH p280) – Creates a magical booby trap. 22 | Speak with Plants(PH p282) – You can talk to normal plants and plant creatures. 23 | Spike Growth(PH p283) – Creatures in area take 1d4 damage, may be slowed. 24 | Summon Nature’s Ally II(PH p288) – Calls creature to fight. 25 | Train Animal(CAdv p157) – Affected animal gains additional tricks equal to 1⁄2 caster level for 1 hour per level. 26 | Wind Wall(PH p302) – Deflects arrows, smaller creatures, and gases. 27 | Woodland Veil(RotW p176) – Blend unobtrusively into natural surroundings, along with your friends. 28 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Ranger/Ranger3SpellList.txt: -------------------------------------------------------------------------------- 1 | Blade Storm(CAdv p144) – Swift. You make melee attacks against every foe you threaten. 2 | Blade Thirst(MoF p82) – Slashing weapon glows and gains +3 enhancement bonus. 3 | Bottle of Smoke(CDiv p155) – Uncorking a bottle creates a fast horse made of smoke. 4 | Command Plants(PH p211) – Sway the actions of one or more plant creatures. 5 | Cure Moderate Wounds(PH p216) – Cures 2d8 damage +1 per level (max +10). 6 | Darkvision(PH p216) – See 60’ in total darkness. 7 | Decoy Image(MoF p88) – Figment mimics you and allies. 8 | Detect Favored Enemy(CDiv p162) – You know if your favored enemies are within 60’. 9 | Diminish Plants(PH p221) – Reduces size or blights growth of normal plants. 10 | Earth Hammer(RoS p162) – Touched weapon has its damage increased, is treated as Adamantine, and only does Bludgeoning damage. Swift. 11 | Fang Blade(DR330 p71) – Transforms a snake into a sword that can bite and poison targets. 12 | Forestfold(CAdv p149)(CDiv p166) – Gain +20 Competence bonus on Hide and Move Silently checks in one type of terrain. 13 | Inspired Aim(BoED p101) – Allies within 40’ gain +2 Insight bonus on ranged attack rolls. 14 | Living Prints(MoF p106) – You perceive tracks as if they had just been made. 15 | Magic Fang, Greater(PH p250) – One natural weapon of subject creature gets +1 per three levels to attack and damage rolls –or– all the subject’s natural weapons get a +1 bonus. 16 | Mark of the Hunter(CDiv p168) – Rune on creature makes it easier to track and attack. 17 | Neutralize Poison(PH p257) – Immunizes subject against poison, detoxifies venom in or on subject. 18 | Phantasmal Decoy(CDiv p172) – Creates illusory enemy for a foe to chase. 19 | Plant Growth(PH p262) – Grows vegetation, improves crops. 20 | Reduce Animal(PH p269) – Shrinks one willing animal. 21 | Remove Disease(PH p271) – Cures all diseases affecting subject. 22 | Repel Vermin(PH p271) – Insects, spiders, and other vermin stay 10’ away. 23 | Safe Clearing(MoF p114) – As Sanctuary, but protects an area and lasts 1 hour/level. 24 | Snowshoes, Mass(DR312 p65) – One subject per level can walk on ice & snow without falling and not leaving an obvious trail. 25 | Summon Nature’s Ally III(PH p288) – Calls creature to fight. 26 | Tree Shape(PH p296) – You look exactly like a tree for 1 hour per level. 27 | Tremorsense(Und p62) – Grants tremorsense out to 30’. 28 | Water Walk(PH p300) – Subject treads on water as if solid. 29 | Wild Instincts(RoE p191) – You gain a +10 Insight bonus on Listen & Spot checks –and– do not loose your Dex bonus to AC when flat-footed or fighting an unseen opponent. 30 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/DatFiles/Ranger/Ranger4SpellList.txt: -------------------------------------------------------------------------------- 1 | Animal Growth(PH p198) – One animal per two levels doubles in size. 2 | Arrow Storm(CAdv p143) – Swift. You make one ranged attack against each foe within one range increment. 3 | Aspect of the Werebeast(RoE p183) – Gain bonuses from hybrid animal form. 4 | Bane Bow(CDiv p151) – Weapon becomes a +5 Bane against one of your favored enemies. 5 | Blinding Beauty(BoED p92) – You become as beautiful as a nymph, and can blind humanoids who look at you. 6 | Burrow, Mass(Und p56) – As Burrow, but affects one subject per level. 7 | Camouflage, Mass(CDiv p157) (MoF p106)(MoFe)+ – As Camouflage, but multiple targets. 8 | Commune with Nature(PH p211) – Learn about terrain for one mile per level. 9 | Cure Serious Wounds(PH p216) – Cures 3d8 damage + 1 per level (max +15). 10 | Deeper Darkvision(Und p58) – Subject can see 60’ in magical darkness. 11 | Foebane(CAdv p149) – Your weapon becomes +5 and deals +2d6 damage against any of your favored enemies. 12 | Freedom of Movement(PH p233) – Subject moves normally despite impediments. 13 | Implacable Pursuer(CDiv p166) – You know where your prey is, as long as it’s moving. 14 | Land Womb(MoF p104) – You and one creature/level hide within the earth. 15 | Nondetection(PH p257) – Hides subject from divination and scrying. 16 | Snakebite(MoF p120) – Your arm turns into poisonous snake you cause to attack. 17 | Spear of Valarian(BoED p107) – Transforms a non- magical weapon into a +1 Silvered Spear (+3 against Magical Beasts, which take +2d6 points of damage). 18 | Stars of Arvandor(BoED p108) – Tiny starbursts each deal 1d8 damage (half non-lethal) or 1d8 (all lethal) to evil creatures. 19 | Summon Nature’s Ally IV(PH p288) – Calls creature to fight. 20 | Superior Darkvision(UE p53) – See normally in total darkness. 21 | Tree Stride(PH p296) – Step from one tree to another far away. 22 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/WandGenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/WeaponGenerator/WandGenerator.pyc -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/WeaponGenerator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/WeaponGenerator/WeaponGenerator.pyc -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/WeaponGeneratorGUI.py: -------------------------------------------------------------------------------- 1 | ''' 2 | ___ _____ Python - Magic Weapon Generator for D&D 3.5 - Version 1.1 3 | | |_ _| GUI For my magic weapon generator! 4 | | _ | | The WeaponGenerator script is still not ready, but I made some adjustments to use it in this 5 | |___| | | GUI, next step is finishing the script, then go on with other projects!! 6 | /_ / Pietro Goodjohn Bongiovanni - November 2015 7 | ''' 8 | 9 | from Tkinter import * 10 | from random import randint 11 | import tkMessageBox 12 | import WeaponGenerator 13 | import WandGenerator 14 | 15 | main = Tk() 16 | main.wm_title("Magic Weapon Generator") 17 | 18 | def Generate(): 19 | weapon = WeaponGenerator.generate() 20 | text.config(state=NORMAL) 21 | text.delete(1.0, END) 22 | text.insert(INSERT, weapon) 23 | text.config(state=DISABLED) 24 | 25 | def WandGenerate(): 26 | spell = WandGenerator.generateWand() 27 | text.config(state=NORMAL) 28 | text.delete(1.0, END) 29 | text.insert(INSERT, spell) 30 | text.config(state=DISABLED) 31 | 32 | def Legend(): 33 | tkMessageBox.showwarning( 34 | "Legend", 35 | ''' 36 | PH: Player's Handbook v3.5 37 | DMG: Dungeon Master's Guide v3.5 38 | MM: Monster's Guide v3.5 39 | MM3: Monster's Manual 40 | CWar: Complete Warrior 41 | CDiv: Complete Divine 42 | CArc: Complete Arcane 43 | CAdv: Complete Adventurer 44 | RoS: Races of Stone 45 | RoD: Races of Destiny 46 | RotW: Races of the Wild 47 | RoE: Races of Eberron 48 | BoED: Book of Exalted Deeds 49 | UA: Unhearted Arcana 50 | FR: Forgotten Realms Campaign Setting 51 | MoF: Magic of Faerun 52 | LoD: Lords of Darkness 53 | RoF: Races of Faerun 54 | SM: Silver Marches 55 | Und: Underdark 56 | PGF: Player's Guide of Faerun 57 | DR###: Dragon Magazine (with issue number) 58 | DU##: Dungeon Magazine (with issue number) 59 | 3.5up: D&D v.3.5 Accessory Update 60 | PH3.5e: Player's Handbook v.3.5 Errata 61 | PGFe: Player's Guide to Faerun Errata 62 | CDivErrata: Complete Divine Errata 63 | CArc: Complete Arcane Errata 64 | EbErrata: Eberron Errata 65 | ''' 66 | ) 67 | return 68 | 69 | weapon = '' 70 | 71 | text = Text(main) 72 | text.config(state=DISABLED) 73 | text.config(height = 5, width = 75) 74 | 75 | generate = Button(main, text = 'Generate', command = Generate) 76 | wand = Button(main, text = 'Generate Wand', command = WandGenerate) 77 | legend = Button(main, text = 'Legend', command = Legend) 78 | quit = Button(main, text = 'Quit', command = quit) 79 | 80 | text.pack(side = LEFT, fill = BOTH, expand = YES) 81 | generate.pack(side = LEFT) 82 | wand.pack(side = LEFT) 83 | legend.pack(side = LEFT) 84 | quit.pack(side = RIGHT) 85 | ''' 86 | text.grid(row = 0, column = 0, rowspan = 2) 87 | generate.grid(row = 0, column = 1) 88 | quit.grid(row = 1, column = 1) 89 | ''' 90 | main.mainloop() 91 | -------------------------------------------------------------------------------- /SingleScripts/WeaponGenerator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgoodjohn/Dungeons-And-Dragons-Tools-Python/955236505dd97843fcafb9c5d4bd22609d434da8/SingleScripts/WeaponGenerator/__init__.py --------------------------------------------------------------------------------