OSDN Git Service

Merge branch 'develop' into feature/hero_bless
[hengbandforosx/hengbandosx.git] / src / player / special-defense-types.h
1 #pragma once
2
3 enum special_defence {
4         DEFENSE_ACID = 0x00000001, /*!< プレイヤーのステータス:酸免疫 */
5     DEFENSE_ELEC = 0x00000002, /*!< プレイヤーのステータス:電撃免疫 */
6     DEFENSE_FIRE = 0x00000004, /*!< プレイヤーのステータス:火炎免疫 */
7     DEFENSE_COLD = 0x00000008, /*!< プレイヤーのステータス:冷気免疫 */
8     DEFENSE_POIS = 0x00000010, /*!< プレイヤーのステータス:毒免疫 */
9 };