OSDN Git Service

[fix] #41503 超能力者でゲームを開始しようとするとクラッシュ
[hengband/hengband.git] / src / cmd-io / feeling-table.c
1 /*
2  * @brief 雰囲気を表すテキストの配列群
3  * @date 2020/03/08
4  * @author Hourier
5  */
6
7 #include "cmd-io/feeling-table.h"
8
9 concptr do_cmd_feeling_text[MAX_FEELING_TEXT] =
10 {
11         _("この階の雰囲気を感じとれなかった...", "Looks like any other level."),
12         _("この階には何か特別なものがあるような気がする。", "You feel there is something special about this level."),
13         _("恐ろしい死の幻が目に浮かび、気絶しそうになった!", "You nearly faint as horrible visions of death fill your mind!"),
14         _("この階はとても危険なようだ。", "This level looks very dangerous."),
15         _("とても悪い予感がする...", "You have a very bad feeling..."),
16         _("悪い予感がする...", "You have a bad feeling..."),
17         _("何か緊張する。", "You feel nervous."),
18         _("少し不運な気がする...", "You feel your luck is turning..."),
19         _("この場所は好きになれない。", "You don't like the look of this place."),
20         _("この階はそれなりに安全なようだ。", "This level looks reasonably safe."),
21         _("なんて退屈なところだ...", "What a boring place...")
22 };
23
24 concptr do_cmd_feeling_text_combat[MAX_FEELING_TEXT] =
25 {
26         _("この階の雰囲気を感じとれなかった...", "Looks like any other level."),
27         _("この階には何か特別なものがあるような気がする。", "You feel there is something special about this level."),
28         _("今夜もまた、誰かが命を落とす...", "You nearly faint as horrible visions of death fill your mind!"),
29         _("この階はとても危険なようだ。", "This level looks very dangerous."),
30         _("とても悪い予感がする...", "You have a very bad feeling..."),
31         _("悪い予感がする...", "You have a bad feeling..."),
32         _("何か緊張する。", "You feel nervous."),
33         _("少し不運な気がする...", "You feel your luck is turning..."),
34         _("この場所は好きになれない。", "You don't like the look of this place."),
35         _("この階はそれなりに安全なようだ。", "This level looks reasonably safe."),
36         _("なんて退屈なところだ...", "What a boring place...")
37 };
38
39 concptr do_cmd_feeling_text_lucky[MAX_FEELING_TEXT] =
40 {
41         _("この階の雰囲気を感じとれなかった...", "Looks like any other level."),
42         _("この階には何か特別なものがあるような気がする。", "You feel there is something special about this level."),
43         _("この階はこの上なく素晴らしい感じがする。", "You have a superb feeling about this level."),
44         _("素晴らしい感じがする...", "You have an excellent feeling..."),
45         _("とても良い感じがする...", "You have a very good feeling..."),
46         _("良い感じがする...", "You have a good feeling..."),
47         _("ちょっと幸運な感じがする...", "You feel strangely lucky..."),
48         _("多少は運が向いてきたか...", "You feel your luck is turning..."),
49         _("見た感じ悪くはない...", "You like the look of this place..."),
50         _("全然駄目ということはないが...", "This level can't be all bad..."),
51         _("なんて退屈なところだ...", "What a boring place...")
52 };