mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
Merge pull request #2512 from Haselnussbomber/hover-action-kind
Update HoverActionKind
This commit is contained in:
commit
92d6c70358
1 changed files with 33 additions and 28 deletions
|
|
@ -14,140 +14,145 @@ public enum HoverActionKind
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A regular action is hovered.
|
/// A regular action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Action = 28,
|
Action = 29,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A crafting action is hovered.
|
/// A crafting action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CraftingAction = 29,
|
CraftingAction = 30,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A general action is hovered.
|
/// A general action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
GeneralAction = 30,
|
GeneralAction = 31,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A companion order type of action is hovered.
|
/// A companion order type of action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompanionOrder = 31, // Game Term: BuddyOrder
|
CompanionOrder = 32, // Game Term: BuddyOrder
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A main command type of action is hovered.
|
/// A main command type of action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MainCommand = 32,
|
MainCommand = 33,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An extras command type of action is hovered.
|
/// An extras command type of action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ExtraCommand = 33,
|
ExtraCommand = 34,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A companion action is hovered.
|
/// A companion action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Companion = 34,
|
Companion = 35,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A pet order type of action is hovered.
|
/// A pet order type of action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PetOrder = 35,
|
PetOrder = 36,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A trait is hovered.
|
/// A trait is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Trait = 36,
|
Trait = 37,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A buddy action is hovered.
|
/// A buddy action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
BuddyAction = 37,
|
BuddyAction = 38,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A company action is hovered.
|
/// A company action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompanyAction = 38,
|
CompanyAction = 39,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A mount is hovered.
|
/// A mount is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Mount = 39,
|
Mount = 40,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A chocobo race action is hovered.
|
/// A chocobo race action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ChocoboRaceAction = 40,
|
ChocoboRaceAction = 41,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A chocobo race item is hovered.
|
/// A chocobo race item is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ChocoboRaceItem = 41,
|
ChocoboRaceItem = 42,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A deep dungeon equipment is hovered.
|
/// A deep dungeon equipment is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DeepDungeonEquipment = 42,
|
DeepDungeonEquipment = 43,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A deep dungeon equipment 2 is hovered.
|
/// A deep dungeon equipment 2 is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DeepDungeonEquipment2 = 43,
|
DeepDungeonEquipment2 = 44,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A deep dungeon item is hovered.
|
/// A deep dungeon item is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DeepDungeonItem = 44,
|
DeepDungeonItem = 45,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A quick chat is hovered.
|
/// A quick chat is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
QuickChat = 45,
|
QuickChat = 46,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An action combo route is hovered.
|
/// An action combo route is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ActionComboRoute = 46,
|
ActionComboRoute = 47,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A pvp trait is hovered.
|
/// A pvp trait is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PvPSelectTrait = 47,
|
PvPSelectTrait = 48,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A squadron action is hovered.
|
/// A squadron action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
BgcArmyAction = 48,
|
BgcArmyAction = 49,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A perform action is hovered.
|
/// A perform action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Perform = 49,
|
Perform = 50,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A deep dungeon magic stone is hovered.
|
/// A deep dungeon magic stone is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DeepDungeonMagicStone = 50,
|
DeepDungeonMagicStone = 51,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A deep dungeon demiclone is hovered.
|
/// A deep dungeon demiclone is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DeepDungeonDemiclone = 51,
|
DeepDungeonDemiclone = 52,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An eureka magia action is hovered.
|
/// An eureka magia action is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
EurekaMagiaAction = 52,
|
EurekaMagiaAction = 53,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An island sanctuary temporary item is hovered.
|
/// An island sanctuary temporary item is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MYCTemporaryItem = 53,
|
MYCTemporaryItem = 54,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An ornament is hovered.
|
/// An ornament is hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Ornament = 54,
|
Ornament = 55,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Glasses are hovered.
|
/// Glasses are hovered.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Glasses = 55,
|
Glasses = 56,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Phantom Job Trait is hovered.
|
||||||
|
/// </summary>
|
||||||
|
MKDTrait = 58,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue