This file is indexed.

/usr/share/crawl/dat/database/monspell.txt is in crawl-common 2:0.13.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
# This file contains the messages used to "announce" a spell, like
# "The wizard mumbles some strange words."  The messages are looked
# up in the following order by the following keys:
#
# 1) If the monster is a wizard or priest which has been polymorphed into
#    a wizard without hands which is trying to cast a spell it kept across
#    the polymorph, then the first key will be "polymorphed wizard" or
#    "polymorphed priest".
# 2) The name of the spell being cast:
#   a) If being cast by a wizard or priest monster with arms, first try
#      with the suffix "real".
#   b) If being cast by a monster of normal or higher intelligence with arms,
#      try with the suffix "gestures".
#   c) Next, try without any suffix.
# 3) The name of the monster's type.
# 4) The name of the monster's species.
# 5) The name of the monster's genus.
# 6) "priest" if the monster is a priest type, "wizard" if it's a wizard type,
#    or "demon" if it's demonic.
# 7) If the spell uses a targeted, visible beam, it will try
#    "<beam_short_name> beam cast", then "beam catchall cast".
#
# For 1 and 3 to 6, if the spell has a target it will first add the suffix
# "targeted" to the lookup key before trying without the suffix.
#
# For all lookups, if the monster is unseen by the player it will add the
# prefix "unseen" to the key, or if the player or monster is silenced
# it will prefix "silent" to the key (if the monster is both unseen and
# unheard no message is ever given). If using the prefix "silent" gives
# no results it will try again without the prefix, assuming that the
# spell has no sound component.
#
# To give no message use the string "__NONE", and to skip the current
# lookup method and move onto the next one use the string "__NEXT".

#####################################################
# Individual spells.
#####################################################
%%%%
Airstrike cast

@The_monster@ waves @possessive@ @arms@ in wide circles.
%%%%
unseen Airstrike cast

You hear blowing wind.
%%%%
unseen Animate Dead cast real

You hear @something@ calling out to the dead.
%%%%
Animate Dead cast real

@The_monster@ gestures at the surrounding area while chanting.

@The_monster@ throws @possessive@ @arms@ wide while chanting.
%%%%
Animate Dead cast gestures

@The_monster@ gestures at the surrounding area.

@The_monster@ throws @possessive@ @arms@ wide.
%%%%
Flame Tongue cast

@The_monster@ issues a gush of flame.

@The_monster@ emits a jet of flame.

@The_monster@ lets out a tongue of flame.
%%%%
Lesser Healing cast real

__NEXT
%%%%
Lesser Healing cast gestures

@The_monster@ briefly glows while making a small gesture.
%%%%
Lesser Healing cast

@The_monster@ briefly glows.
%%%%
Greater Healing cast real

__NEXT
%%%%
Greater Healing cast gestures

@The_monster@ briefly glows brightly while making a large gesture.
%%%%
Greater Healing cast

@The_monster@ briefly glows brightly.
%%%%
Mislead cast

@The_monster@ weaves an illusion.

@The_monster@ misleads you.

@The_monster@ clouds your mind.
%%%%
unseen Mislead cast

Something tries to mislead you!

Something weaves an illusion around you!
%%%%
Mara Summon cast

@The_monster@ weaves an illusion.

@The_monster@ shimmers.
%%%%
unseen Mara summon cast

Something weaves an illusion!
%%%%
Symbol of Torment cast

@The_monster@ calls on the powers of darkness!
%%%%
unseen Symbol of Torment cast

@The_something@ calls on the powers of darkness!
%%%%
Holy Word cast

@The_monster@ calls on the powers of Heaven!
%%%%
unseen Holy Word cast

@The_something@ calls on the powers of Heaven!
%%%%
Orb of Destruction orb spider cast

@The_monster@ weaves a glowing orb of energy.
%%%%
Orb of Destruction cast

@The_monster@ conjures a glowing orb.

@The_monster@ conjures an orb of pure magic.

@The_monster@ launches a ball of destructive magic.
%%%%
Sticky Flame cast

@The_monster@ sprays @target@ with burning goo.
%%%%
Sunray cast

@The_monster@ raises @possessive@ hand.

@The_monster@ calls in a beam of light.
%%%%
unseen Sunray cast

Suddenly, a bright light shines from nowhere!

An intense light blinds you for a moment.
%%%%
Holy Flames cast

@The_monster@ calls forth blessed flames!
%%%%
unseen Holy Flames cast

Blessed flames are called forth!
%%%%
Silver Blast cast

@The_monster@ shoots forth a bolt of silver!
%%%%
Word of Recall cast

@The_monster@ begins to recite a word of recall!
%%%%
Call Lost Soul cast

@The_monster@ beckons forth a restless soul!
%%%%
Haste Plants cast

@The_monster@ empowers the plants around itself!
%%%%
Druid's Call cast

