Star Cluster of Spell Lv3, (Renewal)
Star Cluster of Spell Lv3 (STAR_CLUSTER_OF_SPL3) – карта.

Increases all property magical damage by 3% and Matk + 15 per 15 base SPL of the user.
If the enchanted armor is grade D, increases all property magical damage by additional 1% and S.Matk + 1 per 15 base SPL.
If the enchanted armor is grade C, increases all property magical damage by additional 1% and additional S.Matk + 1 per 15 base SPL.
If the enchanted armor is grade B, increases all property magical damage by additional 2% and additional S.Matk + 2 per 15 base SPL.
If the enchanted armor is grade A, increases all property magical damage by additional 3% and additional S.Matk + 2 per 15 base SPL.
Базовые свойства предмета
- ID: 17703
- Код: STAR_CLUSTER_OF_SPL3
- Тип: карта
- Подтип:
- Вес: 1
Скрипт
.@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; } } } }