From c292794154da24e35c3f4a2dd2dc29096d763212 Mon Sep 17 00:00:00 2001 From: rAthenaAPI Date: Wed, 12 Feb 2020 14:05:44 +0100 Subject: [PATCH] Effect State Update --- src/map/script_constants.hpp | 16 ++++++++++++++++ src/map/status.hpp | 19 +++++++++++++++++-- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index aff6d788d2..db9f419645 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -2397,6 +2397,22 @@ /// Do not modify code below this, until the end of the API hook, since it will be automatically generated again /// @APIHOOK_START(EFST_CONST) export_constant(EFST_BLANK); + export_constant(EFST_PROVOKE); + export_constant(EFST_ENDURE); + export_constant(EFST_TWOHANDQUICKEN); + export_constant(EFST_CONCENTRATION); + export_constant(EFST_HIDING); + export_constant(EFST_CLOAKING); + export_constant(EFST_ENCHANTPOISON); + export_constant(EFST_POISONREACT); + export_constant(EFST_QUAGMIRE); + export_constant(EFST_ANGELUS); + export_constant(EFST_BLESSING); + export_constant(EFST_CRUCIS); + export_constant(EFST_INC_AGI); + export_constant(EFST_DEC_AGI); + export_constant(EFST_SLOWPOISON); + export_constant(EFST_IMPOSITIO); export_constant(EFST_SUFFRAGIUM); export_constant(EFST_ASPERSIO); export_constant(EFST_BENEDICTIO); diff --git a/src/map/status.hpp b/src/map/status.hpp index ed272ac21e..6bfdcd767a 100644 --- a/src/map/status.hpp +++ b/src/map/status.hpp @@ -875,8 +875,23 @@ enum efst_types : short{ /// Do not modify code below this, until the end of the API hook, since it will be automatically generated again /// @APIHOOK_START(EFST_ENUM) EFST_BLANK = -1, - - EFST_SUFFRAGIUM = 16, + EFST_PROVOKE, + EFST_ENDURE, + EFST_TWOHANDQUICKEN, + EFST_CONCENTRATION, + EFST_HIDING, + EFST_CLOAKING, + EFST_ENCHANTPOISON, + EFST_POISONREACT, + EFST_QUAGMIRE, + EFST_ANGELUS, + EFST_BLESSING, + EFST_CRUCIS, + EFST_INC_AGI, + EFST_DEC_AGI, + EFST_SLOWPOISON, + EFST_IMPOSITIO, + EFST_SUFFRAGIUM, EFST_ASPERSIO, EFST_BENEDICTIO, EFST_KYRIE,