Dusk suppression
Lvl: 6 Attack Physical

Summon a beam of light from heaven on the caster itself, dealing Holy Phy. DMG of Phy. ATK *2400% to all enemy units within 5 meters. The beam of light strikes three times, once every second. It requires at least 1 Holy Providence teammate to perform

Lvl: 5 Buff
• Divine Avenger opens a defensive barrier, granting themselves and teammates within a 5-meter range (20%4%*【Divine Protection】 number of co-players) Skill Dmg Reduc. and Auto Attack Reduction. The barrier lasts for 15 seconds.
Lvl: 4 Buff
• Divine Avenger opens a defensive barrier, granting themselves and teammates within a 5-meter range (20%4%*【Divine Protection】 number of co-players) Skill Dmg Reduc. and Auto Attack Reduction. The barrier lasts for 15 seconds.
Lvl: 3 Buff
• Crusader has a 50% chance to parry when attacked. Lasts 120. Shield as off-hand weapon must be equipped.
Lvl: 2 Attack Physical Range: 3
• Draw a crimson cross forward and launch continuous stab and slash attacks. Deal (Atk + M.Atk) *1320% Dmg to an enemy and its nearby enemies. Enemies hit have a 40% chance to bleed. A spear class weapon must be equipped to use this skill.
Lvl: 1 Buff Range: 1
• Sing a hymn to negate dark and asleep for all teammates, and restore 25*(100+VIT) HP every 2s for 25s (the effect quadruples during PvP and GvG).
Lvl: 0 Attack Physical Range: 2
• Deals (Atk100%) Dmg to the target

Formula

function CommonFun.calcDamage_7503(srcUser, targetUser, params, damageParam, logger)
  local Str = srcUser:GetProperty("Str")
  local Dex = srcUser:GetProperty("Dex")
  local Vit = srcUser:GetProperty("Vit")
  local Luk = srcUser:GetProperty("Luk")
  local Atk = srcUser:GetProperty("Atk")
  local AtkPer = srcUser:GetProperty("AtkPer")
  local DamIncrease = srcUser:GetProperty("DamIncrease")
  local shield = srcUser:GetEquipedID(1)
  local RefineLv = srcUser:GetEquipedRefineLv(1)
  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 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 Num = srcUser:GetBuffLayer(130090_DIVINE_AVENGER_STACKS_:MAX_STACK_5)
  local skilllv = srcUser:GetLernedSkillLevel(3827_DIVINE_AVENGER:TWILIGHT_UNITE)
  local A = (AtkFinal * DefReduc * (1 - DamReduc2) + Refine) * (damChangePer + Num * skilllv * 0.7) * (1 + DamIncrease - ShortRangeDamReduc2) * (1 - RefineDamReduc) - Vit2 * (1 + VitPer2)
  local targetDefElement = targetUser:GetProperty("DefAttr")
  local Fifth = 1
  if targetDefElement ~= 7 and srcUser:GetBuffActive(90004914) then
    Fifth = Fifth + 0.15
  end
  A = A * Fifth
  if A <= 1 then
    return 1
  end
  return A
end

Enemy

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

Enemy

{
  "id": 177789,
  "BuffDesc": "Unable to perform Auto Attack",
  "BuffIcon": "skillbuff_commonbuff",
  "BuffName": "Shield Press",
  "BuffRate": {
    "Odds": 100
  },
  "BuffType": {
    "isgain": 0,
    "isdisperse": 1
  },
  "IconType": 1,
  "BuffEffect": {
    "type": "AttrChange",
    "NoNormalAttack": 1
  },
  "BuffStateID": 127130
}

Formula

{
  "id": 25614006,
  "Buff": {
    "enemy": [
      177789,
      130032
    ]
  },
  "Cost": 1,
  "Desc": [
    {
      "id": 3810000,
      "params": [
        2400
      ]
    }
  ],
  "Icon": "skill_3810001",
  "Camps": "Enemy",
  "Level": 10,
  "Logic": "SkillSelfRange",
  "Damage": [
    {
      "type": 7503,
      "damChangePer": 24,
      "elementparam": 6
    }
  ],
  "DescId": "##1131173",
  "NameZh": "##2834576",
  "CastAct": "skill_ready_Spear",
  "DamTime": {
    "type": 1,
    "value": 3
  },
  "Fire_EP": 3,
  "Pvp_buff": {
    "enemy": [
      177789,
      130032
    ]
  },
  "RollType": 1,
  "AttackAct": [
    "use_skill3"
  ],
  "Attack_EP": 2,
  "Lead_Type": {
    "type": 1,
    "ReadyTime": 2
  },
  "SE_attack": "Skill/Avenger_huanghunzhiguang",
  "SkillType": "Attack",
  "Target_EP": 3,
  "DamageType": 1,
  "E_Attack_On": 1,
  "Logic_Param": {
    "count": 5,
    "range": 5,
    "be_break": 1,
    "interval": 1,
    "no_select": 1,
    "range_num": 15,
    "chant_buff": [
      177820
    ],
    "follow_user": 1,
    "isCountTrap": 1,
    "notcontroled": 1
  },
  "Launch_Range": 0
}