Glacier Flower Spell (Physical Grade) 3Lv, (Renewal)
Glacier Flower Spell (Physical Grade) 3Lv (PHYSICAL_GRADE_3) – карта.

Atk + 45, increases melee and long ranged physical damage by 9%.
If refine rate is 7 or higher, increases attack speed (reduces delay after attack by 9%).
If refine rate is 9 or higher, reduces variable casting time and global cooldown by 9%.
[Bonus by grade of weapon]
[Grade D] Atk + 3%, Atk + 45.
[Grade C] P.Atk + 3 per 5 refine rate.
[Grade B] POW + 1 and CON + 1 per 4 refine rate.
[Grade A] Increases physical damage against all property enemies by 14%, if refine rate is 11 or higher, increases physical damage against all size enemies by 14%.
Базовые свойства предмета
- ID: 18305
- Код: PHYSICAL_GRADE_3
- Тип: карта
- Подтип:
- Вес: 1
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus bLongAtkRate,9;
bonus bShortAtkRate,9;
bonus bBaseAtk,45;
if (.@r>=7) {
bonus bAspdRate,9;
if (.@r>=9) {
bonus bVariableCastrate,-9;
bonus bDelayrate,-9;
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bAtkRate,3;
bonus bBaseAtk,45;
if (.@g>=ENCHANTGRADE_C) {
bonus bPAtk,3*(.@r/5);
if (.@g>=ENCHANTGRADE_B) {
bonus bPow,(.@r/4);
bonus bCon,(.@r/4);
if (.@g>=ENCHANTGRADE_A) {
bonus2 bAddEle,Ele_All,14;
if (.@r>=11) {
bonus2 bAddSize,Size_All,14;
}
}
}
}
}