@The_monster@ calls out to the beasts of the land!
#####################################################
# Individual innate spells (breathing and spitting).
#####################################################
%%%%
Spit Acid cast

@The_monster@ spits acid @at@ @target@.
%%%%
unseen Spit Acid cast

You hear a spitting sound.
%%%%
unseen Cold Breath cast

You hear a roar.
%%%%
Cold Breath cast

@The_monster@ breathes @beam@ @at@ @target@.
%%%%%
Draconian Breath cast

@The_monster@ breathes @beam@ @at@ @target@.
%%%%
unseen Fire Breath cast

You hear a roar.
%%%%
Fire Breath cast

@The_monster@ breathes @beam@ @at@ @target@.
%%%%%
unseen Draconian Breath cast

You hear a roar.
%%%%
Spit Poison cast

@The_monster@ spits poison @at@ @target@.
%%%%
unseen Spit Poison cast

You hear a spitting sound.
%%%%
Sticky Flame Splash cast

@The_monster@ spits sticky flame @at@ @target@.
%%%%
unseen Sticky Flame Splash cast

You hear a spitting sound.
%%%%
Petrifying Cloud cast

@The_monster@ breathes a plume of calcifying dust @at@ @target@.
%%%%
Chaos Breath cast

@The_monster@ breathes @beam@ @at@ @target@.
%%%%
Frenzy cast

@The_monster@ convulses with anger.
%%%%
Volley of Thorns cast

@The_monster@ fires a volley of thorns @at@ @target@.
########################################################################
# Unique monsters
########################################################################
%%%%
Frances cast

@The_monster@ mutters in a terrible tongue.

@The_monster@ whispers indecipherable words.

@The_monster@ chants phrases taken from a Devil's mouth.

@The_monster@ screams a word of power!
%%%%
Gastronok cast targeted

@The_monster@ looks at @target@ while chanting.

@The_monster@ looks at @target@ and mumbles some strange words.

@The_monster@ casts a spell at @target@.
%%%%
Dissolution cast

@The_monster@ gurgles deeply, a call to fellow slimes.

@The_monster@ says, "@God@ sees all!"
%%%%
Gastronok cast

@The_monster@'s eyestalks quiver as @subjective@ mumbles some strange words.

@The_monster@ chants a spell, wobbling all the while.

@The_monster@ mumbles some strange words.

@The_monster@ casts a spell.
%%%%
Geryon cast

@The_monster@ winds a great silver horn.
%%%%
unseen Geryon cast

You hear a weird and mournful sound.
%%%%
Wiglaf cast

@The_monster@ raises a hand and says an invocation.

@The_monster@'s eyes glow as he invokes the power of @possessive_God@.

@The_monster@ prays in loud words.
%%%%
unseen Wiglaf cast

You hear an invocation said in the dwarven tongue.

You see a slight glow in a spot of thin air.

Someone prays in loud words.
%%%%
# Roxanne can't gesture or point either.
Roxanne cast

@sphinx cast@
%%%%
Berserker Rage Rupert cast

@The_monster@ roars madly and goes into a rage!
%%%%
Paralyse Rupert cast

@The_monster@ roars, making @target@ freeze in fear.
%%%%
Confuse Rupert cast

# Hrm, this could use more variables to sound acceptable.
@The_monster@ yells loudly, causing @target@ to lose all wits.
%%%%
Ensnare Arachne cast

@The_monster@ points her staff at @target@, shooting a whitish beam.

@The_monster@'s staff shoots out a whitish beam.
%%%%
unseen Ensnare Arachne cast

A whitish beam shoots out from seemingly nowhere.
%%%%
Pan cast

@The_monster@ weaves a haunting melody.

@The_monster@ plays an eerie tune.
%%%%
########################################################################
# Individual monsters
########################################################################
brain worm cast

@The_monster@'s bulging head throbs.
%%%%
giant orange brain cast

@The_monster@ pulsates.
%%%%
orb of fire cast

@The_monster@ glows yellow.

@The_monster@ glows bright magenta.

@The_monster@ glows deep purple.

@The_monster@ glows red.

@The_monster@ emits a lurid red light.
%%%%
silver star cast

@The_monster@ shines brightly.
%%%%
# Sphinxes can't gesture or point.
sphinx cast

@The_monster@ mumbles some strange words.

@The_monster@ casts a spell.
%%%%
eidolon cast targeted

@The_monster@ stares piercingly at @target@.
%%%%
basilisk cast targeted

@giant eyeball cast targeted@
%%%%
wretched star cast

@The_monster@ glows turbulently.
%%%%
thrashing horror cast

@The_monster@ churns violently!
%%%%
Airstrike wind drake cast

@The_monster@ flaps its wings at @target@.
%%%%
dryad cast

@The_monster@ calls out to the forest.
%%%%
Minor Healing dryad cast

