javierlog08
New member
- Messages
- 86
- Points
- 0
- Github
- javierlog08
- Emulator
Hi, im looking the way to make dragon breath reducible by Demi-human reduction effects / Defense / and Element.
I have looking at files
src/map/battle.c
In whick are mostly of damage calculations ,but i cant see yet anything related with Dragon Breath and Demi Humans or effects
The only is this code that just make the calculation based on iro wiki.
http://irowiki.org/wiki/Dragon_Breath
I have looking at files
src/map/battle.c
In whick are mostly of damage calculations ,but i cant see yet anything related with Dragon Breath and Demi Humans or effects
The only is this code that just make the calculation based on iro wiki.
http://irowiki.org/wiki/Dragon_Breath
Code:
case RK_DRAGONBREATH: case RK_DRAGONBREATH_WATER: md.damage = ((status_get_hp(src) / 50) + (status_get_max_sp(src) / 4)) * skill_lv; RE_LVL_MDMOD(150); if (sd) md.damage = md.damage * (95 + 5 * pc->checkskill(sd,RK_DRAGONTRAINING)) / 100; md.flag |= BF_LONG|BF_WEAPON; break;