diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 796c7ec659d..f2e60af88cf 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -3470,6 +3470,13 @@ export_constant(EFST_ABYSS_006); export_constant(EFST_ABYSS_007); export_constant(EFST_ABYSS_008); + export_constant(EFST_KAUTE); + export_constant(EFST_REUSE_LIMIT_THM); + export_constant(EFST_REUSE_LIMIT_TLI); + export_constant(EFST_REUSE_LIMIT_TKC); + export_constant(EFST_REUSE_LIMIT_TRP); + export_constant(EFST_REUSE_LIMIT_TBG); + export_constant(EFST_REUSE_LIMIT_TBM); export_constant(EFST_YGGDRASIL_BLESS); export_constant(EFST_HUNTING_EVENT); export_constant(EFST_PERIOD_RECEIVEITEM_2ND); @@ -3508,7 +3515,6 @@ export_constant(EFST_FLOWER_LEAF4); export_constant(EFST_MISTY_FROST); export_constant(EFST_MAGIC_POISON); - export_constant(EFST_KAUTE); export_constant(EFST_JPNONLY_TACTICS); export_constant(EFST_MADOGEAR); export_constant(EFST_DEADLY_DEFEASANCE); @@ -3580,6 +3586,7 @@ export_constant(EFST_ULTIMATE_S); export_constant(EFST_SPEAR_SCAR); export_constant(EFST_SHIELD_POWER); + export_constant(EFST_SHADOW_WEAPON); export_constant(EFST_RELIGIO); export_constant(EFST_BENEDICTUM); export_constant(EFST_MVPCARD_KIEL); @@ -3665,6 +3672,8 @@ export_constant(EFST_SHIELDSPELL); export_constant(EFST_CLOUD_POISON); export_constant(EFST_SPORE_EXPLOSION_DEBUFF); + export_constant(EFST_DEFSCROLL); + export_constant(EFST_MASSIVE_F_BLASTER); /// @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 8367d76bc50..2440e6d797f 100644 --- a/src/map/status.hpp +++ b/src/map/status.hpp @@ -1989,7 +1989,13 @@ enum efst_types : short{ EFST_ABYSS_007, EFST_ABYSS_008, - EFST_YGGDRASIL_BLESS = 1081, + EFST_REUSE_LIMIT_THM = 1075, + EFST_REUSE_LIMIT_TLI, + EFST_REUSE_LIMIT_TKC, + EFST_REUSE_LIMIT_TRP, + EFST_REUSE_LIMIT_TBG, + EFST_REUSE_LIMIT_TBM, + EFST_YGGDRASIL_BLESS, EFST_HUNTING_EVENT = 1083, EFST_PERIOD_RECEIVEITEM_2ND, @@ -2116,7 +2122,8 @@ enum efst_types : short{ EFST_SPEAR_SCAR, EFST_SHIELD_POWER, - EFST_RELIGIO = 1227, + EFST_SHADOW_WEAPON = 1226, + EFST_RELIGIO, EFST_BENEDICTUM, EFST_MVPCARD_KIEL, EFST_FIRST_BRAND, @@ -2208,6 +2215,10 @@ enum efst_types : short{ EFST_CLOUD_POISON = 1318, EFST_SPORE_EXPLOSION_DEBUFF, + + EFST_DEFSCROLL = 1321, + + EFST_MASSIVE_F_BLASTER = 1326, /// @APIHOOK_END /// Do not modify code above this, since it will be automatically generated by the API again EFST_MAX,