Jump to content
  • 0
Sign in to follow this  
karazu

Dragon Breath Current Damage Calculation.

Question

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?

Edited by karazu

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

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

Share this post


Link to post
Share on other sites
  • 0

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?

 

 

 

Edited by karazu

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.