
Emerald Heart
When you use the same job skill consecutively, reduces the skill's cooldown by 50%; when you follow one job skill with a different job skill, you restore 10% of your Max HP.
Skill Levels
• When you use the same job skill consecutively, reduces the skill's cooldown by 46%; when you follow one job skill with a different job skill, you restore 9% of your Max HP.
• When you use the same job skill consecutively, reduces the skill's cooldown by 42%; when you follow one job skill with a different job skill, you restore 8% of your Max HP.
• When you use the same job skill consecutively, reduces the skill's cooldown by 38%; when you follow one job skill with a different job skill, you restore 7% of your Max HP.
• When you use the same job skill consecutively, reduces the skill's cooldown by 34%; when you follow one job skill with a different job skill, you restore 6% of your Max HP.
• When you use the same job skill consecutively, reduces the skill's cooldown by 30%; when you follow one job skill with a different job skill, you restore 5% of your Max HP.
• When you use the same job skill consecutively, reduces the skill's cooldown by 26%; when you follow one job skill with a different job skill, you restore 4% of your Max HP.
• When you use the same job skill consecutively, reduces the skill's cooldown by 22%; when you follow one job skill with a different job skill, you restore 3% of your Max HP.
• When you use the same job skill consecutively, reduces the skill's cooldown by 18%; when you follow one job skill with a different job skill, you restore 2% of your Max HP.
• When you use the same job skill consecutively, reduces the skill's cooldown by 14%; when you follow one job skill with a different job skill, you restore 1% of your Max HP.
Formula
1function CommonFun.calcBuff_6400(srcUser, targetUser, a, b, c, d, lv)
2 if srcUser == nil or targetUser == nil then
3 return 0
4 end
5 local MaxHp = targetUser:GetProperty("MaxHp")
6 local skilllv = srcUser:GetLernedSkillLevel(a)
7 local A = MaxHp * skilllv * b
8 return A
9end