
RENEWAL / ITEMS
Star Cluster of Spell Lv2
#310687Card
Star_Cluster_Of_Spl2
TypeCard
Weight0
Buy price0 z
Sell price0 z
Star Cluster of Spell Lv2 description & effects
The essence of stars that strengthens the wearer.
------------------------
Increases all property magical damage by 2% and MATK + 7 per 15 base SPL of the user.
If armor grade is D, increases all property magical damage by additional 1% and S.MATK + 1 per 15 base SPL.
If armor grade is C, increases all property magical damage by additional 1% and additional S.MATK + 1 per 15 base SPL.
If armor grade is B, increases all property magical damage by additional 2% and additional S.MATK + 1 per 15 base SPL.
If armor grade is A, increases all property magical damage by additional 2% and additional S.MATK + 2 per 15 base SPL.
Item details
- Trade
Item effect script
.@param = (readparam(bSpl)/15);
.@g = getenchantgrade();
bonus2 bMagicAtkEle,Ele_All,2*.@param;
bonus bMatk,7*.@param;
if (.@g >= ENCHANTGRADE_D) {
bonus2 bMagicAtkEle,Ele_All,.@param;
bonus bSMatk,.@param;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bMagicAtkEle,Ele_All,.@param;
bonus bSMatk,.@param;
if (.@g >= ENCHANTGRADE_B) {
bonus2 bMagicAtkEle,Ele_All,2*.@param;
bonus bSMatk,.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bMagicAtkEle,Ele_All,2*.@param;
bonus bSMatk,2*.@param;
}
}
}
}
Card sets
Set 1
Set effect
.@g = getenchantgrade(EQI_SHOES);
autobonus "{ bonus bInt,120; }",30,10000,BF_MAGIC;
if (.@g>=ENCHANTGRADE_C) {
bonus bSpl,10;
if (.@g>=ENCHANTGRADE_A) {
bonus bSpl,20;
bonus bFixedCast,-200;
}
}


