Jade Crown

Item ID 400094 Name Jade Crown
A crown designed for specific subjects.
The jadeite crown has a pink lace. It is said that it plays a role in increasing the power.
_______________________
For each 2 Refine Levels:
MATK +2%
Increases SP Recovery Rate by 6%.
_______________________
Refine Level +7:
All Basic Stats +3
_______________________
Refine Level +9:
MATK +4%
_______________________
Refine Level +11:
Increases Magical Damage with Neutral, Fire and Ghost element by 20%.
_______________________
When equipped with Crimson Rose Stick:
Decreases Crimson Rock skill cooldown by 1 second.

For each Refine Level of Crimson Rose Stick:
Increases damage of Crimson Rock by 3%.
_______________________
When equipped with Staff of Miracle:
Increases Magical Damage with Ghost element by 3%.

For each Refine Level of Staff of Miracle:
Increases damage of Soul Expansion by 3%.
_______________________
When equipped with Gravitation Staff:
Increases Magical Damage with Neutral element by 3%.

For each Refine Level of Gravitation Staff:
Increases damage of Gravitation Field and Comet by 3%.
_______________________
Type: Headgear
Defense: 10
Position: Upper
Weight: 10
Armor Level: 1
_______________________
Requirement:
Base Level 170
Warlock
Weapon Level 0 Identifier BioWeapon_Helm_WL
Attack 0 Type Armor
MATK 0 Equip Locations Upper Headgear
Defense 10 Equippable Jobs Wizard
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper Third, Third Upper, Third Baby
Weight 10 Min Equip Level 170
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
bonus bSPrecovRate,6*(.@r/2);
bonus bMatkRate,2*(.@r/2);
if (.@r>=7) {
   bonus bAllStats,3;
}
if (.@r>=9) {
   bonus bMatkRate,4;
}
if (.@r>=11) {
   bonus2 bMagicAtkEle,Ele_Ghost,20;
   bonus2 bMagicAtkEle,Ele_Neutral,20;
   bonus2 bMagicAtkEle,Ele_Fire,20;
}

Set Script
Jade Crown
Staff of Miracle
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus2 bMagicAtkEle,Ele_Ghost,3;
bonus2 bSkillAtk,"WL_SOULEXPANSION",3*.@r_weapon;
Jade Crown
Gravitation Staff
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus2 bMagicAtkEle,Ele_Neutral,3;
bonus2 bSkillAtk,"HW_GRAVITATION",3*.@r_weapon;
bonus2 bSkillAtk,"WL_COMET",3*.@r_weapon;
Jade Crown
Crimson Rose Stick
.@r_weapon = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000;
bonus2 bSkillAtk,"WL_CRIMSONROCK",3*.@r_weapon;
Catherine's Memory
Jade Crown
Zodiac Boots (Mage)
.@sum = getequiprefinerycnt(EQI_HEAD_TOP) + getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_SHOES);
if (.@sum >= 33) {
   bonus2 bMagicAddRace,RC_All,20;
   autobonus "{ bonus bMatkRate,30; }",30,10000,BF_MAGIC;
   if (.@sum >= 35) {
       bonus2 bIgnoreMdefRaceRate,RC_All,40;
       bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40;
       bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40;
   }
}
Catherine's Memory
Jade Crown
[Not For Sale] Zodiac Boots (Mage)
.@sum = getequiprefinerycnt(EQI_HEAD_TOP) + getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_SHOES);
if (.@sum >= 33) {
   bonus2 bMagicAddRace,RC_All,20;
   autobonus "{ bonus bMatkRate,30; }",30,10000,BF_MAGIC;
   if (.@sum >= 35) {
       bonus2 bIgnoreMdefRaceRate,RC_All,40;
       bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-40;
       bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-40;
   }
}