mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
BLM and MNK Gauge Update with CS bump (#1914)
This commit is contained in:
parent
19d182546c
commit
ca3c0c4014
5 changed files with 32 additions and 12 deletions
|
|
@ -6,22 +6,22 @@ namespace Dalamud.Game.ClientState.JobGauge.Enums;
|
|||
public enum BeastChakra : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// No card.
|
||||
/// No chakra.
|
||||
/// </summary>
|
||||
NONE = 0,
|
||||
|
||||
/// <summary>
|
||||
/// The Coeurl chakra.
|
||||
/// </summary>
|
||||
COEURL = 1,
|
||||
|
||||
/// <summary>
|
||||
/// The Opo-Opo chakra.
|
||||
/// </summary>
|
||||
OPOOPO = 2,
|
||||
OPOOPO = 1,
|
||||
|
||||
/// <summary>
|
||||
/// The Raptor chakra.
|
||||
/// </summary>
|
||||
RAPTOR = 3,
|
||||
RAPTOR = 2,
|
||||
|
||||
/// <summary>
|
||||
/// The Coeurl chakra.
|
||||
/// </summary>
|
||||
COEURL = 3,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,17 +7,17 @@
|
|||
public enum Nadi : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// No card.
|
||||
/// No nadi.
|
||||
/// </summary>
|
||||
NONE = 0,
|
||||
|
||||
/// <summary>
|
||||
/// The Lunar nadi.
|
||||
/// </summary>
|
||||
LUNAR = 2,
|
||||
LUNAR = 1,
|
||||
|
||||
/// <summary>
|
||||
/// The Solar nadi.
|
||||
/// </summary>
|
||||
SOLAR = 4,
|
||||
SOLAR = 2,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,6 +44,11 @@ public unsafe class BLMGauge : JobGaugeBase<FFXIVClientStructs.FFXIV.Client.Game
|
|||
/// </summary>
|
||||
public byte AstralFireStacks => (byte)(this.InAstralFire ? this.Struct->ElementStance : 0);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the amount of Astral Soul stacks.
|
||||
/// </summary>
|
||||
public int AstralSoulStacks => this.Struct->AstralSoulStacks;
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether or not the player is in Umbral Ice.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -36,6 +36,21 @@ public unsafe class MNKGauge : JobGaugeBase<FFXIVClientStructs.FFXIV.Client.Game
|
|||
/// </summary>
|
||||
public Nadi Nadi => (Nadi)this.Struct->Nadi;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the amount of available Opo-opo Fury stacks.
|
||||
/// </summary>
|
||||
public int OpoOpoFury => this.Struct->OpoOpoStacks;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the amount of available Raptor Fury stacks.
|
||||
/// </summary>
|
||||
public int RaptorFury => this.Struct->RaptorStacks;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the amount of available Coeurl Fury stacks.
|
||||
/// </summary>
|
||||
public int CoeurlFury => this.Struct->CoeurlStacks;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the time remaining that Blitz is active.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 572cfe861ff6b1bfc9b92a6e9fe1e96342f89ed4
|
||||
Subproject commit 5b29e78f1b49afaa2a9102c52fbd68a245cab936
|
||||
Loading…
Add table
Add a link
Reference in a new issue