random_name_generator 4.0.1 → 4.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f728099d28460a59f2c78c3d43ca48deed8588040141a0ba14fc52b0c8285185
4
- data.tar.gz: 32174e3c901a12ab6da5eaf23a4ebf6671f07679869e061b953e0460326f8a67
3
+ metadata.gz: 0e3511685f7df265b945b6254e889eac64d5857309623a5c09f91f309f9fc52d
4
+ data.tar.gz: bc756891b8f9adda7c154aed1b6865f3e4746f6d57ca87c2c01357ea9d9912c4
5
5
  SHA512:
6
- metadata.gz: 0bd991d716f21b3fd88d62766d8afbfe9dd8edc086dd14577ab5ad7f87fbd04d9b45fc2eb689cc8e54d6cb062cc34bb414f6602e8538c2f28f17e7cd7584dd2d
7
- data.tar.gz: a78b01b414bbf735775449d67a7888c41f8193158cd8b3314a62b65459a609c1e3e8782c1672371880f36a4cb50fb9b5e666a528fe33778ec79c639fd687aa05
6
+ metadata.gz: dced56da054f6c842dc74cb2ac40baae325b2edea5645494fdadf6f3243259137e89fb32924f50052487c14d4d151944efc5d923ed1bef2698effb7f306c6357
7
+ data.tar.gz: 25b9619caf21f3e0e04561eed930839d2f599564e77ea194c43f76944a191220732851f8e6e961cf2da8a8568f9f5102b49751c1e866c021a224ed8fb34acd0c
@@ -28,7 +28,7 @@ jobs:
28
28
  - ruby-version: head
29
29
  allow-failure: true
30
30
  steps:
31
- - uses: actions/checkout@v4
31
+ - uses: actions/checkout@v5
32
32
  - name: Set up Ruby
33
33
  uses: ruby/setup-ruby@v1
