Issue information

Issue ID
#4675
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Dec 27, 2010 16:31
Last Post
Hercules Elf Bot
Mar 5, 2012 17:40
Confirmation
N/A

Hercules Elf Bot - Dec 27, 2010 16:31

Originally posted by [b]Playtester[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=4675

There are two bugs with HT_POWER currently on eA:

1. The damage per hit currently is 100%+(5*STR)% but it should be 50%+(8*STR)%. You can still see Skotlex's note that he just put a guessed value when he implemented it. You can find the correct calculation on (pre-renewal) irowiki and also in various damage calcs.
2. The SP cost should be 12 and not 8. I asked Tharis and also some iRO Hunters and they could all confirm this.

I can't commit anymore, so it would be nice if someone could commit these fixes.

battle.c
CODE
case HT_POWER: //FIXME: How exactly is the STR based damage supposed to be done? [Skotlex]
skillratio += 5*sstatus->str;
break;

Should be:
CODE
case HT_POWER:
skillratio += -50+8*sstatus->str;
break;


skill_require_db.txt
CODE
499,0,0,8,0,0,0,11,1,1,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //HT_POWER##

Should be:
CODE
499,0,0,12,0,0,0,11,1,1,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //HT_POWER##