
RENEWAL / ITEMS
Star Cluster of Spell Lv3
#310688Card
Star_Cluster_Of_Spl3
Item stats
- Weight
- 0
- Buy price
- 0 z
- Sell price
- 0 z
Usage & restrictions
- Type
- Card
- Trading & storage
- No restrictions
Star Cluster of Spell Lv3 description & effects
The essence of stars that strengthens the wearer.
------------------------
Increases all property magical damage by 3% and MATK + 15 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 + 2 per 15 base SPL.
If armor grade is A, increases all property magical damage by additional 3% and additional S.MATK + 2 per 15 base SPL.
Item effect script
.@param = (readparam(bSpl)/15);
.@g = getenchantgrade();
bonus2 bMagicAtkEle,Ele_All,3*.@param;
bonus bMatk,15*.@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,2*.@param;
if (.@g >= ENCHANTGRADE_A) {
bonus2 bMagicAtkEle,Ele_All,3*.@param;
bonus bSMatk,2*.@param;
}
}
}
}
Card sets
Set 1
Set effect
bonus2 bMagicAddRace,RC_All,15;
bonus2 bMagicAddRace,RC_Player_Human,-15;
bonus2 bMagicAddRace,RC_Player_Doram,-15;
Set 2
Set effect
bonus2 bMagicAddRace,RC_All,10;
bonus2 bMagicAddRace,RC_Player_Human,-10;
bonus2 bMagicAddRace,RC_Player_Doram,-10;
Set 3
Set effect
bonus2 bMagicAddRace,RC_All,20;
bonus2 bMagicAddRace,RC_Player_Human,-20;
bonus2 bMagicAddRace,RC_Player_Doram,-20;
Set 4
Set effect
.@g = getenchantgrade(EQI_SHOES);
autobonus "{ bonus bInt,150; }",30,10000,BF_MAGIC;
if (.@g>=ENCHANTGRADE_C) {
bonus bSpl,12;
if (.@g>=ENCHANTGRADE_A) {
bonus bSpl,27;
bonus bFixedCast,-300;
}
}


