Formula

CommonFun.calcBuff_1860

formula.lua
1function CommonFun.calcBuff_1860(srcUser, targetUser, a, b, c, d, lv)
2  if srcUser == nil or targetUser == nil then
3    return 0
4  end
5  local DarkStateAtk = srcUser:GetProperty("DarkStateAtk")
6  local DarkStateDef2 = targetUser:GetProperty("DarkStateDef")
7  local DarkStateDam = 1 + DarkStateAtk - DarkStateDef2
8  if DarkStateDam <= 0 then
9    DarkStateDam = 0
10  end
11  local StateAtk = srcUser:GetProperty("StateAtk")
12  local StateDef2 = targetUser:GetProperty("StateDef")
13  local StateDam = 1 + StateAtk - StateDef2
14  if StateDam <= 0 then
15    StateDam = 0
16  end
17  local A = (lv * a + b) * DarkStateDam * StateDam * CommonFun.calcAttrDarkTime(srcUser, targetUser)
18  if A <= 0 then
19    return 0
20  end
21  return A
22end
Formula Graph

Connected Archive Data

See which cards, equipment, headwears, buffs, and other archived records connect to this formula.

Loading graph filters

CommonFun.calcBuff_1860

commonfun-calcbuff_1860

Nodes

0

Edges

0

Related Nodes

Select at least one node type.