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