OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[hengbandforosx/hengbandosx.git] / src / birth / history.h
1 #include "system/angband.h"
2 #include <vector>
3
4 /*!
5  * 生い立ちメッセージテーブルの構造体定義 / Player background information
6  */
7 struct hist_type {
8     concptr info; /*!> メッセージ本文 / Textual History */
9
10     byte roll; /*!> 確率の重み / Frequency of this entry */
11     byte chart; /*!> 生い立ちメッセージの流れを示すチャートID / Chart index */
12     byte next; /*!> 次のチャートID */
13     byte bonus; /*!> メッセージに伴う社会的地位の変化量(50が基準値) / Social Class Bonus + 50 */
14 };
15
16 extern const std::vector<hist_type> backgrounds;