Gelerdria
| Item ID | 1449 | Name | Gelerdria |
|
A special spear imbued with the earth element.
_______________________ MaxHP +800 MaxSP -50 _______________________ When equipped with Karma Wind Stone: Refine Level of Gelerdria +7: Increases Physical Damage against enemies of Boss class by 30%. Increases Physical Damage against enemies of Water and Wind elemental by 30%. Increases Physical Damage against enemies of Insect and Fish race by 30%. Increases damage of Wind Cutter by 30%. _______________________ Refine Level of Gelerdria +9: Increases Physical Damage against enemies of Boss class by 20%. Increases Physical Damage against enemies of Water and Wind elemental by 20%. Increases Physical Damage against enemies of Insect and Fish race by 20%. Increases damage of Wind Cutter by 20%. _______________________ Refine Level of Gelerdria +10: Decreases Variable Casting Time Wind Cutter by 50% _______________________ Type: One-Handed Spear Attack: 145 Weight: 70 Element: Earth Weapon Level: 4 _______________________ Requirement: Base Level 48 Swordman classes |
|---|---|---|---|---|---|
| Weapon Level | 4 | Identifier | Gelerdria_ | ||
| Attack | 145 | Type | Weapon - One-Handed Spear | ||
| MATK | 0 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Swordman, Knight, Crusader | ||
| Range | 3 | Equip Gender | Both (Male and Female) | ||
| Slots | 3 | Equip Upper | None | ||
| Weight | 70 | Min Equip Level | 48 | ||
| NPC Buy | 20 | Max Equip Level | None | ||
| NPC Sell | 10 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; |
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_HAND_R);
if (.@r >= 7) {
.@val = 30;
if (.@r >= 9) {
.@val += 20;
bonus2 bAddClass,Class_Boss,.@val;
bonus2 bAddEle,Ele_Water,.@val;
bonus2 bAddEle,Ele_Wind,.@val;
bonus2 bAddRace,RC_Fish,.@val;
bonus2 bAddRace,RC_Insect,.@val;
bonus2 bSkillAtk,"RK_WINDCUTTER",.@val;
if (.@r >= 10) {
bonus2 bVariableCastrate,"RK_WINDCUTTER",-50;
}
}
}
|