From ade5cfa38f321fdd459a91832e2b0d0e55fdcca8 Mon Sep 17 00:00:00 2001 From: Lucy <44952533+Skyliegirl33@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:16:49 +0100 Subject: [PATCH] Add enums for common action values --- src/world/Action/CommonAction.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/world/Action/CommonAction.h diff --git a/src/world/Action/CommonAction.h b/src/world/Action/CommonAction.h new file mode 100644 index 00000000..e67132b7 --- /dev/null +++ b/src/world/Action/CommonAction.h @@ -0,0 +1,30 @@ +#pragma once + +#include +#include +#include + +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 + }; +} \ No newline at end of file