
RENEWAL / ITEMS
Severe Rainstorm Tuning Device
#311062Card
Gear_TR2
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Severe Rainstorm damage increased by 5%.
Reduces skill cooldown of Severe Rainstorm 2 seconds.
[Grade Bonus]
[Grade D] Severe Rainstorm damage increases by additional 7%.
[Grade C] Increase physical damage against all size enemies by 10%.
[Grade B] Severe Rainstorm damage increases by additional 8%.
[Grade A] Severe Rainstorm damage increases by additional 10%.
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,"WM_SEVERE_RAINSTORM_MELEE",5;
bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;
if (.@g >= ENCHANTGRADE_D) {
bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",7;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bAddSize,Size_All,10;
if (.@g >= ENCHANTGRADE_B) {
bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",8;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10;
}
}
}
}