From c159fae74c4f6d8bf0f86bec73d0eb5d79f7abb7 Mon Sep 17 00:00:00 2001 From: skippi Date: Tue, 30 Aug 2022 22:51:04 -0500 Subject: [PATCH] fix fischl C4 naming convention The attack part of this constellation used the same name as the burst. Added constellation tag for clarity. --- internal/characters/fischl/burst.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/characters/fischl/burst.go b/internal/characters/fischl/burst.go index f6de4a4c3..acd0fff77 100644 --- a/internal/characters/fischl/burst.go +++ b/internal/characters/fischl/burst.go @@ -38,7 +38,7 @@ func (c *char) Burst(p map[string]int) action.ActionInfo { if c.Base.Cons >= 4 { ai := combat.AttackInfo{ ActorIndex: c.Index, - Abil: "Midnight Phantasmagoria", + Abil: "Her Pilgrimage of Bleak (C4)", AttackTag: combat.AttackTagElementalBurst, ICDTag: combat.ICDTagElementalBurst, ICDGroup: combat.ICDGroupFischl, @@ -55,7 +55,7 @@ func (c *char) Burst(p map[string]int) action.ActionInfo { c.Core.Player.Heal(player.HealInfo{ Caller: c.Index, Target: c.Index, - Message: "Her Pilgrimage of Bleak", + Message: "Her Pilgrimage of Bleak (C4)", Src: heal, Bonus: c.Stat(attributes.Heal), })