From 6a3573e5f5bf52330b278dd0736112bf7f6f8938 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Thu, 9 Feb 2012 02:58:34 +0000 Subject: Added renewal behavior to safety wall (exclusive to remode) - Safety Wall now possesses a lifetime equal to 3 times the health of the caster, when the wall absorbs this much damage, the wall is removed and any remaining damage is dealt to the player. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15554 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/battle.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/map/battle.c') diff --git a/src/map/battle.c b/src/map/battle.c index efcf199aa..6cf116db4 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -386,10 +386,23 @@ int battle_calc_damage(struct block_list *src,struct block_list *bl,struct Damag { struct skill_unit_group* group = skill_id2group(sc->data[SC_SAFETYWALL]->val3); if (group) { + /** + * in RE, SW possesses a lifetime equal to 3 times the caster's health + **/ + #if REMODE + if ( ( group->val2 - damage) > 0 ) { + group->val2 -= damage; + d->dmg_lv = ATK_BLOCK; + return 0; + } else + damage -= group->val2; + skill_delunitgroup(group); + #else if (--group->val2<=0) skill_delunitgroup(group); d->dmg_lv = ATK_BLOCK; return 0; + #endif } status_change_end(bl, SC_SAFETYWALL, INVALID_TIMER); } -- cgit v1.2.3-70-g09d2