
Raid
Lvl: 5
Attack
Physical
CD: 5 sec
Skill Delay: 1.5 sec
SP: 32
Range: 1
In a hiding state, Caster deals 300% Dmg to all enemies in range, with a 15% chance to inflict snared, Stunned and Darkness on enemy units. Enemy targets hit by Raid will suffer 15% more damage for the next 5 seconds. Daggers must be equipped to use this skill.
Lvl: 4
Attack
Physical
CD: 5 sec
Skill Delay: 1.5 sec
SP: 29
Range: 1
• In a hiding state, Caster deals 270% Dmg to all enemies in range, with a 13% chance to inflict snared, Stunned and Darkness on enemy units. Enemy targets hit by Raid will suffer 14% more damage for the next 5 seconds. Daggers must be equipped to use this skill.
Lvl: 3
Attack
Physical
CD: 5 sec
Skill Delay: 1.5 sec
SP: 26
Range: 1
• In a hiding state, Caster deals 240% Dmg to all enemies in range, with a 11% chance to inflict snared, Stunned and Darkness on enemy units. Enemy targets hit by Raid will suffer 13% more damage for the next 5 seconds. Daggers must be equipped to use this skill.
Lvl: 2
Attack
Physical
CD: 5 sec
Skill Delay: 1.5 sec
SP: 23
Range: 1
• In a hiding state, Caster deals 210% Dmg to all enemies in range, with a 9% chance to inflict snared, Stunned and Darkness on enemy units. Enemy targets hit by Raid will suffer 12% more damage for the next 5 seconds. Daggers must be equipped to use this skill.
Lvl: 1
Attack
Physical
CD: 5 sec
Skill Delay: 1.5 sec
SP: 20
Range: 1
• In a hiding state, Caster deals 180% Dmg to all enemies in range, with a 7% chance to inflict snared, Stunned and Darkness on enemy units. Enemy targets hit by Raid will suffer 11% more damage for the next 5 seconds. Daggers must be equipped to use this skill.
Aesir
• Raid - Empower Damage of [Raid] +20%
• Raid -Vulnerable Target's damage bearing after attacked by [Raid] +3%
• Raid - Haste [Raid] CD -4 sec, SP cost +100%.
Formula
function CommonFun.calcDamage_9204(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 Hp2 = targetUser:GetProperty("Hp")
local MaxHp2 = targetUser:GetProperty("MaxHp")
local damChangePer = damageParam.damChangePer
local AttrEffect = srcUser:GetProperty("AttrEffect")
local bits = CommonFun.getBits(AttrEffect)
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 A = (AtkFinal * DefReduc * (1 - DamReduc2) + Refine) * damChangePer * (1 - RefineDamReduc) * (1 + DamIncrease - ShortRangeDamReduc2) - Vit2 * (1 + VitPer2)
local skillID, skillLevel = CommonFun.UnmergeSkillID(params.skillIDAndLevel)
if skillID == 481_RUNEMASTER:RAID then
local Num1 = srcUser:GetRunePoint(90060_AESIR_DAMAGE_OF_RAID_20)
local RuneDamage1 = Num1 * 0.2 + 1
A = A * RuneDamage1
end
if skillID == 483_RUNEMASTER:INTIMIDATE then
local Num2 = srcUser:GetRunePoint(90100_AESIR_DAMAGE_OF_INTIMIDATE_10)
local RuneDamage2 = Num2 * 0.1 + 1
A = A * RuneDamage2
end
if skillID == 487_RUNEMASTER:DISABLING_STRIKE and srcUser:HasBuffID(40672_CALDER_DAGGER_1_:MAX_STACK_0) then
A = A * 1.5
end
if A <= 1 then
return 1
end
if bits[CommonFun.AttrEffect.Hualiduanjian] == 1 then
return A * 1.5
end
return A
end
Enemy
{
"id": 106120,
"BuffName": "Raid (Slowing/Stunning)",
"BuffRate": {
"Odds": {
"a": 2,
"b": 5,
"type": 1
}
},
"BuffEffect": {
"id": [
106121,
106122,
106124
],
"Odds": 100,
"type": "AddBuff",
"random": 1
}
}
Enemy
{
"id": 106121,
"BuffName": "Snare effect",
"BuffRate": {
"Odds": {
"a": 0,
"b": 100,
"type": 160
}
},
"BuffType": {
"isgain": 0,
"isdisperse": 1
},
"BuffEffect": {
"type": "StatusChange",
"NoMove": 1,
"StateEffect": "9_NoMove"
},
"BuffStateID": 90020
}
Enemy
{
"id": 106122,
"BuffName": "Stunning Effect",
"BuffRate": {
"Odds": {
"a": 0,
"b": 100,
"type": 130
}
},
"BuffType": {
"isgain": 0,
"isdisperse": 1
},
"BuffEffect": {
"type": "StatusChange",
"NoAct": 1,
"AttrEffect": [
3,
4
],
"StateEffect": "4_Dizzy"
},
"BuffStateID": 80010
}
Enemy
{
"id": 106123,
"BuffName": "Raid (Deep Cut)",
"BuffRate": {
"Odds": 100
},
"BuffEffect": {
"type": "AttrChange",
"RealDamage": {
"type": 2500
}
}
}
Enemy
{
"id": 106124,
"BuffName": "Darkness",
"BuffRate": {
"Odds": {
"a": 0,
"b": 100,
"type": 186
}
},
"BuffType": {
"isgain": 0,
"isdisperse": 1
},
"BuffEffect": {
"type": "StatusChange",
"HitPer": -0.5,
"FleePer": -0.5,
"AttrEffect3": [
17
],
"StateEffect": "12_Dark"
}
}
Formula
{
"CD": 5,
"id": 481005,
"Buff": {
"enemy": [
106120,
106123
]
},
"Cost": 1,
"Desc": [
{
"id": 481000,
"params": [
300,
15,
15
]
}
],
"Icon": "skill_481001",
"Camps": "Enemy",
"Level": 5,
"Logic": "SkillSelfRange",
"Damage": [
{
"type": 9204,
"damChangePer": 3
}
],
"DescId": "##171164",
"NameZh": "##169975",
"SE_hit": "Skill/skill_weapon_hidestab_hit",
"DamTime": {
"type": 1,
"value": 2
},
"DelayCD": 1.5,
"Fire_EP": 3,
"Pvp_buff": {
"enemy": [
106120,
106123
]
},
"RollType": 1,
"AttackAct": [
"use_skill"
],
"Attack_EP": 3,
"SE_attack": "Skill/Bash_Old",
"SkillCost": {
"sp": 32
},
"SkillType": "Attack",
"Target_EP": 3,
"DamageType": 1,
"Logic_Param": {
"range": 3,
"range_num": 8
},
"Launch_Range": 1,
"PreCondition": {
"1": {
"type": 2,
"itemtype": 250
},
"2": {
"type": 4,
"AttrEffect": 17
},
"both": 1
}
}