OSDN Git Service

[fix] #41489 明るいはずの場所でも灯りがない判定になっている
[hengband/hengband.git] / src / combat / martial-arts-table.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 #define MAX_MA 17 /*!< 修行僧マーシャルアーツの技数 / Monk martial arts... */
6 #define MA_KNEE 1 /*!< 金的効果ID */
7 #define MA_SLOW 2 /*!< 膝蹴り効果ID */
8
9 /* For Monk martial arts */
10 typedef struct martial_arts {
11     concptr desc; /* A verbose attack description */
12     PLAYER_LEVEL min_level; /* Minimum level to use */
13     int chance; /* Chance of 'success' */
14     int dd; /* Damage dice */
15     int ds; /* Damage sides */
16     int effect; /* Special effects */
17 } martial_arts;
18
19 extern const martial_arts ma_blows[MAX_MA];