OSDN Git Service

[Refactor] #40457 Moved the files relating monster's attack from combat/ to monster...
[hengband/hengband.git] / src / monster-attack / insults-moans.c
1 #include "system/angband.h"
2 #include "monster-attack/insults-moans.h"
3
4 /*! モンスターの侮辱行為メッセージテーブル / Hack -- possible "insult" messages */
5 concptr desc_insult[MAX_INSULTS] = {
6     _("があなたを侮辱した!", "insults you!"),
7     _("があなたの母を侮辱した!", "insults your mother!"),
8     _("があなたを軽蔑した!", "gives you the finger!"),
9     _("があなたを辱めた!", "humiliates you!"),
10     _("があなたを汚した!", "defiles you!"),
11     _("があなたの回りで踊った!", "dances around you!"),
12     _("が猥褻な身ぶりをした!", "makes obscene gestures!"),
13     _("があなたをぼんやりと見た!!!", "moons you!!!"),
14     _("があなたをパラサイト呼ばわりした!", "calls you a parasite!"),
15     _("があなたをサイボーグ扱いした!", "calls you a cyborg!"),
16 };
17
18 /*! マゴットのぼやきメッセージテーブル / Hack -- possible "insult" messages */
19 concptr desc_moan[MAX_MOANS] = {
20     _("は何かを悲しんでいるようだ。", "seems sad about something."),
21         _("が彼の飼い犬を見なかったかと尋ねている。", "asks if you have seen his dogs."),
22         _("が縄張りから出て行けと言っている。", "tells you to get off his land."),
23         _("はキノコがどうとか呟いている。", "mumbles something about mushrooms."),
24 };