Viewing Item

#311372: Earth Magic (Sniper) Lv. 3

Item ID 311372 Name Earth Magic (Sniper) Lv. 3
Weapon Level 0 Identifier Gray_Range3
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 Not For Sale Trade restriction None
When equipped with Thanos Sword-AD:
Increases damage of Cart Cannon and Acidified Zone (Fire/Water/Wind/Ground) by 25%.

For each 2 Refine Levels of equipped Weapon:
Increases Ranged Physical Damage by 6%.
_______________________
When equipped with Thanos Bow-AD:
Increases damage of Sharp Shooting and Crescive Bolt by 25%.

For each 2 Refine Levels of equipped Weapon:
Increases Ranged Physical Damage by 6%.
_______________________
When equipped with Thanos Violin-AD or Thanos Whip-AD:
Increases damage of Severe Rainstorm and Rhythm Shooting by 25%.

For each 2 Refine Levels of equipped Weapon:
Increases Ranged Physical Damage by 6%.
_______________________
[Bonus by Headgear's Grade]
[Grade D]: CON +3
[Grade C]: P.ATK +3

  Script
Item
.@g = getenchantgrade(EQI_HEAD_TOP);
if (.@g >= ENCHANTGRADE_D) {
  bonus bCon,3;
  if (.@g >= ENCHANTGRADE_C) {
    bonus bPAtk,3;
  }
}
Equip
None
Unequip
None

Set Script
Earth Magic (Sniper) Lv. 3
Thanos Sword-AD
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"GN_CARTCANNON",25;
bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",25;
bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",25;
bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",25;
bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",25;
bonus bLongAtkRate,6*(.@r/2);
Earth Magic (Sniper) Lv. 3
Thanatos Bow-AD
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"SN_SHARPSHOOTING",25;
bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",25;
bonus bLongAtkRate,6*(.@r/2);
Earth Magic (Sniper) Lv. 3
Thanos Violin-AD
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25;
bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",25;
bonus bLongAtkRate,6*(.@r/2);
Earth Magic (Sniper) Lv. 3
Thanatos Whip-AD
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25;
bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",25;
bonus bLongAtkRate,6*(.@r/2);