mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-28 15:17:46 +00:00
Add enums for common action values
This commit is contained in:
parent
9daf224019
commit
ade5cfa38f
1 changed files with 30 additions and 0 deletions
30
src/world/Action/CommonAction.h
Normal file
30
src/world/Action/CommonAction.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
namespace Sapphire::World::Action
|
||||
{
|
||||
enum ActionSkill
|
||||
{
|
||||
SkullSunder = 35,
|
||||
Maim = 37,
|
||||
StormsPath = 42,
|
||||
StormsEye = 45,
|
||||
ButchersBlock = 47
|
||||
};
|
||||
|
||||
enum ActionStatus
|
||||
{
|
||||
Defiance = 91,
|
||||
Unchained = 92,
|
||||
Wrath = 93,
|
||||
WrathII = 94,
|
||||
WrathIII = 95,
|
||||
WrathIV = 96,
|
||||
Infuriated = 97,
|
||||
InnerBeast = 411,
|
||||
Deliverance = 729
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue