Furious Saint Book
| Item ID | 540086 | Name | Furious Saint Book |
|
A bible filled with wrath toward those without faith.
_______________________ MATK +145 _______________________ Increases damage of Petitio by 5%. _______________________ Base Level at least 210: MATK +4%, MATK +40. _______________________ Base Level at least 220: Increases damage of Petitio by additional 5%. _______________________ Base Level at least 230: Increases Damage against enemies of every size by 10%. _______________________ Refine Level +7: Increases Critical Damage by 10%. _______________________ Refine Level +9: Increases damage of Petitio by additional 10%. _______________________ Refine Level +10: Physical melee attacks have a 7% chance to auto-cast Level 3 Framen. (If you learned a higher Level, it will auto cast that Level instead.) _______________________ Refine Level +11: Increases damage of Petitio by additional 10%. _______________________ When equipped with Furious Boots: Physical attacks have a 7% chance to increase damage of Duple Light by (the sum of refine level x15)% for 10 seconds. _______________________ [Bonus by Grade] [Grade D]: Critical Damage +10%. [Grade C]: Damage of Petitio +5%. [Grade B]: Damage of Petitio +10%. [Grade A]: ATK +3%, P.ATK +3 per 2 Refine Levels. _______________________ Type: Book Attack: 175 Weight: 120 Weapon Level: 5 _______________________ Requirement: Base Level 205 Cardinal |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | SaintBook_Furious | ||
| Attack | 175 | Type | Weapon - Book | ||
| MATK | 145 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Priest | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 120 | 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();
bonus2 bSkillAtk,"CD_PETITIO",5;
if (BaseLevel>=210) {
bonus bAtkRate,4;
bonus bBaseAtk,40;
}
if (BaseLevel>=220) {
bonus2 bSkillAtk,"CD_PETITIO",5;
}
if (BaseLevel>=230) {
bonus2 bAddSize,Size_All,10;
bonus2 bMagicAddSize,Size_All,10;
}
if (.@r>=7) {
bonus bCritAtkRate,10;
if (.@r>=9) {
bonus2 bSkillAtk,"CD_PETITIO",10;
if (.@r>=10) {
if (.@r>=11) {
bonus2 bSkillAtk,"CD_PETITIO",10;
}
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bCritAtkRate,10;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"CD_PETITIO",5;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"CD_PETITIO",10;
if (.@g>=ENCHANTGRADE_A) {
bonus bPAtk,3*(.@r/2);
bonus bAtkRate,3*(.@r/2);
}
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bSkillAtk,"CD_PETITIO",15; |
||||
|
autobonus "{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,\"AB_DUPLELIGHT_MELEE\",(15*.@sum); bonus2 bSkillAtk,\"AB_DUPLELIGHT_MAGIC\",(15*.@sum); }",70,10000,BF_WEAPON;
|