Skill #10006003

Group Teleportation

Level 1

##10006000

CD 5s | Cost 0 | Telesport

ID 10006003

Formulas & functions

CommonFun links

Group TeleportationLv 1 | buff | Buffs 70050120

Formula source

function CommonFun.calcBuff_160(srcUser, targetUser, a, b, c, d, lv)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local SlowAtk = srcUser:GetProperty("SlowAtk")
  local SlowDef2 = targetUser:GetProperty("SlowDef")
  local SlowDam = 1 + SlowAtk - SlowDef2
  if SlowDam <= 0 then
    SlowDam = 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) * SlowDam * StateDam * CommonFun.calcAttrSlowRate(srcUser, targetUser)
  if A <= 0 then
    return 0
  end
  return A
end

Skill JSON (Level 1)

{
  "id": 10006003,
  "NameZh": "协同瞬移",
  "Level": 1,
  "Icon": "skill_175001",
  "Cost": 0,
  "Desc": [
    {
      "id": 10006000,
      "params": [
        0.5
      ]
    }
  ],
  "SkillType": "Telesport",
  "Camps": "Enemy",
  "Launch_Range": 60,
  "Fire_EP": 3,
  "Target_EP": 3,
  "Attack_EP": 3,
  "CD": 5,
  "Lead_Type": {
    "CCT": 3,
    "FCT": 0,
    "type": 2
  },
  "Logic": "SkillSelfRange",
  "Logic_Param": {
    "notcontroled": 1,
    "range": 3,
    "range_num": 5
  },
  "Buff": {
    "enemy": [
      70050120
    ]
  },
  "Pvp_buff": {
    "enemy": [
      70050120
    ]
  },
  "ForbidUse": 13859,
  "CastAct": "wait",
  "AttackAct": [
    "use_magic"
  ],
  "description": {
    "chinesesimplified": "##10006000",
    "english": "##10006000",
    "german": "##10006000",
    "portuguese": "##10006000",
    "spanish": "##10006000"
  }
}