Star Cluster of Spell Lv2, (Renewal)
Star Cluster of Spell Lv2 (STAR_CLUSTER_OF_SPL2) – карта.

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