diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-10 21:08:22 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-10 21:08:22 +0100 |
commit | d98cf9e97a61b175649fa9fe656cb8ec2874686c (patch) | |
tree | e0562dd314123c713ae8127964529960e31b8bcc /actions.h | |
parent | 4a0235f95dac85068cf3654ef95832608b3cdc49 (diff) |
added esuna
for now on, the cast only cures poison
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'actions.h')
-rw-r--r-- | actions.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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 */ |