Dragon Breath Current Damage Calculation.

karazu

New member
Messages
1,115
Points
0
Hello, It seems to be that the Dragon Breath after the latest rev works fine now.


But I dont know what is the correct changes 

Does anyone know what is the new Formula? How is the Damage Base etc?



According to this:
http://herc.ws/board/index.php?app=tracker&showissue=8029



I tried Different weapon, Different Stats and I think the formula still depends on HP and SP?

 
Last edited by a moderator:
It should be working as normal from before that other update. It was changed from weapon based to misc.

- skill->attack(BF_WEAPON,src,src,bl,skill_id,skill_lv,tick,flag);
+ skill->attack(BF_MISC,src,src,bl,skill_id,skill_lv,tick,flag);
-> https://github.com/HerculesWS/Hercules/blob/15a4395a2f2de8629a21b08ac6b9ec363ad94de3/src/map/skill.c

/** * Rune Knight **/ case RK_DRAGONBREATH_WATER: case RK_DRAGONBREATH: { struct status_change *tsc = NULL; if( (tsc = status->get_sc(bl)) && (tsc->data[SC_HIDING] )) { clif->skill_nodamage(src,src,skill_id,skill_lv,1); } else skill->attack(BF_MISC,src,src,bl,skill_id,skill_lv,tick,flag); }
But, in the database section.. it's still weapon.. :S

 
Last edited by a moderator:
It should be working as normal from before that other update. It was changed from weapon based to misc.

- skill->attack(BF_WEAPON,src,src,bl,skill_id,skill_lv,tick,flag);

+ skill->attack(BF_MISC,src,src,bl,skill_id,skill_lv,tick,flag);
-> https://github.com/HerculesWS/Hercules/blob/15a4395a2f2de8629a21b08ac6b9ec363ad94de3/src/map/skill.c

/** * Rune Knight **/ case RK_DRAGONBREATH_WATER: case RK_DRAGONBREATH: { struct status_change *tsc = NULL; if( (tsc = status->get_sc(bl)) && (tsc->data[SC_HIDING] )) { clif->skill_nodamage(src,src,skill_id,skill_lv,1); } else skill->attack(BF_MISC,src,src,bl,skill_id,skill_lv,tick,flag); }
But, in the database section.. it's still weapon.. :S
Ok so it was roll back to normal/OLD instead of that new update from being a Weapon base?

But in this Current Change, the preset DB can now be reduced by Demi Resist like Thara Frog Right?

 
Last edited by a moderator:
Back
Top