34
34
  with:
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- random_name_generator (4.0.1)
4
+ random_name_generator (4.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -40,7 +40,7 @@ Or install it yourself as:
40
40
  generate a first and last name for you:
41
41
 
42
42
  ```shell
43
- $> exe/random_name_generator [-egrfcxß?]
43
+ $> exe/random_name_generator [-egrkfcxdß?]
44
44
  ```
45
45
 
46
46
  You can also install it so that it's instantly available to you:
@@ -57,8 +57,9 @@ RandomNameGenerator comes with several styles of syllable files:
57
57
  [Elven](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/elven.txt),
58
58
  [Fantasy](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/fantasy.txt),
59
59
  [Goblin](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/goblin.txt),
60
+ [Roman](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/roman.txt),
60
61
  and
61
- [Roman](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/roman.txt).
62
+ [Klingon](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/klingon.txt).
62
63
  By default it uses Fantasy. Instantiate RandomNameGenerator and then
63
64
  call compose on the object to generate a random name. If you don't pass
64
65
  in the number of syllables you want for your name to compose, it will
@@ -99,7 +100,9 @@ for the required specification.
99
100
  Edgier, less curated syllable sets live under `lib/languages/experimental/`
100
101
  and are opt-in via their own constants:
101
102
  [Curse](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/experimental/curse.txt)
102
- (`RandomNameGenerator::CURSE`) and
103
+ (`RandomNameGenerator::CURSE`),
104
+ [Demonic](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/experimental/demonic.txt)
105
+ (`RandomNameGenerator::DEMONIC`), and
103
106
  [German Curse](https://github.com/folkengine/random_name_generator/blob/master/lib/languages/experimental/german-curse.txt)
104
107
  (`RandomNameGenerator::GERMAN_CURSE`).
105
108
 
@@ -11,9 +11,11 @@ opts = Slop.parse do |o|
11
11
  o.bool "-e", "--elven", "Use Elven eyllable file"
12
12
  o.bool "-g", "--goblin", "Use Goblin eyllable file"
13
13
  o.bool "-r", "--roman", "Use Roman eyllable file"
14
+ o.bool "-k", "--klingon", "Use Klingon eyllable file"
14
15
  o.bool "-f", "--flipmode", "Flip mode in effect"
15
16
  o.bool "-c", "--cyrillic", "Use Cyrillic mode"
16
17
  o.bool "-x", "--xrated", "Generate Curse words [NEEDS WORK]"
18
+ o.bool "-d", "--demonic", "Generate Demonic names"
17
19
  o.bool "-ß", "--german-curse", "Generate German Curse words [NEEDS WORK]"
18
20
  o.bool "-?", "--help", "How to"
19
21
  end
@@ -27,7 +29,9 @@ else
27
29
  lang = RandomNameGenerator::ELVEN if opts.elven?
28
30
  lang = RandomNameGenerator::GOBLIN if opts.goblin?
29
31
  lang = RandomNameGenerator::ROMAN if opts.roman?
32
+ lang = RandomNameGenerator::KLINGON if opts.klingon?
30
33
  lang = RandomNameGenerator::CURSE if opts.xrated?
34
+ lang = RandomNameGenerator::DEMONIC if opts.demonic?
31
35
  lang = RandomNameGenerator::GERMAN_CURSE if opts.german_curse?
32
36
  end
33
37
 
@@ -7,6 +7,7 @@
7
7
  -ae +c
8
8
  -ag
9
9
  -ahr +v
10
+ -ahri
10
11
  -ai +c
11
12
  -ak +v
12
13
  -aka +c
@@ -23,328 +24,225 @@
23
24
  -ap
24
25
  -ar
25
26
  -as
27
+ -ash
28
+ -asmo +c
29
+ -asta +c
30
+ -aza
31
+ -baal
32
+ -bael
33
+ -baph
34
+ -barb
35
+ -behe +c
36
+ -bel
37
+ -beri
38
+ -bif
39
+ -char
40
+ -chem
41
+ -chor
42
+ -cim
43
+ -croc
44
+ -dae +c
45
+ -dag
46
+ -dant
47
+ -deca +c
48
+ -demo +c
49
+ -drac
50
+ -drek
51
+ -eli
52
+ -foc
53
+ -forn
54
+ -fur
55
+ -gam
56
+ -glas
57
+ -gorg
58
+ -grem
59
+ -grig
60
+ -gus
61
+ -haag
26
62
  -hab
63
+ -hal
64
+ -haur
65
+ -lem
66
+ -ler
67
+ -lev
68
+ -lil
69
+ -luc
27
70
  -mai
28
71
  -mal
29
-
72
+ -mam
73
+ -mard
74
+ -mast
75
+ -meph
76
+ -mol
77
+ -morm
78
+ -murm
79
+ -nab
80
+ -nam
81
+ -orc
82
+ -oro +c
83
+ -pai +c
84
+ -paz
85
+ -phen
86
+ -pruf
87
+ -rak
88
+ -rav
89
+ -ron
90
+ -sab
91
+ -sam
92
+ -shai
93
+ -shax
94
+ -sit
95
+ -sto
96
+ -sur
97
+ -tan
98
+ -tchor
99
+ -tuch
100
+ -typh
101
+ -uko +c
102
+ -val
103
+ -vap
104
+ -vass
105
+ -vep
106
+ -xa +c
107
+ -xez
108
+ -yeq
109
+ -zag
110
+ -zep
111
+ -zim
30
112
  add -c +v
31
113
  al -c
32
114
  am -c
33
115
  ama -c +c
34
- ay -c
35
116
  ast -c
117
+ ay -c
118
+ bal
36
119
  bat
120
+ be
121
+ bo
122
+ chos
123
+ dah
37
124
  dra +c
38
125
  dus
39
126
  ez -c +v
127
+ gor
40
128
  ha -c +c
41
129
  i -c +c
42
130
  ia -c +c
43
131
  it -c
132
+ ki
133
+ kob
134
+ lab
135
+ li
44
136
  loc +v
137
+ lu
45
138
  ma +c
139
+ mar
140
+ mas
46
141
  mo -c +c
142
+ mor
143
+ nur
47
144
  oc
48
145
  olly -c +v
49
146
  or
147
+ phi
148
+ pho
50
149
  ra +c
150
+ ras
51
151
  rat
52
152
  rax +v
53
153
  real
154
+ rin
155
+ rob
54
156
  roma -c +c
157
+ ruf
55
158
  sh
159
+ sha
56
160
  sta
161
+ stem
57
162
  su
163
+ ta
58
164
  thi +c
165
+ tho
166
+ ul -c
59
167
  una -c +c
168
+ uz -c
169
+ vi
170
+ ya
60
171
  za -v
61
-
62
- +al
172
+ ze
173
+ zeb
174
+ zo
175
+ zu
63
176
  +akku -c
64
- +as
177
+ +al
65
178
  +aroth
179
+ +as
66
180
  +b'el -c
181
+ +beth
67
182
  +bou -v
183
+ +bub
184
+ +bus
68
185
  +chon
69
186
  +christ -v
70
187
  +dai
71
188
  +deus
189
+ +don
72
190
  +er -c
73
191
  +es -c
192
+ +gion
193
+ +gor
194
+ +goth
74
195
  +ias -c
75
196
  +iel
197
+ +ith
76
198
  +ka
77
199
  +lat
78
200
  +lech
201
+ +lial
79
202
  +lius
203
+ +loch
204
+ +lok
80
205
  +ma
206
+ +mael
81
207
  +man
82
208
  +mon
209
+ +moth
83
210
  +nah
211
+ +nock
84
212
  +nyu
85
213
  +on -c
214
+ +phas
215
+ +phegor
216
+ +pheles
217
+ +phon
86
218
  +phus -c
219
+ +pos
87
220
  +ra -v
221
+ +rax
88
222
  +rept -v
89
223
  +res
224
+ +rit
90
225
  +ros
91
226
  +roth
227
+ +run
92
228
  +s -v
93
229
  +sag
94
230
  +sakku -v
231
+ +son
95
232
  +sura
233
+ +tan
234
+ +than
235
+ +tos
236
+ +uk -c
96
237
  +van
238
+ +vros
97
239
  +xas -v
240
+ +xu
98
241
  +y -c
99
242
  +ym
100
- +xu
243
+ +yon
101
244
  +z'el -v
102
245
  +zel -v
103
246
  +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)
247
+ +zu -v
248
+ +zuzu
@@ -1,7 +1,12 @@
1
+ -affen
1
2
  -arsch
2
3
  -arschge
4
+ -bauern
3
5
  -blöd
4
- -blöd
6
+ -bratz
7
+ -brech
8
+ -brüll
9
+ -dackel
5
10
  -depp
6
11
  -deppen
7
12
  -donner
@@ -10,33 +15,83 @@
10
15
  -dumm
11
16
  -dummkopf +v
12
17
  -dumpf
18
+ -dussel
19
+ -eiter
20
+ -ekel
21
+ -elend
13
22
  -fahr
23
+ -fetzen
24
+ -fick
14
25
  -flatz
26
+ -fluch
27
+ -fress
28
+ -furz
29
+ -gammel
30
+ -geier
31
+ -gift
15
32
  -grantz
33
+ -grind
34
+ -grunz
16
35
  -hack
36
+ -halunken
37
+ -heiden
17
38
  -himmel
39
+ -hohl
40
+ -honk
41
+ -hosen
42
+ -hunds
18
43
  -huren
19
44
  -kack
45
+ -klapper
46
+ -klotz
47
+ -knall
48
+ -kotz
49
+ -kreuz
20
50
  -krott
51
+ -labber
52
+ -lahm
21
53
  -lauch
22
54
  -leck
55
+ -lumpen
56
+ -matsch
57
+ -memmen
58
+ -mief
23
59
  -miss
24
60
  -mist
25
61
  -mistkerl +v
62
+ -modder
63
+ -motz
64
+ -muff
26
65
  -murks
27
66
  -mutter
67
+ -nichts
28
68
  -penner
69
+ -pfui +c
29
70
  -pfusch
71
+ -pöbel
72
+ -protz
30
73
  -quatsch
74
+ -ranz
75
+ -rotz
76
+ -rüpel
77
+ -sabber
31
78
  -sakra
32
79
  -sau
33
80
  -saukerl
81
+ -schand
34
82
  -schatten
35
83
  -schei
36
84
  -scheiben
37
85
  -scheiß +v
86
+ -schlamp
38
87
  -schleim
88
+ -schmier
89
+ -schmutz
39
90
  -schnodd
91
+ -siff
92
+ -stink
93
+ -stümper
94
+ -suff
40
95
  -teufel
41
96
  -trottel
42
97
  -verdammt
@@ -44,96 +99,232 @@
44
99
  -weich
45
100
  -wichs
46
101
  -wichser +v
102
+ -würg
103
+ -zank
47
104
  -zefix
48
105
  -zottel
106
+ bammel
107
+ bock
108
+ brat
109
+ brumm
110
+ butz
111
+ dampf
49
112
  doof
113
+ dödel
50
114
  dreck
51
115
  el
52
116
  en
53
117
  er
54
118
  fatzke
119
+ fetz
55
120
  fick
121
+ fitz
122
+ flenn
123
+ fratz
124
+ fussel
56
125
  fut
126
+ gack
127
+ gammel
128
+ glibber
57
129
  glotz
58
130
  gnatz
131
+ grob
132
+ grunz
59
133
  haft
134
+ hampel
60
135
  herr
136
+ heul
61
137
  hunz
62
138
  ig
63
139
  isch
140
+ keif
141
+ klump
142
+ knorz
143
+ kotz
144
+ kramp
145
+ kratz
146
+ labber
147
+ lall
148
+ latsch
64
149
  ling
65
150
  los
151
+ lümmel
152
+ mampf
66
153
  mann
154
+ matsch
155
+ meck
67
156
  mist
157
+ motz
158
+ muff
159
+ mumpf
160
+ murr
68
161
  mursch
69
162
  nis
163
+ nöl
164
+ nörgel
70
165
  nutte
166
+ öd -c
167
+ pamp
168
+ patsch
169
+ plemp
170
+ plörr
71
171
  popel
172
+ protz
173
+ pups
72
174
  quark
175
+ quengel
176
+ ranz
177
+ ratz
73
178
  rotz
179
+ rülps
180
+ sabber
74
181
  sau
182
+ schlabber
183
+ schlonz
184
+ schlurf
185
+ schmier
75
186
  schmodd
187
+ schnarch
188
+ schnorr
76
189
  schrott -c
190
+ siff
191
+ stänker
192
+ stink
193
+ strunz
194
+ suff
195
+ tratsch
196
+ trödel
77
197
  tum
78
198
  ung
79
199
  voll
200
+ wabbel
80
201
  wix -c
202
+ würg
203
+ zeter
81
204
  +aff
82
205
  +angeber
83
206
  +arsch
84
207
  +backe
208
+ +balg
209
+ +bart
85
210
  +bengel
211
+ +beutel
86
212
  +birne
87
213
  +bock
214
+ +bratze
215
+ +brut
216
+ +bube
217
+ +dackel
218
+ +deckel
219
+ +depp
88
220
  +ei
221
+ +eimer
89
222
  +esel
223
+ +eule
90
224
  +ficker
225
+ +fink
91
226
  +flasche
227
+ +fläz
92
228
  +fotze
229
+ +fratze
93
230
  +fresse
94
231
  +fut
232
+ +gaul
95
233
  +geburt
96
234
  +geige
97
235
  +gesicht
236
+ +gockel
98
237
  +gott
238
+ +göre
239
+ +gurke
240
+ +hals
99
241
  +hammel
242
+ +hannes
243
+ +haufen
100
244
  +heini
101
245
  +hirn
102
- +hölle
246
+ +hocker
247
+ +horst
248
+ +huhn
103
249
  +hund
250
+ +hölle
104
251
  +idiot
105
252
  +kacke
253
+ +kasper
254
+ +keks
106
255
  +kerl
107
256
  +kleister
257
+ +knacker
258
+ +knilch
108
259
  +kopf -c
109
260
  +kriecher
261
+ +kröte
262
+ +krücke
263
+ +kuh
264
+ +lackel
110
265
  +lappen
111
266
  +lecker
267
+ +liese
112
268
  +ling
113
269
  +loch -c
270
+ +lulatsch
271
+ +lümmel
114
272
  +made
115
273
  +mann
116
274
  +maul
275
+ +michel
276
+ +molch
277
+ +muffel
278
+ +mütze
117
279
  +nase
280
+ +niete
281
+ +nille
282
+ +nulpe
118
283
  +ochse
119
284
  +parker
285
+ +peter
120
286
  +pfosten
287
+ +pimpf
288
+ +pinsel
121
289
  +ratte -v
290
+ +rübe
291
+ +rüpel
122
292
  +sack
123
293
  +sau
124
294
  +schädel
125
295
  +scheiße
126
296
  +scheißer
127
297
  +schlampe
298
+ +schlucker
299
+ +schnauze
300
+ +schnösel
301
+ +schrat
128
302
  +schwein
303
+ +schwengel
129
304
  +sepp
305
+ +socke
130
306
  +sohn
307
+ +stiefel
308
+ +stinker
309
+ +stoffel
310
+ +strolch
131
311
  +stück
312
+ +suse
313
+ +tasche
132
314
  +teufel
315
+ +trine
316
+ +tröte
317
+ +trulla
133
318
  +tüte
319
+ +vieh
134
320
  +visage
321
+ +vogel
322
+ +wanst
135
323
  +wetter
136
324
  +wicht
137
325
  +wurm
326
+ +wutz
327
+ +zausel
138
328
  +ziege
329
+ +zipfel
139
330
  +zwerg
@@ -0,0 +1,111 @@
1
+ -batlh
2
+ -bel
3
+ -bortas
4
+ -cha
5
+ -do'
6
+ -duj
7
+ -ghob
8
+ -ghor
9
+ -hegh
10
+ -hiq
11
+ -hos
12
+ -jagh
13
+ -jaj
14
+ -kang
15
+ -kor
16
+ -lop
17
+ -maj
18
+ -may'
19
+ -mogh
20
+ -petaq
21
+ -qang
22
+ -qap
23
+ -qapla'
24
+ -qeylis
25
+ -qra
26
+ -qu'
27
+ -quch
28
+ -quv
29
+ -suv
30
+ -targ
31
+ -tlha
32
+ -tlhin
33
+ -tlhutlh
34
+ -toh
35
+ -tuq
36
+ -vaj
37
+ -ves
38
+ -vor
39
+ -wo'
40
+ -yay
41
+ 'a
42
+ 'e
43
+ 'o
44
+ a -c
45
+ agh
46
+ ang
47
+ ba
48
+ bo
49
+ cha
50
+ di
51
+ egh
52
+ glo
53
+ i -c
54
+ ich
55
+ lah
56
+ lar
57
+ li
58
+ meq
59
+ mor
60
+ nak
61
+ ngan
62
+ o -c
63
+ och
64
+ ogh
65
+ qam
66
+ qo
67
+ ral
68
+ tagh
69
+ tah
70
+ tlho
71
+ u -c
72
+ vagh
73
+ vo
74
+ wi'
75
+ ya
76
+ +'a'
77
+ +'e'
78
+ +batlh
79
+ +be'
80
+ +bogh
81
+ +cha'
82
+ +choh
83
+ +chugh
84
+ +daq
85
+ +di'
86
+ +ghach
87
+ +ha'
88
+ +hom
89
+ +jaj
90
+ +lu'
91
+ +meh
92
+ +mey
93
+ +moh
94
+ +na'
95
+ +ngan
96
+ +oy
97
+ +pla'
98
+ +pu'
99
+ +qa'
100
+ +qang
101
+ +qo'
102
+ +qu'
103
+ +ta'
104
+ +tagh
105
+ +tah
106
+ +tlh
107
+ +vad
108
+ +vam
109
+ +ves
110
+ +wi'
111
+ +yay
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RandomNameGenerator
4
- VERSION = "4.0.1"
4
+ VERSION = "4.0.2"
5
5
  end
@@ -31,8 +31,11 @@ module RandomNameGenerator
31
31
  GOBLIN_RU = File.new("#{dirname}/languages/goblin-ru.txt")
32
32
  ROMAN_RU = File.new("#{dirname}/languages/roman-ru.txt")
33
33
 
34
+ KLINGON = File.new("#{dirname}/languages/klingon.txt")
35
+
34
36
  # Experimental
35
37
  CURSE = File.new("#{dirname}/languages/experimental/curse.txt")
38
+ DEMONIC = File.new("#{dirname}/languages/experimental/demonic.txt")
36
39
  GERMAN_CURSE = File.new("#{dirname}/languages/experimental/german-curse.txt")
37
40
 
38
41
  # Static factory method that instantiates a RandomNameGenerator in a random language.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: random_name_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1
4
+ version: 4.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - folkengine
@@ -43,7 +43,6 @@ files:
43
43
  - docs/superpowers/specs/2026-07-18-lang-gen-skill-design.md
44
44
  - docs/superpowers/specs/2026-07-19-lang-gen-portable-prompt.md
45
45
  - exe/random_name_generator
46
- - lib/languages/demonic.txt
47
46
  - lib/languages/elven-ru.txt
48
47
  - lib/languages/elven.txt
49
48
  - lib/languages/experimental/curse.txt
@@ -53,6 +52,7 @@ files:
53
52
  - lib/languages/fantasy.txt
54
53
  - lib/languages/goblin-ru.txt
55
54
  - lib/languages/goblin.txt
55
+ - lib/languages/klingon.txt
56
56
  - lib/languages/roman-ru.txt
57
57
  - lib/languages/roman.txt
58
58
  - lib/random_name_generator.rb
@@ -1,345 +0,0 @@
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 -v
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
- thi +c
57
- una -c +c
58
-
59
- +al
60
- +akku -c
61
- +as
62
- +b'el -c
63
- +bou -v
64
- +chon
65
- +christ -v
66
- +dai
67
- +deus
68
- +er -c
69
- +es -c
70
- +ias -c
71
- +iel
72
- +ka
73
- +lat
74
- +lech
75
- +lius
76
- +ma
77
- +man
78
- +mon
79
- +nah
80
- +nyu
81
- +on -c
82
- +phus -c
83
- +rept -v
84
- +res
85
- +ros
86
- +s -v
87
- +sag
88
- +sakku -v
89
- +sura
90
- +van
91
- +xas -v
92
- +y -c
93
- +ym
94
- +zou
95
- +xu
96
-
97
- # https://en.wikipedia.org/wiki/The_infernal_names
98
-
99
- Astaroth (Christian demonology)
100
- Asura (Hindu mythology)
101
- Azazel / Azaz'el (Jewish demonology)
102
- Azi Dahaka/Dahak (Zoroastrianism)
103
-
104
- Ahpuch - Mayan devil
105
- Ahriman - Mazdean devil
106
- Angra Mainyu - Zoroasterism synonym for devil
107
- Apollyon - Greek synonym for Abaddon.
108
- Asmodeus - Hebrew devil of sensuality and luxury, originally "creature of judgment"
109
- Azazel - Taught man to make weapons of war (Hebrew)
110
- Baalberith - Canaanite Lord of the covenant who was later made a devil
111
- Balaam - Hebrew devil of avarice and greed
112
- Baphomet - symbolic of Satan
113
- Beelzebub - Lord of the Flies, taken from the symbolism of the scarab (Hebrew)
114
- Behemoth - Hebrew personification of Lucifer in the form of an elephant or hippopotamus
115
- Beherit - Syriac name for Satan
116
- Chemosh - National god of Moabites, later a devil
117
- Cimeries - Rides a black horse and rules Africa
118
- Dagon - Philistine avenging devil of the sea
119
- Demogorgon - a name so terrible as to not be known to mortals
120
- Diabolous - "Flowing downwards" (Greek)
121
- 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.
122
- Euronymous - Greek Prince of Death (a misspelling, correct spelling Eurynomos)
123
- Gorgo - dim. of Demogorgon, see above
124
- Guayota - guanche devil
125
- Haborym - Hebrew synonym for Satan
126
- Iblis - Synonym for Shaitan
127
- Leviathan - Hebrew personification of Lucifer in the form of a great sea reptile (usually it represents the Antichrist; the beast of the sea)
128
- Lilith - Hebrew female devil, Adam's first wife who taught him lust
129
- Loki - Teutonic devil
130
- Mammon - Aramaic god of wealth and profit
131
- Marduk - god of the city of Babylon
132
- Mastema - Hebrew synonym for Satan
133
- Melek Taus - Yezidi devil
134
- Mephistopheles - he who shuns the light, q.v. Faust (Greek)
135
- Milcom - Ammonite devil
136
- Moloch - Phoenician and Canaanite devil
137
- Mormo - King of the Ghouls, consort of Hecate (Greek)
138
- Naamah - Hebrew female devil of seduction
139
- Nihasa - American Indian devil
140
- O-Yama - Japanese name for lord of death
141
- Pwcca - one of the myriad of fairy (faerie) folk
142
- Saitan - Enochian equivalent of Satan
143
- Samael - "Venom of God" (Hebrew)
144
- Samnu - Central Asian devil
145
- Sedit - American Nepali devil
146
- Shaitan - Arabic name for Satan
147
- T'an-mo - Chinese counterpart to the devil, covetousness, desire
148
- Tchort - Russian name for Satan, "black god"
149
- Typhon - Greek personification of devil
150
- Yama - The lord of death in Hinduism
151
- Yen-lo-Wang - Chinese ruler of Hell
152
-
153
- # https://en.wikipedia.org/wiki/List_of_theological_demons
154
-
155
- Baal/Bael (Christian demonology)
156
- Babi ngepet (Indonesian mythology)
157
- Bakasura (Hindu mythology)
158
- Balam (Christian demonology)
159
- Balberith (Jewish demonology)
160
- Bali Raj (Hindu mythology)
161
- Banshee (Irish mythology)
162
- Baphomet (Christian folklore)
163
- Barbas (Christian demonology)
164
- Barbatos (Christian demonology)
165
- Barong (Indonesian mythology)
166
- Bathin/Mathim/Bathym/Marthim (Christian demonology)
167
- Beelzebub (Jewish demonology, Christian demonology)
168
- Behemoth (Jewish demonology)
169
- Belial (Jewish demonology, Christian demonology)
170
- Beleth (Christian demonology)
171
- Belphegor (Christian demonology)
172
- Berith/Beherit (Phoenician mythology, Christian demonology)
173
- Bhūta (Sanskrit)
174
- Bifrons (Christian demonology)
175
- Boruta (Slavic mythology)
176
- Botis (Christian demonology)
177
- Buer (Christian demonology)
178
- Bukavac (Slavic mythology)
179
- Bune (Christian demonology)
180
- Bushyasta (Zoroastrianism)
181
-
182
- Cain/Canio (Christian demonology)
183
- Charun (Etruscan mythology)
184
- Chemosh (Moabite)
185
- Choronzon (Thelema)
186
- Cimejes/Kimaris/Cimeies (Christian demonology)
187
- Corson (Christian demonology)
188
- Crocell/Procell (Christian demonology)
189
- Culsu (Etruscan mythology)
190
-
191
- Daeva (Zoroastrianism demonology)
192
- Dagon (Semitic mythology)
193
- Dajjal (Islamic demonology)
194
- Dantalion (Christian demonology)
195
- Danjal (Jewish mythology)
196
- Davy Jones (nautical folklore)
197
- Decarabia (Christian demonology)
198
- Demiurge (Gnosticism)
199
- Demogorgon (Christian demonology)
200
- Devil (Christian demonology)
201
- Div-e Sepid (Persian mythology)
202
- Drekavac (Slavic mythology)
203
- Dzoavits (Native American mythology)
204
-
205
- Eblis (or Iblis) (Islamic demonology)
206
- Eligos (Christian demonology)
207
- Eisheth (Jewish demonology)
208
-
209
- Focalor (Christian demonology)
210
- Foras/Forcas/Forras/ (Christian demonology)
211
- Forneus (Christian demonology)
212
- Furcas/Forcas (Christian demonology)
213
- Furfur (Christian demonology)
214
-
215
- Gaap (Christian demonology)
216
- Gader'el (Jewish demonology)
217
- Gaki (Japanese mythology)
218
- Gamigin (Christian demonology)
219
- Ghoul (Arabian and several other mythologies)
220
- Glasya-Labolas/Caacrinolaas/Caassimolar/Classyalabolas/Glassia-labolis (Christian demonology)
221
- Gorgon (Greek mythology)
222
- Gremory/Gomory (Christian demonology)
223
- Grigori (Jewish demonology)
224
- Gualichu (Mapuche mythology)
225
- Guayota (Guanche)
226
- Gusion/Gusoin/Gusoyn
227
-
228
- Haagenti (Christian demonology)
229
- Halphas/Malthus (Christian demonology)
230
- Hantu Raya (Indonesian and Malaysian mythology)
231
- Haures/Flauros/Flavros/Hauras/Havres (Christian demonology)
232
-
233
- Ifrit (Islamic mythology)
234
- Incubus (Christian demonology, Chaldean mythology, Jewish folklore)
235
- Ipos/Ipes (Christian demonology)
236
-
237
- Jinn (Islamic demonology)
238
- Jikininki (Japanese mythology)
239
-
240
- Kabandha/Kabhanda (Hinduism)
241
- Kali (Hinduism)
242
- Kasadya (Jewish demonology)
243
- Kokabiel (Jewish demonology)
244
- Kroni (Ayyavazhi demonology)
245
- Krampus (Germanic-Christian Demonology)
246
- Killakee Cat (Hell Fire Club/Satanism)
247
- Kumbhakarna (Hinduism)
248
- L[edit]
249
- Legion (Christian demonology)
250
- Lechies (Slavic mythology)
251
- Leyak (Indonesian mythology)
252
- Lempo (Finnish mythology)
253
- Leraje/Leraie (Christian demonology)
254
- Leviathan (Jewish demonology, Christian demonology)
255
- Lili/Lilin/Lilim (Jewish demonology)
256
- Lilith (Sumerian mythology, Akkadian mythology, Jewish folklore)
257
- Lucifer (Christian demonology)
258
- Lucifuge Rofocale (Christian demonology)
259
- M[edit]
260
- Malphas (Christian demonology)
261
- Mammon (Christian demonology)
262
- Mara (Buddhist mythology)
263
- Maricha (Hindu mythology)
264
- Marax/Morax/Foraii (Christian demonology)
265
- Marchosias (Christian demonology)
266
- Masih ad-Dajjal/Ad-Dajjal/Dajjal (Islamic eschatology)
267
- Mastema (Jewish demonology)
268
- Mephistopheles (Christian folklore, German folklore)
269
- Merihem (Christian demonology)
270
- Moloch (Christian demonology)
271
- Murmur (Christian demonology)
272
- Morpheus (Greek mythology)
273
- N[edit]
274
- Naamah (Jewish demonology)
275
- Naberius/Cerbere/Naberus (Christian demonology)
276
- Ninurta (Sumerian mythology, Akkadian mythology)
277
- Namtar (Sumerian mythology)
278
- O[edit]
279
- Onoskelis (Testament of Solomon)
280
- Orcus (Roman mythology, later Christian demonology)
281
- Orias/Oriax (Christian demonology)
282
- Orobas (Christian demonology)
283
- Ose (Christian demonology)
284
- Ördög (Hungarian mythology)
285
- O Tokata (Indonesian mythology)
286
- P[edit]
287
- Paimon (Christian demonology)
288
- Pazuzu (Babylonian demonology)
289
- Pelesit (Indonesian and Malaysian mythology)
290
- Phenex (Christian demonology)
291
- Penemue (Jewish and Christian demonology)
292
- Pithius (Christian demonology)
293
- Pocong (Indonesian mythology)
294
- Pontianak (Indonesian and Malaysian mythology)
295
- Pruflas (Christian demonology)
296
- Puloman (Hindu demonology)
297
- R[edit]
298
- Rahab (Jewish folklore)
299
- Raum (Christian demonology)
300
- Ronove (Christian demonology)
301
- Rusalka (Slavic mythology)
302
- Rakshasa (Hinduism)
303
- Rangda (Hinduism in Indonesia)
304
- Ravan (Hinduism)
305
- S[edit]
306
- Sabnock (Christian demonology)
307
- Saleos (Christian demonology)
308
- Samael (Jewish demonology)
309
- Satan (or Shaytan) (Jewish demonology, Christian demonology, Islamic demonology)
310
- Seir (Christian demonology)
311
- Semyaz (Jewish demonology)
312
- Shax/Chax (Christian demonology)
313
- Shedim (Jewish folklore)
314
- Sitri (Christian demonology)
315
- Sthenno (Greek mythology)
316
- Stolas/Solas (Christian demonology)
317
- Suanggi (Indonesian mythology)
318
- Succubus (Sumerian mythology, Akkadian mythology, Jewish folklore, Christian demonology)
319
- Surgat (Christian demonology)
320
-
321
- Tannin (Jewish demonology)
322
- Toyol (Indonesian and Malaysian)
323
- Tuchulcha (Etruscan mythology)
324
-
325
- Ukobach (Christian demonology)
326
-
327
- Valac (Christian demonology)
328
- Valefar/Malaphar/Malephar (Christian demonology)
329
- Vanth (Etruscan mythology)
330
- Vapula (Christian demonology)
331
- Vassago (Christian demonology)
332
- Vepar (Christian demonology)
333
- Vine (Christian demonology)
334
-
335
- Wendigo (Algonquin)
336
-
337
- Xaphan (Christian demonology)
338
- Xezbeth (demonology)[clarification needed]
339
-
340
- Yeqon
341
- Yeter'el
342
-
343
- Zagan (Christian demonology)
344
- Zepar (Christian demonology)
345
- Ziminiar (Christian demonology)