OSDN Git Service

[Refactor] #38862 Moved angband.h, h-*.h and system-variables.c/h
[hengband/hengband.git] / src / player / mimic-info-table.c
1 #include "system/angband.h"
2 #include "mimic-info-table.h"
3
4 /*!
5  * @brief 変身種族情報
6  */
7 const player_race mimic_info[MAX_MIMIC_FORMS] =
8 {
9         {
10 #ifdef JP
11                 "[標準形態]",
12 #endif
13                 "Default",
14
15                 {  0,  0,  0,  0,  0,  0 },
16                 0,  0,  0,  0,  0,  10,  0,  0,
17                 10,  100,
18                 0,  0,
19                 0,  0, 0, 0,
20                 0,  0, 0, 0,
21                 0,
22                 0x000000,
23         },
24         {
25 #ifdef JP
26                 "[悪魔]",
27 #endif
28                 "[Demon]",
29
30                 {  5,  3,  2,  3,  4,  -6 },
31                 -5,  18, 20, -2,  3,  10, 40, 20,
32                 12,  0,
33                 0,  0,
34                 0,  0, 0, 0,
35                 0,  0, 0, 0,
36                 5,
37                 0x000003,
38         },
39         {
40 #ifdef JP
41                 "[魔王]",
42 #endif
43                 "[Demon lord]",
44
45                 {  20,  20,  20,  20,  20,  20 },
46                 20,  20, 25, -2,  3,  10, 70, 40,
47                 14,  0,
48                 0,  0,
49                 0,  0, 0, 0,
50                 0,  0, 0, 0,
51                 20,
52                 0x000003,
53         },
54         {
55 #ifdef JP
56                 "[吸血鬼]",
57 #endif
58                 "[Vampire]",
59
60                 { 4, 4, 1, 1, 2, 3 },
61                 6, 12, 8, 6, 2, 12, 30, 20,
62                 11,  0,
63                 0,  0,
64                 0,  0, 0, 0,
65                 0,  0, 0, 0,
66                 5,
67                 0x000005,
68         },
69 };
70