Bork
| Item ID | 18920 | Name | Bork |
|
An interesting hat made of felt that comes from a far-away land.
Worn by skilled soldiers, this hat brings a sense of confidence to the wearer. _______________________ Decreases damage taken from Demi-Human race by 5%. _______________________ Refine Level +7: Increases Physical Damage against enemies of Demi-Human race by 5%. _______________________ Refine Level +9: Increases Physical Damage against enemies of Demi-Human race by 3%. _______________________ Type: Headgear Defense: 2 Position: Upper Weight: 10 Armor Level: 1 _______________________ Requirement: None |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Bork | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Upper Headgear | ||
| Defense | 2 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 0 | Equip Upper | None | ||
| Weight | 10 | Min Equip Level | None | ||
| NPC Buy | 20 | Max Equip Level | None | ||
| NPC Sell | 10 | Refineable | No | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
bonus2 bSubRace,RC_DemiHuman,5;
bonus2 bSubRace,RC_Player_Human,5;
bonus2 bSubRace,RC_Player_Doram,5;
if (.@r >= 7) {
.@val = 5;
if (.@r >= 9)
.@val += 3;
bonus2 bAddRace,RC_DemiHuman,.@val;
bonus2 bAddRace,RC_Player_Human,.@val;
bonus2 bAddRace,RC_Player_Doram,.@val;
}
|
||||