
RENEWAL / ITEMS
Stamina of Varmundt Lv3
#310938Card
Barmund_Sta3
TypeCard
Weight0
Buy price0 z
Sell price0 z
Stamina of Varmundt Lv3 description & effects
Varmund's stamina essence.
------------------------
STA +3.
MHP +600 and RES +3 per 20 base STA of the user.
If the enchanted equipment is grade D, MHP +1% and RES +1 per 20 base STA.
If the enchanted equipment is grade C, MHP +1% and RES +1 per 20 base STA.
If the enchanted equipment is grade B, MHP +1% and RES +2 per 20 base STA.
If the enchanted equipment is grade A, MHP +2% and RES +2 per 20 base STA.
Item details
- Trade
Item effect script
.@param = (readparam(bSta)/20);
.@g = getenchantgrade();
bonus bSta,3;
bonus bMaxHP,600*.@param;
bonus bRes,3*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bMaxHPrate,.@param;
bonus bRes,.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bMaxHPrate,.@param;
bonus bRes,.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bMaxHPrate,.@param;
bonus bRes,2*.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bMaxHPrate,2*.@param;
bonus bRes,2*.@param;
}
}
}
}
