Adorare Staff
| Item ID | 2057 | Name | Adorare Staff |
|
Staff used in prayer ritual.
_______________________ MATK +240 _______________________ Increases damage of Holy elemental magic attack by 5%. _______________________ For each Refine Level: MATK +4 _______________________ Refine Level +9: Increases damage of Adoramus by 30%. _______________________ Refine Level +11: Decreases Physical and Magical Damage taken from all size monsters by 25%. _______________________ Indestructible in battle _______________________ Type: Two-Handed Staff Attack: 100 Weight: 120 Weapon Level: 4 _______________________ Requirement: Base Level 170 Warlock |
|---|---|---|---|---|---|
| Weapon Level | 4 | Identifier | Adorare_Staff | ||
| Attack | 100 | Type | Weapon - Two-Handed Staff | ||
| MATK | 240 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Priest | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | Third, Third Upper, Third Baby | ||
| Weight | 120 | Min Equip Level | 170 | ||
| NPC Buy | 20 | Max Equip Level | None | ||
| NPC Sell | 10 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
bonus bMatk,4*.@r;
bonus bUnbreakableWeapon;
bonus2 bMagicAtkEle,Ele_Holy,5;
if (.@r >= 9) {
bonus2 bSkillAtk,"AB_ADORAMUS",30;
}
if (.@r >= 11) {
bonus2 bSubSize,Size_All,25;
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bMagicAtkEle,Ele_Holy,5*.@r; bonus2 bSkillAtk,"AB_ADORAMUS",5*.@r; |
||||
|
.@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bSkillAtk,"AB_ADORAMUS",5*.@r_weapon; |
||||
|
.@eq = getequiprefinerycnt(EQI_SHOES);
.@weapon = getequiprefinerycnt(EQI_HAND_R);
bonus2 bMagicAddClass,Class_Boss,20;
bonus2 bMagicAddRace,RC_All,2*.@eq;
if ((.@eq + .@weapon) >= 18) {
bonus2 bSkillCooldown,"AB_ADORAMUS",-300;
if ((.@eq + .@weapon) >= 22) {
bonus bNoGemStone;
}
}
|
||||
|
.@eq = getequiprefinerycnt(EQI_SHOES);
.@weapon = getequiprefinerycnt(EQI_HAND_R);
bonus2 bMagicAddClass,Class_Boss,20;
bonus2 bMagicAddRace,RC_All,2*.@eq;
if ((.@eq + .@weapon) >= 18) {
bonus2 bSkillCooldown,"AB_ADORAMUS",-300;
if ((.@eq + .@weapon) >= 22) {
bonus bNoGemStone;
}
}
|