diff --git a/src/common/Common.h b/src/common/Common.h index ce64a197..38d174ac 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -972,6 +972,13 @@ namespace Sapphire::Common THREAT }; + enum CastType : uint8_t + { + SingleTarget = 1, + CircularAOE = 2, + RectangularAOE = 4, + }; + using PlayerStateFlagList = std::vector< PlayerStateFlag >; } diff --git a/src/scripts/action/playeractions/darkknight/ActionAbyssalDrain3641.cpp b/src/scripts/action/playeractions/darkknight/ActionAbyssalDrain3641.cpp new file mode 100644 index 00000000..4d302333 --- /dev/null +++ b/src/scripts/action/playeractions/darkknight/ActionAbyssalDrain3641.cpp @@ -0,0 +1,24 @@ +#include