From d98cf9e97a61b175649fa9fe656cb8ec2874686c Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Sat, 10 Jan 2015 21:08:22 +0100 Subject: added esuna for now on, the cast only cures poison Signed-off-by: Olivier Gayot --- actions.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'actions.h') diff --git a/actions.h b/actions.h index 77d9781..e51edc7 100644 --- a/actions.h +++ b/actions.h @@ -6,11 +6,19 @@ #include "target.h" void attack(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); + +/* black magic */ void cast_element(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); +void cyanure(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); + +/* white magic */ void cast_cure(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); +void esuna(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); + +/* use */ void use_potion(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); void use_ether(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); + void defend(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); -void cyanure(SURFACES *, POSITIONS *, struct character_t *src, struct target_t *dst, void *data); #endif /* ACTIONS_H */ -- cgit v1.2.3