OSDN Git Service

Merge pull request #716 from sikabane-works/release/3.0.0Alpha16
[hengbandforosx/hengbandosx.git] / src / monster-race / race-flags4.h
1 #pragma once
2
3 enum race_flags4 : u32b {
4     RF4_SHRIEK = 0x00000001, /*!< モンスター能力: 叫ぶ / Shriek for help */
5     RF4_XXX1 = 0x00000002, /*!< モンスター能力: 未使用 / XXX */
6     RF4_DISPEL = 0x00000004, /*!< モンスター能力: 魔力消去 / Dispel magic */
7     RF4_ROCKET = 0x00000008, /*!< モンスター能力: ロケット / TY: Rocket */
8     RF4_SHOOT = 0x00000010, /*!< モンスター能力: 射撃/ Fire missiles */
9     RF4_XXX2 = 0x00000020, /*!< モンスター能力: 未使用 / XXX */
10     RF4_XXX3 = 0x00000040, /*!< モンスター能力: 未使用 / XXX */
11     RF4_XXX4 = 0x00000080, /*!< モンスター能力: 未使用 / XXX */
12     RF4_BR_ACID = 0x00000100, /*!< モンスター能力: 酸のブレス / Breathe Acid */
13     RF4_BR_ELEC = 0x00000200, /*!< モンスター能力: 電撃のブレス / Breathe Elec */
14     RF4_BR_FIRE = 0x00000400, /*!< モンスター能力: 火炎のブレス / Breathe Fire */
15     RF4_BR_COLD = 0x00000800, /*!< モンスター能力: 冷気のブレス / Breathe Cold */
16     RF4_BR_POIS = 0x00001000, /*!< モンスター能力: 毒のブレス / Breathe Poison */
17     RF4_BR_NETH = 0x00002000, /*!< モンスター能力: 地獄のブレス / Breathe Nether */
18     RF4_BR_LITE = 0x00004000, /*!< モンスター能力: 閃光のブレス / Breathe Lite */
19     RF4_BR_DARK = 0x00008000, /*!< モンスター能力: 暗黒のブレス / Breathe Dark */
20     RF4_BR_CONF = 0x00010000, /*!< モンスター能力: 混乱のブレス / Breathe Confusion */
21     RF4_BR_SOUN = 0x00020000, /*!< モンスター能力: 轟音のブレス / Breathe Sound */
22     RF4_BR_CHAO = 0x00040000, /*!< モンスター能力: カオスのブレス / Breathe Chaos */
23     RF4_BR_DISE = 0x00080000, /*!< モンスター能力: 劣化のブレス / Breathe Disenchant */
24     RF4_BR_NEXU = 0x00100000, /*!< モンスター能力: 因果混乱のブレス / Breathe Nexus */
25     RF4_BR_TIME = 0x00200000, /*!< モンスター能力: 時間逆転のブレス / Breathe Time */
26     RF4_BR_INER = 0x00400000, /*!< モンスター能力: 遅鈍のブレス / Breathe Inertia */
27     RF4_BR_GRAV = 0x00800000, /*!< モンスター能力: 重力のブレス / Breathe Gravity */
28     RF4_BR_SHAR = 0x01000000, /*!< モンスター能力: 破片のブレス / Breathe Shards */
29     RF4_BR_PLAS = 0x02000000, /*!< モンスター能力: プラズマのブレス / Breathe Plasma */
30     RF4_BR_WALL = 0x04000000, /*!< モンスター能力: フォースのブレス / Breathe Force */
31     RF4_BR_MANA = 0x08000000, /*!< モンスター能力: 魔力のブレス / Breathe Mana */
32     RF4_BA_NUKE = 0x10000000, /*!< モンスター能力: 放射能球 / TY: Nuke Ball */
33     RF4_BR_NUKE = 0x20000000, /*!< モンスター能力: 放射性廃棄物のブレス / TY: Toxic Breath */
34     RF4_BA_CHAO = 0x40000000, /*!< モンスター能力: ログルス球 / TY: Logrus Ball */
35     RF4_BR_DISI = 0x80000000, /*!< モンスター能力: 分解のブレス / Breathe Disintegration */
36 };