OSDN Git Service

v3.0.0 Alpha5 OSDN最終版
[hengband/hengband.git] / src / 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[];