Varmundt's Crystal (Plain) Lv1
| Item ID | 311872 | Name | Varmundt's Crystal (Plain) Lv1 |
|
Increases Damage against enemies of Wind and Earth element by 10%.
_______________________ [Grade D]: Damage against enemies of Wind and Earth element +2%. [Grade C]: Damage against enemies of Wind and Earth element +2%. [Grade B]: Damage against enemies of Wind and Earth element +3%. [Grade A]: Damage against enemies of Wind and Earth element +3%. |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Barmund_Plain1 | ||
| Attack | 0 | Type | Card - Enchant | ||
| MATK | 0 | Equip Locations | None | ||
| Defense | 0 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 0 | Equip Upper | None | ||
| Weight | 0 | Min Equip Level | None | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | No | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@g = getenchantgrade();
bonus2 bMagicAddEle,Ele_Earth,10;
bonus2 bAddEle,Ele_Earth,10;
bonus2 bMagicAddEle,Ele_Wind,10;
bonus2 bAddEle,Ele_Wind,10;
if (.@g>=ENCHANTGRADE_D) {
bonus2 bAddEle,Ele_Earth,2;
bonus2 bAddEle,Ele_Wind,2;
bonus2 bMagicAddEle,Ele_Earth,2;
bonus2 bMagicAddEle,Ele_Wind,2;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bAddEle,Ele_Earth,2;
bonus2 bAddEle,Ele_Wind,2;
bonus2 bMagicAddEle,Ele_Earth,2;
bonus2 bMagicAddEle,Ele_Wind,2;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bAddEle,Ele_Earth,3;
bonus2 bAddEle,Ele_Wind,3;
bonus2 bMagicAddEle,Ele_Earth,3;
bonus2 bMagicAddEle,Ele_Wind,3;
if (.@g>=ENCHANTGRADE_A) {
bonus2 bAddEle,Ele_Earth,3;
bonus2 bAddEle,Ele_Wind,3;
bonus2 bMagicAddEle,Ele_Earth,3;
bonus2 bMagicAddEle,Ele_Wind,3;
}
}
}
}
|
||||