Poenitentia Foramen [2], револьвер (Renewal)
Poenitentia Foramen [2] (POENITENTIA_FORAMEN) – оружие.
![Poenitentia Foramen [2], револьвер (Renewal) Poenitentia Foramen [2], револьвер (Renewal)](/images/db/items/picture/800011.png)
Atk + 10%.
Increases Only One Bullet and Magazine for One damage by 10%.
Increases Fire Dance damage by 3% per 2 refine rate.
If refine rate is 7 or higher, increases long ranged physical damage by 10%.
If refine rate is 9 or higher, increases Fire Dance damage by additional 25%. 
If refine rate is 11 or higher, increases physical damage against all size enemies by 15%.
[Bonus by grade]
[Grade D] Increases Only One Bullet and Magazine for One damage by additional 5%.
[Grade C] Increases Only One Bullet and Magazine for One damage by additional 3%, P.Atk + 1.
[Grade B] Increases Only One Bullet and Magazine for One damage by additional 5%, CON + 1.
Скрипт
.@g = getenchantgrade();
.@r = getrefine();
bonus bAtkRate,10;
bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10;
bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10;
bonus2 bSkillAtk,"RL_FIREDANCE",3*(.@r/2);
if (.@r>=7) {
   bonus bLongAtkRate,10;
   if (.@r>=9) {
      bonus2 bSkillAtk,"RL_FIREDANCE",25;
      if (.@r>=11) {
         bonus2 bAddSize,Size_All,15;
      }
   }
}
if (.@g >= ENCHANTGRADE_D) {
   bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5;
   bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5;
   if (.@g >= ENCHANTGRADE_C) {
      bonus bPAtk,1;
      bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",3;
      bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",3;
      if (.@g >= ENCHANTGRADE_B) {
         bonus bCon,1;
         bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5;
         bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5;
      }
   }
}