diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-04 19:07:18 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-04 19:07:18 +0000 |
commit | 606fb6292db080bcbd84958c6e54df8eba190999 (patch) | |
tree | 48894ebd41340b63eb49b20df34cf5f82fdb789a /src/map/mob.h | |
parent | e52bb631e65f92cb54f94b2fdbd6f149bde44457 (diff) | |
download | hercules-606fb6292db080bcbd84958c6e54df8eba190999.tar.gz hercules-606fb6292db080bcbd84958c6e54df8eba190999.tar.bz2 hercules-606fb6292db080bcbd84958c6e54df8eba190999.tar.xz hercules-606fb6292db080bcbd84958c6e54df8eba190999.zip |
- Fixed HVAN_INSTRUCT int bonuses.
- Renamed mob_db's "adelay" column to ThinkTime and made the mob.c code use it instead of MIN_MOBTHINKTIME. The adelay of mobs will also be equal to their thinktime unless their thinktime is less than their attack motion.
- Cleaned the mob_db reading code a bit.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9406 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.h')
-rw-r--r-- | src/map/mob.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/mob.h b/src/map/mob.h index 3156ecf5d..7dedf948b 100644 --- a/src/map/mob.h +++ b/src/map/mob.h @@ -58,6 +58,7 @@ struct mob_db { char sprite[NAME_LENGTH],name[NAME_LENGTH],jname[NAME_LENGTH];
unsigned int base_exp,job_exp;
unsigned int mexp,mexpper;
+ unsigned int min_thinktime; //Min think time, Recharge Time as aegis calls it.
int range2,range3;
short race2; // celest
unsigned short lv;
|