Issue information

Issue ID
#7774
Status
New
Severity
None
Started
rosfus
Oct 20, 2013 12:09
Last Post
Enhance
Jul 4, 2014 20:50
Confirmation
Yes (1)
No (1)

rosfus - Oct 20, 2013 12:09

Skill Name: RA_FEARBREEZE

SkillID: 2234

BUG Content: BUFF "RA_FEARBREEZE" time, [color=#ff0000]without any crit produce[/color].

malufett - Oct 21, 2013 14:32

you mean is when its active char should not have crit attacks?

:meow:

rosfus - Oct 21, 2013 17:43

Yes, it is.

rosfus - Nov 25, 2013 1:49

[color=rgb(34,89,133)][font=helvetica, arial, sans-serif][size=3][right]hi [url="http://herc.ws/board/user/20-malufett/"]malufett[/url], can you fix this?[/right][/size][/font][/color]

benzanaz - Jul 4, 2014 1:13

is fix?

Enhance - Jul 4, 2014 20:50

According to [url="http://irowiki.org/wiki/Fear_Breeze"]http://irowiki.org/wiki/Fear_Breeze[/url] , it has [b]priority over[/b] Critical Hit, not completely disabling it (as it currently does).
Quick fix:

[spoiler]
battle.c, [b]battle_calc_weapon_attack[/b]
lines 4252-4276[code=auto:0] wd.type = 0x08; switch(sc->data[SC_FEARBREEZE]->val1){ case 5: if( chance < 3){// 3 % chance to attack 5 times. wd.div_ = 5; break; } case 4: if( chance < 7){// 6 % chance to attack 4 times. wd.div_ = 4; break; } case 3: if( chance < 10){// 9 % chance to attack 3 times. wd.div_ = 3; break; } case 2: case 1: if( chance < 13){// 12 % chance to attack 2 times. wd.div_ = 2; break; } } wd.div_ = min(wd.div_,sd->status.inventory[i].amount); [/code]replace with[code=auto:0] switch(sc->data[SC_FEARBREEZE]->val1){ case 5: if( chance < 3){// 3 % chance to attack 5 times. wd.div_ = 5; break; } case 4: if( chance < 7){// 6 % chance to attack 4 times. wd.div_ = 4; break; } case 3: if( chance < 10){// 9 % chance to attack 3 times. wd.div_ = 3; break; } case 2: case 1: if( chance < 13){// 12 % chance to attack 2 times. wd.div_ = 2; break; } } wd.div_ = min(wd.div_,sd->status.inventory[i].amount); if (wd.div_ > 1) wd.type = 0x08; [/code](basically, not set the wd.type flag unless FEARBREEZE procs, the way Double Attack currently does)
[/spoiler]

This post has been edited by Enhance on Jul 4, 2014 20:53