Furious Huuma Shuriken
| Item ID | 610072 | Name | Furious Huuma Shuriken |
|
A Huuma Shuriken imbued with the power of wrath.
_______________________ Indestructible in battle _______________________ Increases damage of Kunai - Rotation by 10%. _______________________ Base Level at least 210: ATK +7%, ATK +70. _______________________ Base Level at least 220: Increases damage of Kunai - Rotation by additional 5%. _______________________ Base Level at least 230: Increases Physical Damage against enemies of every size by 10%. _______________________ Refine Level +7: Increases Ranged Physical Damage by 10%. _______________________ Refine Level +9: Increases damage of Kunai - Rotation by additional 10%. _______________________ Refine Level +10: Increases Ranged Physical Damage by additional 10%. _______________________ Refine Level +11: Increases damage of Kunai - Rotation by additional 10%. _______________________ When equipped with Furious Boots: Increases damage of Kunai - Refraction by (the sum of refine level)%. If the Furious Boots's Grade is B or higher: Decreases skill cooldown of Kunai - Rotation by 0.2 seconds. _______________________ [Bonus by Grade] [Grade D]: Ranged Physical Damage +15%. [Grade C]: Damage of Kunai - Rotation +5%. [Grade B]: Damage of Kunai - Refraction +10%. [Grade A]: ATK +4%, P.ATK +4 per 2 Refine Levels. _______________________ Type: Huuma Shuriken Attack: 380 Weight: 280 Weapon Level: 5 _______________________ Requirement: Base Level 205 Shinkiro, Shiranui |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Humma_Furious | ||
| Attack | 380 | Type | Weapon - Fuuma Shuriken | ||
| MATK | 0 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Kagerou / Oboro | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 280 | 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,"SS_KUNAIKAITEN",10;
if (BaseLevel>=210) {
bonus bAtkRate,7;
bonus bBaseAtk,70;
}
if (BaseLevel>=220) {
bonus2 bSkillAtk,"SS_KUNAIKAITEN",5;
}
if (BaseLevel>=230) {
bonus2 bAddSize,Size_All,10;
}
if (.@r>=7) {
bonus bLongAtkRate,10;
if (.@r>=9) {
bonus2 bSkillAtk,"SS_KUNAIKAITEN",10;
if (.@r>=10) {
bonus bLongAtkRate,10;
if (.@r>=11) {
bonus2 bSkillAtk,"SS_KUNAIKAITEN",10;
}
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bLongAtkRate,15;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"SS_KUNAIKAITEN",5;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",10;
if (.@g>=ENCHANTGRADE_A) {
bonus bPAtk,4*(.@r/2);
bonus bAtkRate,4*(.@r/2);
}
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bSkillCooldown,"SS_KUNAIKAITEN",-300; |
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES);
bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",.@sum;
if (getenchantgrade(EQI_SHOES)>=ENCHANTGRADE_B) {
bonus2 bSkillCooldown,"SS_KUNAIKAITEN",-200;
}
|