Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Japanese localization #16

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/main/java/com/evacipated/cardcrawl/mod/stslib/StSLib.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ public void receiveEditKeywords()
case ZHT:
language = "zht";
break;
case JPN:
language = "jpn";
break;
}

loadLangKeywords("eng");
Expand Down Expand Up @@ -99,6 +102,9 @@ public void receiveEditStrings()
case ZHT:
language = "zht";
break;
case JPN:
language = "jpn";
break;
}

loadLangStrings("eng");
Expand Down
91 changes: 91 additions & 0 deletions src/main/resources/localization/stslib/jpn/keywords.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
[
{
"NAMES": [
"パージ",
"purge"
],
"DESCRIPTION": "戦闘終了まで除外される。 廃棄 の山には #r行かない 。"
},
{
"NAMES": [
"保持",
"retain"
],
"DESCRIPTION": "ターン終了時に捨てられない。"
},
{
"NAMES": [
"オートプレイ",
"autoplay"
],
"DESCRIPTION": "このカードは引かれたときに自動的にプレイされる。"
},
{
"NAMES": [
"soulbound",
"ソウルバウンド"
],
"DESCRIPTION": "デッキから除外できない。"
},
{
"NAMES": [
"スネッコ",
"snecko"
],
"DESCRIPTION": "このカードが引かれたとき、コストがランダムに変化する。"
},
{
"NAMES": [
"grave",
"埋葬"
],
"DESCRIPTION": "このカードを捨ててから戦闘を始める。"
},
{
"NAMES": [
"一瞬",
"fleeting"
],
"DESCRIPTION": "このカードは #yパージ し、使用時にデッキから除外される。"
},
{
"PROPER_NAME": "一時HP",
"NAMES": [
"一時HP",
"temporary hp",
"temporary_hp"
],
"DESCRIPTION": "一時HPは戦闘終了時になくなる。"
},
{
"NAMES": [
"取り出し",
"取り出す",
"fetch"
],
"DESCRIPTION": "指定の山から指定のカードを選び、手札に加える。"
},
{
"NAMES": [
"払い戻し",
"払い戻す",
"refund",
"refunds"
],
"DESCRIPTION": "カードのプレイ時に消費したエナジーを、払い戻し額まで返す。"
},
{
"NAMES": [
"廃棄性",
"exhaustive"
],
"DESCRIPTION": "一定回数の使用後に #y廃棄 する。"
},
{
"NAMES": [
"スタートアップ",
"startup"
],
"DESCRIPTION": "戦闘開始時にトリガーとなる。"
}
]
17 changes: 17 additions & 0 deletions src/main/resources/localization/stslib/jpn/powers.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"stslib:Stunned": {
"NAME": "スタン",
"DESCRIPTIONS": [
"#b",
" ターン何もできない。",
" ターン何もできない。"
]
},
"stslib:ExhaustiveNegationPower": {
"NAME": "廃棄性無効",
"DESCRIPTIONS": [
"次の #b",
" 回、 廃棄性 のカードをプレイしても 廃棄性 のカウントが減らない。"
]
}
}
10 changes: 10 additions & 0 deletions src/main/resources/localization/stslib/jpn/relics.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"stslib:Clickable": {
"NAME": "クリック可能",
"FLAVOR": "これは決して見られるべきではない。",
"DESCRIPTIONS": [
"[#2aecd7]戦闘中に右クリックで有効化。[]",
"[#2aecd7]右クリックで有効化。[]"
]
}
}