Volar
| Item ID | 21051 | Name | Volar |
|
A Two-Handed sword made of Black Light.
_______________________ Increases damage of Bowling Bash by 30%. _______________________ For each Refine Level: ATK +4 _______________________ Refine Level +9: Decreases Bowling Bash and Ignition Break skill cooldown by 1 second. _______________________ Refine Level +11: Increases damage of Bowling Bash by 20%. _______________________ Type: Two-Handed Sword Attack: 280 Weight: 280 Weapon Level: 4 _______________________ Requirement: Base Level 170 Rune Knight |
|---|---|---|---|---|---|
| Weapon Level | 4 | Identifier | Volar | ||
| Attack | 280 | Type | Weapon - Two-Handed Sword | ||
| MATK | 0 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Knight | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | Third, Third Upper, Third Baby | ||
| Weight | 280 | 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();
bonus2 bSkillAtk,"KN_BOWLINGBASH",30;
bonus bBaseAtk,4*.@r;
if (.@r>=9) {
bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000;
bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000;
}
if (.@r>=11) {
bonus bUnbreakableWeapon;
bonus2 bSkillAtk,"KN_BOWLINGBASH",20;
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bSkillAtk,"KN_BOWLINGBASH",10*.@r; bonus2 bSkillAtk,"RK_IGNITIONBREAK",5*.@r; |
||||
|
.@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bCritAtkRate,10; bonus2 bSkillAtk,"RK_IGNITIONBREAK",12*.@r_weapon; |
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES);
bonus2 bAddRace,RC_All,15;
bonus bCritAtkRate,3*getequiprefinerycnt(EQI_SHOES);
if (.@sum>=18) {
bonus2 bVariableCastrate,"RK_IGNITIONBREAK",-100;
if (.@sum>=22) {
bonus2 bHPDrainRate,1000,1;
}
}
|
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES);
bonus2 bAddRace,RC_All,15;
bonus bCritAtkRate,3*getequiprefinerycnt(EQI_SHOES);
if (.@sum>=18) {
bonus2 bVariableCastrate,"RK_IGNITIONBREAK",-100;
if (.@sum>=22) {
bonus2 bHPDrainRate,1000,1;
}
}
|