random_name_generator 1.2.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +3 -12
- data/.gitignore +2 -1
- data/.rspec +3 -0
- data/.rubocop.yml +15 -22
- data/CHANGELOG.md +16 -0
- data/Gemfile +13 -14
- data/Gemfile.lock +28 -66
- data/LICENSE +160 -669
- data/README.md +76 -41
- data/Rakefile +10 -19
- data/bin/console +5 -6
- data/bin/run +3 -0
- data/{bin → exe}/random_name_generator +12 -8
- data/lib/{random_name_generator/languages → languages}/demonic.txt +0 -0
- data/lib/{random_name_generator/languages → languages}/elven-ru.txt +0 -0
- data/lib/{random_name_generator/languages → languages}/elven.txt +0 -0
- data/lib/languages/experimental/curse.txt +63 -0
- data/lib/languages/experimental/demonic.txt +350 -0
- data/lib/{random_name_generator/languages → languages}/fantasy-ru.txt +0 -0
- data/lib/{random_name_generator/languages → languages}/fantasy.txt +0 -0
- data/lib/{random_name_generator/languages → languages}/goblin-ru.txt +0 -0
- data/lib/{random_name_generator/languages → languages}/goblin.txt +0 -0
- data/lib/{random_name_generator/languages → languages}/roman-ru.txt +0 -0
- data/lib/{random_name_generator/languages → languages}/roman.txt +0 -0
- data/lib/random_name_generator.rb +150 -2
- data/lib/random_name_generator/syllable.rb +181 -0
- data/lib/random_name_generator/version.rb +5 -0
- data/random_name_generator.gemspec +29 -17
- metadata +29 -48
- data/lib/random_name_generator/random_name_generator.rb +0 -120
- data/lib/random_name_generator/rng_syllable.rb +0 -175
data/README.md
CHANGED
@@ -6,14 +6,20 @@
|
|
6
6
|
[![Coverage Status](https://coveralls.io/repos/github/folkengine/random_name_generator/badge.svg?branch=master)](https://coveralls.io/github/folkengine/random_name_generator?branch=master)
|
7
7
|
[![Inline docs](http://inch-ci.org/github/folkengine/random_name_generator.svg?branch=master)](http://inch-ci.org/github/folkengine/random_name_generator)
|
8
8
|
|
9
|
-
Ruby port of
|
9
|
+
Ruby port of
|
10
|
+
[java-random-name-generator](https://github.com/folkengine/java-random-name-generator),
|
11
|
+
which in turn is a gradle enabled version of
|
12
|
+
[Sinipull's GPL'd post on codecall.net](http://forum.codecall.net/topic/49665-java-random-name-generator/).
|
10
13
|
|
11
|
-
|
12
|
-
|
13
|
-
your gem.
|
14
|
+
**For other languages see
|
15
|
+
[RandomNameGeneratorHub](https://github.com/folkengine/RandomNameGeneratorHub)**.
|
14
16
|
|
15
|
-
|
17
|
+
The big difference between this random name generator and others is that
|
18
|
+
it allows you to create names in various custom styles such as Elven,
|
19
|
+
and Roman. If you're looking for a quick name for a Goblin NPC,
|
20
|
+
RandomNameGenerator is your gem.
|
16
21
|
|
22
|
+
------
|
17
23
|
|
18
24
|
## Installation
|
19
25
|
|
@@ -25,21 +31,24 @@ gem 'random_name_generator'
|
|
25
31
|
|
26
32
|
And then execute:
|
27
33
|
|
28
|
-
|
34
|
+
$❯ bundle install
|
29
35
|
|
30
36
|
Or install it yourself as:
|
31
37
|
|
32
|
-
|
38
|
+
$❯ gem install random_name_generator
|
33
39
|
|
34
40
|
## Usage
|
35
41
|
|
36
42
|
RandomNameGenerator comes with several styles of syllable files:
|
37
|
-
[Elven](https://github.com/folkengine/random_name_generator/blob/master/lib/
|
38
|
-
[Fantasy](https://github.com/folkengine/random_name_generator/blob/master/lib/
|
39
|
-
[Goblin](https://github.com/folkengine/random_name_generator/blob/master/lib/
|
40
|
-
and
|
41
|
-
|
42
|
-
|
43
|
+
[Elven](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/elven.txt),
|
44
|
+
[Fantasy](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/fantasy.txt),
|
45
|
+
[Goblin](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/goblin.txt),
|
46
|
+
and
|
47
|
+
[Roman](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/roman.txt).
|
48
|
+
By default it uses Fantasy. Instantiate RandomNameGenerator and then
|
49
|
+
call compose on the object to generate a random name. If you don't pass
|
50
|
+
in the number of syllables you want for your name to compose, it will
|
51
|
+
randomly pick between 3 and 6.
|
43
52
|
|
44
53
|
```ruby
|
45
54
|
require 'random_name_generator'
|
@@ -48,14 +57,19 @@ rng = RandomNameGenerator.new
|
|
48
57
|
puts rng.compose(3)
|
49
58
|
```
|
50
59
|
|
51
|
-
|
60
|
+
*Technically, `RandomNameGenerator.new` is a static factory method
|
61
|
+
creating a RandomNameGenerator::Generator object.*
|
52
62
|
|
53
|
-
|
63
|
+
Pass in a reference to specific syllable file to get different styles of
|
64
|
+
random names:
|
65
|
+
|
66
|
+
```
|
54
67
|
rng = RandomNameGenerator.new(RandomNameGenerator::GOBLIN)
|
55
68
|
puts rng.compose(3)
|
56
69
|
```
|
57
70
|
|
58
|
-
Flip mode will create a RandomNameGenerator object, randomly assigning
|
71
|
+
Flip mode will create a RandomNameGenerator object, randomly assigning
|
72
|
+
the syllable file for you.
|
59
73
|
|
60
74
|
```ruby
|
61
75
|
flip = RandomNameGenerator.flip_mode
|
@@ -63,49 +77,70 @@ puts flip.compose
|
|
63
77
|
```
|
64
78
|
|
65
79
|
You can also pass in your own syllable files. See
|
66
|
-
[
|
80
|
+
[Syllable.rb](https://github.com/folkengine/random_name_generator/blob/master/lib/random_name_generator/syllable.rb)
|
67
81
|
for the required specification.
|
68
82
|
|
69
|
-
RandomNameGenerator also comes with a command line interface which will
|
83
|
+
RandomNameGenerator also comes with a command line interface which will
|
84
|
+
generate a first and last name for you:
|
70
85
|
|
71
|
-
```
|
86
|
+
```
|
72
87
|
bin/random_name_generator [-efgr?]
|
73
88
|
```
|
74
89
|
|
75
|
-
Add the gem's bin directory to you path in order to have instant access
|
90
|
+
Add the gem's bin directory to you path in order to have instant access
|
91
|
+
to RandomNameGenerator.
|
76
92
|
|
77
93
|
## Porting and Refactoring Notes
|
78
94
|
|
79
|
-
The big refactoring over the original Java version is the creation of
|
80
|
-
over most of the complexity of parsing each
|
81
|
-
|
82
|
-
|
95
|
+
The big refactoring over the original Java version is the creation of
|
96
|
+
the Syllable class. It takes over most of the complexity of parsing each
|
97
|
+
syllable, greatly simplifying the Random Name Generator code.
|
98
|
+
|
99
|
+
Part of the reason for working on this gem was to work on the following
|
100
|
+
goals to improve my Ruby craft:
|
101
|
+
|
102
|
+
* Code confidently in the spirit of Advi Grimm's
|
103
|
+
[Confident Ruby](http://www.confidentruby.com/).
|
104
|
+
* ~~Use
|
105
|
+
[Travis-CI](https://travis-ci.org/folkengine/random_name_generator)
|
106
|
+
for build validation.~~ Moved to GitHub Actions.
|
107
|
+
* Use [Rubocop](https://github.com/bbatsov/rubocop) and
|
108
|
+
[Reek](https://github.com/troessner/reek) for code quality.
|
109
|
+
* Deploy it to
|
110
|
+
[RubyGems.org](https://rubygems.org/gems/random_name_generator).
|
83
111
|
|
84
|
-
* Code confidently in the spirit of Advi Grimm's [Confident Ruby](http://www.confidentruby.com/).
|
85
|
-
* Use [Travis-CI](https://travis-ci.org/folkengine/random_name_generator) for build validation.
|
86
|
-
* Use [Rubocop](https://github.com/bbatsov/rubocop) and [Reek](https://github.com/troessner/reek) for code quality.
|
87
|
-
* Deploy it to [RubyGems.org](https://rubygems.org/gems/random_name_generator).
|
88
112
|
|
89
113
|
## Development
|
90
114
|
|
91
|
-
After checking out the repo, run
|
115
|
+
After checking out the repo, run `$❯ bin/setup` to install dependencies.
|
116
|
+
Then, run `$❯ rake spec` to run the tests. You can also run `$❯
|
117
|
+
bin/console` for an interactive prompt that will allow you to
|
118
|
+
experiment.
|
92
119
|
|
93
|
-
To install this gem onto your local machine, run `bundle exec rake
|
120
|
+
To install this gem onto your local machine, run `bundle exec rake
|
121
|
+
install`. To release a new version, update the version number in
|
122
|
+
`version.rb`, and then run `bundle exec rake release`, which will create
|
123
|
+
a git tag for the version, push git commits and the created tag, and
|
124
|
+
push the `.gem` file to [rubygems.org](https://rubygems.org).
|
94
125
|
|
95
|
-
|
126
|
+
To run [Reek](https://github.com/troessner/reek) on the codebase, simply
|
127
|
+
call `$❯ rake reek`
|
96
128
|
|
97
|
-
|
98
|
-
* [Reek](https://github.com/troessner/reek)
|
99
|
-
* [Rubocop](https://github.com/bbatsov/rubocop)
|
129
|
+
## Contributing
|
100
130
|
|
101
|
-
|
131
|
+
Bug reports and pull requests are welcome on GitHub at
|
132
|
+
https://github.com/folkengine/random_name_generator. This project is
|
133
|
+
intended to be a safe, welcoming space for collaboration, and
|
134
|
+
contributors are expected to adhere to the
|
135
|
+
[code of conduct](https://github.com/folkengine/random_name_generator/blob/main/CODE_OF_CONDUCT.md).
|
102
136
|
|
103
|
-
|
137
|
+
## License
|
104
138
|
|
105
|
-
|
106
|
-
|
107
|
-
* [How To Write A Name Generator (In Ruby)](http://www.skorks.com/2009/07/how-to-write-a-name-generator-in-ruby/)
|
139
|
+
The gem is available as open source under the terms of the
|
140
|
+
[GNU Lesser General Public License version 3](https://opensource.org/licenses/LGPL-3.0).
|
108
141
|
|
109
|
-
##
|
142
|
+
## Code of Conduct
|
110
143
|
|
111
|
-
|
144
|
+
Everyone interacting in the RandomNameGenerator project's codebases,
|
145
|
+
issue trackers, chat rooms and mailing lists is expected to follow the
|
146
|
+
[code of conduct](https://github.com/[USERNAME]/random_name_generator/blob/main/CODE_OF_CONDUCT.md).
|
data/Rakefile
CHANGED
@@ -1,26 +1,17 @@
|
|
1
|
-
|
2
|
-
require 'rake/testtask'
|
3
|
-
require 'reek/rake/task'
|
4
|
-
require 'rubocop/rake_task'
|
1
|
+
# frozen_string_literal: true
|
5
2
|
|
6
|
-
|
3
|
+
require "bundler/gem_tasks"
|
4
|
+
require "rspec/core/rake_task"
|
5
|
+
require "reek/rake/task"
|
7
6
|
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
RSpec::Core::RakeTask.new(:spec)
|
8
|
+
|
9
|
+
require "rubocop/rake_task"
|
11
10
|
|
12
11
|
RuboCop::RakeTask.new
|
13
12
|
|
14
|
-
Rake::
|
15
|
-
t.
|
16
|
-
t.test_files = FileList['test/**/test*.rb']
|
17
|
-
t.verbose = true
|
13
|
+
Reek::Rake::Task.new do |t|
|
14
|
+
t.fail_on_error = true
|
18
15
|
end
|
19
16
|
|
20
|
-
task :
|
21
|
-
Rake::Task['test'].execute
|
22
|
-
puts 'Running Reek...'
|
23
|
-
Rake::Task['reek'].execute
|
24
|
-
puts
|
25
|
-
Rake::Task['rubocop'].execute
|
26
|
-
end
|
17
|
+
task default: %i[spec rubocop]
|
data/bin/console
CHANGED
@@ -1,17 +1,16 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
# frozen_string_literal: true
|
4
|
+
|
5
|
+
require "bundler/setup"
|
6
|
+
require "random_name_generator"
|
5
7
|
|
6
8
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
9
|
# with your gem easier. You can also use a different console, if you like.
|
8
10
|
|
9
11
|
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
require
|
12
|
+
require "pry"
|
11
13
|
|
12
14
|
# Override default value.inspect
|
13
15
|
Pry.config.print = proc { |output, value| output.puts "=> #{value}" }
|
14
16
|
Pry.start
|
15
|
-
|
16
|
-
# require 'irb'
|
17
|
-
# IRB.start
|
data/bin/run
ADDED
@@ -1,17 +1,20 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
# frozen_string_literal: true
|
4
|
+
|
5
|
+
require "random_name_generator"
|
6
|
+
require "slop"
|
5
7
|
|
6
8
|
lang = RandomNameGenerator::FANTASY
|
7
9
|
|
8
10
|
opts = Slop.parse do |o|
|
9
|
-
o.bool
|
10
|
-
o.bool
|
11
|
-
o.bool
|
12
|
-
o.bool
|
13
|
-
o.bool
|
14
|
-
o.bool
|
11
|
+
o.bool "-e", "--elven", "Use Elven eyllable file"
|
12
|
+
o.bool "-g", "--goblin", "Use Goblin eyllable file"
|
13
|
+
o.bool "-r", "--roman", "Use Roman eyllable file"
|
14
|
+
o.bool "-f", "--flipmode", "Flip mode in effect"
|
15
|
+
o.bool "-c", "--cyrillic", "Use Cyrillic mode"
|
16
|
+
o.bool "-x", "--xrated", "Generate Curse words [NEEDS WORK]"
|
17
|
+
o.bool "-?", "--help", "How to"
|
15
18
|
end
|
16
19
|
|
17
20
|
if opts.cyrillic?
|
@@ -23,6 +26,7 @@ else
|
|
23
26
|
lang = RandomNameGenerator::ELVEN if opts.elven?
|
24
27
|
lang = RandomNameGenerator::GOBLIN if opts.goblin?
|
25
28
|
lang = RandomNameGenerator::ROMAN if opts.roman?
|
29
|
+
lang = RandomNameGenerator::CURSE if opts.xrated?
|
26
30
|
end
|
27
31
|
|
28
32
|
if opts.flipmode?
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,63 @@
|
|
1
|
+
-ass
|
2
|
+
-bast
|
3
|
+
-bo
|
4
|
+
-boll
|
5
|
+
-bro
|
6
|
+
-bugg
|
7
|
+
-cho
|
8
|
+
-choad
|
9
|
+
-crap
|
10
|
+
-crike +c
|
11
|
+
-cunt
|
12
|
+
-dick
|
13
|
+
-eff
|
14
|
+
-effing
|
15
|
+
-frig
|
16
|
+
-fuck
|
17
|
+
-god
|
18
|
+
-piss
|
19
|
+
-rubb
|
20
|
+
-shit
|
21
|
+
-stuff
|
22
|
+
-suck
|
23
|
+
-tiddly
|
24
|
+
-wank
|
25
|
+
arse +c
|
26
|
+
ass
|
27
|
+
bro
|
28
|
+
fuck
|
29
|
+
ing
|
30
|
+
shit
|
31
|
+
wank
|
32
|
+
+ard
|
33
|
+
+arse
|
34
|
+
+atch
|
35
|
+
+ass
|
36
|
+
+bi
|
37
|
+
+bitch
|
38
|
+
+bro
|
39
|
+
+child
|
40
|
+
+cunt
|
41
|
+
+damn
|
42
|
+
+er
|
43
|
+
+erd
|
44
|
+
+fuck
|
45
|
+
+fucker
|
46
|
+
+hole
|
47
|
+
+ing
|
48
|
+
+ish
|
49
|
+
+ocks
|
50
|
+
+off
|
51
|
+
+root
|
52
|
+
+sav
|
53
|
+
+shag
|
54
|
+
+stuff
|
55
|
+
+stuffed
|
56
|
+
+suck
|
57
|
+
+twat
|
58
|
+
+uck
|
59
|
+
+wank
|
60
|
+
+wink
|
61
|
+
+wipe
|
62
|
+
+wit
|
63
|
+
+y
|
@@ -0,0 +1,350 @@
|
|
1
|
+
-a +c
|
2
|
+
-æ +c
|
3
|
+
-aa +c
|
4
|
+
-ab
|
5
|
+
-aby +c
|
6
|
+
-ad
|
7
|
+
-ae +c
|
8
|
+
-ag
|
9
|
+
-ahr +v
|
10
|
+
-ai +c
|
11
|
+
-ak +v
|
12
|
+
-aka +c
|
13
|
+
-ake +c
|
14
|
+
-ako +c
|
15
|
+
-al
|
16
|
+
-all
|
17
|
+
-am
|
18
|
+
-an
|
19
|
+
-anc
|
20
|
+
-and +c
|
21
|
+
-ang
|
22
|
+
-anti
|
23
|
+
-ap
|
24
|
+
-ar
|
25
|
+
-as
|
26
|
+
-hab
|
27
|
+
-mai
|
28
|
+
-mal
|
29
|
+
|
30
|
+
add -c +v
|
31
|
+
al -c
|
32
|
+
am -c
|
33
|
+
ama -c +c
|
34
|
+
ay -c
|
35
|
+
ast -c
|
36
|
+
bat
|
37
|
+
dra +c
|
38
|
+
dus
|
39
|
+
ez -c +v
|
40
|
+
ha -c +c
|
41
|
+
i -c +c
|
42
|
+
ia -c +c
|
43
|
+
it -c
|
44
|
+
loc +v
|
45
|
+
ma +c
|
46
|
+
mo -c +c
|
47
|
+
oc
|
48
|
+
olly -c +v
|
49
|
+
or
|
50
|
+
ra +c
|
51
|
+
rat
|
52
|
+
rax +v
|
53
|
+
real
|
54
|
+
roma -c +c
|
55
|
+
sh
|
56
|
+
sta
|
57
|
+
su
|
58
|
+
thi +c
|
59
|
+
una -c +c
|
60
|
+
za -v
|
61
|
+
|
62
|
+
+al
|
63
|
+
+akku -c
|
64
|
+
+as
|
65
|
+
+aroth
|
66
|
+
+b'el -c
|
67
|
+
+bou -v
|
68
|
+
+chon
|
69
|
+
+christ -v
|
70
|
+
+dai
|
71
|
+
+deus
|
72
|
+
+er -c
|
73
|
+
+es -c
|
74
|
+
+ias -c
|
75
|
+
+iel
|
76
|
+
+ka
|
77
|
+
+lat
|
78
|
+
+lech
|
79
|
+
+lius
|
80
|
+
+ma
|
81
|
+
+man
|
82
|
+
+mon
|
83
|
+
+nah
|
84
|
+
+nyu
|
85
|
+
+on -c
|
86
|
+
+phus -c
|
87
|
+
+ra -v
|
88
|
+
+rept -v
|
89
|
+
+res
|
90
|
+
+ros
|
91
|
+
+roth
|
92
|
+
+s -v
|
93
|
+
+sag
|
94
|
+
+sakku -v
|
95
|
+
+sura
|
96
|
+
+van
|
97
|
+
+xas -v
|
98
|
+
+y -c
|
99
|
+
+ym
|
100
|
+
+xu
|
101
|
+
+z'el -v
|
102
|
+
+zel -v
|
103
|
+
+zou
|
104
|
+
|
105
|
+
# https://en.wikipedia.org/wiki/The_infernal_names
|
106
|
+
|
107
|
+
Azi Dahaka/Dahak (Zoroastrianism)
|
108
|
+
|
109
|
+
Ahpuch - Mayan devil
|
110
|
+
Ahriman - Mazdean devil
|
111
|
+
Angra Mainyu - Zoroasterism synonym for devil
|
112
|
+
Apollyon - Greek synonym for Abaddon.
|
113
|
+
Asmodeus - Hebrew devil of sensuality and luxury, originally "creature of judgment"
|
114
|
+
Azazel - Taught man to make weapons of war (Hebrew)
|
115
|
+
Baalberith - Canaanite Lord of the covenant who was later made a devil
|
116
|
+
Balaam - Hebrew devil of avarice and greed
|
117
|
+
Baphomet - symbolic of Satan
|
118
|
+
Beelzebub - Lord of the Flies, taken from the symbolism of the scarab (Hebrew)
|
119
|
+
Behemoth - Hebrew personification of Lucifer in the form of an elephant or hippopotamus
|
120
|
+
Beherit - Syriac name for Satan
|
121
|
+
Chemosh - National god of Moabites, later a devil
|
122
|
+
Cimeries - Rides a black horse and rules Africa
|
123
|
+
Dagon - Philistine avenging devil of the sea
|
124
|
+
Demogorgon - a name so terrible as to not be known to mortals
|
125
|
+
Diabolous - "Flowing downwards" (Greek)
|
126
|
+
Dracula - Romanian name for son of the devil or dragon, which would also denote a "devilish" name—Romanian isn't too clear on which meaning, if not both, is correct.
|
127
|
+
Euronymous - Greek Prince of Death (a misspelling, correct spelling Eurynomos)
|
128
|
+
Gorgo - dim. of Demogorgon, see above
|
129
|
+
Guayota - guanche devil
|
130
|
+
Haborym - Hebrew synonym for Satan
|
131
|
+
Iblis - Synonym for Shaitan
|
132
|
+
Leviathan - Hebrew personification of Lucifer in the form of a great sea reptile (usually it represents the Antichrist; the beast of the sea)
|
133
|
+
Lilith - Hebrew female devil, Adam's first wife who taught him lust
|
134
|
+
Loki - Teutonic devil
|
135
|
+
Mammon - Aramaic god of wealth and profit
|
136
|
+
Marduk - god of the city of Babylon
|
137
|
+
Mastema - Hebrew synonym for Satan
|
138
|
+
Melek Taus - Yezidi devil
|
139
|
+
Mephistopheles - he who shuns the light, q.v. Faust (Greek)
|
140
|
+
Milcom - Ammonite devil
|
141
|
+
Moloch - Phoenician and Canaanite devil
|
142
|
+
Mormo - King of the Ghouls, consort of Hecate (Greek)
|
143
|
+
Naamah - Hebrew female devil of seduction
|
144
|
+
Nihasa - American Indian devil
|
145
|
+
O-Yama - Japanese name for lord of death
|
146
|
+
Pwcca - one of the myriad of fairy (faerie) folk
|
147
|
+
Saitan - Enochian equivalent of Satan
|
148
|
+
Samael - "Venom of God" (Hebrew)
|
149
|
+
Samnu - Central Asian devil
|
150
|
+
Sedit - American Nepali devil
|
151
|
+
Shaitan - Arabic name for Satan
|
152
|
+
T'an-mo - Chinese counterpart to the devil, covetousness, desire
|
153
|
+
Tchort - Russian name for Satan, "black god"
|
154
|
+
Typhon - Greek personification of devil
|
155
|
+
Yama - The lord of death in Hinduism
|
156
|
+
Yen-lo-Wang - Chinese ruler of Hell
|
157
|
+
|
158
|
+
# https://en.wikipedia.org/wiki/List_of_theological_demons
|
159
|
+
|
160
|
+
Baal/Bael (Christian demonology)
|
161
|
+
Babi ngepet (Indonesian mythology)
|
162
|
+
Bakasura (Hindu mythology)
|
163
|
+
Balam (Christian demonology)
|
164
|
+
Balberith (Jewish demonology)
|
165
|
+
Bali Raj (Hindu mythology)
|
166
|
+
Banshee (Irish mythology)
|
167
|
+
Baphomet (Christian folklore)
|
168
|
+
Barbas (Christian demonology)
|
169
|
+
Barbatos (Christian demonology)
|
170
|
+
Barong (Indonesian mythology)
|
171
|
+
Bathin/Mathim/Bathym/Marthim (Christian demonology)
|
172
|
+
Beelzebub (Jewish demonology, Christian demonology)
|
173
|
+
Behemoth (Jewish demonology)
|
174
|
+
Belial (Jewish demonology, Christian demonology)
|
175
|
+
Beleth (Christian demonology)
|
176
|
+
Belphegor (Christian demonology)
|
177
|
+
Berith/Beherit (Phoenician mythology, Christian demonology)
|
178
|
+
Bhūta (Sanskrit)
|
179
|
+
Bifrons (Christian demonology)
|
180
|
+
Boruta (Slavic mythology)
|
181
|
+
Botis (Christian demonology)
|
182
|
+
Buer (Christian demonology)
|
183
|
+
Bukavac (Slavic mythology)
|
184
|
+
Bune (Christian demonology)
|
185
|
+
Bushyasta (Zoroastrianism)
|
186
|
+
|
187
|
+
Cain/Canio (Christian demonology)
|
188
|
+
Charun (Etruscan mythology)
|
189
|
+
Chemosh (Moabite)
|
190
|
+
Choronzon (Thelema)
|
191
|
+
Cimejes/Kimaris/Cimeies (Christian demonology)
|
192
|
+
Corson (Christian demonology)
|
193
|
+
Crocell/Procell (Christian demonology)
|
194
|
+
Culsu (Etruscan mythology)
|
195
|
+
|
196
|
+
Daeva (Zoroastrianism demonology)
|
197
|
+
Dagon (Semitic mythology)
|
198
|
+
Dajjal (Islamic demonology)
|
199
|
+
Dantalion (Christian demonology)
|
200
|
+
Danjal (Jewish mythology)
|
201
|
+
Davy Jones (nautical folklore)
|
202
|
+
Decarabia (Christian demonology)
|
203
|
+
Demiurge (Gnosticism)
|
204
|
+
Demogorgon (Christian demonology)
|
205
|
+
Devil (Christian demonology)
|
206
|
+
Div-e Sepid (Persian mythology)
|
207
|
+
Drekavac (Slavic mythology)
|
208
|
+
Dzoavits (Native American mythology)
|
209
|
+
|
210
|
+
Eblis (or Iblis) (Islamic demonology)
|
211
|
+
Eligos (Christian demonology)
|
212
|
+
Eisheth (Jewish demonology)
|
213
|
+
|
214
|
+
Focalor (Christian demonology)
|
215
|
+
Foras/Forcas/Forras/ (Christian demonology)
|
216
|
+
Forneus (Christian demonology)
|
217
|
+
Furcas/Forcas (Christian demonology)
|
218
|
+
Furfur (Christian demonology)
|
219
|
+
|
220
|
+
Gaap (Christian demonology)
|
221
|
+
Gader'el (Jewish demonology)
|
222
|
+
Gaki (Japanese mythology)
|
223
|
+
Gamigin (Christian demonology)
|
224
|
+
Ghoul (Arabian and several other mythologies)
|
225
|
+
Glasya-Labolas/Caacrinolaas/Caassimolar/Classyalabolas/Glassia-labolis (Christian demonology)
|
226
|
+
Gorgon (Greek mythology)
|
227
|
+
Gremory/Gomory (Christian demonology)
|
228
|
+
Grigori (Jewish demonology)
|
229
|
+
Gualichu (Mapuche mythology)
|
230
|
+
Guayota (Guanche)
|
231
|
+
Gusion/Gusoin/Gusoyn
|
232
|
+
|
233
|
+
Haagenti (Christian demonology)
|
234
|
+
Halphas/Malthus (Christian demonology)
|
235
|
+
Hantu Raya (Indonesian and Malaysian mythology)
|
236
|
+
Haures/Flauros/Flavros/Hauras/Havres (Christian demonology)
|
237
|
+
|
238
|
+
Ifrit (Islamic mythology)
|
239
|
+
Incubus (Christian demonology, Chaldean mythology, Jewish folklore)
|
240
|
+
Ipos/Ipes (Christian demonology)
|
241
|
+
|
242
|
+
Jinn (Islamic demonology)
|
243
|
+
Jikininki (Japanese mythology)
|
244
|
+
|
245
|
+
Kabandha/Kabhanda (Hinduism)
|
246
|
+
Kali (Hinduism)
|
247
|
+
Kasadya (Jewish demonology)
|
248
|
+
Kokabiel (Jewish demonology)
|
249
|
+
Kroni (Ayyavazhi demonology)
|
250
|
+
Krampus (Germanic-Christian Demonology)
|
251
|
+
Killakee Cat (Hell Fire Club/Satanism)
|
252
|
+
Kumbhakarna (Hinduism)
|
253
|
+
L[edit]
|
254
|
+
Legion (Christian demonology)
|
255
|
+
Lechies (Slavic mythology)
|
256
|
+
Leyak (Indonesian mythology)
|
257
|
+
Lempo (Finnish mythology)
|
258
|
+
Leraje/Leraie (Christian demonology)
|
259
|
+
Leviathan (Jewish demonology, Christian demonology)
|
260
|
+
Lili/Lilin/Lilim (Jewish demonology)
|
261
|
+
Lilith (Sumerian mythology, Akkadian mythology, Jewish folklore)
|
262
|
+
Lucifer (Christian demonology)
|
263
|
+
Lucifuge Rofocale (Christian demonology)
|
264
|
+
M[edit]
|
265
|
+
Malphas (Christian demonology)
|
266
|
+
Mammon (Christian demonology)
|
267
|
+
Mara (Buddhist mythology)
|
268
|
+
Maricha (Hindu mythology)
|
269
|
+
Marax/Morax/Foraii (Christian demonology)
|
270
|
+
Marchosias (Christian demonology)
|
271
|
+
Masih ad-Dajjal/Ad-Dajjal/Dajjal (Islamic eschatology)
|
272
|
+
Mastema (Jewish demonology)
|
273
|
+
Mephistopheles (Christian folklore, German folklore)
|
274
|
+
Merihem (Christian demonology)
|
275
|
+
Moloch (Christian demonology)
|
276
|
+
Murmur (Christian demonology)
|
277
|
+
Morpheus (Greek mythology)
|
278
|
+
N[edit]
|
279
|
+
Naamah (Jewish demonology)
|
280
|
+
Naberius/Cerbere/Naberus (Christian demonology)
|
281
|
+
Ninurta (Sumerian mythology, Akkadian mythology)
|
282
|
+
Namtar (Sumerian mythology)
|
283
|
+
O[edit]
|
284
|
+
Onoskelis (Testament of Solomon)
|
285
|
+
Orcus (Roman mythology, later Christian demonology)
|
286
|
+
Orias/Oriax (Christian demonology)
|
287
|
+
Orobas (Christian demonology)
|
288
|
+
Ose (Christian demonology)
|
289
|
+
Ördög (Hungarian mythology)
|
290
|
+
O Tokata (Indonesian mythology)
|
291
|
+
P[edit]
|
292
|
+
Paimon (Christian demonology)
|
293
|
+
Pazuzu (Babylonian demonology)
|
294
|
+
Pelesit (Indonesian and Malaysian mythology)
|
295
|
+
Phenex (Christian demonology)
|
296
|
+
Penemue (Jewish and Christian demonology)
|
297
|
+
Pithius (Christian demonology)
|
298
|
+
Pocong (Indonesian mythology)
|
299
|
+
Pontianak (Indonesian and Malaysian mythology)
|
300
|
+
Pruflas (Christian demonology)
|
301
|
+
Puloman (Hindu demonology)
|
302
|
+
R[edit]
|
303
|
+
Rahab (Jewish folklore)
|
304
|
+
Raum (Christian demonology)
|
305
|
+
Ronove (Christian demonology)
|
306
|
+
Rusalka (Slavic mythology)
|
307
|
+
Rakshasa (Hinduism)
|
308
|
+
Rangda (Hinduism in Indonesia)
|
309
|
+
Ravan (Hinduism)
|
310
|
+
S[edit]
|
311
|
+
Sabnock (Christian demonology)
|
312
|
+
Saleos (Christian demonology)
|
313
|
+
Samael (Jewish demonology)
|
314
|
+
Satan (or Shaytan) (Jewish demonology, Christian demonology, Islamic demonology)
|
315
|
+
Seir (Christian demonology)
|
316
|
+
Semyaz (Jewish demonology)
|
317
|
+
Shax/Chax (Christian demonology)
|
318
|
+
Shedim (Jewish folklore)
|
319
|
+
Sitri (Christian demonology)
|
320
|
+
Sthenno (Greek mythology)
|
321
|
+
Stolas/Solas (Christian demonology)
|
322
|
+
Suanggi (Indonesian mythology)
|
323
|
+
Succubus (Sumerian mythology, Akkadian mythology, Jewish folklore, Christian demonology)
|
324
|
+
Surgat (Christian demonology)
|
325
|
+
|
326
|
+
Tannin (Jewish demonology)
|
327
|
+
Toyol (Indonesian and Malaysian)
|
328
|
+
Tuchulcha (Etruscan mythology)
|
329
|
+
|
330
|
+
Ukobach (Christian demonology)
|
331
|
+
|
332
|
+
Valac (Christian demonology)
|
333
|
+
Valefar/Malaphar/Malephar (Christian demonology)
|
334
|
+
Vanth (Etruscan mythology)
|
335
|
+
Vapula (Christian demonology)
|
336
|
+
Vassago (Christian demonology)
|
337
|
+
Vepar (Christian demonology)
|
338
|
+
Vine (Christian demonology)
|
339
|
+
|
340
|
+
Wendigo (Algonquin)
|
341
|
+
|
342
|
+
Xaphan (Christian demonology)
|
343
|
+
Xezbeth (demonology)[clarification needed]
|
344
|
+
|
345
|
+
Yeqon
|
346
|
+
Yeter'el
|
347
|
+
|
348
|
+
Zagan (Christian demonology)
|
349
|
+
Zepar (Christian demonology)
|
350
|
+
Ziminiar (Christian demonology)
|