├── .gitignore ├── LICENSE.txt ├── README.rst ├── data ├── books.cfg ├── creatures.cfg ├── inns.cfg ├── potions.cfg └── towns.cfg ├── doc ├── README.rst ├── examples.rst ├── make_doc.lua └── write_examples.lua ├── git-pull.bat ├── namegen.index ├── namegen.lua ├── rangedtable.lua └── test ├── test.lua ├── test2.lua └── test_race.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/README.rst -------------------------------------------------------------------------------- /data/books.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/data/books.cfg -------------------------------------------------------------------------------- /data/creatures.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/data/creatures.cfg -------------------------------------------------------------------------------- /data/inns.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/data/inns.cfg -------------------------------------------------------------------------------- /data/potions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/data/potions.cfg -------------------------------------------------------------------------------- /data/towns.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/data/towns.cfg -------------------------------------------------------------------------------- /doc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/doc/README.rst -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/make_doc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/doc/make_doc.lua -------------------------------------------------------------------------------- /doc/write_examples.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/doc/write_examples.lua -------------------------------------------------------------------------------- /git-pull.bat: -------------------------------------------------------------------------------- 1 | @git pull 2 | 3 | @pause 4 | -------------------------------------------------------------------------------- /namegen.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/namegen.index -------------------------------------------------------------------------------- /namegen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/namegen.lua -------------------------------------------------------------------------------- /rangedtable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/rangedtable.lua -------------------------------------------------------------------------------- /test/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/test/test.lua -------------------------------------------------------------------------------- /test/test2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/test/test2.lua -------------------------------------------------------------------------------- /test/test_race.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeMS/lua-namegen/HEAD/test/test_race.lua --------------------------------------------------------------------------------