ID #311029
Card
Storm Slash Tuning Device
Buy Price: N/A
Sell Price: N/A
Increases damage of Storm Slash by 5%.
_______________________
[Bonus by Weapon Grade]
[Grade D]: Damage of Storm Slash +3%.
[Grade C]: Physical Damage against enemies of every size +10%.
[Grade B]: Damage of Storm Slash +4%.
[Grade A]: Damage of Storm Slash +6%.
_______________________
[Bonus by Weapon Grade]
[Grade D]: Damage of Storm Slash +3%.
[Grade C]: Physical Damage against enemies of every size +10%.
[Grade B]: Damage of Storm Slash +4%.
[Grade A]: Damage of Storm Slash +6%.
Basic Information
Type
Card
Scripts
Script .@g = getenchantgrade(); bonus2 bSkillAtk,"DK_STORMSLASH",5; if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"DK_STORMSLASH",3; if (.@g >= ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"DK_STORMSLASH",4; if (.@g >= ENCHANTGRADE_A) { bonus2 bSkillAtk,"DK_STORMSLASH",6; } } } }
.@g = getenchantgrade();
bonus2 bSkillAtk,"DK_STORMSLASH",5;
if (.@g >= ENCHANTGRADE_D) {
bonus2 bSkillAtk,"DK_STORMSLASH",3;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bAddSize,Size_All,10;
if (.@g >= ENCHANTGRADE_B) {
bonus2 bSkillAtk,"DK_STORMSLASH",4;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bSkillAtk,"DK_STORMSLASH",6;
}
}
}
}