diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-12 21:26:37 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-12 21:26:37 +0000 |
commit | 7bc0bc0c193686399324045675369cba876cee63 (patch) | |
tree | 68e799565d15f20e0ed3dc47835df8be6947bc95 /src/map/battle.c | |
parent | 09f021160ac8fed2cfe50babe9db8f76bed32da2 (diff) | |
download | hercules-7bc0bc0c193686399324045675369cba876cee63.tar.gz hercules-7bc0bc0c193686399324045675369cba876cee63.tar.bz2 hercules-7bc0bc0c193686399324045675369cba876cee63.tar.xz hercules-7bc0bc0c193686399324045675369cba876cee63.zip |
- Recoded NJ_BAKUENRYU to behave as I understand it best from the skill-description (since Haplo told me this skill doesn't really has video information or anything...)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7644 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 38143997d..dacfbe015 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2268,7 +2268,7 @@ struct Damage battle_calc_magic_attack( skillratio -= 10; break; case NJ_BAKUENRYU: - skillratio += 50 + 150*skill_lv; + skillratio += 50*(skill_lv-1); break; case NJ_HYOUSYOURAKU: skillratio += 50*skill_lv; |