Rapid Fire

Item ID 18184 Name Rapid Fire
Crossbow designed to shoot arrows quickly and hard.
_______________________
Increased Ranged Physical Damage by 10%.
_______________________
For each Refine Level:
ATK +4
_______________________
Refine Level +9:
Increases damage of Triangle Shot by 20%.
_______________________
Refine Level +11:
Increases damage of Triangle Shot by additional 15%.
_______________________
Type: Bow
Attack: 185
Weight: 150
Weapon Level: 4
_______________________
Requirement:
Base Level 170
Shadow Chaser
Weapon Level 4 Identifier Rapid_Fire_C_Bow
Attack 185 Type Weapon - Bow
MATK 0 Equip Locations Two-Handed
Defense 0 Equippable Jobs Rogue
Range 5 Equip Gender Both (Male and Female)
Slots 2 Equip Upper Third, Third Upper, Third Baby
Weight 150 Min Equip Level 170
NPC Buy 20 Max Equip Level None
NPC Sell 10 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
bonus bLongAtkRate,10;
bonus bBaseAtk,4*.@r;
if (.@r>=11)
   .@val = 35;
else if (.@r>=9)
   .@val = 20;
bonus2 bSkillAtk,"SC_TRIANGLESHOT",.@val;

Set Script
Gertie's Memory
Rapid Fire
.@r= getequiprefinerycnt(EQI_HAND_R)/3;
bonus2 bSkillAtk,"SC_TRIANGLESHOT",7*.@r;
bonus bLongAtkRate,2*.@r;
Goat Crown
Rapid Fire
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus bLongAtkRate,10;
bonus2 bSkillAtk,"SC_TRIANGLESHOT",10*.@r_weapon;
Rapid Fire
Phantom Heels
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES);
bonus bUnbreakableWeapon;
bonus2 bAddEle,Ele_All,3*getequiprefinerycnt(EQI_SHOES);
if (.@sum>=18) {
   bonus bPerfectHitAddRate,30;
   if (.@sum>=22) {
       bonus2 bAddClass,Class_Boss,25;
   }
}
Rapid Fire
Phantom Heels
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES);
bonus bUnbreakableWeapon;
bonus2 bAddEle,Ele_All,3*getequiprefinerycnt(EQI_SHOES);
if (.@sum>=18) {
   bonus bPerfectHitAddRate,30;
   if (.@sum>=22) {
       bonus2 bAddClass,Class_Boss,25;
   }
}