Frontier Spell (Critical)

Item ID 313843 Name Frontier Spell (Critical)
C.RATE +2.
Increases Critical Damage by 5%.
_______________________
Refine Level +7:
Increases Critical Damage by additional 3%.
_______________________
Refine Level +9:
Increases Critical Damage by additional 3%.
_______________________
[Bonus by Equipment's Grade]
[Grade D]: Critical +2, Critical Damage +4%.
[Grade C]: Critical +3, Critical Damage +5%.
Weapon Level 0 Identifier Ch01_3_Critical
Attack 0 Type Card - Enchant
MATK 0 Equip Locations None
Defense 0 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 0 Equip Upper None
Weight 0 Min Equip Level None
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction None
Item Script
.@g = getenchantgrade();
.@r = getrefine();
bonus bCritAtkRate,5;
bonus bCRate,2;
if (.@r>=7) {
   bonus bCritAtkRate,3;
   if (.@r>=9) {
      bonus bCritAtkRate,3;
   }
}
if (.@g>=ENCHANTGRADE_D) {
   bonus bCritAtkRate,4;
   bonus bCritical,2;
   if (.@g>=ENCHANTGRADE_C) {
      bonus bCritAtkRate,5;
      bonus bCritical,3;
   }
}