OSDN Git Service

Merge pull request #316 from sikabane-works/feature/readme-md
[hengbandforosx/hengbandosx.git] / src / info-reader / race-info-tokens-table.h
1 #pragma once
2
3 #include "monster-attack/monster-attack-effect.h"
4 #include "monster-attack/monster-attack-types.h"
5 #include "system/angband.h"
6
7 #define NUM_R_FLAGS_1 32
8 #define NUM_R_FLAGS_2 32
9 #define NUM_R_FLAGS_3 32
10 #define NUM_R_FLAGS_4 32
11 #define NUM_R_ABILITY_FLAGS_1 32
12 #define NUM_R_ABILITY_FLAGS_2 32
13 #define NUM_R_FLAGS_7 32
14 #define NUM_R_FLAGS_8 32
15 #define NUM_R_FLAGS_9 33
16 #define NUM_R_FLAGS_R 32
17
18 extern concptr r_info_blow_method[NB_RBM_TYPE + 1];
19 extern concptr r_info_blow_effect[NB_RBE_TYPE + 1];
20 extern concptr r_info_flags1[NUM_R_FLAGS_1];
21 extern concptr r_info_flags2[NUM_R_FLAGS_2];
22 extern concptr r_info_flags3[NUM_R_FLAGS_3];
23 extern concptr r_info_flags4[NUM_R_FLAGS_4];
24 extern concptr r_a_ability_flags1[NUM_R_ABILITY_FLAGS_1];
25 extern concptr r_a_ability_flags2[NUM_R_ABILITY_FLAGS_2];
26 extern concptr r_info_flags7[NUM_R_FLAGS_7];
27 extern concptr r_info_flags8[NUM_R_FLAGS_8];
28 extern concptr r_info_flags9[NUM_R_FLAGS_9];
29 extern concptr r_info_flagsr[NUM_R_FLAGS_R];