OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[hengbandforosx/hengbandosx.git] / src / mind / stances-table.cpp
1 #include "mind/stances-table.h"
2
3 /*!
4  * @brief 修行僧の構え能力テーブル
5  */
6 const std::vector<blow_stance> monk_stances = {
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 std::vector<blow_stance> samurai_stances = {
17     { _("居合", "Iai"), 25, "" },
18     { _("風塵", "Huujin"), 30, "" },
19     { _("降鬼", "Kouki"), 35, "" },
20     { _("無想", "Musou"), 40, "" },
21 };