Merge pull request #704 from daemitus/kaeshi

This commit is contained in:
goaaats 2021-12-08 03:43:01 +01:00 committed by GitHub
commit f1ce9b49b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 1 deletions

View file

@ -0,0 +1,33 @@
namespace Dalamud.Game.ClientState.JobGauge.Enums
{
/// <summary>
/// SAM Kaeshi types.
/// </summary>
public enum Kaeshi : byte
{
/// <summary>
/// No Kaeshi is active.
/// </summary>
NONE = 0,
/// <summary>
/// Kaeshi: Higanbana type.
/// </summary>
HIGANBANA = 1,
/// <summary>
/// Kaeshi: Goken type.
/// </summary>
GOKEN = 2,
/// <summary>
/// Kaeshi: Setsugekka type.
/// </summary>
SETSUGEKKA = 3,
/// <summary>
/// Kaeshi: Namikiri type.
/// </summary>
NAMIKIRI = 4,
}
}

View file

@ -18,6 +18,11 @@ namespace Dalamud.Game.ClientState.JobGauge.Types
{
}
/// <summary>
/// Gets the currently active Kaeshi ability.
/// </summary>
public Kaeshi Kaeshi => (Kaeshi)this.Struct->Kaeshi;
/// <summary>
/// Gets the current amount of Kenki available.
/// </summary>

@ -1 +1 @@
Subproject commit 64848695224c25f5f459c42100a5ab75bf611d3f
Subproject commit 6157e56b10511adf633b59cf43178ec3dbb873f7