Napalm Vulcan
Lvl: 10 Attack Magic Skill Delay: 1 sec SP: 70 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2

Attacks an enemy continuously with will power, dealing (M.Atk*600%) ghost M.Dmg. Has a 30% chance to curse it

Lvl: 9 Attack Magic Skill Delay: 1 sec SP: 63 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*550%) ghost M.Dmg. Has a 27% chance to curse it
Lvl: 8 Attack Magic Skill Delay: 1 sec SP: 56 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*500%) ghost M.Dmg. Has a 24% chance to curse it
Lvl: 7 Attack Magic Skill Delay: 1 sec SP: 49 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*450%) ghost M.Dmg. Has a 21% chance to curse it
Lvl: 6 Attack Magic Skill Delay: 1 sec SP: 42 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*400%) ghost M.Dmg. Has a 18% chance to curse it
Lvl: 5 Attack Magic Skill Delay: 1 sec SP: 35 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*350%) ghost M.Dmg. Has a 15% chance to curse it
Lvl: 4 Attack Magic Skill Delay: 1 sec SP: 28 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*300%) ghost M.Dmg. Has a 12% chance to curse it
Lvl: 3 Attack Magic Skill Delay: 1 sec SP: 21 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*250%) ghost M.Dmg. Has a 9% chance to curse it
Lvl: 2 Attack Magic Skill Delay: 1 sec SP: 14 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*200%) ghost M.Dmg. Has a 6% chance to curse it
Lvl: 1 Attack Magic Skill Delay: 1 sec SP: 7 Range: 6 Cast Time: 1 Fixed Cast Time: 0.2
• Attacks an enemy continuously with will power, dealing (M.Atk*150%) ghost M.Dmg. Has a 3% chance to curse it

Aesir

• Thought High Energy Gives [Napalm Vulcan] a Spell Crit effect, Crit.Dmg +10%
• Enhanced Ghost Power [Napalm Vulcan] damage +5%

Formula

function CommonFun.calcDamage_37(srcUser, targetUser, params, damageParam, logger)
  local Luk = srcUser:GetProperty("Luk")
  local Int = srcUser:GetProperty("Int")
  local Vit = srcUser:GetProperty("Vit")
  local MAtk = srcUser:GetProperty("MAtk")
  local MAtkPer = srcUser:GetProperty("MAtkPer")
  local MDamIncrease = CommonFun.calcMDamIncrease(srcUser, targetUser)
  local IgnoreMDef = srcUser:GetProperty("IgnoreMDef")
  if 1 <= IgnoreMDef then
    IgnoreMDef = 1
  end
  local Num1 = srcUser:GetRunePoint(22050_AESIR_GIVES_NAPALM_VULCAN_A_SPELL_CRIT_EFFECT_CRIT_DMG_10)
  local RuneDamage = Num1 * 0.1 + 1
  local RuneRate = 0
  if 0 < Num1 then
    RuneRate = Luk / 3
  end
  local MRefine = srcUser:GetProperty("MRefine")
  local srcAtkElement = CommonFun.GetUserAtkAttr(srcUser, targetUser, params, damageParam)
  local targetDefElement = targetUser:GetProperty("DefAttr")
  local elementparam2 = CommonFun.CalcElementParam2(srcUser, targetUser, params, damageParam, logger)
  local raceparam = CommonFun.CalcRaceParam(srcUser, targetUser, params, damageParam, logger)
  local raceparam2 = CommonFun.CalcRaceParam2(srcUser, targetUser, params, damageParam, logger)
  local bossparam = CommonFun.CalcBossParam(srcUser, targetUser, params, damageParam, logger)
  local bossparam2 = CommonFun.CalcBossParam2(srcUser, targetUser, params, damageParam, logger)
  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 damChangePer = damageParam.damChangePer
  local BaseMAtk = Int + math.floor(Int * Int / 100)
  local MAtkFinal = ((MAtk - BaseMAtk) * (1 + MAtkPer) + BaseMAtk) * raceparam * bossparam * bossparam2
  local MDefReduc = CommonFun.CalcMDef(srcUser, targetUser)
  local Ghost = 1
  local skilllv_qn = srcUser:GetLernedSkillLevel(3110_WHITESMITH:STRONG_WILL_TRANSMISSION)
  if srcUser:HasBuffID(125130_STRONG_WILL_TRANSMISSION_:MAX_STACK_0) then
    Ghost = 1 + skilllv_qn * 0.06
  end
  local DamageRatio = 1
  if srcUser:HasBuffID(80001090_MARIONETTE_CARD_DEPOSITE_:MAX_STACK_0) then
    DamageRatio = 1.1
  end
  local Num1 = srcUser:GetRunePoint(23030_AESIR_NAPALM_VULCAN_DAMAGE_5)
  local RuneDamage2 = Num1 * 0.05 + 1
  local A = ((MAtkFinal * MDefReduc * (1 - MDamReduc2) + MRefine) * (1 - RefineMDamReduc) * damChangePer * (1 + MDamIncrease) * CommonFun.calcMagicElement(srcUser, targetUser, params, damageParam) * elementparam2 - Vit2 / 2 * (1 + VitPer2) - Int2 * (1 + IntPer2)) * DamageRatio * RuneDamage2 * Ghost
  if A <= 1 then
    return 1
  end
  if CommonFun.IsInRate(RuneRate, srcUser:GetRandom()) then
    return A * RuneDamage, CommonFun.DamageType.Crit
  end
  return A
