Earth Magic (Magical) Lv. 3

Item ID 311375 Name Earth Magic (Magical) Lv. 3
When equipped with Thanos Two-Handed Staff-AD:
Increases damage of Crimson Rock, Floral Flare Road and Stratum Tremor by 25%.

For each 2 Refine Levels of equipped Weapon:
Increases damage of Earth Strain by 12%.
_______________________
When equipped with Thanos Staff-AD:
Increases damage of Varetyr Spear and Lightning Land by 25%.

For each 2 Refine Levels of equipped Weapon:
Increases damage of Psychic Wave by 12%.
_______________________
When equipped with Thanos Dagger-AD:
Increases damage of Psychic Wave and From the Abyss by 25%.

For each 2 Refine Levels of equipped Weapon:
Increases Magical Damage with every element by 6%.
_______________________
[Bonus by Headgear's Grade]
[Grade D]: SPL +3
[Grade C]: S.MATK +3
Weapon Level 0 Identifier Gray_Magic3
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(EQI_HEAD_TOP);
if (.@g >= ENCHANTGRADE_D) {
  bonus bSpl,3;
  if (.@g >= ENCHANTGRADE_C) {
    bonus bSMatk,3;
  }
}

Set Script
Earth Magic (Magical) Lv. 3
Thanatos Two-handed Staff-AD
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"WL_CRIMSONROCK",25;
bonus2 bSkillAtk,"AG_FLORAL_FLARE_ROAD",25;
bonus2 bSkillAtk,"AG_STRANTUM_TREMOR",25;
bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/2);
Earth Magic (Magical) Lv. 3
Thanos Staff-AD
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"SO_VARETYR_SPEAR",25;
bonus2 bSkillAtk,"EM_LIGHTNING_LAND",25;
bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",12*(.@r/2);
Earth Magic (Magical) Lv. 3
Thanos Dagger-AD
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25;
bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",25;
bonus2 bMagicAtkEle,Ele_All,6*(.@r/2);