
RENEWAL / ITEMS
Star Cluster of Wisdom Lv1
#310689Card
Star_Cluster_Of_Wis1
Item stats
- Weight
- 0
- Buy price
- 0 z
- Sell price
- 0 z
Usage & restrictions
- Type
- Card
- Trading & storage
- No restrictions
Star Cluster of Wisdom Lv1 description & effects
The essence of stars that strengthens the wearer.
------------------------
MaxSP + 1% and increases heal effectiveness by 1% per 15 base WIS of the user.
If armor grade is D, additional MaxSP + 1% and increases heal effectiveness by additional 1% per 15 base WIS.
If armor grade is C, additional MaxSP + 1%, increases heal effectiveness by additional 2% and increases SP recovery rate by 1% per 15 base WIS.
If armor grade is B, additional MaxSP + 1%, increases heal effectiveness by additional 2% and increases SP recovery rate by additional 2% per 15 base WIS.
If armor grade is A, additional MaxSP + 1% and H.PLUS + 1 per 15 base WIS.
Item effect script
.@param = (readparam(bWis)/15);
.@g = getenchantgrade();
bonus bMaxSPrate,.@param;
bonus bHealPower,.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bMaxSPrate,.@param;
bonus bHealPower,.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bSPrecovRate,.@param;
bonus bMaxSPrate,.@param;
bonus bHealPower,2*.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bSPrecovRate,2*.@param;
bonus bMaxSPrate,.@param;
bonus bHealPower,2*.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bHPlus,.@param;
bonus bMaxSPrate,.@param;
}
}
}
}
