Hengband  2.2.1
history.h
[詳解]
1 
2 /*!
3 * 生い立ちメッセージテーブル / Forward declare
4 */
5 typedef struct hist_type hist_type;
6 
7 /*!
8 * 生い立ちメッセージテーブルの構造体定義 / Player background information
9 */
10 struct hist_type
11 {
12  concptr info; /*!> メッセージ本文 / Textual History */
13 
14  byte roll; /*!> 確率の重み / Frequency of this entry */
15  byte chart; /*!> 生い立ちメッセージの流れを示すチャートID / Chart index */
16  byte next; /*!> 次のチャートID */
17  byte bonus; /*!> メッセージに伴う社会的地位の変化量(50が基準値) / Social Class Bonus + 50 */
18 };
19 
20 struct hist_type;
21 extern hist_type bg[];
hist_type bg[]
生い立ちテーブルの定義 / Background information (see below) Chart progression by race: Human --> 1 --> 2 --> ...
Definition: history.c:20
const char * concptr
文字列定数用ポインタ定義 / A simple pointer (to unmodifiable strings)
Definition: h-type.h:47
byte roll
メッセージ本文 / Textual History
Definition: history.h:14
byte next
生い立ちメッセージの流れを示すチャートID / Chart index
Definition: history.h:16
byte bonus
次のチャートID
Definition: history.h:17
concptr info
Definition: history.h:12
生い立ちメッセージテーブルの構造体定義 / Player background information
Definition: history.h:10
byte chart
確率の重み / Frequency of this entry
Definition: history.h:15