Bio Explosion
Lvl: 5 Attack Range: 6

Put biological bombs into the enemy's body, dealing Neutral M. DMG of 900% M.Atk per second to the enemy and all targets around. The effect lasts 9s, stackable

Lvl: 4 Attack Range: 6
• Put biological bombs into the enemy's body, dealing Neutral M. DMG of 720% M.Atk per second to the enemy and all targets around. The effect lasts 8s, stackable
Lvl: 3 Attack Range: 6
• Put biological bombs into the enemy's body, dealing Neutral M. DMG of 540% M.Atk per second to the enemy and all targets around. The effect lasts 7s, stackable
Lvl: 2 Attack Range: 6
• Put biological bombs into the enemy's body, dealing Neutral M. DMG of 360% M.Atk per second to the enemy and all targets around. The effect lasts 6s, stackable
Lvl: 1 Attack Range: 6
• Put biological bombs into the enemy's body, dealing Neutral M. DMG of 180% M.Atk per second to the enemy and all targets around. The effect lasts 5s, stackable

Enemy 59

function CommonFun.calcBuff_59(srcUser, targetUser, a, b, c, d, lv)
  if srcUser == nil or targetUser == nil then
    return 0
  end
  local Int = srcUser:GetProperty("Int")
  local Vit = srcUser:GetProperty("Vit")
  local MAtk = srcUser:GetProperty("MAtk")
  local skilllv_1 = srcUser:GetLernedSkillLevel(446_RUNEMASTER:BIO_EXPLOSION)
  skillDamPer = skilllv_1 * 1.8
  local MDamIncrease = CommonFun.calcMDamIncrease(srcUser, targetUser)
  local IgnoreMDef = srcUser:GetProperty("IgnoreMDef")
  local srcAtkElement = 5
  local targetDefElement = targetUser:GetProperty("DefAttr")
  local MDef2 = targetUser:GetProperty("MDef")
  local MDefPer2 = targetUser:GetProperty("MDefPer")
  local Vit2 = targetUser:GetProperty("Vit")
  local VitPer2 = targetUser:GetProperty("VitPer")
  local Int2 = targetUser:GetProperty("Int")
  local IntPer2 = targetUser:GetProperty("IntPer")
  local MDamReduc2 = CommonFun.calcMDamReDuc(srcUser, targetUser)
  local RefineMDamReduc = targetUser:GetProperty("RefineMDamReduc")
  local BaseMAtk = Int + math.floor(Int * Int / 100)
  local MAtkFinal = MAtk
  local MDefReduc = CommonFun.CalcMDef(srcUser, targetUser)
  local ResultDamInc = srcUser:GetProperty("ResultDamInc")
  local ResultDamRes = targetUser:GetProperty("ResultDamRes")
  local Result = 1 + ResultDamInc - ResultDamRes
  Result = math.max(Result, 0.1)
  local NeutralAtk = srcUser:GetProperty("NeutralAtk")
  local BeNeutralDamPer = targetUser:GetProperty("BeNeutralDamPer")
  local ele = 1 + NeutralAtk - BeNeutralDamPer
  local A = (MAtkFinal * MDefReduc * (1 - MDamReduc2) - Vit2 / 2 * (1 + VitPer2) - Int2 * (1 + IntPer2)) * CommonFun.GetElementRate(srcUser, srcAtkElement, targetUser, targetDefElement) * ele * skillDamPer * (1 + MDamIncrease) * (1 - RefineMDamReduc) * Result
  local AttrFunction = srcUser:GetProperty("AttrFunction")
  local bitfunc = CommonFun.getBits(AttrFunction)
  if (targetUser.boss or targetUser.mini or targetUser.changelinepunish) and (targetUser.zoneType == 1 or targetUser.zoneType == 22) and targetUser.noPunishBoss == false and bitfunc[CommonFun.AttrFunction.JustInViceZone] == 1 and targetUser.isBossFromBranch == false then
    A = 0
  end
  if targetUser.boss and targetUser.zoneType == 22 and CommonFun.CheckStormBossMiss(targetUser, srcUser) then
    A = 0
  end
  if targetUser:GetNpcID() == 30043_YEAR or targetUser:GetNpcID() == 280303_WILDNESS_SPIRIT_BEAST or targetUser:GetNpcID() == 56008_GOMORA or targetUser:GetNpcID() == 56009_BALTAN or targetUser:GetNpcID() == 56010_GOLZA or targetUser:GetNpcID() == 56011_BEMSTAR or targetUser:GetNpcID() == 56012_ELEKING or targetUser:GetNpcID() == 56013_KING_JOE then
    A = 1
  end
  if targetUser:DamageAlways1() then
    A = 1
  end
  if A <= 1 then
    return -1
  end
  return -A
end

Enemy

{
  "id": 103800,
  "BuffName": "Biological Bomb",
  "BuffRate": {
    "Odds": 100
  },
  "BuffType": {
    "isgain": 0,
    "isdisperse": 1
  },
  "BuffEffect": {
    "Hp": {
      "type": 59
    },
    "type": "HSPChange",
    "limit_layer": 5
  },
  "BuffStateID": 103800
}

Formula

{
  "CD": 0,
  "id": 446005,
  "Buff": {
    "enemy": [
      103800
    ]
  },
  "Cost": 1,
  "Desc": [
    {
      "id": 446000,
      "params": [
        900,
        9
      ]
    }
  ],
  "Icon": "skill_446001",
  "Camps": "Enemy",
  "Level": 5,
  "Logic": "SkillLockedTarget",
  "DescId": "##1277260",
  "NameZh": "##169448",
  "CastAct": "reading",
  "Fire_EP": 3,
  "Pvp_buff": {
    "enemy": [
      103800
    ]
  },
  "AttackAct": [
    "use_magic"
  ],
  "Attack_EP": 3,
  "SkillType": "Attack",
  "Target_EP": 2,
  "DamageType": 4,
  "Launch_Range": 6
}