From 136f21272e04164e3817f86913517a9e8307ddff Mon Sep 17 00:00:00 2001 From: rAthenaAPI Date: Wed, 2 Oct 2019 06:05:38 +0200 Subject: [PATCH] Effect State Update --- src/map/script_constants.hpp | 8 ++++++++ src/map/status.hpp | 10 ++++++++++ 2 files changed, 18 insertions(+) diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 8b42eee854..98ab55de73 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -3440,6 +3440,14 @@ export_constant(EFST_MAGIC_POISON); export_constant(EFST_KAUTE); export_constant(EFST_JPNONLY_TACTICS); + export_constant(EFST_LUXANIMA); + export_constant(EFST_BATH_FOAM_A); + export_constant(EFST_BATH_FOAM_B); + export_constant(EFST_BATH_FOAM_C); + export_constant(EFST_AROMA_OIL); + export_constant(EFST_REUSE_LIMIT_LUXANIMA); + export_constant(EFST_RELIEVE_DAMAGE); + export_constant(EFST_LOCKON_LASER); /// @APIHOOK_END /// Do not modify code above this, since it will be automatically generated by the API again export_constant(EFST_MAX); diff --git a/src/map/status.hpp b/src/map/status.hpp index 4c6b8db682..fb4e8a80d4 100644 --- a/src/map/status.hpp +++ b/src/map/status.hpp @@ -1960,6 +1960,16 @@ enum efst_types : short{ EFST_KAUTE, EFST_JPNONLY_TACTICS = 1147, + + EFST_LUXANIMA = 1154, + EFST_BATH_FOAM_A, + EFST_BATH_FOAM_B, + EFST_BATH_FOAM_C, + EFST_AROMA_OIL, + EFST_REUSE_LIMIT_LUXANIMA, + + EFST_RELIEVE_DAMAGE = 1166, + EFST_LOCKON_LASER, /// @APIHOOK_END /// Do not modify code above this, since it will be automatically generated by the API again EFST_MAX,