
RENEWAL / ITEMS
Double Bowling Bash Tuning Device
#311057Card
Gear_HN1
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Double Bowling Bash damage increased by 5%.
[Grade Bonus]
[Grade D] Double Bowling Bash damage increases by additional 3%.
[Grade C] Increase physical damage against all size enemies by 10%.
[Grade B] Double Bowling Bash damage increases by additional 4%.
[Grade A] Double Bowling Bash damage increases by additional 6%.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect script
.@g = getenchantgrade();
bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",5;
if (.@g >= ENCHANTGRADE_D) {
bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",3;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bAddSize,Size_All,10;
if (.@g >= ENCHANTGRADE_B) {
bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",4;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",6;
}
}
}
}