Issue information

Issue ID
#5322
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Feb 12, 2012 2:30
Last Post
Hercules Elf Bot
Jun 23, 2012 9:52
Confirmation
Yes (1)
No (0)

Hercules Elf Bot - Feb 12, 2012 2:30

Originally posted by [b]Aleos[/b]
Enchant Deadly Poison should not increase damage for Grimtooth and Venom Knife. It also should halve damage for Sonic Blow, Soul Destroyer, Cross Impact, and Counter Slash.

Source: [url=http://irowiki.org/wiki/Enchant_Deadly_Poison]iRO Wiki[/url]

Hercules Elf Bot - Feb 12, 2012 10:46

Originally posted by [b]Angezerus[/b]
Confirmed. It should not affect the mentioned skills, and should have only "half bonus" on other skills.
[list]
[*]As of Renewal, EDP no longer increases final damage by 400%
[*]EDP level 5 will multiply your weapon atk by 5 times, and your equipment atk by 4 times.
[/list]

This post has been edited by Angezerus on Mar 1, 2012 11:03

Hercules Elf Bot - Jun 5, 2012 23:09

Originally posted by [b]exneval[/b]
for the halve damage, rAthena forgot the code in battle.c
from this
[code]#ifndef RENEWAL_EDP
// renewal EDP doesn't affect your final damage but your atk and weapon atk
if(sc->data[SC_EDP] &&
skill_num != ASC_BREAKER &&
skill_num != ASC_METEORASSAULT &&
skill_num != AS_SPLASHER &&
skill_num != AS_VENOMKNIFE)
ATK_ADDRATE(sc->data[SC_EDP]->val3);
#endif[/code]

to this
[code]#ifndef RENEWAL_EDP
// renewal EDP doesn't affect your final damage but your atk and weapon atk
if(sc->data[SC_EDP] &&
skill_num != ASC_BREAKER &&
skill_num != ASC_METEORASSAULT &&
skill_num != AS_SPLASHER &&
skill_num != AS_VENOMKNIFE)
ATK_ADDRATE(sc->data[SC_EDP]->val3);
#else
if (sc->data[SC_EDP]) {
switch (skill_num) {
case AS_SONICBLOW:
case ASC_BREAKER:
case GC_CROSSIMPACT:
case GC_COUNTERSLASH:
ATK_RATE(50);
}
}
#endif[/code]

This post has been edited by exneval on Jun 5, 2012 23:21

Hercules Elf Bot - Jun 6, 2012 2:21

Originally posted by [b]GM Takumirai[/b]
- pls confirm if this fix it. thanks exneval

Hercules Elf Bot - Jun 14, 2012 11:41

Originally posted by [b]exneval[/b]
@dev
please check the halve damage for this skill's status

Hercules Elf Bot - Jun 15, 2012 18:52

Originally posted by [b]exneval[/b]
without halve damage,
in renewal, effect of EDP will be more dangerous than Ashura Strike,

please check

This post has been edited by exneval on Jun 15, 2012 18:56

Hercules Elf Bot - Jun 16, 2012 1:36

Originally posted by [b]Igniz[/b]
Fixed on [color="#bb0000"][url="http://sourceforge.net/apps/trac/rathena/changeset/16309"]r16309[/url][/color]

Hercules Elf Bot - Jun 16, 2012 3:48

Originally posted by [b]exneval[/b]
please check [url="http://rathena.org/board/tracker/issue-5940-enchant-deadly-poison/"]this[/url]

This post has been edited by exneval on Jun 16, 2012 3:48