21 lines
434 B
C
21 lines
434 B
C
#ifndef l_trap_h
|
|
#define l_trap_h
|
|
|
|
static void create();
|
|
static void heart_beat();
|
|
|
|
mixed CanCapture(object who, object target);
|
|
mixed CanFree(object who, object target);
|
|
|
|
mixed eventCapture(object who, object target);
|
|
mixed eventEscape();
|
|
mixed eventFree(object who, string target);
|
|
|
|
object array GetCaptives();
|
|
int GetEscapeChance();
|
|
int SetEscapeChance(int x);
|
|
int GetMaxCapture();
|
|
int SetMaxCapture(int x);
|
|
|
|
#endif /* l_trap_h */
|