[Class spell] Prayer of healing cast trigger

This commit is contained in:
Yunfan Li
2024-06-10 18:46:46 +08:00
parent 6b29180340
commit bbbcfb4594
2 changed files with 7 additions and 5 deletions

View File

@@ -36,12 +36,13 @@ void HealPriestStrategy::InitTriggers(std::vector<TriggerNode*>& triggers)
NextAction::array(0,
new NextAction("circle of healing", ACTION_MEDIUM_HEAL + 8),
new NextAction("power word: shield on almost full health below", ACTION_MEDIUM_HEAL + 7),
new NextAction("prayer of healing on party", ACTION_MEDIUM_HEAL + 6),
NULL)));
triggers.push_back(new TriggerNode(
"medium group heal occasion",
NextAction::array(0, new NextAction("divine hymn", ACTION_CRITICAL_HEAL + 5), NULL)));
NextAction::array(0,
new NextAction("prayer of healing on party", ACTION_CRITICAL_HEAL + 6),
new NextAction("divine hymn", ACTION_CRITICAL_HEAL + 5), nullptr)));
triggers.push_back(new TriggerNode(
"party member critical health",

View File

@@ -61,12 +61,13 @@ void HolyHealPriestStrategy::InitTriggers(std::vector<TriggerNode*>& triggers)
"group heal occasion",
NextAction::array(0,
new NextAction("circle of healing", ACTION_MEDIUM_HEAL + 8),
new NextAction("prayer of healing on party", ACTION_MEDIUM_HEAL + 6),
NULL)));
triggers.push_back(new TriggerNode(
"medium group heal occasion",
NextAction::array(0, new NextAction("divine hymn", ACTION_CRITICAL_HEAL + 5), NULL)));
NextAction::array(0,
new NextAction("prayer of healing on party", ACTION_CRITICAL_HEAL + 6),
new NextAction("divine hymn", ACTION_CRITICAL_HEAL + 5), nullptr)));
triggers.push_back(new TriggerNode(
"party member critical health",