BLM and MNK Gauge Update with CS bump (#1914)

This commit is contained in:
pohky 2024-07-10 09:41:50 +02:00 committed by GitHub
parent 19d182546c
commit ca3c0c4014
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 32 additions and 12 deletions

View file

@ -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,
}

View file

@ -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,
}

View file

@ -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>

View file

@ -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