
Divine Verdict
Lvl: 10
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*3350% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 9
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*3120% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 8
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*2890% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 7
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*2660% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 6
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*2430% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 5
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*2200% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 4
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*1970% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 3
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*1740% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 2
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*1510% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Lvl: 1
Attack
Physical
CD: 5 sec
Skill Delay: 1 sec
Range: 9
• Rathgricy consumes an Angel Snow Feather and leaps towards the target location after 1s, sweeping the battlefield with her weapon and dealing (P.ATK+M.ATK)*1280% as P.DMG to enemies in a 4m radius. This attack causes knock back and prevents enemies from attacking for 1s. (Works only once on the same target every 5s.)
Formula
function CommonFun.calcDamage_66501(srcUser, targetUser, params, damageParam, logger)
local Str = srcUser:GetProperty("Str")
local Vit = srcUser:GetProperty("Vit")
local Dex = srcUser:GetProperty("Dex")
local Luk = srcUser:GetProperty("Luk")
local Int = srcUser:GetProperty("Int")
local Atk = srcUser:GetProperty("Atk")
local AtkPer = srcUser:GetProperty("AtkPer")
local MAtk = srcUser:GetProperty("MAtk")
local MAtkPer = srcUser:GetProperty("MAtkPer")
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 MRefine = srcUser:GetProperty("MRefine")
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 BaseMAtk = Int + math.floor(Int * Int / 100)
local MAtkFinal = ((MAtk - BaseMAtk) * (1 + MAtkPer) * elementparam * elementparam2 + BaseMAtk) * raceparam * bossparam * bossparam2
local DefReduc = CommonFun.CalcDef(srcUser, targetUser)
local ShortRangeDamReduc2 = targetUser:GetProperty("ShortRangeDamReduc")
local MoveSpd = srcUser:GetProperty("MoveSpd")
local GemValue = srcUser:GetGemValue(206101_WHEN_MOVE_SPD_IS_OVER_200_THE_DMG_OF_BLADE_OF_ORDER_PERCENTAGE)
local skillID, skillLevel = CommonFun.UnmergeSkillID(params.skillIDAndLevel)
if skillID == 2672_ARCHBISHOP:BLADE_OF_ORDER and 2 < MoveSpd then
damChangePer = damChangePer * (1 + GemValue / 100000)
end
if skillID == 2679_ARCHBISHOP:SPIRIT_SUMMONING then
local skilllv_cz = srcUser:GetLernedSkillLevel(2673_ARCHBISHOP:DIVINE_VERDICT)
damChangePer = (10.5 + 2.3 * skilllv_cz) * 1.5
end
if skillID == 2684_ARCHBISHOP:BLADE_OF_ORDER then
local skilllv_yr = srcUser:GetLernedSkillLevel(2672_ARCHBISHOP:BLADE_OF_ORDER)
local skilllv_cj = srcUser:GetLernedSkillLevel(2680_ARCHBISHOP:RETRIBUTION_OF_ORDER)
damChangePer = (4 + 1.1 * skilllv_yr) * (3 + skilllv_cj)
if 2 < MoveSpd then
damChangePer = damChangePer * (1 + GemValue / 100000)
end
end
local A = ((AtkFinal + MAtkFinal) * DefReduc * (1 - DamReduc2) + Refine + MRefine) * damChangePer * (1 - RefineDamReduc) * (1 + DamIncrease - ShortRangeDamReduc2) - Vit2 * (1 + VitPer2)
if A <= 1 then
return 1
end
return A
end
Enemy
{
"id": 137401,
"BuffName": "Breakthrough (Cannot attack)",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 0,
"isdisperse": 1
},
"BuffEffect": {
"type": "AttrChange",
"NoPhySkill": 1,
"NoMagicSkill": 1
},
"BuffStateID": 156201
}
Formula
{
"CD": 5,
"id": 2673010,
"Buff": {
"enemy": [
137401
]
},
"Cost": 1,
"Desc": [
{
"id": 2673000,
"params": [
3350
]
}
],
"Icon": "skill_2673001",
"Camps": "Enemy",
"Level": 10,
"Logic": "SkillPointRange",
"Damage": [
{
"type": 66501,
"damChangePer": 33.5
}
],
"DescId": "##3444767",
"NameZh": "##2818629",
"SE_hit": "Skill/sfx_hero_lasgrace_ featherknife_hit_01",
"CastAct": "skill_ready",
"DamTime": {
"type": 1,
"value": 3
},
"DelayCD": 1,
"Fire_EP": 3,
"SE_cast": "Skill/sfx_hero_lasgrace_judgerush_cast_01",
"Pvp_buff": {
"enemy": [
137401
]
},
"RollType": 1,
"AttackAct": [
"use_skill2"
],
"Attack_EP": 2,
"Lead_Type": {
"type": 1,
"ReadyTime": 1
},
"SE_attack": "Skill/sfx_hero_lasgrace_judgerush_attack_01",
"SkillType": "Attack",
"Target_EP": 3,
"DamageType": 1,
"HitEffects": [
{
"type": 1,
"speed": 10,
"distance": 1,
"direction": "back"
}
],
"E_Attack_On": 1,
"Logic_Param": {
"count": 1,
"range": 4,
"noChant": 1,
"interval": 1,
"pre_cast": {
"type": 2,
"jumpSpd": 20,
"castAction": "skill_ready_lasgrace",
"cast_end_effect": "Skill/sfx_lasgrace_cz_atk_03_prf"
},
"no_select": 1,
"chant_buff": [
120068,
137403
],
"pre_attack": {
"type": 4,
"action": "attack",
"effect": "sfx_lasgrace_cz_bullet_prf",
"hidebody": 1,
"no_track": 1,
"initSpeed": 60,
"speedLimit": 90,
"extraEffect": "Skill/sfx_lasgrace_cz_atk_05_prf",
"acceleration": 20,
"attack_end_action": "use_skill2_lasgrace",
"attack_end_effect": "sfx_lasgrace_cz_atk_04_prf"
},
"isCountTrap": 1,
"noBetterFight": 1,
"noReadingEffect": 1,
"trust_client_name": 1,
"fieldarea_cannot_immune": 1
},
"Launch_Range": 9,
"PreCondition": [
{
"id": 137392,
"type": 6
}
],
"AttackEffects": [
{
"type": 1,
"speed": 90,
"pointSprint": 1
}
],
"StrengthenCost": [
{
"id": 137392,
"num": 1,
"type": 2
}
]
}