
Sacrifice
Lvl: 15
Buff
Skill Delay: 1 sec
SP: 90
Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*300%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 14
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*270%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 13
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*240%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 12
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*210%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 11
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*180%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 10
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*150%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 9
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*120%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 8
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*90%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 7
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*60%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 6
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters a sacrifice mode, for the next 5 auto attacks, Caster spends 9%% of Max HP to deal Netural Damage: (9%% Max HP×1.4 + (Atk +Refine Atk)*30%) to a single target. The effect lasts 90 seconds. This damage ignore target's Flee and defense.
Lvl: 5
Buff
Skill Delay: 1 sec
SP: 90
• Caster enters Sacrifice status to deal (9%% Max HP×1.4) forced lane damage at the cost of 9% max HP with the next 5 auto attacks. Lasts 90 sec. The attack ignores Fleeand defense
Lvl: 4
Buff
Skill Delay: 1 sec
SP: 80
• Caster enters Sacrifice status to deal (9%% Max HP×1.3) forced lane damage at the cost of 9% max HP with the next 5 auto attacks. Lasts 90 sec. The attack ignores Fleeand defense
Lvl: 3
Buff
Skill Delay: 1 sec
SP: 70
• Caster enters Sacrifice status to deal (9%% Max HP×1.2) forced lane damage at the cost of 9% max HP with the next 5 auto attacks. Lasts 90 sec. The attack ignores Fleeand defense
Lvl: 2
Buff
Skill Delay: 1 sec
SP: 60
• Caster enters Sacrifice status to deal (9%% Max HP×1.1) forced lane damage at the cost of 9% max HP with the next 5 auto attacks. Lasts 90 sec. The attack ignores Fleeand defense
Lvl: 1
Buff
Skill Delay: 1 sec
SP: 50
• Caster enters Sacrifice status to deal (9%% Max HP×1) forced lane damage at the cost of 9% max HP with the next 5 auto attacks. Lasts 90 sec. The attack ignores Fleeand defense
Aesir
• Sacrifice - Strong [Sacrifice] attacks +1 times
Self 2090
function CommonFun.calcBuff_2090(srcUser, targetUser, a, b, c, d, lv)
if srcUser == nil or targetUser == nil then
return 0
end
local MaxHp = srcUser:GetProperty("MaxHp")
local mapid, maptype = srcUser:GetMapInfo()
local pvpRatio = 1
if maptype == PVP_MAPS then
pvpRatio = 0.25
end
local A = -MaxHp * 0.09 * pvpRatio
if srcUser:HasBuffID(90001093_HOLY_AVENGER_1_R4_:MAX_STACK_0) or srcUser:HasBuffID(41732_HEAVEN_S_WRATH_:MAX_STACK_0) then
A = -MaxHp * 0.07 * pvpRatio
end
local HolyAtk = srcUser:GetProperty("HolyAtk")
if srcUser:HasBuffID(22900_APOCALYPSE_SPEAR_:MAX_STACK_0) then
A = -MaxHp * (0.09 - math.max(math.min(HolyAtk / 10, 0.06), 0)) * pvpRatio
end
return A
end
Self 7180
function CommonFun.calcBuff_7180(srcUser, targetUser, a, b, c, d, lv, damage)
if srcUser == nil or targetUser == nil then
return 0
end
local GemValue = srcUser:GetGemValue(72162_LIFE_RISKING_ATTACK_HP_SUCKING_PERCENTAGE_WHILE_LAUNCHING_AN_AUTO_ATTACK)
local A = damage * GemValue / 100000
return A
end
Self
{
"id": 115090,
"BuffDesc": "Sacrifice",
"BuffIcon": "skillbuff_361001",
"BuffName": "Sacrifice",
"BuffRate": {
"Odds": {
"a": 0,
"b": 100,
"c": 73010,
"d": -100,
"type": 3250
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"Condition": {
"type": "Attack",
"hp_more": 0.09,
"normal_skill": 1
},
"BuffEffect": {
"Hp": {
"type": 2090
},
"type": "HSPChange",
"end_del_buff": [
115092,
115093,
115094,
115096
]
},
"BuffStateID": 115090
}
Self
{
"id": 115091,
"BuffDesc": "Sacrifice",
"BuffIcon": "skillbuff_361001",
"BuffName": "Sacrifice",
"BuffRate": {
"Odds": {
"a": 0,
"b": 0,
"c": 73010,
"d": 100,
"type": 3250
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"Condition": {
"type": "Attack",
"hp_more": 0.09,
"normal_skill": 1
},
"BuffEffect": {
"Hp": {
"type": 2090
},
"type": "HSPChange",
"end_del_buff": [
115092,
115093,
115094,
115096
]
},
"BuffStateID": 115090
}
Self
{
"id": 115092,
"BuffName": "Sacrifice (Rune)",
"BuffRate": {
"Odds": {
"a": 0,
"b": 100,
"c": 73010,
"d": -100,
"type": 3250
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"Condition": {
"type": "HasBuff",
"buffid": [
115090
]
},
"BuffEffect": {
"type": "AttrChange",
"SkillASPD": {
"a": 0,
"b": 0,
"c": 72012,
"type": 5020
},
"MoveSpdPer": {
"a": 0,
"b": 0,
"c": 72011,
"type": 5020
}
}
}
Self
{
"id": 115093,
"BuffName": "Sacrifice (Rune)",
"BuffRate": {
"Odds": {
"a": 0,
"b": 0,
"c": 73010,
"d": 100,
"type": 3250
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"Condition": {
"type": "HasBuff",
"buffid": [
115091
]
},
"BuffEffect": {
"type": "AttrChange",
"SkillASPD": {
"a": 0,
"b": 0,
"c": 72012,
"type": 5020
},
"MoveSpdPer": {
"a": 0,
"b": 0,
"c": 72011,
"type": 5020
}
}
}
Self
{
"id": 115094,
"BuffName": "6030",
"BuffRate": {
"Odds": {
"a": 72162,
"type": 5000
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"Condition": {
"type": "Attack",
"hp_more": 0.09,
"normal_skill": 1
},
"BuffEffect": {
"id": [
115095
],
"type": "AddBuff"
}
}
Self
{
"id": 115095,
"BuffName": "6030",
"BuffRate": {
"Odds": 100
},
"BuffEffect": {
"Hp": {
"type": 7180
},
"type": "HSPChange",
"IsVampiric": 1
}
}
Self
{
"id": 115096,
"BuffDesc": "6032",
"BuffIcon": "skillbuff_361001",
"BuffName": "6031",
"BuffRate": {
"Odds": {
"a": 0,
"b": 100,
"c": 22000220,
"type": 5040
}
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"Condition": {
"type": "Attack",
"hp_more": 0.09,
"normal_skill": 1,
"must_have_damage": 1
},
"BuffEffect": {
"id": [
115097
],
"type": "AddBuff"
}
}
Self
{
"id": 115097,
"BuffName": "6031",
"BuffRate": {
"Odds": {
"a": 0,
"b": 60,
"type": 7530
}
},
"BuffEffect": {
"type": "BeTaunt",
"NoSkill": 1
},
"BuffStateID": 80031
}
Formula
{
"id": 361015,
"Buff": {
"self": [
115090,
115091,
115092,
115093,
115094,
115096
]
},
"Cost": 1,
"Desc": [
{
"id": 361001,
"params": [
1.4,
300
]
}
],
"Icon": "skill_361001",
"Camps": "Friend",
"Level": 15,
"Logic": "SkillNone",
"DescId": "##170585",
"NameZh": "##158901",
"DelayCD": 1,
"Fire_EP": 0,
"Pvp_buff": {
"self": [
115090,
115091,
115092,
115093,
115094,
115096
]
},
"AttackAct": [
"attack"
],
"Attack_EP": 3,
"PeakLevel": 10,
"SE_attack": "Skill/skill_weapon_lance_sacrifice_attack",
"SkillCost": {
"sp": 90
},
"SkillType": "Buff",
"Target_EP": 3,
"DamageType": 1,
"Launch_Range": 0,
"AutoCondition": [
{
"time": 10,
"type": 1,
"no_target": 1
},
{
"type": 8,
"no_target": 1
}
]
}