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



