OSDN Git Service

Merge remote-tracking branch 'remotes/hengbandosx/english-mspell-edits' into feature...
[hengband/hengband.git] / src / specific-object / toragoroshi.c
1 #include "specific-object/toragoroshi.h"
2 #include "player-attack/player-attack.h"
3 #include "view/display-messages.h"
4
5 bool activate_toragoroshi(player_type *user_ptr)
6 {
7     msg_print(_("あなたは妖刀に魅入られた…", "You are enchanted by cursed blade..."));
8     msg_print(_("「狂ほしく 血のごとき 月はのぼれり 秘めおきし 魔剣 いずこぞや」", "'Behold the blade arts.'"));
9     massacre(user_ptr);
10     return TRUE;
11 }