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