Kronika's Speller Mag (OSM) [1], броня (Renewal)

Kronika's Speller Mag (OSM) [1] (STSUNG_SPELLER2_EXE) – броня.

 

A speller of Kronika. She used this item to expand her limited magic.
----------
[Effect of Item]
INT +3, AGI +3, MATK +3%
----------
MATK +5 for every level of the skill [Sightless Mind] learned
----------
If equipped by [Rogue Classes]
Increases damage skill
[Water Ball] by 1%
an additional 3% for every 4 levels of character.
----------
If the user has learned the skill [Divest Helm] Level 5
Able to use the skill
[Deluge] Level 3
-----------
If the user has learned the skill [Divest Shield] Level 5
Able to use the skill
[Mystical Amplification] Level 5
-----------
If the user has learned the skill [Divest Armor] Level 5
Able to use the skill
[Magnificant] Level 5
-----------
If the user has learned the skill [Divest Weapon] Level 5
Able to use the skill
[Double Bolt] Level 3
-----------
If the user has learned the skill [Snatch] Level 5
Able to use the skill
[Water Ball] Level 5
-----------
If the character has a base [INT] of 90 or more
Increases Magical Damage [Neutral, Fire, Water, Wind] by 5%
----------
[Summary Effect]


1. If the player has a level of 99
Increases the damage skill [Water Ball] by 25%;
the damage increases to 50% if the user is wearing 2 Kronika's Spellers (Magic)


2. If the player has a base [INT] of 90 or higher, increases Magical Damage [Neutral, Fire, Water, Wind] by 5%


3. If the player learns skills, they will get a new skills list as below


- Learn [Divest Helm] Level 5
Get [Deluge] Level 3
- Learn [Divest Shield] Level 5
Get [Mystical Amplification] Level 5
- Learn [Divest Weapon] Level 5
Get [Magnificant] Level 5
- Learn [Divest Armor] Level 5
Get [Double Bolt] Level 3
- Learn [Snatch] Level 5
Get [Water Ball] Level 5


4. If a player has learned the skill [Sightless Mind] Level 5, MATK +25


The effect of this item disabled in WOE 1, 2 map

Базовые свойства предмета

  • ID: 24143
  • Код: STSUNG_SPELLER2_EXE
  • Тип: броня
  • Уровень брони: 1
  •  
  • Требуемый уровень: 50
  • Вес: 10

Скрипт

bonus bInt,3;
bonus bAgi,3;
bonus bMatkRate,3;
bonus bMatk,5*getskilllv("RG_RAID");
if (getskilllv("RG_STRIPHELM") == 5)
   skill "SA_DELUGE",3;
if (getskilllv("RG_STRIPSHIELD") == 5)
   skill "HW_MAGICPOWER",5;
if (getskilllv("RG_STRIPARMOR") == 5)
   skill "PR_MAGNIFICAT",5;
if (getskilllv("RG_STRIPWEAPON") == 5)
   skill "PF_DOUBLECASTING",3;
if (getskilllv("RG_INTIMIDATE") == 5)
   skill "WZ_WATERBALL",5;
if (BaseJob == Job_Rogue)
   bonus2 bSkillAtk,"WZ_WATERBALL",1+(3*(BaseLevel/4));
if (readparam(bInt)>=90) {
   bonus2 bMagicAtkEle,Ele_Fire,5;
   bonus2 bMagicAtkEle,Ele_Neutral,5;
   bonus2 bMagicAtkEle,Ele_Water,5;
   bonus2 bMagicAtkEle,Ele_Wind,5;
}