
Sphere Mine
Lvl: 5
Attack
Physical
Skill Delay: 1.5 sec
SP: 12
Range: 6
Summons Sphere Mine to launch Suicidal Destruction attack against an enemy, dealing 400% Atk + 1000 damage
Lvl: 4
Attack
Physical
Skill Delay: 1.5 sec
SP: 11
Range: 6
• Summons Sphere Mine to launch Suicidal Destruction attack against an enemy, dealing 340% Atk + 800 damage
Lvl: 3
Attack
Physical
Skill Delay: 1.5 sec
SP: 10
Range: 6
• Summons Sphere Mine to launch Suicidal Destruction attack against an enemy, dealing 280% Atk + 600 damage
Lvl: 2
Attack
Physical
Skill Delay: 1.5 sec
SP: 9
Range: 6
• Summons Sphere Mine to launch Suicidal Destruction attack against an enemy, dealing 220% Atk + 400 damage
Lvl: 1
Attack
Physical
Skill Delay: 1.5 sec
SP: 8
Range: 6
• Summons Sphere Mine to launch Suicidal Destruction attack against an enemy, dealing 160% Atk + 200 damage
Aesir
• Sphere Mine - Empower Atk multiplier of [Sphere Mine] +30%
Formula
function CommonFun.calcDamage_13205(srcUser, targetUser, params, damageParam, logger)
local Str = srcUser:GetProperty("Str")
local Dex = srcUser:GetProperty("Dex")
local Luk = srcUser:GetProperty("Luk")
local Atk = srcUser:GetProperty("Atk")
local AtkPer = srcUser:GetProperty("AtkPer")
local MAtk = srcUser:GetProperty("MAtk")
local MAtkPer = srcUser:GetProperty("MAtkPer")
local DamIncrease = srcUser:GetProperty("DamIncrease")
local IgnoreDef = 0
local IgnoreDef1 = srcUser:GetProperty("IgnoreDef")
local IgnoreDef2 = srcUser:GetProperty("IgnoreEquipDef")
if targetUser.boss or targetUser.mini then
IgnoreDef = IgnoreDef1
else
IgnoreDef = IgnoreDef1 + IgnoreDef2
end
if 1 <= IgnoreDef then
IgnoreDef = 1
end
local MRefine = srcUser:GetProperty("MRefine")
local Refine = srcUser:GetProperty("Refine")
local Def2 = targetUser:GetProperty("Def")
local DefPer2 = targetUser:GetProperty("DefPer")
local Vit2 = targetUser:GetProperty("Vit")
local VitPer2 = targetUser:GetProperty("VitPer")
local DamReduc2 = CommonFun.calcDamReDuc(srcUser, targetUser)
local RefineDamReduc = targetUser:GetProperty("RefineDamReduc")
local damChangePer = damageParam.damChangePer
local damChangePer1 = damageParam.damChangePer1
local damChangePer2 = damageParam.damChangePer2
local raceparam = CommonFun.CalcRaceParam(srcUser, targetUser, params, damageParam, logger)
local bodyparam = CommonFun.CalcBodyParam(srcUser, targetUser, params, damageParam, logger)
local elementparam = CommonFun.CalcElementParam(srcUser, targetUser, params, damageParam, logger)
local bossparam = CommonFun.CalcBossParam(srcUser, targetUser, params, damageParam, logger)
local raceparam2 = CommonFun.CalcRaceParam2(srcUser, targetUser, params, damageParam, logger)
local bodyparam2 = CommonFun.CalcBodyParam2(srcUser, targetUser, params, damageParam, logger)
local elementparam2 = CommonFun.CalcElementParam2(srcUser, targetUser, params, damageParam, logger)
local bossparam2 = CommonFun.CalcBossParam2(srcUser, targetUser, params, damageParam, logger)
local BaseAtk = Str * 2 + math.floor(Str * Str / 100) + math.floor(Dex / 5) + math.floor(Luk / 5)
local AtkFinal = ((Atk - BaseAtk) * (1 + AtkPer) * CommonFun.ShapeCorrection(srcUser, targetUser) * bodyparam * elementparam * elementparam2 + BaseAtk) * raceparam * bossparam * bossparam2
local DefReduc = CommonFun.CalcDef(srcUser, targetUser)
local LongRangeDamReduc2 = targetUser:GetProperty("LongRangeDamReduc")
local BaseLvDamage = 0
local IBaseLv = srcUser.BaseLv
if srcUser:HasBuffID(42180_OLD_PAL_:MAX_STACK_0) then
BaseLvDamage = IBaseLv * 20
end
if srcUser:HasBuffID(42210_UNGRATEFUL_SOUL_:MAX_STACK_0) then
BaseLvDamage = IBaseLv * 20
end
local Num1 = srcUser:GetRunePoint(130020_AESIR_ATK_MULTIPLIER_OF_SPHERE_MINE_30)
local RuneDamage1 = Num1 * 0.3
local Redhandbag = 1
local Ring1 = srcUser:GetEquipedID(1)
if Ring1 == 42551_RED_SQUARE_BAG_RED_SQUARE_BAG or Ring1 == 142551_RED_SQUARE_BAG_1_RED_SQUARE_BAG_1 then
Redhandbag = 1.15
end
local RefineLv1 = srcUser:GetEquipedRefineLv(1)
if 5 <= RefineLv1 and srcUser:HasBuffID(90002213_RED_SQUARE_BAG_4_:MAX_STACK_0) then
Redhandbag = Redhandbag + 0.1
end
local equipRing = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_EQUIP, CommonFun.EquipPos.EEQUIPPOS_SHIELD)
if (equipRing.id == 42592 or equipRing.id == 142592) and 5 <= equipRing.refinelv then
Redhandbag = Redhandbag + 0.15 + 0.15
elseif equipRing.id == 42592 or equipRing.id == 142592 then
Redhandbag = Redhandbag + 0.15
end
local equipRingSD = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_SHADOWEQUIP, CommonFun.EquipPos.EEQUIPPOS_SHIELD)
if (equipRingSD.id == 42592 or equipRingSD.id == 142592) and 5 <= equipRingSD.refinelv then
Redhandbag = Redhandbag + 0.3 * equipRingSD.quench_per / 100
elseif equipRingSD.id == 42592 or equipRingSD.id == 142592 then
Redhandbag = Redhandbag + 0.15 * equipRingSD.quench_per / 100
end
local GemValue = srcUser:GetGemValue(132101_SPHERE_MINE_AND_SPHERE_PARASITISM_DMG_PERCENTAGE)
local GemDam = 1 + GemValue / 100000
local A = (((AtkFinal * DefReduc * (1 - DamReduc2) + Refine) * (damChangePer + RuneDamage1) + damChangePer1 * DefReduc * (1 - DamReduc2)) * (1 - RefineDamReduc) * (1 + DamIncrease - LongRangeDamReduc2) - Vit2 * (1 + VitPer2)) * damChangePer2 * Redhandbag * GemDam + BaseLvDamage
local skillID, skillLevel = CommonFun.UnmergeSkillID(params.skillIDAndLevel)
local Redhandbag1 = 1
local Ring1 = srcUser:GetEquipedID(1)
if Ring1 == 42551_RED_SQUARE_BAG_RED_SQUARE_BAG or Ring1 == 142551_RED_SQUARE_BAG_1_RED_SQUARE_BAG_1 then
Redhandbag1 = 1.15
end
local RefineLv1 = srcUser:GetEquipedRefineLv(1)
if 5 <= RefineLv1 and srcUser:HasBuffID(90002213_RED_SQUARE_BAG_4_:MAX_STACK_0) then
Redhandbag1 = Redhandbag1 + 0.1
end
local equipRing = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_EQUIP, CommonFun.EquipPos.EEQUIPPOS_SHIELD)
if (equipRing.id == 42592 or equipRing.id == 142592) and 5 <= equipRing.refinelv then
Redhandbag1 = Redhandbag1 + 0.15 + 0.15
elseif equipRing.id == 42592 or equipRing.id == 142592 then
Redhandbag1 = Redhandbag1 + 0.15
end
local equipRingSD = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_SHADOWEQUIP, CommonFun.EquipPos.EEQUIPPOS_SHIELD)
if (equipRingSD.id == 42592 or equipRingSD.id == 142592) and 5 <= equipRingSD.refinelv then
Redhandbag1 = Redhandbag1 + 0.3 * equipRingSD.quench_per / 100
elseif equipRingSD.id == 42592 or equipRingSD.id == 142592 then
Redhandbag1 = Redhandbag1 + 0.15 * equipRingSD.quench_per / 100
end
if skillID == 415_RUNE_KNIGHT:SPHERE_PARASITISM then
local Num2 = srcUser:GetRunePoint(130080_AESIR_DAMAGE_OF_SPHERE_PARASITISM_10)
local RuneDamage2 = Num2 * 0.1 + 1
A = A * RuneDamage2 * Redhandbag1
end
if A <= 1 then
return 1
end
return A
end
Formula
{
"id": 414005,
"Cost": 1,
"Desc": [
{
"id": 414000,
"params": [
400,
1000
]
}
],
"Icon": "skill_414001",
"Camps": "Enemy",
"Level": 5,
"Logic": "SkillLockedTarget",
"Damage": [
{
"type": 13205,
"damChangePer": 4,
"damChangePer1": 1000,
"damChangePer2": 1
}
],
"DescId": "##171089",
"NameZh": "##169820",
"DamTime": {
"type": 1,
"value": 1
},
"DelayCD": 1.5,
"Fire_EP": 3,
"RollType": 1,
"SkillHit": 0.3,
"AttackAct": [
"use_magic"
],
"Attack_EP": 3,
"SkillCost": {
"sp": 12
},
"SkillType": "Attack",
"Target_EP": 3,
"DamageType": 1,
"Launch_Range": 6
}