Furious Foxtail
| Item ID | 550143 | Name | Furious Foxtail |
|
A foxtail that contains the power of rage.
_______________________ Indestructible in battle _______________________ Increases damage of Chulho Sonic Claw by 5%. _______________________ Base Level at least 210: ATK +4%, ATK +40. _______________________ Base Level at least 220: Increases damage of Chulho Sonic Claw by additional 5%. _______________________ Base Level at least 230: Increases Physical Damage against enemies of every size by 10%. _______________________ Refine Level +7: Increases Critical Damage by 10%. _______________________ Refine Level +9: Increases damage of Chulho Sonic Claw by additional 10%. _______________________ Refine Level +10: Decreases After Skill Delay by 10%. _______________________ Refine Level +11: Increases damage of Chulho Sonic Claw by additional 10%. _______________________ When equipped with Furious Boots: Increases damage of Hogogong Strike by (the sum of refine level)%. _______________________ [Bonus by Grade] [Grade D]: Critical Damage +10%. [Grade C]: Damage of Chulho Sonic Claw +5%. [Grade B]: Damage of Chulho Sonic Claw +10%. [Grade A]: ATK +3%, P.ATK +3 per 2 Refine Levels. _______________________ Type: One-Handed Staff Attack: 380 Weight: 160 Weapon Level: 5 _______________________ Requirement: Base Level 205 Spirit Handler |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Foxtail_Furious | ||
| Attack | 380 | Type | Weapon - Staff | ||
| MATK | 0 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | None | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 160 | 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();
bonus bUnbreakableWeapon;
bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5;
if (BaseLevel>=210) {
bonus bAtkRate,4;
bonus bBaseAtk,40;
}
if (BaseLevel>=220) {
bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5;
}
if (BaseLevel>=230) {
bonus2 bAddSize,Size_All,10;
}
if (.@r>=7) {
bonus bCritAtkRate,10;
if (.@r>=9) {
bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10;
if (.@r>=10) {
bonus bDelayrate,-10;
if (.@r>=11) {
bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10;
}
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bCritAtkRate,15;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10;
if (.@g>=ENCHANTGRADE_A) {
bonus bPAtk,3*(.@r/2);
bonus bAtkRate,3*(.@r/2);
}
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",15; |
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",.@sum; |