Precision Whip [2], кнут (Renewal)
Precision Whip [2] (PRECISION_WHIP) – оружие.
![Precision Whip [2], кнут (Renewal) Precision Whip [2], кнут (Renewal)](/images/db/items/picture/580028.png)
Increases Rose Blossom and Rhythm Shooting damage by 7% per 2 refine rate.
Increases Severe Rainstorm damage by 10% per 3 refine rate.
Increases long ranged physical damage by 4% per 4 refine rate.
[Bonus by grade]
[Grade D] CON + 2.
[Grade C] Increases Rose Blossom and Rhythm Shooting damage by additional 10%.
[Grade B] P.Atk + 2.
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus2 bSkillAtk,"TR_ROSEBLOSSOM",7*(.@r/2);
bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",7*(.@r/2);
bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",7*(.@r/2);
bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10*(.@r/3);
bonus bLongAtkRate,4*(.@r/4);
if (.@g >= ENCHANTGRADE_D) {
   bonus bCon,2;
   if (.@g >= ENCHANTGRADE_C) {
      bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10;
      bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10;
      bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bPAtk,2;
      }
   }
}