Laphine Staff
| Item ID | 1679 | Name | Laphine Staff |
|
A staff which is crafted by a stone that is often used when Lapines put magic power into it.
_______________________ MATK +180 _______________________ Decreases Fixed Casting Time by 1% for every Refine Level. (This effect does not stack with card's or other parts' decreasing effect.) _______________________ Type: One-Handed Staff Attack: 30 Weight: 50 Weapon Level: 3 _______________________ Requirement: Base Level 100 Warlock, Sorcerer, Archbishop and Sura |
|---|---|---|---|---|---|
| Weapon Level | 3 | Identifier | Rafini_Staff_S | ||
| Attack | 30 | Type | Weapon - Staff | ||
| MATK | 180 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Novice, Super novice, Mage, Acolyte, Priest, Wizard, Monk, Sage, Soul Linker | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 50 | Min Equip Level | 100 | ||
| NPC Buy | 20 | Max Equip Level | None | ||
| NPC Sell | 10 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
bonus bFixedCastrate,-getrefine(); |
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r_2198 = getequiprefinerycnt(EQI_HAND_L);
.@r_1649 = getequiprefinerycnt(EQI_HAND_R);
if (.@r_2198 >= 9) {
bonus bMatk,15 * .@r_1649;
if (.@r_1649 >= 10) {
bonus bMatk,50;
bonus bVariableCastrate,-10;
}
}
|
||||
|
.@r = getequiprefinerycnt(EQI_HAND_R); .@b = getequiprefinerycnt(EQI_ARMOR); bonus bMatk,(.@r*(.@b >= 8 ? 7 : (.@b >= 7 ? 5 : 3 ))); |
||||
|
.@eq = getequiprefinerycnt(EQI_SHOES);
.@weapon = getequiprefinerycnt(EQI_HAND_R);
if (.@eq >= 7) {
bonus bVariableCastrate,-20;
}
if (.@eq >= 7 && .@weapon >= 8) {
bonus2 bMagicAddClass,Class_Boss,30;
bonus2 bIgnoreMdefRaceRate,RC_All,20;
}
if (.@eq >= 7 && .@weapon >= 10) {
bonus2 bMagicAddClass,Class_Boss,40;
bonus2 bIgnoreMdefRaceRate,RC_All,30;
}
|