Evil Cat Roar
Lvl: 5 Attack Physical CD: 8 sec Skill Delay: 2 sec SP: 50 Range: 6 Cast Time: 4

Meow casts a powerful roar forward, causing DMG (Atk x2400%) to all enemies in front, removing all Buffs of the first target that is hit, and has a 100% chance to cause irresistible [Silence] to all enemies in the path. Lasts 3 seconds.

Lvl: 4 Attack Physical CD: 9 sec Skill Delay: 2 sec SP: 48 Range: 6 Cast Time: 4
• Meow casts a powerful roar forward, causing DMG (Atk x2200%) to all enemies in front, removing all Buffs of the first target that is hit, and has a 80% chance to cause irresistible [Silence] to all enemies in the path. Lasts 3 seconds.
Lvl: 3 Attack Physical CD: 10 sec Skill Delay: 2 sec SP: 46 Range: 6 Cast Time: 4
• Meow casts a powerful roar forward, causing DMG (Atk x2000%) to all enemies in front, removing all Buffs of the first target that is hit, and has a 60% chance to cause irresistible [Silence] to all enemies in the path. Lasts 3 seconds.
Lvl: 2 Attack Physical CD: 11 sec Skill Delay: 2 sec SP: 44 Range: 6 Cast Time: 4
• Meow casts a powerful roar forward, causing DMG (Atk x1800%) to all enemies in front, removing all Buffs of the first target that is hit, and has a 40% chance to cause irresistible [Silence] to all enemies in the path. Lasts 3 seconds.
Lvl: 1 Attack Physical CD: 12 sec Skill Delay: 2 sec SP: 42 Range: 6 Cast Time: 4
• Meow casts a powerful roar forward, causing DMG (Atk x1600%) to all enemies in front, removing all Buffs of the first target that is hit, and has a 20% chance to cause irresistible [Silence] to all enemies in the path. Lasts 3 seconds.

Formula

function CommonFun.calcDamage_15101(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 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 = srcUser: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 damChangePer1 = damageParam.damChangePer1
  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 + DamIncrease - LongRangeDamReduc2) * (1 - RefineDamReduc) + damChangePer1 - Vit2 * (1 + VitPer2)
  local Agi = srcUser:GetProperty("Agi")
  local CriRate = math.min(Agi / 3 + 5, 100)
  local skillID, skillLevel = CommonFun.UnmergeSkillID(params.skillIDAndLevel)
  if skillID == 4107_PROFESSOR:EVIL_CAT_ROAR then
    CriRate = 0
  end
  local shadow = 1
  if srcUser:GetTempSkillSlaveID() == 806612 then
    local GemNew = srcUser:GetGemValue(153142_SKILL_DMG_OF_LIFE_CONCENTRIC_S_ILLUSION_PERCENTAGE)
    shadow = 1 + GemNew / 100000
  end
  if A <= 1 then
    return 1
  end
  if CommonFun.IsInRate(CriRate, srcUser:GetRandom()) then
    return A * 1.5 * shadow, CommonFun.DamageType.Crit
  end
  return A * shadow
end

Enemy

{
  "id": 131591,
  "BuffDesc": "Silence: disable all skills except auto attacks",
  "BuffIcon": "skillbuff_commonbuff",
  "BuffName": "Evil Cat Roar - Silence Effect [Silence]",
  "BuffRate": {
    "Odds": {
      "a": 20,
      "b": 0,
      "type": 100
    }
  },
  "BuffType": {
    "isgain": 0,
    "isdisperse": 1
  },
  "IconType": 1,
  "BuffEffect": {
    "type": "StatusChange",
    "NoSkill": 1,
    "StateEffect": "10_Silence",
    "IsForceStatus": 1
  },
  "BuffStateID": 96040
}

Nearest

{
  "id": 131590,
  "BuffName": "Evil Cat Roar - Remove Buffs (Enemies)",
  "BuffRate": {
    "Odds": 100
  },
  "BuffEffect": {
    "num": 99,
    "type": "Disperse",
    "value": "GainBuff"
  },
  "BuffStateID": 118260
}

Formula

{
  "CD": 8,
  "id": 4107005,
  "Buff": {
    "enemy": [
      131591
    ],
    "nearest": {
      "enemy": [
        131590
      ]
    }
  },
  "Cost": 1,
  "Desc": [
    {
      "id": 4107000,
      "params": [
        2400,
        100
      ]
    }
  ],
  "Icon": "skill_4107001",
  "Camps": "Enemy",
  "Level": 5,
  "Logic": "SkillDirectionRect",
  "Damage": [
    {
      "type": 15101,
      "damChangePer": 24,
      "damChangePer1": 0
    }
  ],
  "DescId": "##171348",
  "NameZh": "##169418",
  "CastAct": "skill_ready",
  "DamTime": {
    "type": 1,
    "value": 1
  },
  "DelayCD": 2,
  "Fire_EP": 6,
  "ItemCost": [
    {
      "id": 12903,
      "count": 1020
    }
  ],
  "PointAct": "reading",
  "Pvp_buff": {
    "enemy": [
      131591
    ],
    "nearest": {
      "enemy": [
        131590
      ]
    }
  },
  "RollType": 1,
  "AttackAct": [
    "use_skill"
  ],
  "Attack_EP": 1,
  "Lead_Type": {
    "CCT": 0,
    "FCT": 4,
    "type": 2
  },
  "SE_attack": "Skill/Whisperer_emaopaoxiao",
  "SkillCost": {
    "sp": 50
  },
  "SkillType": "Attack",
  "Target_EP": 3,
  "DamageType": 1,
  "HitEffects": [
    {
      "type": 1,
      "speed": 10,
      "distance": 2,
      "direction": "back"
    }
  ],
  "Logic_Param": {
    "width": 4,
    "distance": 10,
    "range_num": 10,
    "point_effect": "Eff_Doram_Boar_buff",
    "forward_offset": 0
  },
  "Launch_Range": 6,
  "ExtraMaxLevel": 0
}