Cursed Knight's Shield
| Item ID | 28942 | Name | Cursed Knight's Shield |
|
A knight's shield that was carried by Cursed Knight.
If you clean the curse, you can obtain more power from it. _______________________ ATK +3% MATK +3% Increases Attack Speed (decreases After Attack Delay by 10%). _______________________ Decreases damage taken from all elemental monsters by 7%. _______________________ Random chance to restore 25 SP per second for 5 seconds when receiving physical damage. Random chance to restore 150 HP per second for 5 seconds when dealing physical or magical damage. _______________________ Refine Level +7: ATK +10 MATK +10 _______________________ Refine Level +9: ASPD +1 _______________________ Refine Level +12: Decreases After Skill Delay by 3%. _______________________ Type: Shield Defense: 0 Weight: 80 Armor Level: 1 _______________________ Requirement: None |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Bloody_Knight_Shield | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Off Hand | ||
| Defense | 0 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 80 | Min Equip Level | 1 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
bonus bAspdRate,10;
bonus bAtkRate,3;
bonus bMatkRate,3;
bonus2 bSubEle,Ele_All,7;
autobonus2 "{ bonus2 bSPRegenRate,25,1000; }",50,5000;
autobonus "{ bonus2 bHPRegenRate,150,1000; }",50,5000;
.@r = getrefine();
if (.@r>=7) {
bonus bBaseAtk,10;
bonus bMatk,10;
}
if (.@r>=9) {
bonus bAspd,1;
}
if (.@r>=12) {
bonus bDelayrate,-3;
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bAddClass,Class_Boss,15;
bonus2 bMagicAddClass,Class_Boss,15;
if (getequiprefinerycnt(EQI_SHOES)>=13)
autobonus "{ bonus bStr,150; bonus bInt,150; bonus bDex,150; }",50,10000,BF_WEAPON|BF_MAGIC;
|