Counter Assault Booster Katar, катар (Renewal)
Counter Assault Booster Katar (CA_B_KATAR) – оружие.

Can't be refined by normal means.
Atk + 2%.
Atk + 3 per refine rate.
Atk + 3 per 15 base level (up to level 195).
If refine rate is 7 or higher, reduces global cooldown by 1% per 2 level of Katar Mastery user learned.
If refine rate is 9 or higher, increases melee physical damage by 10%, increases Meteor Assault and Counter Slash damage by 25%.
If refine rate is 11 or higher, reduces global cooldown by additional 10%, increases physical damage against all size enemies by 15%.
If refine rate is 13 or higher, increases Meteor Assault and Counter Slash damage by additional 15%.
Скрипт
.@r = getrefine();
bonus bAtkRate,2;
bonus bBaseAtk,3*.@r;
bonus bBaseAtk,3*(min(BaseLevel,195)/15);
if (.@r>=7) {
   bonus bDelayrate,-(getskilllv("AS_KATAR")/2);
   if (.@r>=9) {
      bonus bShortAtkRate,10;
      bonus2 bSkillAtk,"ASC_METEORASSAULT",25;
      bonus2 bSkillAtk,"GC_COUNTERSLASH",25;
      if (.@r>=11) {
         bonus2 bAddSize,Size_All,15;
         bonus bDelayrate,-10;
         if (.@r>=13) {
            bonus2 bSkillAtk,"ASC_METEORASSAULT",15;
            bonus2 bSkillAtk,"GC_COUNTERSLASH",15;
         }
      }
   }
}