
Holy Light Strike
Lvl: 10
Attack
Magic
Skill Delay: 1 sec
SP: 16
Range: 6
Cast Time: 0.8
Attacks an enemy with holy light, dealing (M.Atk600%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 9
Attack
Magic
Skill Delay: 1 sec
SP: 16
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk550%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 8
Attack
Magic
Skill Delay: 1 sec
SP: 16
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk500%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 7
Attack
Magic
Skill Delay: 1 sec
SP: 16
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk450%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 6
Attack
Magic
Skill Delay: 1 sec
SP: 16
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk400%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 5
Attack
Magic
Skill Delay: 1 sec
SP: 8
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk350%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 4
Attack
Magic
Skill Delay: 1 sec
SP: 8
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk300%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 3
Attack
Magic
Skill Delay: 1 sec
SP: 8
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk250%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 2
Attack
Magic
Skill Delay: 1 sec
SP: 8
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk200%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Lvl: 1
Attack
Magic
Skill Delay: 1 sec
SP: 8
Range: 6
Cast Time: 0.8
• Attacks an enemy with holy light, dealing (M.Atk150%) holy M.Dmg and some real M.Dmg. It also expels Kyrie Eleison
Formula
function CommonFun.calcDamage_33(srcUser, targetUser, params, damageParam, logger)
local Int = srcUser:GetProperty("Int")
local Vit = srcUser:GetProperty("Vit")
local Luk = srcUser:GetProperty("Luk")
local MAtk = srcUser:GetProperty("MAtk")
local MAtkPer = srcUser:GetProperty("MAtkPer")
local MDamIncrease = CommonFun.calcMDamIncrease(srcUser, targetUser)
local IgnoreMDef = srcUser:GetProperty("IgnoreMDef")
if 1 <= IgnoreMDef then
IgnoreMDef = 1
end
local MRefine = srcUser:GetProperty("MRefine")
local skilllv_1 = srcUser:GetLernedSkillLevel(235_LORD_KNIGHT:HOLY_BOOSTER)
local srcAtkElement = CommonFun.GetUserAtkAttr(srcUser, targetUser, params, damageParam)
local targetDefElement = targetUser:GetProperty("DefAttr")
local ElementRate = CommonFun.calcMagicElement(srcUser, targetUser, params, damageParam)
if srcAtkElement == 6 and targetDefElement == 7 then
local GemValue = srcUser:GetGemValue(51022_HOLY_STAT_S_RESISTANCE_EFFECT_AGAINST_DARK_STAT_PERCENTAGE)
ElementRate = ElementRate + GemValue / 100000
end
local elementparam2 = CommonFun.CalcElementParam2(srcUser, targetUser, params, damageParam, logger)
local raceparam = CommonFun.CalcRaceParam(srcUser, targetUser, params, damageParam, logger)
local raceparam2 = CommonFun.CalcRaceParam2(srcUser, targetUser, params, damageParam, logger)
local bossparam = CommonFun.CalcBossParam(srcUser, targetUser, params, damageParam, logger)
local bossparam2 = CommonFun.CalcBossParam2(srcUser, targetUser, params, damageParam, logger)
local MDef2 = targetUser:GetProperty("MDef")
local MDefPer2 = targetUser:GetProperty("MDefPer")
local Vit2 = targetUser:GetProperty("Vit")
local VitPer2 = targetUser:GetProperty("VitPer")
local Int2 = targetUser:GetProperty("Int")
local IntPer2 = targetUser:GetProperty("IntPer")
local MDamReduc2 = CommonFun.calcMDamReDuc(srcUser, targetUser)
local RefineMDamReduc = targetUser:GetProperty("RefineMDamReduc")
local damChangePer = damageParam.damChangePer
local damChangePer1 = damageParam.damChangePer1
local BaseMAtk = Int + math.floor(Int * Int / 100)
local MAtkFinal = ((MAtk - BaseMAtk) * (1 + MAtkPer) + BaseMAtk) * raceparam * bossparam * bossparam2
local MDefReduc = CommonFun.CalcMDef(srcUser, targetUser)
local BaseLvDamage = 0
local IBaseLv = srcUser.BaseLv
if srcUser:HasBuffID(42110_FLUORESCENCE_:MAX_STACK_0) then
BaseLvDamage = IBaseLv * 20
end
local Weapon = srcUser:GetEquipedID(7_WEAPON)
local B = 0
if Weapon == 41521_NEMESIS_1 or Weapon == 141521_NEMESIS_2 or Weapon == 41568_O_NEILL_S_STAFF_1 or Weapon == 141568_O_NEILL_S_STAFF_2 then
B = Luk * 50
end
local WeaponRefineLv = srcUser:GetEquipedRefineLv(7_WEAPON)
if (srcUser:HasBuffID(90001413_NEMESIS_R4_:MAX_STACK_0) or srcUser:HasBuffID(41980_O_NEILL_S_STAFF_:MAX_STACK_0)) and 10 <= WeaponRefineLv then
B = B * 2
end
local A = (((MAtkFinal * MDefReduc * (1 - MDamReduc2) + MRefine) * (1 - RefineMDamReduc) * damChangePer + B * MDefReduc * (1 - MDamReduc2) * (1 - RefineMDamReduc)) * (1 + MDamIncrease) * ElementRate * elementparam2 - Vit2 / 2 * (1 + VitPer2) - Int2 * (1 + IntPer2) + damChangePer1) * (1 + skilllv_1 * 0.1) + BaseLvDamage
if A <= 1 then
return 1
end
return A
end
Enemy
{
"id": 95010,
"BuffName": "Holy Light (delete Kyrie Eleison)",
"BuffRate": {
"Odds": 100
},
"BuffEffect": {
"id": [
95060,
95061,
95062,
95063,
95064,
95065,
95066,
95067,
95068,
95069
],
"type": "DelBuff",
"checkForbidGainBuffDel": 1
}
}
Enemy
{
"id": 95230,
"BuffDesc": "Stun: disable movement, stop restoring mana",
"BuffIcon": "skillbuff_235001",
"BuffName": "(Holy Booster) [Stunning]",
"BuffRate": {
"Odds": {
"a": 2,
"b": 10,
"type": 131
}
},
"BuffType": {
"isgain": 0,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "StatusChange",
"NoAct": 1,
"AttrEffect": [
3,
4
],
"StateEffect": "4_Dizzy"
},
"BuffStateID": 80010
}
Enemy
{
"id": 95060,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95064,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95066,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95068,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95069,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95067,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95061,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95062,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95063,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Enemy
{
"id": 95065,
"BuffDesc": "Immunize damage (a certain deal of attacks) during the effective time",
"BuffIcon": "skillbuff_150001",
"BuffName": "Kyrie Eleison [Shielding Effect]",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "AttrChange",
"AttrEffect": [
19
]
},
"BuffStateID": 14
}
Formula
{
"id": 145010,
"Buff": {
"enemy": [
95010,
95230
]
},
"Cost": 1,
"Desc": [
{
"id": 145000,
"params": [
600
]
}
],
"Icon": "skill_145001",
"Camps": "Enemy",
"Level": 10,
"Logic": "SkillLockedTarget",
"Damage": [
{
"type": 33,
"damChangePer": 6,
"elementparam": 6,
"damChangePer1": 600
}
],
"DescId": "##171165",
"NameZh": "##169436",
"SE_hit": "Common/Magician_hit",
"CastAct": "reading",
"DamTime": {
"type": 1,
"value": 3
},
"DelayCD": 1,
"Fire_EP": 3,
"SE_cast": "Common/Magic_cast",
"Pvp_buff": {
"enemy": [
95010,
95230
]
},
"RollType": 2,
"AttackAct": [
"use_magic"
],
"Attack_EP": 3,
"Lead_Type": {
"CCT": 0,
"FCT": 0.8,
"type": 2
},
"SE_attack": "None",
"SkillCost": {
"sp": 16
},
"SkillType": "Attack",
"Target_EP": 1,
"DamageType": 2,
"Launch_Range": 6
}