diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-07 13:50:56 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-07 13:50:56 +0000 |
commit | cef44b0916ccffb9ac8d24460b302949e7367b04 (patch) | |
tree | ea6e258b9360e37b4e5b4954498444b979a3c59e /src/map/mob.h | |
parent | df4acc64d0b550a5e5201de3ceae7f4c4e210670 (diff) | |
download | hercules-cef44b0916ccffb9ac8d24460b302949e7367b04.tar.gz hercules-cef44b0916ccffb9ac8d24460b302949e7367b04.tar.bz2 hercules-cef44b0916ccffb9ac8d24460b302949e7367b04.tar.xz hercules-cef44b0916ccffb9ac8d24460b302949e7367b04.zip |
* Updated Stone Curse
* Implemented Confusion (50%)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@487 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.h')
-rw-r--r-- | src/map/mob.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/map/mob.h b/src/map/mob.h index e5a83be0f..da5725104 100644 --- a/src/map/mob.h +++ b/src/map/mob.h @@ -72,12 +72,12 @@ enum { }; enum { - MSS_IDLE, // 待機 - MSS_WALK, // 移動 - MSS_ATTACK, // 攻撃 - MSS_DEAD, // 死亡 - MSS_LOOT, // ルート - MSS_CHASE, // 突撃 + MSS_IDLE, // ?@ + MSS_WALK, // ? + MSS_ATTACK, // U + MSS_DEAD, // S + MSS_LOOT, // [g + MSS_CHASE, // ? }; int mobdb_searchname(const char *str); @@ -93,6 +93,8 @@ int mob_spawn_guardian(struct map_session_data *sd,char *mapname, // Spawning Gu int mob_walktoxy(struct mob_data *md,int x,int y,int easy); +//int mob_randomwalk(struct mob_data *md,int tick); +//int mob_can_move(struct mob_data *md); int mob_target(struct mob_data *md,struct block_list *bl,int dist); int mob_stop_walking(struct mob_data *md,int type); |