
Memory of Petals
Lvl: 10
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 40
Range: 3
Cast Time: 2
Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*2160% to all enemies within 4m every 0.5s and reducing their MOV SPD by 60%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 9
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 38
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*2000% to all enemies within 4m every 0.5s and reducing their MOV SPD by 54%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 8
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 36
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*1840% to all enemies within 4m every 0.5s and reducing their MOV SPD by 48%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 7
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 34
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*1680% to all enemies within 4m every 0.5s and reducing their MOV SPD by 42%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 6
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 32
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*1520% to all enemies within 4m every 0.5s and reducing their MOV SPD by 36%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 5
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 30
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*1360% to all enemies within 4m every 0.5s and reducing their MOV SPD by 30%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 4
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 28
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*1200% to all enemies within 4m every 0.5s and reducing their MOV SPD by 24%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 3
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 26
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*1040% to all enemies within 4m every 0.5s and reducing their MOV SPD by 18%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 2
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 24
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*880% to all enemies within 4m every 0.5s and reducing their MOV SPD by 12%. The gale lasts 3s. Up to 3 gales can exist at once.
Lvl: 1
Attack
Physical
CD: 1.5 sec
Skill Delay: 1 sec
SP: 22
Range: 3
Cast Time: 2
• Khalitzburg uses her sword to create a gale beneath herself, dealing P.DMG equal to (P.ATK+M.ATK)*720% to all enemies within 4m every 0.5s and reducing their MOV SPD by 6%. The gale lasts 3s. Up to 3 gales can exist at once.
Formula
function CommonFun.calcDamage_72501(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 Agi = srcUser:GetProperty("Agi")
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 skillID, skillLevel = CommonFun.UnmergeSkillID(params.skillIDAndLevel)
if skillID == 2831_SAINT:WISH_FLOWER then
damChangePer = damChangePer * (1 + math.min(Agi, 300) / 100)
local GemValue = srcUser:GetGemValue(212111_WISH_FLOWER_DEALS_PERCENTAGE_MORE_DMG_TO_ENEMIES_IN_DOOM_OR_OTHERSHORE_DOOM_STATE)
if targetUser:HasBuffID(138701_DOOM_:MAX_STACK_0) or targetUser:HasBuffID(138730_OTHERSHORE_DOOM_:MAX_STACK_0) then
damChangePer = damChangePer * (1 + GemValue / 100000)
end
end
if skillID == 2842_SAINT:FALLING_PETALS then
local skilllv = srcUser:GetLernedSkillLevel(2827_SAINT:MEMORY_OF_PETALS)
damChangePer = 1.6 * skilllv + 5.6
end
local A = ((AtkFinal + MAtkFinal) * DefReduc * (1 - DamReduc2) + Refine + MRefine) * damChangePer * (1 - RefineDamReduc) * (1 + DamIncrease - ShortRangeDamReduc2) - Vit2 * (1 + VitPer2)
if srcUser:HasBuffID(138660_FATAL_RAPIER_:MAX_STACK_0) then
local GemValue = srcUser:GetGemValue(212151_FLOWER_OF_DESPERATION_GRANTS_YOUR_SKILLS_A_PERCENTAGE_CHANCE_TO_LAND_CRITICAL_ATTACKS_THAT_DEAL_200_DMG)
if CommonFun.IsInRate(GemValue / 1000, srcUser:GetRandom()) then
return A * 2, CommonFun.DamageType.Crit
end
end
if A <= 1 then
return 1
end
return A
end
Team
{
"id": 138651,
"BuffName": "Mirror flowers and water moon (teammate)",
"BuffRate": {
"Odds": {
"a": 2834,
"b": 100,
"c": 0,
"type": 8
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"BuffEffect": {
"type": "AttrChange",
"MDamReduc": {
"a": 2834,
"b": 0.03,
"c": 0,
"type": 8
},
"LongRangeDamReduc": {
"a": 2834,
"b": 0.03,
"c": 0,
"type": 8
}
}
}
Team
{
"id": 138653,
"BuffName": "A glimpse of fallen flowers (rune)",
"BuffRate": {
"Odds": {
"a": 212131,
"type": 5000
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"BuffEffect": {
"type": "AttrChange",
"MoveSpdPer": {
"a": 0,
"b": 0,
"c": 212131,
"type": 5020
}
}
}
Enemy
{
"id": 138650,
"BuffName": "A glimpse of fallen flowers (reduced movement speed)",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 0,
"isdisperse": 1
},
"BuffEffect": {
"type": "AttrChange",
"MoveSpdPer": {
"a": 2827,
"b": -0.06,
"c": 0,
"type": 8
}
}
}
Self Skill
{
"id": 138652,
"BuffName": "Mirror flowers and water moon (myself)",
"BuffRate": {
"Odds": {
"a": 2834,
"b": 100,
"c": 0,
"type": 8
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"BuffEffect": {
"type": "AttrChange",
"MDamReduc": {
"a": 2834,
"b": 0.06,
"c": 0,
"type": 8
},
"LongRangeDamReduc": {
"a": 2834,
"b": 0.06,
"c": 0,
"type": 8
}
}
}
Self Skill
{
"id": 138653,
"BuffName": "A glimpse of fallen flowers (rune)",
"BuffRate": {
"Odds": {
"a": 212131,
"type": 5000
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"BuffEffect": {
"type": "AttrChange",
"MoveSpdPer": {
"a": 0,
"b": 0,
"c": 212131,
"type": 5020
}
}
}
Formula
{
"CD": 1.5,
"id": 2827010,
"Buff": {
"team": [
138651,
138653
],
"enemy": [
138650
],
"self_skill": [
138652,
138653
]
},
"Cost": 1,
"Desc": [
{
"id": 2827000,
"params": [
2160,
60
]
}
],
"Icon": "skill_2827001",
"Camps": "Enemy",
"Level": 10,
"Logic": "SkillSelfRange",
"Damage": [
{
"type": 72501,
"damChangePer": 21.6
}
],
"DescId": "##40858938",
"NameZh": "##3464096",
"SE_hit": "Skill/sfx_skill_kalisige_hualuoyuxiang_hit_01",
"CastAct": "reading",
"DamTime": {
"type": 1,
"value": 1
},
"DelayCD": 1,
"Fire_EP": 3,
"Pvp_buff": {
"team": [
138651,
138653
],
"enemy": [
138650
],
"self_skill": [
138652,
138653
]
},
"RollType": 1,
"AttackAct": [
"use_skill"
],
"Attack_EP": 2,
"Lead_Type": {
"CCT": 0,
"FCT": 2,
"type": 2
},
"SE_attack": "Skill/sfx_skill_kalisige_luohuazhuiyi_attack_01",
"SkillCost": {
"sp": 40
},
"SkillType": "Attack",
"Target_EP": 3,
"DamageType": 1,
"Logic_Param": {
"count": 6,
"range": 4,
"interval": 0.5,
"max_count": 3,
"no_select": 1,
"range_num": 12,
"isCountTrap": 1,
"trap_effect": "sfx_callisge_lhjy_floor_prf,LowRange_B",
"com_count_skills": [
2842
]
},
"Launch_Range": 3
}