EDP skill

skenywitdafer

New member
Messages
42
Points
0
can anyone know how to fix this skill:

Enchant Deadly Poison Skill:

Sinx Soul Breaker normal status no edp, the damage was 6-7k
Sinx Soul Breaker uses EDP skill, the damage was 6-7k

why its no effect at all?

even though without items its still the same damage.

but when i use curse water/lightning converter it doubles now the damage of Soul Breaker.

could anyone help on fixing and balancing it?

I'm gonna go crazy already haha 
biggrin.png


 
Last edited by a moderator:
By default, EDP doesn't affect soul destroyer | soul breaker. If you want then you have to edit your source 

On your src/map/battle.c. Find : 

case ASC_BREAKER: skillratio += 100*skill_lv-100;
Then add a check if a character uses EDP : 

if(sc && sc->data[SC_EDP]) skillratio *= 2;

Will add 100% damage on soul breaker when he or she uses EDP. Didn't test though
 
Last edited by a moderator:
Back
Top