summaryrefslogtreecommitdiff
path: root/actions.h
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2015-01-10 21:08:22 +0100
committerOlivier Gayot <duskcoder@gmail.com>2015-01-10 21:08:22 +0100
commitd98cf9e97a61b175649fa9fe656cb8ec2874686c (patch)
treee0562dd314123c713ae8127964529960e31b8bcc /actions.h
parent4a0235f95dac85068cf3654ef95832608b3cdc49 (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.h10
1 files changed, 9 insertions, 1 deletions
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 */