This commit is contained in:
AzureGem 2025-12-11 23:18:27 +01:00 committed by GitHub
commit ac6d10ae0e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,6 +13,7 @@ public enum XivChatType : ushort
/// <summary> /// <summary>
/// The debug chat type. /// The debug chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("Debug", "debug", 0xFF808080)]
Debug = 1, Debug = 1,
/// <summary> /// <summary>
@ -42,12 +43,13 @@ public enum XivChatType : ushort
/// <summary> /// <summary>
/// The outgoing tell chat type. /// The outgoing tell chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("Tell (Outgoing)", "tell_outgoing", 0xFFFF69B4)]
TellOutgoing = 12, TellOutgoing = 12,
/// <summary> /// <summary>
/// The incoming tell chat type. /// The incoming tell chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("Tell", "tell", 0xFFFF69B4)] [XivChatTypeInfo("Tell (Incoming)", "tell_incoming", 0xFFFF69B4)]
TellIncoming = 13, TellIncoming = 13,
/// <summary> /// <summary>
@ -167,31 +169,37 @@ public enum XivChatType : ushort
/// <summary> /// <summary>
/// The system error chat type. /// The system error chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("System Error", "system_error", 0xFF808080)]
SystemError = 58, SystemError = 58,
/// <summary> /// <summary>
/// The system message chat type. /// The system message chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("System Message", "system_message", 0xFF808080)]
SystemMessage = 57, SystemMessage = 57,
/// <summary> /// <summary>
/// The system message (gathering) chat type. /// The system message (gathering) chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("Gathering", "gathering", 0xFFCCCCCC)]
GatheringSystemMessage = 59, GatheringSystemMessage = 59,
/// <summary> /// <summary>
/// The error message chat type. /// The error message chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("Error", "error", 0xFFFF4A4A)]
ErrorMessage = 60, ErrorMessage = 60,
/// <summary> /// <summary>
/// The NPC Dialogue chat type. /// The NPC Dialogue chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("NPC Dialogue", "npc_dialogue", 0xFFABD647)]
NPCDialogue = 61, NPCDialogue = 61,
/// <summary> /// <summary>
/// The NPC Dialogue (Announcements) chat type. /// The NPC Dialogue (Announcements) chat type.
/// </summary> /// </summary>
[XivChatTypeInfo("NPC Dialogue Announcements", "npc_dialogue_announcements", 0xFFABD647)]
NPCDialogueAnnouncements = 68, NPCDialogueAnnouncements = 68,
/// <summary> /// <summary>
@ -200,6 +208,7 @@ public enum XivChatType : ushort
/// <remarks> /// <remarks>
/// This might be used for other purposes. /// This might be used for other purposes.
/// </remarks> /// </remarks>
[XivChatTypeInfo("Retainer", "retainer", 0xFF808080)]
RetainerSale = 71, RetainerSale = 71,
/// <summary> /// <summary>