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.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'actions.c') diff --git a/actions.c b/actions.c index 9f02ef2..5ab45b4 100644 --- a/actions.c +++ b/actions.c @@ -203,3 +203,14 @@ void cyanure(SURFACES *surfaces, POSITIONS *positions, struct character_t *src, damage_target_hp(surfaces, positions, target, target->max_hp / 4); target->poisoned = true; } + +void esuna(SURFACES *surfaces, POSITIONS *positions, struct character_t *src, struct target_t *dest, void *data) +{ + (void) surfaces; + (void) positions; + (void) src; + (void) data; + + /* TODO cure every state and not only poison */ + dest->chr->poisoned = false; +} -- cgit v1.2.3