summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-abil.h
blob: 527f71dc3e8eadec7c3f504fd134cbed191d69a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 *  File:       mon-abil.h
 *  Summary:    Monster abilities.
 *  Written by: Linley Henzell
 */

#ifndef MONABIL_H
#define MONABIL_H

class monsters;
class bolt;

bool mon_special_ability(monsters *monster, bolt & beem);
void mon_nearby_ability(monsters *monster);

bool ugly_thing_mutate(monsters *ugly, bool proximity = false);
bool slime_split_merge(monsters *thing);

#endif