
RENEWAL / ITEMS
Glacier Flower Spell (Physical Grade) 2Lv
#311450Card
Physical_Grade_2
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
ATK + 30.
------------------------
Increases melee and long-ranged physical damage by 6%.
------------------------
When refined to +7, ASPD + 6%.
------------------------
When refined to +9, reduces Variable Casting Time and After Cast Delay by 6%.
------------------------
[Weapon Grade Bonus]
[Grade D] ATK + 2%, ATK + 30.
[Grade C] When refined to +7, P.ATK + 3.
[Grade B] When refined to +9, POW + 1, CON + 1.
[Grade A] Increases physical damage against all property enemies by 12%. When refined to +11, increases physical damage against all size enemies by 12%.
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Trade
Item effect script
.@g = getenchantgrade();
.@r = getrefine();
bonus bLongAtkRate,6;
bonus bShortAtkRate,6;
bonus bBaseAtk,30;
if (.@r>=7) {
bonus bAspdRate,6;
if (.@r>=9) {
bonus bVariableCastrate,-6;
bonus bDelayrate,-6;
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bAtkRate,2;
bonus bBaseAtk,30;
if (.@g>=ENCHANTGRADE_C) {
if (.@r>=7) {
bonus bPAtk,3;
}
}
if (.@g>=ENCHANTGRADE_B) {
if (.@r>=9) {
bonus bPow,1;
bonus bCon,1;
}
if (.@g>=ENCHANTGRADE_A) {
bonus2 bAddEle,Ele_All,12;
if (.@r>=11) {
bonus2 bAddSize,Size_All,12;
}
}
}
}