Booster Spellbook
| Item ID | 540000 | Name | Booster Spellbook |
|
A special Book prepared for your rapid growth.
_______________________ MATK +165 _______________________ MATK +3% _______________________ Increases Magical Damage with Neutral element by 3%. _______________________ For each Refine Level: MATK +3 _______________________ For each 15 Base Level: MATK +3 (Up to Base Level 180) _______________________ Refine Level +7: For each Level of Indulge: Increases Magical Damage with Neutral element by additional 2%. _______________________ Refine Level +9: Increases Magical Damage against enemies of every size by 10%. _______________________ When equipped with Elemental Booster Robe, Elemental Booster Muffler, Elemental Booster Shoes and Elemental Booster Earring: MATK +20 Increases Magical Damage against enemies of every size by additional 10%. For each 15 Base Level: Increases damage of Psychic Wave by 1%. (Up to Base Level 180) When using Memorize: Increases damage of Psychic Wave by additional 20% for 60 seconds. _______________________ When equipped with Default Booster Robe, Default Booster Muffler, Default Booster Shoes and Default Booster Earring: MATK +20 ASPD +2 For each 15 Base Level: Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt by 2%. (Up to Base Level 180) When using Double Casting: Increases damage of Fire Bolt, Cold Bolt, Lightning Bolt by additional 35% for 60 seconds. _______________________ Type: Book Attack: 165 Weight: 0 Weapon Level: 4 _______________________ Requirement: Base Level 100 Sorcerer |
|---|---|---|---|---|---|
| Weapon Level | 4 | Identifier | Boost_Spl_Book | ||
| Attack | 165 | Type | Weapon - Book | ||
| MATK | 165 | Equip Locations | Main Hand | ||
| Defense | 0 | Equippable Jobs | Sage | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 2 | Equip Upper | Third, Third Upper, Third Baby | ||
| Weight | 0 | Min Equip Level | 100 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | Can't be dropped, Can't be traded with player, Can't be put in Cart, Can't be put in Storage, Can't be put in Guild Storage, Can't be attached in Mail, Can't be auctioned | ||
| Item Script |
bonus bMatkRate,2;
bonus2 bMagicAtkEle,Ele_Neutral,3;
.@r = getrefine();
bonus bMatk,.@r;
bonus bMatk,min(BaseLevel,180)/15*3;
if (.@r>=7) {
bonus2 bMagicAtkEle,Ele_Neutral,getskilllv("PF_HPCONVERSION");
}
if (.@r>=9) {
bonus2 bMagicAddSize,Size_All,10;
}
|
||||
| Set | Script | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
bonus bMatk,20;
bonus2 bMagicAddSize,Size_All,10;
bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",min(BaseLevel,180)/15;
autobonus3 "{ bonus2 bSkillAtk,\"SO_PSYCHIC_WAVE\",20; }",1000,60000,"PF_MEMORIZE";
|
||||||||||
|
bonus bMatk,20;
bonus bAspd,2;
.@i = min(BaseLevel,180)/15*2;
bonus2 bSkillAtk,"MG_FIREBOLT",.@i;
bonus2 bSkillAtk,"MG_COLDBOLT",.@i;
bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@i;
autobonus3 "{ bonus2 bSkillAtk,\"MG_FIREBOLT\",35; bonus2 bSkillAtk,\"MG_COLDBOLT\",35; bonus2 bSkillAtk,\"MG_LIGHTNINGBOLT\",35; }",1000,60000,"PF_DOUBLECASTING";
|