Jump to content
  • 0

Reduve Dragon Breath Damage


Question

Posted

Hello:

 

I want to reduce Dragon Breath Damage because it's overbowering!!!

 

That happened when i change the max level to 250.

 

I want to make balance (Reduce the damage 50% please)

 

 

I know that i can do it from battle.c, but i don't know how to change the values to make the damage 50%.

 

Thanks

1 answer to this question

Recommended Posts

Posted

trunk/src/map/battle.c

Find:

	case RK_DRAGONBREATH:
		md.damage = ((status_get_hp(src) / 50) + (status_get_max_sp(src) / 4)) * skill_lv;
		RE_LVL_MDMOD(150);
		if (sd) md.damage = (int64)md.damage * (100 + 5 * (pc_checkskill(sd,RK_DRAGONTRAINING) - 1)) / 100;
		md.flag |= BF_LONG|BF_WEAPON;

Replace:

	case RK_DRAGONBREATH:
		md.damage = ((status_get_hp(src) / 50) + (status_get_max_sp(src) / 4)) * skill_lv;
		RE_LVL_MDMOD(150);
		if (sd) md.damage = (int64)md.damage * (50 + 5 * (pc_checkskill(sd,RK_DRAGONTRAINING) - 1)) / 100;
		md.flag |= BF_LONG|BF_WEAPON;

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...