Crimson Rose Stick
| Item ID | 26158 | Name | Crimson Rose Stick |
|
This staff is great for doing great magic damage.
_______________________ MATK +180 _______________________ Indestructible in battle _______________________ Increases Magical Damage with Fire and Shadow element by 5%. _______________________ For each Refine Level: MATK +4 _______________________ Refine Level +9: Increases damage of Hell Inferno by 30%. _______________________ Refine Level +11: Decreases Crimson Rock skill cooldown by 1 second. _______________________ Type: One-Handed Staff Attack: 100 Weight: 70 Weapon Level: 4 Refineable: _______________________ Requirement: Base Level 170 Warlock |
|---|---|---|---|---|---|
| Weapon Level | 4 | Identifier | Crimson_Rose_Stick | ||
| Attack | 100 | Type | Weapon - Staff | ||
| MATK | 180 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Wizard | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | Third, Third Upper, Third Baby | ||
| Weight | 70 | 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_Fire,5;
bonus2 bMagicAtkEle,Ele_Dark,5;
if (.@r >= 9) {
bonus2 bSkillAtk,"WL_HELLINFERNO",30;
}
if (.@r >= 11) {
bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000;
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r= getequiprefinerycnt(EQI_HAND_R)/3; bonus2 bSkillAtk,"WL_HELLINFERNO",7*.@r; bonus2 bSkillAtk,"WL_CRIMSONROCK",5*.@r; |
||||
|
.@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; bonus2 bSkillAtk,"WL_CRIMSONROCK",3*.@r_weapon; |
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES);
bonus2 bMagicAddSize,Size_All,10;
bonus2 bSkillAtk,"WL_HELLINFERNO",3*getequiprefinerycnt(EQI_SHOES);
if (.@sum>=18) {
bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000;
bonus2 bSkillCooldown,"WL_HELLINFERNO",-1500;
if (.@sum>=22) {
bonus2 bMagicAddEle,Ele_All,20;
}
}
|
||||
|
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES);
bonus2 bMagicAddSize,Size_All,10;
bonus2 bSkillAtk,"WL_HELLINFERNO",3*getequiprefinerycnt(EQI_SHOES);
if (.@sum>=18) {
bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000;
bonus2 bSkillCooldown,"WL_HELLINFERNO",-1500;
if (.@sum>=22) {
bonus2 bMagicAddEle,Ele_All,20;
}
}
|