
RENEWAL / ITEMS
Glacier Flower Meow Power (Powerful)
#312073Card
Ice_C_Orb_P_Full
TypeCard
Weight0
Buy price0 z
Sell price0 z
Description
Melee, Long-ranged physical, all property magic damage + 3%.
------------------------
When refine level is +7 or higher, additional Melee, Long-ranged physical, all property magic damage + 3%.
------------------------
When refine level is +9 or higher, additional Melee, Long-ranged physical, all property magic damage + 3%.
------------------------
When grade is D or higher, additional Melee, Long-ranged physical, all property magic damage + 3%.
------------------------
When grade is C or higher, additional Melee, Long-ranged physical, all property magic damage + 3%.
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,3;
bonus bShortAtkRate,3;
bonus2 bMagicAtkEle,Ele_All,3;
if (.@r>=7) {
bonus bLongAtkRate,3;
bonus bShortAtkRate,3;
bonus2 bMagicAtkEle,Ele_All,3;
if (.@r>=9) {
bonus bLongAtkRate,3;
bonus bShortAtkRate,3;
bonus2 bMagicAtkEle,Ele_All,3;
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bLongAtkRate,3;
bonus bShortAtkRate,3;
bonus2 bMagicAtkEle,Ele_All,3;
if (.@g>=ENCHANTGRADE_C) {
bonus bLongAtkRate,3;
bonus bShortAtkRate,3;
bonus2 bMagicAtkEle,Ele_All,3;
}
}