end

Self

{
  "id": 116834,
  "BuffDesc": "Thought DMG Increase",
  "BuffIcon": "skillbuff_commonbuff",
  "BuffName": "Thought Element",
  "BuffRate": {
    "Odds": {
      "type": 7160
    }
  },
  "BuffType": {
    "isgain": 1,
    "isdisperse": 1
  },
  "IconType": 1,
  "BuffEffect": {
    "type": "AttrChange",
    "GhostAtk": {
      "a": 0,
      "b": 0,
      "c": 21161,
      "type": 5020
    }
  },
  "BuffStateID": 116834
}

Enemy

{
  "id": 85190,
  "BuffDesc": "Curse: Decrease Atk, Move Speed, Luck",
  "BuffIcon": "skillbuff_94001",
  "BuffName": "Napalm Vulcan [Curse]",
  "BuffRate": {
    "Odds": {
      "a": 3,
      "b": 0,
      "type": 180
    }
  },
  "BuffType": {
    "isgain": 0,
    "isdisperse": 1
  },
  "IconType": 1,
  "BuffEffect": {
    "Luk": -10,
    "type": "StatusChange",
    "AtkPer": -0.25,
    "MoveSpdPer": -0.5,
    "StateEffect": "11_Curse"
  }
}

Formula

{
  "id": 94010,
  "Buff": {
    "self": [
      116834
    ],
    "enemy": [
      85190
    ]
  },
  "Cost": 1,
  "Desc": [
    {
      "id": 94000,
      "params": [
        600,
        30
      ]
    }
  ],
  "Icon": "skill_94001",
  "Camps": "Enemy",
  "Level": 10,
  "Logic": "SkillLockedTarget",
  "Damage": [
    {
      "type": 37,
      "damChangePer": 6,
      "elementparam": 8
    }
  ],
  "DescId": "##170296",
  "NameZh": "##169483",
  "DamTime": {
    "type": 1,
    "value": 5
  },
  "DelayCD": 1,
  "Fire_EP": 3,
  "SE_cast": "Skill/Magic_cast",
  "Pvp_buff": {
    "self": [
      116834
    ],
    "enemy": [
      85190
    ]
  },
  "RollType": 2,
  "AttackAct": [
    "use_magic"
  ],
  "Attack_EP": 2,
  "Lead_Type": {
    "CCT": 0.2,
    "FCT": 1,
    "type": 2
  },
  "SE_attack": "Skill/skill_magic_psycho_attack_01",
  "SkillCost": {
    "sp": 70
  },
  "SkillType": "Attack",
  "Target_EP": 2,
  "DamageType": 2,
  "Launch_Range": 6
}