Viewing Item

#311370: Earth Magic (Sniper) Lv. 1

Item ID 311370 Name Earth Magic (Sniper) Lv. 1
Weapon Level 0 Identifier Gray_Range1
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 15%.

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

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

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

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

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