Overbearing Charge
Lvl: 1 Attack Physical Range: 10

Formula

function CommonFun.calcDamage_20(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 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 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 skillID, skillLevel = CommonFun.UnmergeSkillID(params.skillIDAndLevel)
  if skillID == 380_RUNE_KNIGHT:SONIC_CLAW or skillID == 383_RUNE_KNIGHT:SILVER_CHARGE or skillID == 384_RUNE_KNIGHT:TINDER_BREAKER then
    AtkPer = 0
  end
  local BaseAtk = Str * 2 + math.floor(Str * Str / 100) + math.floor(Dex / 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 ShortRangeDamReduc2 = targetUser:GetProperty("ShortRangeDamReduc")
  local A = (AtkFinal * DefReduc * (1 - DamReduc2) + Refine) * damChangePer * (1 - RefineDamReduc) * (1 + DamIncrease - ShortRangeDamReduc2) - Vit2 * (1 + VitPer2)
  if A <= 1 then
    return 1
  end
  return A
end

Enemy

{
  "id": 174920,
  "BuffDesc": "Stun: disable movement, stop restoring mana",
  "BuffIcon": "skillbuff_commonbuff",
  "BuffName": "Stunning Effect",
  "BuffRate": {
    "Odds": {
      "a": 0,
      "b": 180,
      "type": 130
    }
  },
  "BuffType": {
    "isgain": 0,
    "isdisperse": 1
  },
  "IconType": 1,
  "BuffEffect": {
    "type": "StatusChange",
    "NoAct": 1,
    "AttrEffect": [
      3,
      4
    ],
    "StateEffect": "4_Dizzy"
  },
  "BuffStateID": 80010
}

Formula

{
  "id": 79951001,
  "Buff": {
    "enemy": [
      174920
    ]
  },
  "Desc": [
    {
      "id": 79951001,
      "params": [
        100
      ]
    }
  ],
  "Icon": "skill_79951001",
  "Camps": "Enemy",
  "Level": 1,
  "Logic": "SkillForwardRect",
  "SE_bg": "skill_rudecrash_bg",
  "Damage": [
    {
      "type": 20,
      "damChangePer": 12,
      "elementparam": 3
    }
  ],
  "NameZh": "##1191050",
  "DamTime": {
    "type": 1,
    "value": 1
  },
  "Fire_EP": 2,
  "Pvp_buff": {
    "enemy": [
      174920
    ]
  },
  "RollType": 1,
  "SkillHit": 1,
  "AttackAct": [
    "attack"
  ],
  "Attack_EP": 2,
  "Lead_Type": {
    "type": 1,
    "ReadyTime": 3
  },
  "SE_attack": "skill_rudecrash_attack",
  "SkillType": "Attack",
  "Target_EP": 2,
  "E_Attack_On": 1,
  "Logic_Param": {
    "width": 4,
    "distance": 8,
    "range_num": 12,
    "immune_taunt": 1,
    "forward_offset": 0,
    "ShowWarningEffect": true
  },
  "Launch_Range": 10,
  "AttackEffects": [
    {
      "type": 1,
      "speed": 30,
      "distance": 8,
      "direction": "forward"
    }
  ]
}