summaryrefslogtreecommitdiff
path: root/internal/monster/monster.go
blob: 8f880cff6513897f4fcdc19420eedb30be956fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package monster

type Monster struct {
	Name  string
	Level int
	Swag  string
}

var Monsters = []Monster{
	{"Anhkheg", 6, "chitin"},
	{"Ant", 0, "antenna"},
	{"Ape", 4, "ass"},
	{"Baluchitherium", 14, "ear"},
	{"Beholder", 10, "eyestalk"},
	{"Black Pudding", 10, "saliva"},
	{"Blink Dog", 4, "eyelid"},
	{"Cub Scout", 1, "neckercheif"},
	{"Girl Scout", 2, "cookie"},
	{"Boy Scout", 3, "merit badge"},
	{"Eagle Scout", 4, "merit badge"},
	{"Bugbear", 3, "skin"},
	{"Bugboar", 3, "tusk"},
	{"Boogie", 3, "slime"},
	{"Camel", 2, "hump"},
	{"Carrion Crawler", 3, "egg"},
	{"Catoblepas", 6, "neck"},
	{"Centaur", 4, "rib"},
	{"Centipede", 0, "leg"},
	{"Cockatrice", 5, "wattle"},
	{"Couatl", 9, "wing"},
	{"Crayfish", 0, "antenna"},
	{"Demogorgon", 53, "tentacle"},
	{"Jubilex", 17, "gel"},
	{"Manes", 1, "tooth"},
	{"Orcus", 27, "wand"},
	{"Succubus", 6, "bra"},
	{"Vrock", 8, "neck"},
	{"Hezrou", 9, "leg"},
	{"Glabrezu", 10, "collar"},
	{"Nalfeshnee", 11, "tusk"},
	{"Marilith", 7, "arm"},
	{"Balor", 8, "whip"},
	{"Yeenoghu", 25, "flail"},
	{"Asmodeus", 52, "leathers"},
	{"Baalzebul", 43, "pants"},
	{"Barbed Devil", 8, "flame"},
	{"Bone Devil", 9, "hook"},
	{"Dispater", 30, "matches"},
	{"Erinyes", 6, "thong"},
	{"Geryon", 30, "cornucopia"},
	{"Malebranche", 5, "fork"},
	{"Ice Devil", 11, "snow"},
	{"Lemure", 3, "blob"},
	{"Pit Fiend", 13, "seed"},
	{"Anklyosaurus", 9, "tail"},
	{"Brontosaurus", 30, "brain"},
	{"Diplodocus", 24, "fin"},
	{"Elasmosaurus", 15, "neck"},
	{"Gorgosaurus", 13, "arm"},
	{"Iguanadon", 6, "thumb"},
	{"Megalosaurus", 12, "jaw"},
	{"Monoclonius", 8, "horn"},
	{"Pentasaurus", 12, "head"},
	{"Stegosaurus", 18, "plate"},
	{"Triceratops", 16, "horn"},
	{"Tyranosauraus Rex", 18, "forearm"},
	{"Djinn", 7, "lamp"},
	{"Doppleganger", 4, "face"},
	{"Black Dragon", 7, "*"},
	{"Plaid Dragon", 7, "sporrin"},
	{"Blue Dragon", 9, "*"},
	{"Beige Dragon", 9, "*"},
	{"Brass Dragon", 7, "pole"},
	{"Tin Dragon", 8, "*"},
	{"Bronze Dragon", 9, "medal"},
	{"Chromatic Dragon", 16, "scale"},
	{"Copper Dragon", 8, "loafer"},
	{"Gold Dragon", 8, "filling"},
	{"Green Dragon", 8, "*"},
	{"Platinum Dragon", 21, "*"},
	{"Red Dragon", 10, "cocktail"},
	{"Silver Dragon", 10, "*"},
	{"White Dragon", 6, "tooth"},
	{"Dragon Turtle", 13, "shell"},
	{"Dryad", 2, "acorn"},
	{"Dwarf", 1, "drawers"},
	{"Eel", 2, "sashimi"},
	{"Efreet", 10, "cinder"},
	{"Sand Elemental", 8, "glass"},
	{"Bacon Elemental", 10, "bit"},
	{"Porn Elemental", 12, "lube"},
	{"Cheese Elemental", 14, "curd"},
	{"Hair Elemental", 16, "follicle"},
	{"Swamp Elf", 1, "lilypad"},
	{"Brown Elf", 1, "tusk"},
	{"Sea Elf", 1, "jerkin"},
	{"Ettin", 10, "fur"},
	{"Frog", 0, "leg"},
	{"Violet Fungi", 3, "spore"},
	{"Gargoyle", 4, "gravel"},
	{"Gelatinous Cube", 4, "jam"},
	{"Ghast", 4, "vomit"},
	{"Ghost", 10, "*"},
	{"Ghoul", 2, "muscle"},
	{"Humidity Giant", 12, "drops"},
	{"Beef Giant", 11, "steak"},
	{"Quartz Giant", 10, "crystal"},
	{"Porcelain Giant", 9, "fixture"},
	{"Rice Giant", 8, "grain"},
	{"Cloud Giant", 12, "condensation"},
	{"Fire Giant", 11, "cigarettes"},
	{"Frost Giant", 10, "snowman"},
	{"Hill Giant", 8, "corpse"},
	{"Stone Giant", 9, "hatchling"},
	{"Storm Giant", 15, "barometer"},
	{"Mini Giant", 4, "pompadour"},
	{"Gnoll", 2, "collar"},
	{"Gnome", 1, "hat"},
	{"Goblin", 1, "ear"},
	{"Grid Bug", 1, "carapace"},
	{"Jellyrock", 9, "seedling"},
	{"Beer Golem", 15, "foam"},
	{"Oxygen Golem", 17, "platelet"},
	{"Cardboard Golem", 14, "recycling"},
	{"Rubber Golem", 16, "ball"},
	{"Leather Golem", 15, "fob"},
	{"Gorgon", 8, "testicle"},
	{"Gray Ooze", 3, "gravy"},
	{"Green Slime", 2, "sample"},
	{"Griffon", 7, "nest"},
	{"Banshee", 7, "larynx"},
	{"Harpy", 3, "mascara"},
	{"Hell Hound", 5, "tongue"},
	{"Hippocampus", 4, "mane"},
	{"Hippogriff", 3, "egg"},
	{"Hobgoblin", 1, "patella"},
	{"Homonculus", 2, "fluid"},
	{"Hydra", 8, "gyrum"},
	{"Imp", 2, "tail"},
	{"Invisible Stalker", 8, "*"},
	{"Iron Peasant", 3, "chaff"},
	{"Jumpskin", 3, "shin"},
	{"Kobold", 1, "penis"},
	{"Leprechaun", 1, "wallet"},
	{"Leucrotta", 6, "hoof"},
	{"Lich", 11, "crown"},
	{"Lizard Man", 2, "tail"},
	{"Lurker", 10, "sac"},
	{"Manticore", 6, "spike"},
	{"Mastodon", 12, "tusk"},
	{"Medusa", 6, "eye"},
	{"Multicell", 2, "dendrite"},
	{"Pirate", 1, "booty"},
	{"Berserker", 1, "shirt"},
	{"Caveman", 2, "club"},
	{"Dervish", 1, "robe"},
	{"Merman", 1, "trident"},
	{"Mermaid", 1, "gills"},
	{"Mimic", 9, "hinge"},
	{"Mind Flayer", 8, "tentacle"},
	{"Minotaur", 6, "map"},
	{"Yellow Mold", 1, "spore"},
	{"Morkoth", 7, "teeth"},
	{"Mummy", 6, "gauze"},
	{"Naga", 9, "rattle"},
	{"Nebbish", 1, "belly"},
	{"Neo-Otyugh", 11, "organ "},
	{"Nixie", 1, "webbing"},
	{"Nymph", 3, "hanky"},
	{"Ochre Jelly", 6, "nucleus"},
	{"Octopus", 2, "beak"},
	{"Ogre", 4, "talon"},
	{"Ogre Mage", 5, "apparel"},
	{"Orc", 1, "snout"},
	{"Otyugh", 7, "organ"},
	{"Owlbear", 5, "feather"},
	{"Pegasus", 4, "aileron"},
	{"Peryton", 4, "antler"},
	{"Piercer", 3, "tip"},
	{"Pixie", 1, "dust"},
	{"Man-o-war", 3, "tentacle"},
	{"Purple Worm", 15, "dung"},
	{"Quasit", 3, "tail"},
	{"Rakshasa", 7, "pajamas"},
	{"Rat", 0, "tail"},
	{"Remorhaz", 11, "protrusion"},
	{"Roc", 18, "wing"},
	{"Roper", 11, "twine"},
	{"Rot Grub", 1, "eggsac"},
	{"Rust Monster", 5, "shavings"},
	{"Satyr", 5, "hoof"},
	{"Sea Hag", 3, "wart"},
	{"Silkie", 3, "fur"},
	{"Shadow", 3, "silhouette"},
	{"Shambling Mound", 10, "mulch"},
	{"Shedu", 9, "hoof"},
	{"Shrieker", 3, "stalk"},
	{"Skeleton", 1, "clavicle"},
	{"Spectre", 7, "vestige"},
	{"Sphinx", 10, "paw"},
	{"Spider", 0, "web"},
	{"Sprite", 1, "can"},
	{"Stirge", 1, "proboscis"},
	{"Stun Bear", 5, "tooth"},
	{"Stun Worm", 2, "trode"},
	{"Su-monster", 5, "tail"},
	{"Sylph", 3, "thigh"},
	{"Titan", 20, "sandal"},
	{"Trapper", 12, "shag"},
	{"Treant", 10, "acorn"},
	{"Triton", 3, "scale"},
	{"Troglodyte", 2, "tail"},
	{"Troll", 6, "hide"},
	{"Umber Hulk", 8, "claw"},
	{"Unicorn", 4, "blood"},
	{"Vampire", 8, "pancreas"},
	{"Wight", 4, "lung"},
	{"Will-o-the-Wisp", 9, "wisp"},
	{"Wraith", 5, "finger"},
	{"Wyvern", 7, "wing"},
	{"Xorn", 7, "jaw"},
	{"Yeti", 4, "fur"},
	{"Zombie", 2, "forehead"},
	{"Wasp", 0, "stinger"},
	{"Rat", 1, "tail"},
	{"Bunny", 0, "ear"},
	{"Moth", 0, "dust"},
	{"Beagle", 0, "collar"},
	{"Midge", 0, "corpse"},
	{"Ostrich", 1, "beak"},
	{"Billy Goat", 1, "beard"},
	{"Bat", 1, "wing"},
	{"Koala", 2, "heart"},
	{"Wolf", 2, "paw"},
	{"Whippet", 2, "collar"},
	{"Uruk", 2, "boot"},
	{"Poroid", 4, "node"},
	{"Moakum", 8, "frenum"},
	{"Fly", 0, "*"},
	{"Hogbird", 3, "curl"},
}

var MonMods = []string{
	"-4 fœtal %v",
	"-4 dying %v",
	"-3 crippled %v",
	"-3 baby %v",
	"-2 adolescent",
	"-2 very sick %v",
	"-1 lesser %v",
	"-1 undernourished %v",
	"+1 greater %v",
	"+1 %v Elder",
	"+2 war %v",
	"+2 Battle-%v",
	"+3 Were-%v",
	"+3 undead %v",
	"+4 giant %v",
	"+4 %v Rex",
}