
Battle Chant
Lvl: 15
Buff
Skill Delay: 1 sec
SP: 79
Range: 9
Sing a hymn to negate dark and asleep for all teammates, and restore 25*(100+VIT) HP every 2s for 25s (the effect quadruples during PvP and GvG).
Lvl: 14
Buff
Skill Delay: 1 sec
SP: 75
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 24*(100+VIT) HP every 2s for 24s (the effect quadruples during PvP and GvG).
Lvl: 13
Buff
Skill Delay: 1 sec
SP: 71
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 23*(100+VIT) HP every 2s for 23s (the effect quadruples during PvP and GvG).
Lvl: 12
Buff
Skill Delay: 1 sec
SP: 67
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 22*(100+VIT) HP every 2s for 22s (the effect quadruples during PvP and GvG).
Lvl: 11
Buff
Skill Delay: 1 sec
SP: 63
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 21*(100+VIT) HP every 2s for 21s (the effect quadruples during PvP and GvG).
Lvl: 10
Buff
Skill Delay: 1 sec
SP: 59
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 20*(100+VIT) HP every 2s for 20s (the effect quadruples during PvP and GvG).
Lvl: 9
Buff
Skill Delay: 1 sec
SP: 56
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 18*(100+VIT) HP every 2s for 19s (the effect quadruples during PvP and GvG).
Lvl: 8
Buff
Skill Delay: 1 sec
SP: 53
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 16*(100+VIT) HP every 2s for 18s (the effect quadruples during PvP and GvG).
Lvl: 7
Buff
Skill Delay: 1 sec
SP: 50
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 14*(100+VIT) HP every 2s for 17s (the effect quadruples during PvP and GvG).
Lvl: 6
Buff
Skill Delay: 1 sec
SP: 47
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 12*(100+VIT) HP every 2s for 16s (the effect quadruples during PvP and GvG).
Lvl: 5
Buff
Skill Delay: 1 sec
SP: 44
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 10*(100+VIT) HP every 2s for 15s (the effect quadruples during PvP and GvG).
Lvl: 4
Buff
Skill Delay: 1 sec
SP: 41
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 8*(100+VIT) HP every 2s for 14s (the effect quadruples during PvP and GvG).
Lvl: 3
Buff
Skill Delay: 1 sec
SP: 38
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 6*(100+VIT) HP every 2s for 13s (the effect quadruples during PvP and GvG).
Lvl: 2
Buff
Skill Delay: 1 sec
SP: 35
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 4*(100+VIT) HP every 2s for 12s (the effect quadruples during PvP and GvG).
Lvl: 1
Buff
Skill Delay: 1 sec
SP: 32
Range: 9
• Sing a hymn to negate dark and asleep for all teammates, and restore 2*(100+VIT) HP every 2s for 11s (the effect quadruples during PvP and GvG).
Aesir
• Battle Chant - Cure [Battle Chant] healing over time + 10%
Self 3080
function CommonFun.calcBuff_3080(srcUser, targetUser, a, b, c, d, lv)
if srcUser == nil or targetUser == nil then
return 0
end
local skilllv_1 = srcUser:GetLernedSkillLevel(1185_THIEF:BATTLE_CHANT)
local Vit = srcUser:GetProperty("Vit")
local Num = srcUser:GetRunePoint(74070_AESIR_BATTLE_CHANT_HEALING_OVER_TIME_10)
local BeHealEncPer2 = targetUser:GetProperty("BeHealEncPer")
local HealEncPer = srcUser:GetProperty("HealEncPer")
local A = 0
local RefineLv = srcUser:GetEquipedRefineLv(1)
local Angel = 1
if srcUser:HasBuffID(90001817_SACRED_MISSION_R8_:MAX_STACK_0) then
Angel = 1 + RefineLv / 100 * 2
end
local equipRing = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_EQUIP, CommonFun.EquipPos.EEQUIPPOS_SHIELD)
if equipRing.id == 42579 or equipRing.id == 142579 then
Angel = 1 + equipRing.refinelv / 100 * 2
end
local equipRingSD = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_SHADOWEQUIP, CommonFun.EquipPos.EEQUIPPOS_SHIELD)
if equipRingSD.id == 42579 or equipRingSD.id == 142579 then
Angel = 1 + equipRingSD.refinelv / 100 * 2 * equipRingSD.quench_per / 100
end
if srcUser:HasBuffID(90004204_SAINTLY_GLAIVE_1_T5_:MAX_STACK_0) then
Angel = Angel + 0.15
end
if 0 < skilllv_1 and skilllv_1 <= 10 then
A = skilllv_1 * 2 * (100 + Vit) * (1 + HealEncPer) * (1 + BeHealEncPer2) * (1 + Num / 10) * Angel
elseif 10 < skilllv_1 then
A = (20 + skilllv_1) * (100 + Vit) * (1 + HealEncPer) * (1 + BeHealEncPer2) * (1 + Num / 10) * Angel
end
local GemValue = srcUser:GetGemValue(72061_BATTLE_CHANT_RECOVERY_EFFECT_PERCENTAGE)
A = A * (1 + GemValue / 100000)
local mapid, maptype = srcUser:GetMapInfo()
if maptype == PVP_MAPS then
A = A * 4
end
if targetUser:HasBuffID(41100050_HEALING_RECEIVED_:MAX_STACK_0) then
local MaxHp = targetUser:GetProperty("MaxHp")
local Hp = targetUser:GetProperty("Hp")
local Num1 = targetUser:GetBuffLayer(41100050_HEALING_RECEIVED_:MAX_STACK_0)
if Hp < MaxHp * (0.15 * Num1) then
A = A * 3
end
end
return A
end
Team 3080
function CommonFun.calcBuff_3080(srcUser, targetUser, a, b, c, d, lv)
if srcUser == nil or targetUser == nil then
return 0
end
local skilllv_1 = srcUser:GetLernedSkillLevel(1185_THIEF:BATTLE_CHANT)
local Vit = srcUser:GetProperty("Vit")
local Num = srcUser:GetRunePoint(74070_AESIR_BATTLE_CHANT_HEALING_OVER_TIME_10)
local BeHealEncPer2 = targetUser:GetProperty("BeHealEncPer")
local HealEncPer = srcUser:GetProperty("HealEncPer")
local A = 0
local RefineLv = srcUser:GetEquipedRefineLv(1)
local Angel = 1
if srcUser:HasBuffID(90001817_SACRED_MISSION_R8_:MAX_STACK_0) then
Angel = 1 + RefineLv / 100 * 2
end
local equipRing = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_EQUIP, CommonFun.EquipPos.EEQUIPPOS_SHIELD)
if equipRing.id == 42579 or equipRing.id == 142579 then
Angel = 1 + equipRing.refinelv / 100 * 2
end
local equipRingSD = srcUser:getEquip(CommonFun.PackType.EPACKTYPE_SHADOWEQUIP, CommonFun.EquipPos.EEQUIPPOS_SHIELD)
if equipRingSD.id == 42579 or equipRingSD.id == 142579 then
Angel = 1 + equipRingSD.refinelv / 100 * 2 * equipRingSD.quench_per / 100
end
if srcUser:HasBuffID(90004204_SAINTLY_GLAIVE_1_T5_:MAX_STACK_0) then
Angel = Angel + 0.15
end
if 0 < skilllv_1 and skilllv_1 <= 10 then
A = skilllv_1 * 2 * (100 + Vit) * (1 + HealEncPer) * (1 + BeHealEncPer2) * (1 + Num / 10) * Angel
elseif 10 < skilllv_1 then
A = (20 + skilllv_1) * (100 + Vit) * (1 + HealEncPer) * (1 + BeHealEncPer2) * (1 + Num / 10) * Angel
end
local GemValue = srcUser:GetGemValue(72061_BATTLE_CHANT_RECOVERY_EFFECT_PERCENTAGE)
A = A * (1 + GemValue / 100000)
local mapid, maptype = srcUser:GetMapInfo()
if maptype == PVP_MAPS then
A = A * 4
end
if targetUser:HasBuffID(41100050_HEALING_RECEIVED_:MAX_STACK_0) then
local MaxHp = targetUser:GetProperty("MaxHp")
local Hp = targetUser:GetProperty("Hp")
local Num1 = targetUser:GetBuffLayer(41100050_HEALING_RECEIVED_:MAX_STACK_0)
if Hp < MaxHp * (0.15 * Num1) then
A = A * 3
end
end
return A
end
Self
{
"id": 116650,
"BuffDesc": "Immune to Sleep and Darkness. Regenerates HP over time",
"BuffIcon": "skillbuff_1185001",
"BuffName": "Battle Chant",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "ImmuneStatus",
"status": [
7,
12
],
"BeHealEncPer": {
"a": 0,
"b": 0,
"c": 72062,
"type": 5020
}
},
"BuffStateID": 116650
}
Self
{
"id": 116651,
"BuffName": "Battle Chant",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"BuffEffect": {
"Hp": {
"type": 3080
},
"type": "HSPChange",
"calc_heal": 1
}
}
Team
{
"id": 116650,
"BuffDesc": "Immune to Sleep and Darkness. Regenerates HP over time",
"BuffIcon": "skillbuff_1185001",
"BuffName": "Battle Chant",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"IconType": 1,
"BuffEffect": {
"type": "ImmuneStatus",
"status": [
7,
12
],
"BeHealEncPer": {
"a": 0,
"b": 0,
"c": 72062,
"type": 5020
}
},
"BuffStateID": 116650
}
Team
{
"id": 116651,
"BuffName": "Battle Chant",
"BuffRate": {
"Odds": 100
},
"BuffType": {
"isgain": 1,
"isdisperse": 1
},
"BuffEffect": {
"Hp": {
"type": 3080
},
"type": "HSPChange",
"calc_heal": 1
}
}
Formula
{
"id": 1185015,
"Buff": {
"self": [
116650,
116651
],
"team": [
116650,
116651
]
},
"Cost": 1,
"Desc": [
{
"id": 1185000,
"params": [
25,
25
]
}
],
"Icon": "skill_1185001",
"Camps": "Friend",
"Level": 15,
"Logic": "SkillNone",
"DescId": "##3361686",
"NameZh": "##158786",
"DelayCD": 1,
"Fire_EP": 2,
"Pvp_buff": {
"self": [
116650,
116651
],
"team": [
116650,
116651
]
},
"AttackAct": [
"use_skill"
],
"Attack_EP": 3,
"SE_attack": "Skill/Saint_attack",
"SkillCost": {
"sp": 79
},
"SkillType": "Buff",
"Target_EP": 3,
"Logic_Param": {
"team_range": 9,
"include_self": 1,
"select_target": 1
},
"Launch_Range": 9,
"AutoCondition": [
{
"time": 20,
"type": 1,
"no_target": 1
},
{
"type": 7,
"no_target": 1
}
],
"NoTargetAutoCast": 1
}