Browse Source

Effect State Update

rAthenaAPI 6 năm trước cách đây
mục cha
commit
8a353697b0
2 tập tin đã thay đổi với 30 bổ sung1 xóa
  1. 14 0
      src/map/script_constants.hpp
  2. 16 1
      src/map/status.hpp

+ 14 - 0
src/map/script_constants.hpp

@@ -3521,6 +3521,19 @@
 	export_constant(EFST_LHZ_DUN_N2);
 	export_constant(EFST_LHZ_DUN_N3);
 	export_constant(EFST_LHZ_DUN_N4);
+	export_constant(EFST_ALL_STAT_DOWN);
+	export_constant(EFST_GRADUAL_GRAVITY);
+	export_constant(EFST_DAMAGE_HEAL);
+	export_constant(EFST_IMMUNE_PROPERTY_NOTHING);
+	export_constant(EFST_IMMUNE_PROPERTY_WATER);
+	export_constant(EFST_IMMUNE_PROPERTY_GROUND);
+	export_constant(EFST_IMMUNE_PROPERTY_FIRE);
+	export_constant(EFST_IMMUNE_PROPERTY_WIND);
+	export_constant(EFST_IMMUNE_PROPERTY_POISON);
+	export_constant(EFST_IMMUNE_PROPERTY_SAINT);
+	export_constant(EFST_IMMUNE_PROPERTY_DARKNESS);
+	export_constant(EFST_IMMUNE_PROPERTY_TELEKINESIS);
+	export_constant(EFST_IMMUNE_PROPERTY_UNDEAD);
 	export_constant(EFST_REUSE_LIMIT_NP);
 	export_constant(EFST_SPECIALCOOKIE);
 	export_constant(EFST_GLORY_OF_RETURN);
@@ -3572,6 +3585,7 @@
 	export_constant(EFST_EXPDROPUP);
 	export_constant(EFST_TW_NEWYEAR_EVENT);
 	export_constant(EFST_ANCILLA);
+	export_constant(EFST_WEAPONBLOCK_ON);
 /// @APIHOOK_END
 /// Do not modify code above this, since it will be automatically generated by the API again
 	export_constant(EFST_MAX);

+ 16 - 1
src/map/status.hpp

@@ -2803,7 +2803,20 @@ enum efst_types : short{
 	EFST_LHZ_DUN_N3,
 	EFST_LHZ_DUN_N4,
 
-	EFST_REUSE_LIMIT_NP = 1026,
+	EFST_ALL_STAT_DOWN = 1013,
+	EFST_GRADUAL_GRAVITY,
+	EFST_DAMAGE_HEAL,
+	EFST_IMMUNE_PROPERTY_NOTHING,
+	EFST_IMMUNE_PROPERTY_WATER,
+	EFST_IMMUNE_PROPERTY_GROUND,
+	EFST_IMMUNE_PROPERTY_FIRE,
+	EFST_IMMUNE_PROPERTY_WIND,
+	EFST_IMMUNE_PROPERTY_POISON,
+	EFST_IMMUNE_PROPERTY_SAINT,
+	EFST_IMMUNE_PROPERTY_DARKNESS,
+	EFST_IMMUNE_PROPERTY_TELEKINESIS,
+	EFST_IMMUNE_PROPERTY_UNDEAD,
+	EFST_REUSE_LIMIT_NP,
 	EFST_SPECIALCOOKIE,
 
 	EFST_GLORY_OF_RETURN = 1030,
@@ -2859,6 +2872,8 @@ enum efst_types : short{
 	EFST_TW_NEWYEAR_EVENT,
 
 	EFST_ANCILLA = 1095,
+
+	EFST_WEAPONBLOCK_ON = 1107,
 /// @APIHOOK_END
 /// Do not modify code above this, since it will be automatically generated by the API again
 	EFST_MAX,