
RENEWAL / ITEMS
Star Cluster of Spell Lv1
#310686Card
Star_Cluster_Of_Spl1
Item stats
- Weight
- 0
- Buy price
- 0 z
- Sell price
- 0 z
Usage & restrictions
- Type
- Card
- Trading & storage
- No restrictions
Star Cluster of Spell Lv1 description & effects
The essence of stars that strengthens the wearer.
------------------------
Increases all property magical damage by 1% and MATK + 5 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 1% and additional S.MATK + 1 per 15 base SPL.
If armor grade is A, increases all property magical damage by additional 1% and additional S.MATK + 1 per 15 base SPL.
Item effect script
.@param = (readparam(bSpl)/15);
.@g = getenchantgrade();
bonus2 bMagicAtkEle,Ele_All,.@param;
bonus bMatk,5*.@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,.@param;
bonus bSMatk,.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bMagicAtkEle,Ele_All,.@param;
bonus bSMatk,.@param;
}
}
}
}
