OSDN Git Service

c8411db1d9b2dd365e12f4f1084f4170f346669f
[hengbandforosx/hengbandosx.git] / src / monster / monster-timed-effect-types.h
1 #pragma once
2
3 typedef enum monster_timed_effect_type {
4         MTIMED_CSLEEP = 0, /* Monster is sleeping */
5     MTIMED_FAST = 1, /* Monster is temporarily fast */
6     MTIMED_SLOW = 2, /* Monster is temporarily slow */
7     MTIMED_STUNNED = 3, /* Monster is stunned */
8     MTIMED_CONFUSED = 4, /* Monster is confused */
9     MTIMED_MONFEAR = 5, /* Monster is afraid */
10     MTIMED_INVULNER = 6, /* Monster is temporarily invulnerable */
11     MAX_MTIMED = 7,
12 } monster_timed_effect_type;