diff options
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index fc7affdf3..d7ebb3d6c 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -1033,7 +1033,12 @@ struct pet_data { struct map_session_data *msd; }; -enum { ATK_LUCKY=1,ATK_FLEE,ATK_DEF}; // 囲まれペナルティ計算用 +// state of a single attack attempt; used in flee/def penalty calculations when mobbed +enum { + ATK_LUCKY=1, // attack was lucky-dodged + ATK_FLEE, // attack was dodged + ATK_DEF // attack connected +}; struct map_data { char name[MAP_NAME_LENGTH]; |