
RENEWAL / ITEMS
Star Cluster of Wisdom Lv2
#310690Card
Star_Cluster_Of_Wis2
Item stats
- Weight
- 0
- Buy price
- 0 z
- Sell price
- 0 z
Usage & restrictions
- Type
- Card
- Trading & storage
- No restrictions
Star Cluster of Wisdom Lv2 description & effects
The essence of stars that strengthens the wearer.
------------------------
MaxSP + 1% and increases heal effectiveness by 3% per 15 base WIS of the user.
If armor grade is D, additional MaxSP + 1% and increases heal effectiveness by additional 2% 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%, H.PLUS + 1 and increases SP recovery rate by additional 2% per 15 base WIS.
If armor grade is A, additional MaxSP + 2% and additional H.PLUS + 2 per 15 base WIS.
Item effect script
.@param = (readparam(bWis)/15);
.@g = getenchantgrade();
bonus bMaxSPrate,.@param;
bonus bHealPower,3*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus bMaxSPrate,.@param;
bonus bHealPower,2*.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus bSPrecovRate,.@param;
bonus bMaxSPrate,.@param;
bonus bHealPower,2*.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus bSPrecovRate,2*.@param;
bonus bHPlus,.@param;
bonus bMaxSPrate,.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus bHPlus,2*.@param;
bonus bMaxSPrate,2*.@param;
}
}
}
}
Card sets
Set 1
Set effect
.@g = getenchantgrade(EQI_SHOES);
autobonus "{ bonus bMatkRate,30; }",30,10000,BF_MAGIC;
if (.@g>=ENCHANTGRADE_C) {
bonus bVariableCastrate,-20;
bonus bSMatk,10;
if (.@g>=ENCHANTGRADE_A) {
bonus bVariableCastrate,-35;
bonus bSMatk,15;
bonus2 bMagicAddSize,Size_All,25;
}
}


