OSDN Git Service

Merge branch 'develop' into macos-develop
[hengbandforosx/hengbandosx.git] / src / monster-race / race-drop-flags.h
1 #pragma once
2
3 enum class MonsterDropType {
4     ONLY_GOLD = 0,
5     ONLY_ITEM = 1,
6     DROP_GOOD = 2,
7     DROP_GREAT = 3,
8     DROP_CORPSE = 4,
9     DROP_SKELETON = 5,
10     DROP_60 = 6,
11     DROP_90 = 7,
12     DROP_1D2 = 8,
13     DROP_2D2 = 9,
14     DROP_3D2 = 10,
15     DROP_4D2 = 11,
16     MAX,
17 };