Skip to content

Commit

Permalink
pet peeve of mine
Browse files Browse the repository at this point in the history
  • Loading branch information
xanunderscore committed Nov 5, 2024
1 parent f9843ca commit aa1d5e6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -403,10 +403,10 @@ private void RuinForetold(uint id, float delay)
{
Cast(id, AID.RuinForetold, delay, 5, "Raidwide")
.SetHint(StateMachine.StateHint.Raidwide);
Targetable(id + 0x10, false, 0.9f, "Boss disappears");
Targetable(id + 0x10, false, 0.9f, "Boss disappears")
.ClearHint(StateMachine.StateHint.DowntimeStart); // downtime is like <1s
ComponentCondition<Beacons>(id + 0x11, 1.0f, comp => comp.ActiveActors.Any(), "Adds appear")
.ActivateOnEnter<Beacons>()
.SetHint(StateMachine.StateHint.DowntimeEnd);
.ActivateOnEnter<Beacons>();
Targetable(id + 0x100, true, 50, "Adds enrage") // boss becomes targetable immediately when last adds becomes untargetable
.ActivateOnEnter<CalamitousCry>() // 7.2s, then every 6s
.ActivateOnEnter<CalamitousEcho>() // 7.2s, then every 6s
Expand Down

0 comments on commit aa1d5e6

Please sign in to comment.