Dimensions Elemental Spell Book
| Item ID | 540080 | Name | Dimensions Elemental Spell Book |
|
A book imbued with rune magic.
_______________________ MATK +240 _______________________ MATK +3% Increases damage of Lightning Land and Terra Drive by 15%. _______________________ For each 2 Refine Levels: MATK +25 MATK +1% _______________________ For each 3 Refine Levels: Increases damage of Lightning Land and Terra Drive by additional 5%. _______________________ Refine Level +7: Increases Magical Damage with Wind and Earth element by 25%. _______________________ Refine Level +9: Decreases Variable Casting Time by 10%. S.MATK +7 _______________________ Refine Level +11: Increases damage of Lightning Land and Terra Drive by additional 15%. _______________________ When equipped with Time Dimensions Rune Crown (Elemental Master): Increases damage of Venom Swamp by 45%. Increases Magical Damage with Poison element by 30%. Increases Magical Damage with Wind and Earth element by additional 10%. If the Weapon and Headgear's Grade are A or higher: Increases damage of Elemental Buster by additional % by twice the sum of refine level. Casting Terra Drive has a chance to auto cast Level 1 Elemental Buster. (If you learned a higher Level, it will auto cast that Level instead.) _______________________ [Bonus by Grade] [Grade D]: S.MATK +5 [Grade C]: Damage of Lightning Land and Terra Drive +15%. [Grade B]: Magical Damage with Wind and Earth element +10%. [Grade A]: S.MATK +3 per 2 Refine Levels. _______________________ Type: Book Attack: 100 Weight: 180 Weapon Level: 5 _______________________ Requirement: Base Level 250 Elemental Master |
|---|---|---|---|---|---|
| Weapon Level | 5 | Identifier | Dimen_EM_S_Book | ||
| Attack | 100 | Type | Weapon - Book | ||
| MATK | 240 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Sage | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | None | ||
| Weight | 180 | Min Equip Level | 250 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@g = getenchantgrade();
.@r = getrefine();
bonus bMatkRate,3+(.@r/2);
bonus2 bSkillAtk,"EM_LIGHTNING_LAND",15+5*(.@r/3);
bonus2 bSkillAtk,"EM_TERRA_DRIVE",15+5*(.@r/3);
bonus bMatk,25*(.@r/2);
if (.@r>=7) {
bonus2 bMagicAtkEle,Ele_Earth,25;
bonus2 bMagicAtkEle,Ele_Wind,25;
if (.@r>=9) {
bonus bVariableCastrate,-10;
bonus bSMatk,7;
if (.@r>=11) {
bonus2 bSkillAtk,"EM_LIGHTNING_LAND",15;
bonus2 bSkillAtk,"EM_TERRA_DRIVE",15;
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bSMatk,5;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSkillAtk,"EM_LIGHTNING_LAND",15;
bonus2 bSkillAtk,"EM_TERRA_DRIVE",15;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bMagicAtkEle,Ele_Earth,10;
bonus2 bMagicAtkEle,Ele_Wind,10;
if (.@g>=ENCHANTGRADE_A) {
bonus bSMatk,3*(.@r/2);
}
}
}
}
|
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
bonus2 bMagicAtkEle,Ele_Earth,10;
bonus2 bMagicAtkEle,Ele_Wind,10;
bonus2 bMagicAtkEle,Ele_Poison,30;
bonus2 bSkillAtk,"EM_VENOM_SWAMP",45;
if (getenchantgrade(EQI_HAND_R)>=ENCHANTGRADE_A && getenchantgrade(EQI_HEAD_TOP)>=ENCHANTGRADE_A) {
.@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HEAD_TOP);
bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER",2*.@sum;
bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_FIRE",2*.@sum;
bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_WATER",2*.@sum;
bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_WIND",2*.@sum;
bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_POISON",2*.@sum;
bonus2 bSkillAtk,"EM_ELEMENTAL_BUSTER_GROUND",2*.@sum;
.@class_ = geteleminfo(ELEMINFO_CLASS);
if (getskilllv("EM_ELEMENTAL_BUSTER") > 0 && .@class_ >= 20816 && .@class_ <= 20820) {
bonus4 bAutoSpellOnSkill,"EM_TERRA_DRIVE","EM_ELEMENTAL_BUSTER",getskilllv("EM_ELEMENTAL_BUSTER"),1000;
}
}
|