From c68da31f67b205854ead7d10e5efb4d6c8bac19d Mon Sep 17 00:00:00 2001 From: rAthenaAPI Date: Wed, 30 May 2018 05:06:10 +0200 Subject: [PATCH] Effect State Update --- src/map/script_constants.hpp | 28 ++++++++++++++++++++++++++++ src/map/status.hpp | 30 +++++++++++++++++++++++++++++- 2 files changed, 57 insertions(+), 1 deletion(-) diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 96359e8c2f..ec482addcf 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -3505,6 +3505,34 @@ export_constant(EFST_MATK_POPCORN); export_constant(EFST_ASPD_POPCORN); export_constant(EFST_ULTIMATECOOK); + export_constant(EFST_LIGHTOFMOON); + export_constant(EFST_LIGHTOFSUN); + export_constant(EFST_LIGHTOFSTAR); + export_constant(EFST_LUNARSTANCE); + export_constant(EFST_UNIVERSESTANCE); + export_constant(EFST_SUNSTANCE); + export_constant(EFST_FLASHKICK); + export_constant(EFST_NEWMOON); + export_constant(EFST_STARSTANCE); + export_constant(EFST_DIMENSION); + export_constant(EFST_DIMENSION1); + export_constant(EFST_DIMENSION2); + export_constant(EFST_CREATINGSTAR); + export_constant(EFST_FALLINGSTAR); + export_constant(EFST_NOVAEXPLOSING); + export_constant(EFST_GRAVITYCONTROL); + export_constant(EFST_SOULCOLLECT); + export_constant(EFST_SOULREAPER); + export_constant(EFST_SOULUNITY); + export_constant(EFST_SOULSHADOW); + export_constant(EFST_SOULFAIRY); + export_constant(EFST_SOULFALCON); + export_constant(EFST_SOULGOLEM); + export_constant(EFST_SOULDIVISION); + export_constant(EFST_SOULENERGY); + export_constant(EFST_USE_SKILL_SP_SPA); + export_constant(EFST_USE_SKILL_SP_SHA); + export_constant(EFST_SP_SHA); export_constant(EFST_INFINITY_DRINK); export_constant(EFST_ABYSS_001); export_constant(EFST_ABYSS_002); diff --git a/src/map/status.hpp b/src/map/status.hpp index 95b967e28a..88c7fe7b1b 100644 --- a/src/map/status.hpp +++ b/src/map/status.hpp @@ -2801,8 +2801,36 @@ enum efst_types : short{ EFST_MATK_POPCORN, EFST_ASPD_POPCORN, EFST_ULTIMATECOOK, + EFST_LIGHTOFMOON, + EFST_LIGHTOFSUN, + EFST_LIGHTOFSTAR, + EFST_LUNARSTANCE, + EFST_UNIVERSESTANCE, + EFST_SUNSTANCE, + EFST_FLASHKICK, + EFST_NEWMOON, + EFST_STARSTANCE, + EFST_DIMENSION, + EFST_DIMENSION1, + EFST_DIMENSION2, + EFST_CREATINGSTAR, + EFST_FALLINGSTAR, + EFST_NOVAEXPLOSING, + EFST_GRAVITYCONTROL, - EFST_INFINITY_DRINK = 1065, + EFST_SOULCOLLECT = 1053, + EFST_SOULREAPER, + EFST_SOULUNITY, + EFST_SOULSHADOW, + EFST_SOULFAIRY, + EFST_SOULFALCON, + EFST_SOULGOLEM, + EFST_SOULDIVISION, + EFST_SOULENERGY, + EFST_USE_SKILL_SP_SPA, + EFST_USE_SKILL_SP_SHA, + EFST_SP_SHA, + EFST_INFINITY_DRINK, EFST_ABYSS_001, EFST_ABYSS_002, EFST_ABYSS_003,