Furious Flame Staff
| Item ID | 640053 | Name | Furious Flame Staff |
|
A two-handed staff filled with the heat of wrath.
_______________________ Indestructible in battle _______________________ MATK +270 _______________________ Increases damage of Floral Flare Road by 10%. _______________________ Base Level at least 210: MATK +7%, MATK +70. _______________________ Base Level at least 220: Increases damage of Crimson Arrow by 5%. _______________________ Base Level at least 230: Increases Magical Damage against enemies of every size by 10%. _______________________ Refine Level +7: Increases Magical Damage with Fire element by 10%. _______________________ Refine Level +9: Increases damage of Floral Flare Road and Crimson Arrow by additional 10%. _______________________ Refine Level +10: Decreases Variable Casting Time by 10%. _______________________ Refine Level +11: Increases damage of Floral Flare Road and Crimson Arrow by additional 10%. _______________________ When equipped with Furious Boots: Increases damage of All Bloom by (the sum of refine level)%. _______________________ [Bonus by Grade] [Grade D]: Magical Damage with Fire element +15%. [Grade C]: Damage of Floral Flare Road +5%. [Grade B]: Damage of Crimson Arrow +10%. [Grade A]: MATK +4%, S.MATK +4 per 2 Refine Levels. _______________________ Type: Two-Handed Staff Attack: 100 Weight: 200 Weapon Level: 5 _______________________ Requirement: Base Level 205 Arch Mage |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Flame_Staff_Furious | ||
| Attack | 100 | Type | Weapon - Two-Handed Staff | ||
| MATK | 270 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Wizard | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 200 | 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,"AG_FLORAL_FLARE_ROAD",10;
if (BaseLevel>=210) {
bonus bMatkRate,7;
bonus bMatk,70;
}
if (BaseLevel>=220) {
bonus2 bSkillAtk,"AG_CRIMSON_ARROW",5;
bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",5;
}
if (BaseLevel>=230) {
bonus2 bMagicAddSize,Size_All,10;
}
if (.@r>=7) {
bonus2 bMagicAtkEle,Ele_Fire,10;
if (.@r>=9) {
bonus2 bSkillAtk,"AG_FLORAL_FLARE_ROAD",10;
bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10;
bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10;
if (.@r>=10) {
bonus bVariableCastrate,-10;
if (.@r>=11) {
bonus2 bSkillAtk,"AG_FLORAL_FLARE_ROAD",10;
bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10;
bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10;
}
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus2 bMagicAtkEle,Ele_Fire,15;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"AG_FLORAL_FLARE_ROAD",5;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10;
bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10;
if (.@g>=ENCHANTGRADE_A) {
bonus bSMatk,4*(.@r/2);
bonus bMatkRate,4*(.@r/2);
}
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bSkillAtk,"AG_ALL_BLOOM",25; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK",25; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK2",25; |
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bSkillAtk,"AG_ALL_BLOOM",.@sum; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK",.@sum; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK2",.@sum; |