Furious Spirit Stick
| Item ID | 550146 | Name | Furious Spirit Stick |
|
A staff that contains the power of rage.
_______________________ Indestructible in battle _______________________ MATK +180 _______________________ Increases damage of Talisman of Red Phoenix by 5%. _______________________ Base Level at least 210: MATK +4%, MATK +40. _______________________ Base Level at least 220: Increases damage of Talisman of Black Tortoise by 5%. _______________________ Base Level at least 230: Increases Magical Damage against enemies of every size by 10%. _______________________ Refine Level +7: Increases Magical Damage with every element by 10%. _______________________ Refine Level +9: Increases damage of Talisman of Four Bearing God by 10%. _______________________ Refine Level +10: Decreases Variable Casting Time by 10%. _______________________ Refine Level +11: Increases damage of Talisman of Red Phoenix and Talisman of Black Tortoise by additional 10%. _______________________ When equipped with Furious Boots: Increases damage of Talisman of Four Bearing God by (the sum of refine level)%. _______________________ [Bonus by Grade] [Grade D]: Magical Damage with every element +10%. [Grade C]: Damage of Talisman of Red Phoenix +10%. [Grade B]: Damage of Talisman of Black Tortoise +10%. [Grade A]: MATK +3%, S.MATK +3 per 2 Refine Levels. _______________________ Type: One-Handed Staff Attack: 100 Weight: 110 Weapon Level: 5 _______________________ Requirement: Base Level 205 Soul Ascetic |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | SpiritStick_Furious | ||
| Attack | 100 | Type | Weapon - Staff | ||
| MATK | 180 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Soul Linker | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 110 | 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,"SOA_TALISMAN_OF_RED_PHOENIX",10;
if (BaseLevel>=210) {
bonus bMatkRate,4;
bonus bMatk,40;
}
if (BaseLevel>=220) {
bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",10;
}
if (BaseLevel>=230) {
bonus2 bMagicAddSize,Size_All,10;
}
if (.@r>=7) {
bonus2 bMagicAtkEle,Ele_All,10;
if (.@r>=9) {
bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",10;
if (.@r>=10) {
bonus bVariableCastrate,-10;
if (.@r>=11) {
bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",15;
bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",15;
}
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus2 bMagicAtkEle,Ele_All,10;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",10;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",10;
if (.@g>=ENCHANTGRADE_A) {
bonus bSMatk,3*(.@r/2);
bonus bMatkRate,3*(.@r/2);
}
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bMagicAddRace,RC_All,10; bonus2 bMagicAddRace,RC_Player_Human,-10; bonus2 bMagicAddRace,RC_Player_Doram,-10; |
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",.@sum; |