Dim Glacier Violin
| Item ID | 570032 | Name | Dim Glacier Violin |
|
A violin that lost its light due to poisonous magic.
It seems to have to be handled in a different way from the existing Glacier weapons. _______________________ MATK +210 _______________________ Type: Musical Instrument Attack: 210 Weight: 150 Weapon Level: 5 _______________________ Requirement: Base Level 230 Minstrel classes |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | D_Glacier_Violin | ||
| Attack | 210 | Type | Weapon - Musical Instrument | ||
| MATK | 210 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Bard / Dancer | ||
| Range | 1 | Equip Gender | Male | ||
| Slots | 1 | Equip Upper | Third, Third Upper, Third Baby | ||
| Weight | 150 | Min Equip Level | 230 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None |
| Set | Script | ||||||||
|---|---|---|---|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_HAND_R);
.@g = getenchantgrade(EQI_HAND_R);
bonus bBaseAtk,10*(.@r/3);
if (.@g >= ENCHANTGRADE_C) {
bonus bPAtk,6;
bonus bPow,5;
bonus bCon,5;
if (.@g >= ENCHANTGRADE_B) {
bonus bPAtk,5;
bonus bPow,5;
bonus bCon,5;
if (.@g >= ENCHANTGRADE_A) {
bonus bPAtk,4;
bonus bPow,5;
bonus bCon,5;
}
}
}
|
||||||||
|
.@r = getequiprefinerycnt(EQI_HAND_R);
.@g = getenchantgrade(EQI_HAND_R);
bonus bMatk,10*(.@r/3);
if (.@g >= ENCHANTGRADE_C) {
bonus bSMatk,6;
bonus bSpl,5;
bonus bCon,5;
if (.@g >= ENCHANTGRADE_B) {
bonus bSMatk,5;
bonus bSpl,5;
bonus bCon,5;
if (.@g >= ENCHANTGRADE_A) {
bonus bSMatk,4;
bonus bSpl,5;
bonus bCon,5;
}
}
}
|