ReC98/th04/strings/m_char.c

18 lines
636 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

static const int PLAYCHAR_TITLE_LEN = 24;
static const int PLAYCHAR_TITLE_LINES = 2;
static const int SHOTTYPE_TITLE_LEN = 24;
static const int SHOTTYPE_CHOOSE_LEN = 21;
const unsigned char *PLAYCHAR_TITLE[PLAYCHAR_COUNT][PLAYCHAR_TITLE_LINES] = {
{ " 博麗靈夢(巫女さん) ", " 広範囲攻撃型  " },
{ " 霧雨魔理沙(魔法使い)", " 攻撃力重視型 " },
};
const unsigned char *SHOTTYPE_TITLE[PLAYCHAR_COUNT][SHOTTYPE_COUNT] = {
{ "  サーチショット  ", " ワイドショット " },
{ "イリュージョンレーザー", " ラピッドショット " },
};
#define SHOTTYPE_CLEARED "☆"
#define SHOTTYPE_CHOOSE "サブウェポンの選択"