Furious Gigantic Axe
| Item ID | 620040 | Name | Furious Gigantic Axe |
|
A gigantic axe imbued with the power of rage.
_______________________ Indestructible in battle _______________________ Increases damage of Axe Stomp by 10%. _______________________ Base Level at least 210: ATK +7%, ATK +70. _______________________ Base Level at least 220: Increases damage of Mighty Smash by 5%. _______________________ Base Level at least 230: Increases Physical Damage against enemies of every size by 10%. _______________________ Refine Level +7: Increases Melee Physical Damage by 10%. _______________________ Refine Level +9: Increases damage of Mighty Smash by additional 10%. _______________________ Refine Level +10: Decreases After Skill Delay by 10%. _______________________ Refine Level +11: Increases damage of Mighty Smash by additional 10%. _______________________ When equipped with Furious Boots: Increases damage of Axe Stomp by additional 20%. If the Furious Boots's Grade is B or higher: Increases damage of Mighty Smash by additional 20%. _______________________ [Bonus by Grade] [Grade D]: Melee Physical Damage +15%. [Grade C]: Damage of Axe Stomp +10%. [Grade B]: Damage of Mighty Smash +10%. [Grade A]: ATK +4%, P.ATK +4 per 2 Refine Levels. _______________________ Type: Two-Handed Axe Attack: 330 Weight: 600 Weapon Level: 5 _______________________ Requirement: Base Level 205 Meister |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | GiganticAxe_Furious | ||
| Attack | 330 | Type | Weapon - Two-Handed Axe | ||
| MATK | 0 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Blacksmith | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 600 | 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,"MT_AXE_STOMP",10;
if (BaseLevel>=210) {
bonus bAtkRate,7;
bonus bBaseAtk,70;
}
if (BaseLevel>=220) {
bonus2 bSkillAtk,"MT_MIGHTY_SMASH",5;
}
if (BaseLevel>=230) {
bonus2 bAddSize,Size_All,10;
}
if (.@r>=7) {
bonus bShortAtkRate,10;
if (.@r>=9) {
bonus2 bSkillAtk,"MT_MIGHTY_SMASH",10;
if (.@r>=10) {
bonus bDelayrate,-10;
if (.@r>=11) {
bonus2 bSkillAtk,"MT_MIGHTY_SMASH",10;
}
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bShortAtkRate,15;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"MT_AXE_STOMP",10;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"MT_MIGHTY_SMASH",10;
if (.@g>=ENCHANTGRADE_A) {
bonus bPAtk,4*(.@r/2);
bonus bAtkRate,4*(.@r/2);
}
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bAddRace,RC_All,10; bonus2 bAddRace,RC_Player_Human,-10; bonus2 bAddRace,RC_Player_Doram,-10; |
||||
|
if (getenchantgrade()>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"MT_MIGHTY_SMASH",20;
bonus2 bSkillAtk,"MT_AXE_STOMP",20;
}
|