Solid Staff
| Item ID | 640031 | Name | Solid Staff |
|
A staff made of refined clock tower parts and quenched with etheric power.
It supplemented the shortcomings of the existing Fortified Staff. _______________________ Indestructible in battle _______________________ MATK +290 _______________________ For each 2 Refine Levels: Increases damage of Frozen Slash and Crimson Arrow by 6%. _______________________ For each 3 Refine Levels: Increases damage of Crystal Impact by 5%. _______________________ For each 4 Refine Levels: Increases Magical Damage with every element by 3%. _______________________ [Bonus by Grade] [Grade D]: SPL +2 [Grade C]: Damage of Frozen Slash and Crimson Arrow +10%. [Grade B]: S.MATK +2 _______________________ Type: Two-Handed Staff Attack: 150 Weight: 220 Weapon Level: 5 _______________________ Requirement: Base Level 220 Arch Mage |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Solid_Staff | ||
| Attack | 150 | Type | Weapon - Two-Handed Staff | ||
| MATK | 290 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Wizard | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 220 | Min Equip Level | 220 | ||
| 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,"AG_CRIMSON_ARROW",6*(.@r/2);
bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",6*(.@r/2);
bonus2 bSkillAtk,"AG_FROZEN_SLASH",6*(.@r/2);
bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT",5*(.@r/3);
bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT_ATK",5*(.@r/3);
bonus2 bMagicAtkEle,Ele_All,3*(.@r/4);
if (.@g >= ENCHANTGRADE_D) {
bonus bSpl,2;
if (.@g >= ENCHANTGRADE_C) {
bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10;
bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10;
bonus2 bSkillAtk,"AG_FROZEN_SLASH",10;
if (.@g >= ENCHANTGRADE_B) {
bonus bSMatk,2;
}
}
}
|
||||