OSDN Git Service

Merge pull request #2122 from sikabane-works/release/3.0.0Alpha52
[hengbandforosx/hengbandosx.git] / src / monster-race / race-behavior-flags.h
1 #pragma once
2
3 enum class MonsterBehaviorType {
4     NEVER_BLOW = 0,
5     NEVER_MOVE = 1,
6     OPEN_DOOR = 2,
7     BASH_DOOR = 3,
8     MOVE_BODY = 4,
9     KILL_BODY = 5,
10     TAKE_ITEM = 6,
11     KILL_ITEM = 7,
12     RAND_MOVE_25 = 8,
13     RAND_MOVE_50 = 9,
14     STUPID = 10,
15     SMART = 11,
16     FRIENDLY = 12,
17     PREVENT_SUDDEN_MAGIC = 13,
18     MAX,
19 };