@The_monster@ draws upon the vitality of nature.
%%%%
Summon Water Elementals elemental wellspring cast

The water around @The_monster@ rises up and takes form!
%%%%
Cause Fear satyr cast

@The_monster@ plays a frightful melody on his pipes!
%%%%
Sleep satyr cast

@The_monster@ plays a lulling melody on his pipes!
########################################################################
# Monster species and genus messages.
########################################################################
%%%%
angel cast targeted

@The_monster@ calls down the wrath of @possessive_God@ upon @target@.
%%%%
chaos butterfly cast

@The_monster@ flaps its wings furiously.
%%%%
dragon cast targeted

@The_monster@ breathes @beam@ @at@ @target@.
%%%%
dragon cast

@The_monster@ roars!
%%%%
unseen dragon cast

You hear a roar.
%%%%
drake cast targeted

@dragon cast targeted@
%%%%
curse skull cast

@The_monster@ rattles @possessive@ jaw.
%%%%
silent curse skull cast

@The_monster@ casts a spell.
%%%%
unseen curse skull cast

You hear the clattering of teeth.
%%%%
giant eyeball cast targeted

@The_monster@ gazes @at@ @target@.
%%%%
giant eyeball cast

@The_monster@ looks around.
%%%%
guardian serpent cast targeted

@The_monster@ coils @reflexive@ and waves @possessive@ upper body at @target@.

@The_monster@ casts a spell at @target@.
%%%%
guardian serpent cast

@The_monster@ coils @reflexive@ and performs some mystic snake dance.

@The_monster@ casts a spell.

@The_monster@ gestures with @possessive@ tail.

@The_monster@ weaves intricate patterns with the tip of @possessive@ tongue.
%%%%
Bolt of Fire ophan cast

@The_monster@ harnesses the cleansing power of fire!
%%%%
unseen Bolt of Fire ophan cast

Something harnesses the cleansing power of fire!
%%%%
shedu cast

@The_monster@ performs a healing ritual in @possessive_God@ name.
%%%%
# Should only be casting spells at each other.
shedu cast targeted

@The_monster@ beseeches @possessive_God@ to heal @possessive@ mate!
###########################################################################
# Generic messages for priests and wizards which have been polymorphed into
# something without hands.
###########################################################################
%%%%
polymorphed wizard cast targeted

@The_monster@ casts a spell at @target@.
%%%%
polymorphed wizard cast

@The_monster@ casts a spell.
%%%%
polymorphed unseen wizard cast

You hear some strange, mumbled words.
######################################################
# Generic priest, wizard and demonic casting messages.
######################################################
%%%%
Haste Other priest cast

@The_monster@ calls upon @possessive_God@ to speed up @target@.
%%%%
Heal Other priest cast

@The_monster@ calls upon @possessive_God@ to heal @target@.
%%%%
Might Other priest cast

@The_monster@ calls upon @possessive_God@ to strengthen @target@.
%%%%
Malign Offering priest cast

@The_monster@ utters a dark prayer and points at @target@.
%%%%
priest cast targeted

@The_monster@ calls down the wrath of @possessive_God@ upon @target@.

@The_monster@ mumbles some strange prayers to @possessive_God@ against @target@.

@The_monster@ invokes the aid of @possessive_God@ against @target@.
%%%%
priest cast

@The_monster@ prays to @possessive_God@.

@The_monster@ mumbles some strange prayers to @possessive_God@.

@The_monster@ utters an invocation to @possessive_God@.
%%%%
unseen priest cast targeted

You hear @something@ call down the wrath of @God@ upon @target@.

You hear @something@ mumble some strange prayers to @God@ against @target@.

You hear @something@ invoke the aid of @God@ against @target@.
%%%%
unseen priest cast

You hear some strange, mumbled prayers to @God@.
%%%%
non-humanoid wizard cast targeted

@The_monster@ stares at @target@ and mumbles some strange words.

@The_monster@ casts a spell at @target@.
%%%%
non-humanoid wizard cast

@The_monster@ mumbles some strange words.

@The_monster@ casts a spell.
%%%%
unseen non-humanoid wizard cast

You hear some strange, mumbled words.
%%%%
wizard cast targeted

@The_monster@ gestures at @target@ while chanting.

@The_monster@ points at @target@ and mumbles some strange words.

@The_monster@ casts a spell at @target@.
%%%%
wizard cast

@The_monster@ gestures wildly while chanting.

@The_monster@ mumbles some strange words.

@The_monster@ casts a spell.
%%%%
unseen wizard cast

You hear some strange, mumbled words.
%%%%
demon cast targeted

@The_monster@ gestures at @target@.
%%%%
demon cast

@The_monster@ gestures.
%%%%
######################################################
# Generic beam messages.
######################################################
beam catchall cast

@The_monster@ throws @beam@ @at@ @target@.
%%%%