diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-10 03:23:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-10 03:23:36 +0300 |
commit | 4fcb7d5f3bd12d99a1183bf16a23f6b1f22195f2 (patch) | |
tree | 0453c6a184b6b9812050f74e0d25c9e31a697060 /src/emap/enum | |
parent | 7590c2d05be13837a7c46d271f500f637a3d555f (diff) | |
download | plugin-4fcb7d5f3bd12d99a1183bf16a23f6b1f22195f2.tar.gz plugin-4fcb7d5f3bd12d99a1183bf16a23f6b1f22195f2.tar.bz2 plugin-4fcb7d5f3bd12d99a1183bf16a23f6b1f22195f2.tar.xz plugin-4fcb7d5f3bd12d99a1183bf16a23f6b1f22195f2.zip |
Add bit field 0x100 into sc_config.txt for allow see sc effect for all players.
Also move status based enums into separate files.
And add sc shield into constants.
Diffstat (limited to 'src/emap/enum')
-rw-r--r-- | src/emap/enum/esctype.h | 12 | ||||
-rw-r--r-- | src/emap/enum/esitype.h | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/emap/enum/esctype.h b/src/emap/enum/esctype.h new file mode 100644 index 0000000..3e6e5d4 --- /dev/null +++ b/src/emap/enum/esctype.h @@ -0,0 +1,12 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 - 2015 Evol developers + +#ifndef EVOL_MAP_ENUM_ESCTYPE +#define EVOL_MAP_ENUM_ESCTYPE + +typedef enum esc_type +{ + SC_PHYSICAL_SHIELD = 642, +} esc_type; + +#endif // EVOL_MAP_ENUM_ESCTYPE diff --git a/src/emap/enum/esitype.h b/src/emap/enum/esitype.h new file mode 100644 index 0000000..d1213ad --- /dev/null +++ b/src/emap/enum/esitype.h @@ -0,0 +1,12 @@ +// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. +// Copyright (c) 2014 - 2015 Evol developers + +#ifndef EVOL_MAP_ENUM_ESITYPE +#define EVOL_MAP_ENUM_ESITYPE + +enum esi_type +{ + SI_PHYSICAL_SHIELD = 966, +}; + +#endif // EVOL_MAP_ENUM_ESITYPE |