dunmanifestin 0.0.1
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 +15 -0
- data/bin/dunmanifestin +49 -0
- data/lib/dunmanifestin.rb +11 -0
- data/lib/dunmanifestin/custom_inflections.rb +5 -0
- data/lib/dunmanifestin/generator.rb +46 -0
- data/lib/dunmanifestin/list.rb +30 -0
- data/lib/dunmanifestin/list_loader.rb +46 -0
- data/lib/dunmanifestin/manifestation.rb +30 -0
- data/lib/dunmanifestin/member.rb +18 -0
- data/lib/dunmanifestin/phrase.rb +198 -0
- data/lib/dunmanifestin/string.rb +38 -0
- data/lists/default/activated +12 -0
- data/lists/default/adverb +13 -0
- data/lists/default/ageGroup +5 -0
- data/lists/default/alienName +33 -0
- data/lists/default/alignment +10 -0
- data/lists/default/animal +30 -0
- data/lists/default/appearance +33 -0
- data/lists/default/attitude +17 -0
- data/lists/default/bag +4 -0
- data/lists/default/baggage +29 -0
- data/lists/default/baseItem +47 -0
- data/lists/default/buildingType +11 -0
- data/lists/default/clothing +7 -0
- data/lists/default/color +41 -0
- data/lists/default/container +7 -0
- data/lists/default/curse +10 -0
- data/lists/default/denizen +3 -0
- data/lists/default/denizenDetail +6 -0
- data/lists/default/description +3 -0
- data/lists/default/desire +26 -0
- data/lists/default/disability +8 -0
- data/lists/default/disease +10 -0
- data/lists/default/economy +11 -0
- data/lists/default/encounter +2409 -0
- data/lists/default/englishName +230 -0
- data/lists/default/epithet +13 -0
- data/lists/default/facet +17 -0
- data/lists/default/facetOfCulture +3 -0
- data/lists/default/family +5 -0
- data/lists/default/fear +30 -0
- data/lists/default/finnishName +81 -0
- data/lists/default/foodOrDrink +19 -0
- data/lists/default/geologicalFormation +14 -0
- data/lists/default/greenlandicName +43 -0
- data/lists/default/grossBodyPart +8 -0
- data/lists/default/group +6 -0
- data/lists/default/hardMaterial +6 -0
- data/lists/default/height +4 -0
- data/lists/default/japaneseName +202 -0
- data/lists/default/jewelery +13 -0
- data/lists/default/koboldName +68 -0
- data/lists/default/latinName +40 -0
- data/lists/default/magicItemDescription +24 -0
- data/lists/default/material +3 -0
- data/lists/default/metal +3 -0
- data/lists/default/mineral +3 -0
- data/lists/default/monster +160 -0
- data/lists/default/name +86 -0
- data/lists/default/namePrefix +30 -0
- data/lists/default/nameSuffix +18 -0
- data/lists/default/negativeAdverb +6 -0
- data/lists/default/negativeQuality +19 -0
- data/lists/default/neutralQuality +14 -0
- data/lists/default/nonPreciousMetal +6 -0
- data/lists/default/object +5 -0
- data/lists/default/person +4 -0
- data/lists/default/personName +3 -0
- data/lists/default/personality +34 -0
- data/lists/default/place +10 -0
- data/lists/default/placeName +4 -0
- data/lists/default/placeSuffix +36 -0
- data/lists/default/positiveAdverb +5 -0
- data/lists/default/positiveQuality +12 -0
- data/lists/default/preciousMetal +4 -0
- data/lists/default/preciousStone +6 -0
- data/lists/default/profession +21 -0
- data/lists/default/province +3 -0
- data/lists/default/quality +4 -0
- data/lists/default/qualityWithAdverb +4 -0
- data/lists/default/race +11 -0
- data/lists/default/raceOrProfession +5 -0
- data/lists/default/reason +15 -0
- data/lists/default/resource +9 -0
- data/lists/default/root +6 -0
- data/lists/default/secret +9 -0
- data/lists/default/settlementDetail +6 -0
- data/lists/default/settlementType +7 -0
- data/lists/default/softMaterial +7 -0
- data/lists/default/structureDetail +8 -0
- data/lists/default/structureType +24 -0
- data/lists/default/superpower +6 -0
- data/lists/default/topicOfConversation +5 -0
- data/lists/default/weapon +149 -0
- data/lists/default/wearable +4 -0
- data/lists/default/wearableQuality +15 -0
- data/lists/default/weildable +10 -0
- data/lists/default/welshName +79 -0
- data/lists/huoquitlan/originalAnimal +250 -0
- data/lists/huoquitlan/originalDenizen +849 -0
- data/lists/huoquitlan/originalItemName +33 -0
- data/lists/huoquitlan/originalNPC +99 -0
- data/lists/huoquitlan/originalName +226 -0
- data/lists/hypotheticals/noun +373 -0
- data/lists/hypotheticals/root +15 -0
- data/lists/hypotheticals/transitiveVerb +628 -0
- data/lists/hypotheticals/verbs +653 -0
- data/lists/sophistry/root +269 -0
- metadata +156 -0
@@ -0,0 +1,8 @@
|
|
1
|
+
|structureDetail
|
2
|
+
It was once attacked by [personName] and [group.article] of [raceOrProfession.plural] with [baseItem.plural].
|
3
|
+
It was once attacked by [denizen].
|
4
|
+
It is rumored that beneath its foundations, lies the treasure of [personName]: [artefact].
|
5
|
+
It is rumored to be haunted by the ghost of [person]
|
6
|
+
It is said to contain many priceless artifacts made of [hardMaterial].
|
7
|
+
Some say it contains priceless [baseItem.plural] made of [hardMaterial].
|
8
|
+
|
@@ -0,0 +1,24 @@
|
|
1
|
+
|structureType
|
2
|
+
castle
|
3
|
+
fortification
|
4
|
+
mead hall
|
5
|
+
feasting hall
|
6
|
+
palace
|
7
|
+
harbor
|
8
|
+
dungeon
|
9
|
+
keep
|
10
|
+
watchtower
|
11
|
+
tomb
|
12
|
+
colliseum
|
13
|
+
root cellar
|
14
|
+
temple
|
15
|
+
shrine
|
16
|
+
boat house
|
17
|
+
glass blowery
|
18
|
+
catacomb
|
19
|
+
bridge
|
20
|
+
station
|
21
|
+
park
|
22
|
+
tower
|
23
|
+
museum
|
24
|
+
|
@@ -0,0 +1,149 @@
|
|
1
|
+
|weapon
|
2
|
+
5@[sword#plural]
|
3
|
+
2@[bow#plural]
|
4
|
+
[bow#plural] and [arrow.plural]
|
5
|
+
2@[knife#plural]
|
6
|
+
|
7
|
+
|sword
|
8
|
+
[nonPreciousMetal] [swordType#plural]
|
9
|
+
[nonPreciousMetal] [swordType#plural] with a hilt made of [hardMaterial]
|
10
|
+
[nonPreciousMetal] [swordType#plural] inlaid with [preciousMetal]
|
11
|
+
[nonPreciousMetal] [swordType#plural] encrusted with [preciousStone.plural]
|
12
|
+
[swordType#plural]
|
13
|
+
[swordType#plural] with a hilt made of [hardMaterial]
|
14
|
+
[swordType#plural] inlaid with [preciousMetal]
|
15
|
+
[swordType#plural] encrusted with [preciousStone.plural]
|
16
|
+
[itemQuality] [swordType#plural]
|
17
|
+
[itemQuality] [swordType#plural] with a hilt made of [hardMaterial]
|
18
|
+
[itemQuality] [swordType#plural] inlaid with [preciousMetal]
|
19
|
+
[itemQuality] [swordType#plural] encrusted with [preciousStone.plural]
|
20
|
+
[nonPreciousMetal] [swordType#plural], [weaponName], [weaponEpithet]
|
21
|
+
|
22
|
+
|swordType
|
23
|
+
20@sword
|
24
|
+
5@longsword
|
25
|
+
5@broadsword
|
26
|
+
2@rapier
|
27
|
+
2@scimitar
|
28
|
+
2@sabre
|
29
|
+
|
30
|
+
|bow
|
31
|
+
[bowType]
|
32
|
+
|
33
|
+
|bowType
|
34
|
+
20@bow
|
35
|
+
4@longbow
|
36
|
+
2@shortbow
|
37
|
+
compound bow
|
38
|
+
4@crossbow
|
39
|
+
repeating crossbow
|
40
|
+
|
41
|
+
|arrow
|
42
|
+
2@[hardMaterial]-tipped [arrowType#plural]
|
43
|
+
2@[hardMaterial] [arrowType#plural]
|
44
|
+
poison [arrowType#plural]
|
45
|
+
barbed [arrowType#plural]
|
46
|
+
2@[arrowType#plural#article] with [arrowShaftType#article#plural] of [hardMaterial]
|
47
|
+
[basicColor]-flighted [arrowType#plural]
|
48
|
+
[basicColor]-fletched [arrowType#plural]
|
49
|
+
[basicColor]-feathered [arrowType#plural]
|
50
|
+
[arrowType#plural] fletched with [bird] feathers
|
51
|
+
|
52
|
+
|arrowType
|
53
|
+
arrow
|
54
|
+
|
55
|
+
|arrowShaftType
|
56
|
+
shaft
|
57
|
+
|
58
|
+
|knife
|
59
|
+
[knifeType#plural] with a handle of [hardMaterial]
|
60
|
+
[knifeType#plural] inlaid with [preciousMetal]
|
61
|
+
[knifeType#plural] with [preciousStone.article] on the handle
|
62
|
+
[knifeType#plural] encrusted with [preciousStone.plural]
|
63
|
+
[nonPreciousMetal] [knifeType#plural] with a handle of [hardMaterial]
|
64
|
+
[nonPreciousMetal] [knifeType#plural] inlaid with [preciousMetal]
|
65
|
+
[nonPreciousMetal] [knifeType#plural] with [preciousStone.article] on the handle
|
66
|
+
[nonPreciousMetal] [knifeType#plural] encrusted with [preciousStone.plural]
|
67
|
+
[itemQuality] [knifeType#plural] with a handle of [hardMaterial]
|
68
|
+
[itemQuality] [knifeType#plural] inlaid with [preciousMetal]
|
69
|
+
[itemQuality] [knifeType#plural] with [preciousStone.article] on the handle
|
70
|
+
[itemQuality] [knifeType#plural] encrusted with [preciousStone.plural]
|
71
|
+
[nonPreciousMetal] [knifeType#plural] named [weaponName] [weaponEpithet]
|
72
|
+
|
73
|
+
|knifeType
|
74
|
+
5@knife
|
75
|
+
hunting knife
|
76
|
+
dagger
|
77
|
+
cleaver
|
78
|
+
|
79
|
+
|weaponName
|
80
|
+
6@[weaponNameInitial][weaponNameVowel][weaponNameConsonant][weaponNameSuffix]
|
81
|
+
2@[weaponNameInitial][weaponNameVowel][weaponNameConsonant]
|
82
|
+
[weaponNameInitialVowel][weaponNameConsonant][weaponNameVowel][weaponNameConsonant]
|
83
|
+
[weaponNameInitialVowel][weaponNameConsonant][weaponNameVowel][weaponNameConsonant][weaponNameSuffix]
|
84
|
+
[name]
|
85
|
+
[weaponName]-[weaponName]
|
86
|
+
|
87
|
+
|weaponNameInitial
|
88
|
+
Kr
|
89
|
+
Gr
|
90
|
+
Gl
|
91
|
+
K
|
92
|
+
G
|
93
|
+
D
|
94
|
+
Th
|
95
|
+
Ch
|
96
|
+
S
|
97
|
+
Sh
|
98
|
+
Dr
|
99
|
+
|
100
|
+
|weaponNameVowel
|
101
|
+
3@a
|
102
|
+
3@o
|
103
|
+
2@au
|
104
|
+
2@i
|
105
|
+
u
|
106
|
+
e
|
107
|
+
aa
|
108
|
+
|
109
|
+
|weaponNameInitialVowel
|
110
|
+
3@A
|
111
|
+
3@O
|
112
|
+
2@Au
|
113
|
+
2@I
|
114
|
+
U
|
115
|
+
E
|
116
|
+
|
117
|
+
|weaponNameConsonant
|
118
|
+
n
|
119
|
+
l
|
120
|
+
r
|
121
|
+
sh
|
122
|
+
th
|
123
|
+
dh
|
124
|
+
rh
|
125
|
+
lh
|
126
|
+
g
|
127
|
+
|
128
|
+
|weaponNameSuffix
|
129
|
+
or
|
130
|
+
ex
|
131
|
+
ic
|
132
|
+
il
|
133
|
+
tar
|
134
|
+
gar
|
135
|
+
og
|
136
|
+
rok
|
137
|
+
nor
|
138
|
+
w
|
139
|
+
rist
|
140
|
+
anz
|
141
|
+
az
|
142
|
+
|
143
|
+
|weaponEpithet
|
144
|
+
[race]bane
|
145
|
+
[monster]bane
|
146
|
+
the [monster]-slayer
|
147
|
+
slayer of [monster.plural]
|
148
|
+
bane of [monster.plural]
|
149
|
+
terror of [race.plural]
|
@@ -0,0 +1,79 @@
|
|
1
|
+
|welshName
|
2
|
+
[welshWord.capitalize]
|
3
|
+
|
4
|
+
|welshWord
|
5
|
+
2@[welshSyllable][welshSyllable][welshSyllable]
|
6
|
+
10@[welshSyllable][welshSyllable]
|
7
|
+
[welshSyllable]
|
8
|
+
|
9
|
+
|welshSyllable
|
10
|
+
10@[welshInitialConsonant][welshVowel][welshFinalConsonant]
|
11
|
+
7@[welshInitialConsonant][welshFinalVowel]
|
12
|
+
2@[welshVowel][welshFinalConsonant]
|
13
|
+
[welshVowel]
|
14
|
+
|
15
|
+
|welshInitialConsonant
|
16
|
+
3@t
|
17
|
+
5@d
|
18
|
+
5@c
|
19
|
+
2@b
|
20
|
+
4@g
|
21
|
+
6@l
|
22
|
+
3@f
|
23
|
+
6@r
|
24
|
+
4@s
|
25
|
+
f
|
26
|
+
2@ff
|
27
|
+
h
|
28
|
+
6@n
|
29
|
+
4@m
|
30
|
+
3@th
|
31
|
+
dr
|
32
|
+
gl
|
33
|
+
br
|
34
|
+
cl
|
35
|
+
cr
|
36
|
+
|
37
|
+
|welshFinalConsonant
|
38
|
+
t
|
39
|
+
5@d
|
40
|
+
3@c
|
41
|
+
3@ch
|
42
|
+
2@b
|
43
|
+
4@g
|
44
|
+
9@l
|
45
|
+
3@f
|
46
|
+
8@r
|
47
|
+
4@s
|
48
|
+
f
|
49
|
+
2@ff
|
50
|
+
6@n
|
51
|
+
4@m
|
52
|
+
3@th
|
53
|
+
th
|
54
|
+
rd
|
55
|
+
ld
|
56
|
+
nd
|
57
|
+
mb
|
58
|
+
mp
|
59
|
+
nt
|
60
|
+
nth
|
61
|
+
rth
|
62
|
+
rt
|
63
|
+
rth
|
64
|
+
|
65
|
+
|welshVowel
|
66
|
+
9@y
|
67
|
+
4@w
|
68
|
+
wy
|
69
|
+
yw
|
70
|
+
10@e
|
71
|
+
5@a
|
72
|
+
3@i
|
73
|
+
2@o
|
74
|
+
u
|
75
|
+
|
76
|
+
|welshFinalVowel
|
77
|
+
8@a
|
78
|
+
3@i
|
79
|
+
2@o
|
@@ -0,0 +1,250 @@
|
|
1
|
+
|animal
|
2
|
+
Clawed Frog
|
3
|
+
Albatross
|
4
|
+
Alligator
|
5
|
+
Angelfish
|
6
|
+
Ant
|
7
|
+
Anteater
|
8
|
+
Antelope
|
9
|
+
Arctic Fox
|
10
|
+
Arctic Hare
|
11
|
+
Arctic Wolf
|
12
|
+
Armadillo
|
13
|
+
Asian Giant Hornet
|
14
|
+
Axolotl
|
15
|
+
Baboon
|
16
|
+
Bactrian Camel
|
17
|
+
Badger
|
18
|
+
Barn Owl
|
19
|
+
Barnacle
|
20
|
+
Barracuda
|
21
|
+
Basking Shark
|
22
|
+
Bat
|
23
|
+
Beagle
|
24
|
+
Bear
|
25
|
+
Bearded Dragon
|
26
|
+
Beaver
|
27
|
+
Beetle
|
28
|
+
Bengal Tiger
|
29
|
+
Bison
|
30
|
+
Black Bear
|
31
|
+
Black Rhinoceros
|
32
|
+
Blue Whale
|
33
|
+
Bobcat
|
34
|
+
Bonobo
|
35
|
+
Booby
|
36
|
+
Brown Bear
|
37
|
+
Budgerigar
|
38
|
+
Buffalo
|
39
|
+
Bulldog
|
40
|
+
Bullfrog
|
41
|
+
Bumble Bee
|
42
|
+
Butterfly
|
43
|
+
Camel
|
44
|
+
Capybara
|
45
|
+
Cassowary
|
46
|
+
Cat
|
47
|
+
Caterpillar
|
48
|
+
Catfish
|
49
|
+
Centipede
|
50
|
+
Chameleon
|
51
|
+
Cheetah
|
52
|
+
Chicken
|
53
|
+
Chihuahua
|
54
|
+
Chimpanzee
|
55
|
+
Chinchilla
|
56
|
+
Chinook
|
57
|
+
Chipmunk
|
58
|
+
Cichlid
|
59
|
+
Cockroach
|
60
|
+
Common Buzzard
|
61
|
+
Common Frog
|
62
|
+
Common Toad
|
63
|
+
Coral
|
64
|
+
Cougar
|
65
|
+
Cow
|
66
|
+
Coyote
|
67
|
+
Crab
|
68
|
+
Crab-Eating Macaque
|
69
|
+
Crane
|
70
|
+
Crocodile
|
71
|
+
Cuttlefish
|
72
|
+
Deer
|
73
|
+
Desert Tortoise
|
74
|
+
Dodo
|
75
|
+
Dolphin
|
76
|
+
Donkey
|
77
|
+
Dragonfly
|
78
|
+
Duck
|
79
|
+
Dugong
|
80
|
+
Eagle
|
81
|
+
Earwig
|
82
|
+
Edible Frog
|
83
|
+
Electric Eel
|
84
|
+
Elephant
|
85
|
+
Elephant Seal
|
86
|
+
Emu
|
87
|
+
Falcon
|
88
|
+
Fennec Fox
|
89
|
+
Ferret
|
90
|
+
Fish
|
91
|
+
Flamingo
|
92
|
+
Flounder
|
93
|
+
Fly
|
94
|
+
Flying Squirrel
|
95
|
+
Fox
|
96
|
+
Frog
|
97
|
+
Fur Seal
|
98
|
+
Gerbil
|
99
|
+
Giant African Land Snail
|
100
|
+
Giant Clam
|
101
|
+
Giant Panda Bear
|
102
|
+
Gila Monster
|
103
|
+
Giraffe
|
104
|
+
Glow Worm
|
105
|
+
Goat
|
106
|
+
Goose
|
107
|
+
Gopher
|
108
|
+
Gorilla
|
109
|
+
Grasshopper
|
110
|
+
Great White Shark
|
111
|
+
Greyhound
|
112
|
+
Grizzly Bear
|
113
|
+
Guinea Fowl
|
114
|
+
Guinea Pig
|
115
|
+
Guppy
|
116
|
+
Hammerhead Shark
|
117
|
+
Hamster
|
118
|
+
Hare
|
119
|
+
Hedgehog
|
120
|
+
Hermit Crab
|
121
|
+
Heron
|
122
|
+
Hippopotamus
|
123
|
+
Honey Bee
|
124
|
+
Horned Frog
|
125
|
+
Horse
|
126
|
+
Horseshoe Crab
|
127
|
+
Howler Monkey
|
128
|
+
Human
|
129
|
+
Hummingbird
|
130
|
+
Hyena
|
131
|
+
Iguana
|
132
|
+
Indian Elephant
|
133
|
+
Insect
|
134
|
+
Jackal
|
135
|
+
Jaguar
|
136
|
+
Jellyfish
|
137
|
+
Kangaroo
|
138
|
+
Killer Whale
|
139
|
+
Kingfisher
|
140
|
+
Kiwi
|
141
|
+
Koala
|
142
|
+
Komodo Dragon
|
143
|
+
Leopard
|
144
|
+
Lion
|
145
|
+
Lionfish
|
146
|
+
Lizard
|
147
|
+
Llama
|
148
|
+
Lobster
|
149
|
+
Lynx
|
150
|
+
Magpie
|
151
|
+
Manatee
|
152
|
+
Manta Ray
|
153
|
+
Meerkat
|
154
|
+
Millipede
|
155
|
+
Mole
|
156
|
+
Mongoose
|
157
|
+
Monkey
|
158
|
+
Moose
|
159
|
+
Moray Eel
|
160
|
+
Moth
|
161
|
+
Mountain Lion
|
162
|
+
Mouse
|
163
|
+
Mule
|
164
|
+
Neanderthal
|
165
|
+
Newt
|
166
|
+
Ocelot
|
167
|
+
Octopus
|
168
|
+
Opossum
|
169
|
+
Orang-utan
|
170
|
+
Ostrich
|
171
|
+
Otter
|
172
|
+
Oyster
|
173
|
+
Panther
|
174
|
+
Parrot
|
175
|
+
Peacock
|
176
|
+
Pelican
|
177
|
+
Penguin
|
178
|
+
Pheasant
|
179
|
+
Pig
|
180
|
+
Pink Fairy Armadillo
|
181
|
+
Piranha
|
182
|
+
Platypus
|
183
|
+
Poison Dart Frog
|
184
|
+
Polar Bear
|
185
|
+
Porcupine
|
186
|
+
Possum
|
187
|
+
Prawn
|
188
|
+
Puffer Fish
|
189
|
+
Puffin
|
190
|
+
Pug
|
191
|
+
Puma
|
192
|
+
Pygmy Hippopotamus
|
193
|
+
Quail
|
194
|
+
Rabbit
|
195
|
+
Raccoon
|
196
|
+
Rat
|
197
|
+
Rattlesnake
|
198
|
+
Red Panda
|
199
|
+
Reindeer
|
200
|
+
Rhinoceros
|
201
|
+
Sabre-Toothed Tiger
|
202
|
+
Salamander
|
203
|
+
Scorpion
|
204
|
+
Sea Lion
|
205
|
+
Sea Otter
|
206
|
+
Sea Slug
|
207
|
+
Sea Urchin
|
208
|
+
Seahorse
|
209
|
+
Seal
|
210
|
+
Sheep
|
211
|
+
Shrimp
|
212
|
+
Skunk
|
213
|
+
Sloth
|
214
|
+
Snail
|
215
|
+
Snake
|
216
|
+
Snapping Turtle
|
217
|
+
Sponge
|
218
|
+
Squid
|
219
|
+
Squirrel
|
220
|
+
Starfish
|
221
|
+
Stick Insect
|
222
|
+
Stingray
|
223
|
+
Stoat
|
224
|
+
Swan
|
225
|
+
Tapir
|
226
|
+
Termite
|
227
|
+
Tiger
|
228
|
+
Tortoise
|
229
|
+
Toucan
|
230
|
+
Tree Frog
|
231
|
+
Turkey
|
232
|
+
Umbrellabird
|
233
|
+
Vampire Bat
|
234
|
+
Vulture
|
235
|
+
Walrus
|
236
|
+
Warthog
|
237
|
+
Wasp
|
238
|
+
Weasel
|
239
|
+
Whale Shark
|
240
|
+
White Rhinoceros
|
241
|
+
White Tiger
|
242
|
+
Wild Boar
|
243
|
+
Wildebeest
|
244
|
+
Wolf
|
245
|
+
Woodpecker
|
246
|
+
Woolly Mammoth
|
247
|
+
Yak
|
248
|
+
Yorkshire Terrier
|
249
|
+
Zebra
|
250
|
+
|