OSDN Git Service

[Refactor] #38997 cave_fill() に floor_type * 引数を追加. / Add floor_type * argument to...
[hengband/hengband.git] / src / player-skill.c
1 #include "angband.h"
2 #include "player-skill.h"
3
4 /*
5  * The skill table
6  */
7 skill_table *s_info;
8
9 /*!
10  * @brief 技能値到達表記テーブル
11  */
12 const concptr exp_level_str[5] =
13 #ifdef JP
14 { "[初心者]", "[入門者]", "[熟練者]", "[エキスパート]", "[達人]" };
15 #else
16 {"[Unskilled]", "[Beginner]", "[Skilled]", "[Expert]", "[Master]"};
17 #endif