
RENEWAL / ITEMS
Power of Varmundt Lv3
#310922Card
Barmund_Pow3
Item stats
- Weight
- 0
- Buy price
- 0 z
- Sell price
- 0 z
Usage & restrictions
- Type
- Card
- Trading & storage
- No restrictions
Power of Varmundt Lv3 description & effects
Varmund's power essence.
------------------------
POW +3.
ATK +5 and P.ATK +3 per 20 base POW of the user.
If the enchanted equipment is grade D, additional P.ATK +1 per 20 base POW.
If the enchanted equipment is grade C, additional P.ATK +2 per 20 base POW.
If the enchanted equipment is grade B, additional P.ATK +2 per 20 base POW.
If the enchanted equipment is grade A, additional P.ATK +2 per 20 base POW.
Item effect script
.@param = (readparam(bPow)/20);
.@g = getenchantgrade();
bonus bPow,3;
bonus bPAtk,3*.@param;
bonus bBaseAtk,5*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bPAtk,.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bPAtk,2*.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bPAtk,2*.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bPAtk,2*.@param;
}
}
}
}
