Furious Extermination
| Item ID | 560068 | Name | Furious Extermination |
|
A knuckle filled with the firm will to condemn and destroy heresy.
_______________________ Increases damage of Third Punish by 5%. _______________________ Base Level at least 210: ATK +4%, ATK +40. _______________________ Base Level at least 220: Increases damage of Third Punish by additional 5%. _______________________ Base Level at least 230: Increases Physical Damage against enemies of every size by 10%. _______________________ Refine Level +7: Increases Melee Physical Damage by 10%. _______________________ Refine Level +9: Increases damage of Third Punish by additional 10%. _______________________ Refine Level +10: Perfect HIT +10, Critical +5. _______________________ Refine Level +11: Increases damage of Third Punish by additional 10%. _______________________ When equipped with Furious Boots: Increases damage of Third Flame Bomb by (the sum of refine level)%. _______________________ [Bonus by Grade] [Grade D]: Melee Physical Damage +10%. [Grade C]: Damage of Third Punish +5%. [Grade B]: Damage of Third Punish +10%. [Grade A]: ATK +3%, P.ATK +3 per 2 Refine Levels. _______________________ Type: Knuckle Attack: 215 Weight: 180 Weapon Level: 5 _______________________ Requirement: Base Level 205 Inquisitor |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Exterminate_Furious | ||
| Attack | 215 | Type | Weapon - Knuckle | ||
| MATK | 0 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Monk | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 180 | Min Equip Level | 205 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@g = getenchantgrade();
.@r = getrefine();
bonus2 bSkillAtk,"IQ_THIRD_PUNISH",5;
if (BaseLevel>=210) {
bonus bAtkRate,4;
bonus bBaseAtk,40;
}
if (BaseLevel>=220) {
bonus2 bSkillAtk,"IQ_THIRD_PUNISH",5;
}
if (BaseLevel>=230) {
bonus2 bAddSize,Size_All,10;
}
if (.@r>=7) {
bonus bShortAtkRate,10;
if (.@r>=9) {
bonus2 bSkillAtk,"IQ_THIRD_PUNISH",10;
if (.@r>=10) {
bonus bPerfectHitAddRate,10;
bonus bCritical,5;
if (.@r>=11) {
bonus2 bSkillAtk,"IQ_THIRD_PUNISH",10;
}
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bShortAtkRate,10;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"IQ_THIRD_PUNISH",5;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"IQ_THIRD_PUNISH",10;
if (.@g>=ENCHANTGRADE_A) {
bonus bPAtk,3*(.@r/2);
bonus bAtkRate,3*(.@r/2);
}
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",25; |
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",.@sum; |