ID #311032
Card
Axe Tornado Tuning Device
Buy Price: N/A
Sell Price: N/A
Increases damage of Axe Tornado by 5%.
Decreases Axe Tornado skill cooldown by 1 second.
_______________________
[Bonus by Weapon Grade]
[Grade D]: Damage of Axe Tornado +7%.
[Grade C]: Physical Damage against enemies of every size +10%.
[Grade B]: Damage of Axe Tornado +8%.
[Grade A]: Damage of Axe Tornado +10%.
Decreases Axe Tornado skill cooldown by 1 second.
_______________________
[Bonus by Weapon Grade]
[Grade D]: Damage of Axe Tornado +7%.
[Grade C]: Physical Damage against enemies of every size +10%.
[Grade B]: Damage of Axe Tornado +8%.
[Grade A]: Damage of Axe Tornado +10%.
Basic Information
Type
Card
Scripts
Script .@g = getenchantgrade(); bonus2 bSkillAtk,"NC_AXETORNADO",5; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"NC_AXETORNADO",7; if (.@g >= ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"NC_AXETORNADO",8; if (.@g >= ENCHANTGRADE_A) { bonus2 bSkillAtk,"NC_AXETORNADO",10; } } } }
.@g = getenchantgrade();
bonus2 bSkillAtk,"NC_AXETORNADO",5;
bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;
if (.@g >= ENCHANTGRADE_D) {
bonus2 bSkillAtk,"NC_AXETORNADO",7;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bAddSize,Size_All,10;
if (.@g >= ENCHANTGRADE_B) {
bonus2 bSkillAtk,"NC_AXETORNADO",8;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bSkillAtk,"NC_AXETORNADO",10;
}
}
}
}