OSDN Git Service

[Improve] #37756 Sniper's skill list now colored according to their status, which...
[hengband/hengband.git] / src / mind / stances-table.c
1 #include "mind/stances-table.h"
2
3 /*!
4  * @brief 修行僧の構え能力テーブル
5  */
6 const blow_stance monk_stances[MAX_KAMAE] = {
7     { _("玄武", "Genbu"), 25, _("", "(Black Tortoise) ") },
8     { _("白虎", "Byakko"), 30, _("", "(White Tiger) ") },
9     { _("青竜", "Seiryuu"), 35, _("", "(Blue Dragon) ") },
10     { _("朱雀", "Suzaku"), 40, _("", "(Red Phoenix) ") },
11 };
12
13 /*!
14  * @brief 剣術家の構え能力テーブル
15  */
16 const blow_stance samurai_stances[MAX_KATA] = {
17     { _("居合", "Iai"), 25, "" },
18     { _("風塵", "Huujin"), 30, "" },
19     { _("降鬼", "Kouki"), 35, "" },
20     { _("無想", "Musou"), 40, "" },
21 };