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

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