Help me to edit Skill_db for Dragon Breath Skill

dikapramantya

New member
Messages
80
Points
0
I want to make Dragon Breath skill Ignore Caster Weapon , Ignore Target Def, Ignore Target Flee, Ignore Target Def Card, Only Reduce by Elemental Armor Change.

How to make it?

 
You have to edit the source code for that. Why do you want to make Dragon Breath its old OP style?

 
i think now dragon breath formula its OP if player have ice pick/ thanatos card sir.

balance old formula because have fix damage ?
default_ohmy.png
 

are hard to change the source code of dragon breath? hehehehe

 
Dragon Breath is not affected by weapons and also not be affected by ice pick or thanatos card.

 
Edit: emulator/src/map/battle.c

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;

Example: You can edit values ​​that do not directly affect the formula... :  "95 - 10"  or " skill_lv - 1"

 
Last edited by a moderator:
Aegis has this set as a DIRECTATTACK type, meaning it should be treated as weapon type attack which sounds right because the enemy's DEF reduces damage, but it doesn't take the caster's base or weapon ATK. If your finding something wrong with the skill then whatever the issue it might be a bug. I do have it on my "Things To Do" list and could look into it soon if you want.

 
But i have test on salamander monster.
no Ice pick = 20k damage
use ice pick = 90k damage use dragon brath water skill sir >.<

 
Oh dear. ill take a look into this.

 
ok

This is dragon breath damage using vit 255 use ice pick

screeneAthena038.jpg

this is using vit 1 , and ice pick

screeneAthena039.jpg

 
Last edited by a moderator:
Issue fixed in r804. Try it out and let me know if it fixed it.

 
Back
Top