From b6f3c040d5edfd0f86d4a4f468841801fc4ee46f Mon Sep 17 00:00:00 2001 From: CarnifexOptimus Date: Sun, 11 Feb 2024 05:58:10 +0100 Subject: [PATCH] Ker update --- BossMod/Modules/Endwalker/HuntS/Ker.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/BossMod/Modules/Endwalker/HuntS/Ker.cs b/BossMod/Modules/Endwalker/HuntS/Ker.cs index 9850b4b4e0..8394dc413f 100644 --- a/BossMod/Modules/Endwalker/HuntS/Ker.cs +++ b/BossMod/Modules/Endwalker/HuntS/Ker.cs @@ -25,9 +25,9 @@ public enum AID : uint AncientFlare = 27704, // Boss->self, 6.0s cast, range 40 circle, applies pyretic AncientFlare2 = 27638, // Boss->self, 6.0s cast, range 40 circle, applies pyretic WhispersManifest = 27706, // Boss->self, 6,0s cast, range 40 circle, applies pyretc (remembered skill from Whispered Incantation) - AncientHoly = 27646, // Boss->self, 6,0s cast, range 40 circle, circle with dmg fall off, harmless after roundabout range 20 - AncientHoly2 = 27639, // Boss->self, 6,0s cast, range 40 circle, circle with dmg fall off, harmless after roundabout range 20 - WhispersManifest2 = 27653, // Boss->self, 6,0s cast, range 40 circle (Ancient Holy? to be verified) + AncientHoly = 27646, // Boss->self, 6,0s cast, range 40 circle, circle with dmg fall off, harmless after ca. range 20 (it is hard to say because people accumulate vuln stacks which skews the damage fall off with distance from source) + AncientHoly2 = 27639, // Boss->self, 6,0s cast, range 40 circle, circle with dmg fall off, harmless after around range 20 + WhispersManifest2 = 27653, // Boss->self, 6,0s cast, range 40 circle, circle with dmg fall off, harmless after around range 20 MirroredIncantation = 27927, // Boss->self, 3,0s cast, single-target, mirrors the next 3 interments MirroredIncantation2 = 27928, // Boss->self, 3,0s cast, single-target, mirrors the next 4 interments Mirrored_RightInterment = 27663, // Boss->self, 6,0s cast, range 40 180-degree cone @@ -219,13 +219,13 @@ class AncientHoly : Components.SelfTargetedAOEs { public AncientHoly() : base(ActionID.MakeSpell(AID.AncientHoly), new AOEShapeCircle(20)) { } } - class AncientHoly2 : Components.SelfTargetedAOEs + class AncientHoly2 : Components.SelfTargetedAOEs { public AncientHoly2() : base(ActionID.MakeSpell(AID.AncientHoly2), new AOEShapeCircle(20)) { } } class AncientHolyWhispersManifest : Components.SelfTargetedAOEs { - public AncientHolyWhispersManifest() : base(ActionID.MakeSpell(AID.WhispersManifest2), new AOEShapeCircle(40)) { } //this can hit for over 100k, I will make it the maximum range until I know what exactly it is based on + public AncientHolyWhispersManifest() : base(ActionID.MakeSpell(AID.WhispersManifest2), new AOEShapeCircle(20)) { } } // TODO: wicked swipe, check if there are even more skills missing class KerStates : StateMachineBuilder