OSDN Git Service

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