Skill #2110001

Ghost Wave

Level 1

##3906000

CD 1.2s | Cost 1 | Attack

ID 2110001

Formulas & functions

CommonFun links

Ghost WaveLv 1-10 | buff | Buffs 134510, 116033

Formula source

function CommonFun.calcBuff_5040(srcUser, targetUser, a, b, c, d, lv)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local Hasbuff = 0
  if srcUser:HasBuffID(c) then
    Hasbuff = 1
  end
  local A = a + b * Hasbuff
  return A
end
Ghost WaveLv 1 | damage

Formula source

function CommonFun.calcDamage_17301(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 NormalAtk = srcUser:GetProperty("NormalAtk")
  NormalAtk = NormalAtk + 3 * Dex
  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 Refine = srcUser:GetProperty("Refine")
  local AttrEffect = targetUser:GetProperty("AttrEffect")
  local bits = CommonFun.getBits(AttrEffect)
  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 LongRangeDamReduc2 = targetUser:GetProperty("LongRangeDamReduc")
  local RefineDamReduc = targetUser:GetProperty("RefineDamReduc")
  local damChangePer = damageParam.damChangePer
  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 = Dex * 2 + math.floor(Dex * Dex / 100) + math.floor(Str / 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 A = (AtkFinal * DefReduc * (1 - DamReduc2) + Refine) * damChangePer * (1 - RefineDamReduc) * (1 + DamIncrease - LongRangeDamReduc2) - Vit2 * (1 + VitPer2)
  local skillID, skillLevel = CommonFun.UnmergeSkillID(params.skillIDAndLevel)
  if skillID == 2005 then
    local GemValue = srcUser:GetGemValue(173052)
    local GemDam = 1 + GemValue / 100000
    A = A * GemDam
  end
  if skillID == 2200 or skillID == 2199 then
    local WeaponType = srcUser:GetEquipedWeaponType()
    if WeaponType == 320 then
      A = A * 2
    end
  end
  if skillID == 2250 or skillID == 818 then
    local GemValue = srcUser:GetGemValue(173161)
    A = A * (1 + GemValue / 100000)
  end
  if A <= 1 then
    return 1
  end
  return A
end

Skill JSON (Level 1)

{
  "id": 2110001,
  "NameZh": "摄魂波",
  "Level": 1,
  "Icon": "skill_3906001",
  "Cost": 1,
  "Desc": [
    {
      "id": 3906000,
      "params": [
        103
      ]
    }
  ],
  "RollType": 1,
  "SkillType": "Attack",
  "Camps": "Enemy",
  "Launch_Range": 5,
  "Fire_EP": 3,
  "Target_EP": 3,
  "Attack_EP": 2,
  "CD": 1.2,
  "SkillCost": {
    "sp": 44
  },
  "DelayCD": 1.2,
  "Lead_Type": {
    "CCT": 0,
    "FCT": 4,
    "type": 2
  },
  "Logic": "SkillLockedTarget",
  "Logic_Param": {
    "range": 3,
    "range_num": 15
  },
  "Damage": [
    {
      "damChangePer": 1,
      "type": 17301
    }
  ],
  "DamTime": {
    "type": 1,
    "value": 2
  },
  "Buff": {
    "enemy": [
      134510
    ]
  },
  "Pvp_buff": {
    "enemy": [
      134510
    ]
  },
  "CastAct": "skill_ready",
  "AttackAct": [
    "use_skill"
  ],
  "SE_attack": "Skill/Soulblade_shehunbo",
  "ItemCost": [
    {
      "count": 750,
      "id": 12903
    }
  ],
  "ExtraMaxLevel": 0,
  "description": {
    "chinesesimplified": "##3906000",
    "english": "##3906000",
    "german": "##3906000",
    "portuguese": "##3906000",
    "spanish": "##3906000"
  }
}