OSDN Git Service

Merge branch 'develop' into macos-develop
[hengbandforosx/hengbandosx.git] / src / cmd-io / feeling-table.cpp
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     _("この階の雰囲気を感じとれなかった...", "Looks like any other level."),
11     _("この階には何か特別なものがあるような気がする。", "You feel there is something special about this level."),
12     _("恐ろしい死の幻が目に浮かび、気絶しそうになった!", "You nearly faint as horrible visions of death fill your mind!"),
13     _("この階はとても危険なようだ。", "This level looks very dangerous."),
14     _("とても悪い予感がする...", "You have a very bad feeling..."),
15     _("悪い予感がする...", "You have a bad feeling..."),
16     _("何か緊張する。", "You feel nervous."),
17     _("少し不運な気がする...", "You feel your luck is turning..."),
18     _("この場所は好きになれない。", "You don't like the look of this place."),
19     _("この階はそれなりに安全なようだ。", "This level looks reasonably safe."),
20     _("なんて退屈なところだ...", "What a boring place...")
21 };
22
23 concptr do_cmd_feeling_text_combat[MAX_FEELING_TEXT] = {
24     _("この階の雰囲気を感じとれなかった...", "Looks like any other level."),
25     _("この階には何か特別なものがあるような気がする。", "You feel there is something special about this level."),
26     _("今夜もまた、誰かが命を落とす...", "You nearly faint as horrible visions of death fill your mind!"),
27     _("この階はとても危険なようだ。", "This level looks very dangerous."),
28     _("とても悪い予感がする...", "You have a very bad feeling..."),
29     _("悪い予感がする...", "You have a bad feeling..."),
30     _("何か緊張する。", "You feel nervous."),
31     _("少し不運な気がする...", "You feel your luck is turning..."),
32     _("この場所は好きになれない。", "You don't like the look of this place."),
33     _("この階はそれなりに安全なようだ。", "This level looks reasonably safe."),
34     _("なんて退屈なところだ...", "What a boring place...")
35 };
36
37 concptr do_cmd_feeling_text_lucky[MAX_FEELING_TEXT] = {
38     _("この階の雰囲気を感じとれなかった...", "Looks like any other level."),
39     _("この階には何か特別なものがあるような気がする。", "You feel there is something special about this level."),
40     _("この階はこの上なく素晴らしい感じがする。", "You have a superb feeling about this level."),
41     _("素晴らしい感じがする...", "You have an excellent feeling..."),
42     _("とても良い感じがする...", "You have a very good feeling..."),
43     _("良い感じがする...", "You have a good feeling..."),
44     _("ちょっと幸運な感じがする...", "You feel strangely lucky..."),
45     _("多少は運が向いてきたか...", "You feel your luck is turning..."),
46     _("見た感じ悪くはない...", "You like the look of this place..."),
47     _("全然駄目ということはないが...", "This level can't be all bad..."),
48     _("なんて退屈なところだ...", "What a boring place...")
49 };