Level ?
Skill #80007004
Deals (Atk[8df936]%s%%[-]) Dmg to a target and reduces their Move Spd
Formulas & functions
CommonFun links
CommonFun.calcBuff_130
buffEnemy
80007004buff | Buffs 70050111
Formula source
function CommonFun.calcBuff_130(srcUser, targetUser, a, b, c, d, lv)
if srcUser == nil or targetUser == nil then
return 0
end
local StunAtk = srcUser:GetProperty("StunAtk")
local StunDef2 = targetUser:GetProperty("StunDef")
local StunDam = 1 + StunAtk - StunDef2
if StunDam <= 0 then
StunDam = 0
end
local StateAtk = srcUser:GetProperty("StateAtk")
local StateDef2 = targetUser:GetProperty("StateDef")
local StateDam = 1 + StateAtk - StateDef2
if StateDam <= 0 then
StateDam = 0
end
local A = (lv * a + b) * StunDam * StateDam * CommonFun.calcAttrDizzyRate(srcUser, targetUser)
if A <= 0 then
return 0
end
return A
endSkill JSON (Level ?)
{
"id": 80007004,
"NameZh": "",
"Icon": "",
"SkillType": "Buff",
"Camps": "Enemy",
"Launch_Range": 6,
"Fire_EP": 3,
"Target_EP": 2,
"Attack_EP": 3,
"Logic": "SkillSelfRange",
"Logic_Param": {
"range": 3
},
"Buff": {
"enemy": [
70050110,
70050111
]
},
"Pvp_buff": {
"enemy": [
70050110,
70050111
]
},
"AttackAct": [
"attack"
]
}