Jump to content
  • 0

Acid demonstration and FE


kitty14

Question


  • Group:  Members
  • Topic Count:  103
  • Topics Per Day:  0.03
  • Content Count:  323
  • Reputation:   4
  • Joined:  12/09/13
  • Last Seen:  

Hello! just wanna ask how to lower max hit of AD. currently AD does 10 hits I want to lower it to 5 or 6 hits.
as well as how to lower there damages?.. thank you!

Edited by kitty14
Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  103
  • Topics Per Day:  0.03
  • Content Count:  323
  • Reputation:   4
  • Joined:  12/09/13
  • Last Seen:  

any one knows how to lessen the number of hits of AD? is it located in skill_db? please help. thank you!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   3
  • Joined:  11/22/12
  • Last Seen:  

in battle.c

i would recommand to lower 7 to 5 or 4, but if you want it to do less damages on full vit just take the /100 and make it like /150

in this line:  md.damage = 7 * ((atk.damage/skill_lv + matk.damage/skill_lv) * tstatus->vit / 100 );

 

and for the number of hits, i dont really know that

	case CR_ACIDDEMONSTRATION:
#ifdef RENEWAL
		// Official Renewal formula [helvetica]
		// damage = 7 * ((atk + matk)/skill level) * (target vit/100)
		// skill is a "forced neutral" type skill, it benefits from weapon element but final damage
		// 	is considered "neutral" for purposes of resistances
		{
			struct Damage atk = battle_calc_weapon_attack(src, target, skill_id, skill_lv, 0);
			struct Damage matk = battle_calc_magic_attack(src, target, skill_id, skill_lv, 0);
			md.damage = 7 * ((atk.damage/skill_lv + matk.damage/skill_lv) * tstatus->vit / 100 );

			// AD benefits from endow/element but damage is forced back to neutral
			md.damage = battle_attr_fix(src, target, md.damage, ELE_NEUTRAL, tstatus->def_ele, tstatus->ele_lv);
		}
Edited by philg666
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  166
  • Topics Per Day:  0.04
  • Content Count:  789
  • Reputation:   50
  • Joined:  04/16/12
  • Last Seen:  

any one knows how to lessen the number of hits of AD? is it located in skill_db? please help. thank you!

yes you can adjust the number of hits in skill_db

from

490,9,8,1,-1,0x60,0,10,1:2:3:4:5:6:7:8:9:10,yes,0,0,0,misc,0,0x0, CR_ACIDDEMONSTRATION,Acid Demonstration

to

490,9,8,1,-1,0x60,0,10,1:2:3:4:5,yes,0,0,0,misc,0,0x0, CR_ACIDDEMONSTRATION,Acid Demonstration

 

  • Upvote 1
Link to comment
Share on other sites

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.

×
×
  • Create New...