-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from FFXIV-CombatReborn/beauty-wicked-wiles
RS.Basic changes to support more duty actions
- Loading branch information
Showing
3 changed files
with
26 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
RotationSolver.Basic/Rotations/Duties/EmanationRotation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
| ||
namespace RotationSolver.Basic.Rotations.Duties; | ||
|
||
/// <summary> | ||
/// The variant action. | ||
/// </summary> | ||
[DutyTerritory(263, 264)] //TODO: the variant territory ids! | ||
public abstract class EmanationRotation : DutyRotation | ||
{ | ||
} | ||
|
||
partial class DutyRotation | ||
{ | ||
static partial void ModifyVrilPvE(ref ActionSetting setting) | ||
{ | ||
setting.StatusFromSelf = true; | ||
setting.TargetStatusProvide = [StatusID.Vril]; | ||
} | ||
|
||
static partial void ModifyVrilPvE_9345(ref ActionSetting setting) | ||
{ | ||
setting.StatusFromSelf = true; | ||
setting.TargetStatusProvide = [StatusID.Vril]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters