15 lines
795 B
C
15 lines
795 B
C
#include "defs.h"
|
|
|
|
enum OBTYPE aigetattackspell(lifeform_t *lf, lifeform_t *victim);
|
|
enum OBTYPE aigetfleespell(lifeform_t *lf);
|
|
void aigetspelltarget(lifeform_t *lf, objecttype_t *spelltype, lifeform_t *victim, lifeform_t **spelllf, cell_t **spellcell, object_t **spellob, enum FLAG purpose);
|
|
object_t * aigetwand(lifeform_t *lf, enum FLAG purpose);
|
|
void aimove(lifeform_t *lf);
|
|
int aipickup(lifeform_t *lf, object_t *o);
|
|
int aiobok(lifeform_t *lf, object_t *o, lifeform_t *target);
|
|
int aispellok(lifeform_t *lf, enum OBTYPE spellid, lifeform_t *victim, enum FLAG purpose);
|
|
object_t *hasbetterarmour(lifeform_t *lf, obpile_t *op);
|
|
object_t *hasbetterweapon(lifeform_t *lf, obpile_t *op);
|
|
int lookforobs(lifeform_t *lf, int covetsonly);
|
|
int useitemwithflag(lifeform_t *lf, enum FLAG whichflag);
|