1
- using Dalamud . Interface . Colors ;
1
+ using Dalamud . Interface . Colors ;
2
2
3
3
namespace RotationSolver . Basic . Rotations . Basic ;
4
4
@@ -128,7 +128,7 @@ protected static bool AttunmentTimeEndAfterGCD(uint gcdCount = 0, float offset =
128
128
private static bool HasSummon => DataCenter . HasPet && SummonTimeEndAfterGCD ( ) ;
129
129
#endregion
130
130
131
- #region PvE Actions Unassignable
131
+ #region PvE Actions Unassignable Status
132
132
133
133
/// <summary>
134
134
///
@@ -457,6 +457,10 @@ static partial void ModifyNecrotizePvE(ref ActionSetting setting)
457
457
static partial void ModifySearingFlashPvE ( ref ActionSetting setting )
458
458
{
459
459
setting . StatusNeed = [ StatusID . RubysGlimmer ] ;
460
+ setting . CreateConfig = ( ) => new ActionConfig ( )
461
+ {
462
+ AoeCount = 1 ,
463
+ } ;
460
464
}
461
465
462
466
static partial void ModifyLuxSolarisPvE ( ref ActionSetting setting )
@@ -474,11 +478,32 @@ static partial void ModifyAstralImpulsePvE(ref ActionSetting setting)
474
478
static partial void ModifyAstralFlarePvE ( ref ActionSetting setting )
475
479
{
476
480
setting . ActionCheck = ( ) => AstralFlarePvEReady ;
481
+ setting . CreateConfig = ( ) => new ActionConfig ( )
482
+ {
483
+ AoeCount = 3 ,
484
+ } ;
477
485
}
478
486
479
487
static partial void ModifyDeathflarePvE ( ref ActionSetting setting )
480
488
{
481
489
setting . ActionCheck = ( ) => InBahamut ;
490
+ setting . CreateConfig = ( ) => new ActionConfig ( )
491
+ {
492
+ AoeCount = 1 ,
493
+ } ;
494
+ }
495
+
496
+ static partial void ModifyWyrmwavePvE ( ref ActionSetting setting )
497
+ {
498
+
499
+ }
500
+
501
+ static partial void ModifyAkhMornPvE ( ref ActionSetting setting )
502
+ {
503
+ setting . CreateConfig = ( ) => new ActionConfig ( )
504
+ {
505
+ AoeCount = 1 ,
506
+ } ;
482
507
}
483
508
484
509
static partial void ModifyRubyRitePvE ( ref ActionSetting setting )
@@ -521,6 +546,24 @@ static partial void ModifyEnkindlePhoenixPvE(ref ActionSetting setting)
521
546
setting . ActionCheck = ( ) => EnkindlePhoenixPvEReady ;
522
547
}
523
548
549
+ static partial void ModifyEverlastingFlightPvE ( ref ActionSetting setting )
550
+ {
551
+
552
+ }
553
+
554
+ static partial void ModifyScarletFlamePvE ( ref ActionSetting setting )
555
+ {
556
+
557
+ }
558
+
559
+ static partial void ModifyRevelationPvE ( ref ActionSetting setting )
560
+ {
561
+ setting . CreateConfig = ( ) => new ActionConfig ( )
562
+ {
563
+ AoeCount = 1 ,
564
+ } ;
565
+ }
566
+
524
567
static partial void ModifyRubyCatastrophePvE ( ref ActionSetting setting )
525
568
{
526
569
setting . ActionCheck = ( ) => RubyCatastrophePvEReady ;
@@ -540,21 +583,37 @@ static partial void ModifyCrimsonCyclonePvE(ref ActionSetting setting)
540
583
{
541
584
setting . StatusProvide = [ StatusID . CrimsonStrikeReady_4403 ] ;
542
585
setting . ActionCheck = ( ) => CrimsonCyclonePvEReady ;
586
+ setting . CreateConfig = ( ) => new ActionConfig ( )
587
+ {
588
+ AoeCount = 1 ,
589
+ } ;
543
590
}
544
591
545
592
static partial void ModifyCrimsonStrikePvE ( ref ActionSetting setting )
546
593
{
547
594
setting . ActionCheck = ( ) => CrimsonStrikePvEReady ;
595
+ setting . CreateConfig = ( ) => new ActionConfig ( )
596
+ {
597
+ AoeCount = 1 ,
598
+ } ;
548
599
}
549
600
550
601
static partial void ModifyMountainBusterPvE ( ref ActionSetting setting )
551
602
{
552
603
setting . ActionCheck = ( ) => MountainBusterPvEReady ;
604
+ setting . CreateConfig = ( ) => new ActionConfig ( )
605
+ {
606
+ AoeCount = 1 ,
607
+ } ;
553
608
}
554
609
555
610
static partial void ModifySlipstreamPvE ( ref ActionSetting setting )
556
611
{
557
612
setting . ActionCheck = ( ) => SlipstreamPvEReady ;
613
+ setting . CreateConfig = ( ) => new ActionConfig ( )
614
+ {
615
+ AoeCount = 1 ,
616
+ } ;
558
617
}
559
618
560
619
static partial void ModifySummonSolarBahamutPvE ( ref ActionSetting setting )
@@ -569,15 +628,42 @@ static partial void ModifyUmbralImpulsePvE(ref ActionSetting setting)
569
628
setting . ActionCheck = ( ) => UmbralImpulsePvEReady ;
570
629
}
571
630
631
+ static partial void ModifyUmbralFlarePvE ( ref ActionSetting setting )
632
+ {
633
+ setting . ActionCheck = ( ) => UmbralFlarePvEReady ;
634
+ setting . CreateConfig = ( ) => new ActionConfig ( )
635
+ {
636
+ AoeCount = 3 ,
637
+ } ;
638
+ }
639
+
572
640
static partial void ModifySunflarePvE ( ref ActionSetting setting )
573
641
{
574
642
setting . ActionCheck = ( ) => InSolarBahamut ;
643
+ setting . CreateConfig = ( ) => new ActionConfig ( )
644
+ {
645
+ AoeCount = 1 ,
646
+ } ;
575
647
}
576
648
577
649
static partial void ModifyEnkindleSolarBahamutPvE ( ref ActionSetting setting )
578
650
{
579
651
setting . ActionCheck = ( ) => EnkindleSolarBahamutPvEReady ;
580
652
}
653
+
654
+ static partial void ModifyLuxwavePvE ( ref ActionSetting setting )
655
+ {
656
+
657
+ }
658
+
659
+ static partial void ModifyExodusPvE ( ref ActionSetting setting )
660
+ {
661
+ setting . ActionCheck = ( ) => InSolarBahamut ;
662
+ setting . CreateConfig = ( ) => new ActionConfig ( )
663
+ {
664
+ AoeCount = 1 ,
665
+ } ;
666
+ }
581
667
#endregion
582
668
583
669
#region PvP Actions
0 commit comments