TL Combine Menus

This commit is contained in:
Dazed 2023-12-16 09:19:54 -06:00
parent 254a71a3e5
commit 022f6e62c3
3 changed files with 29 additions and 29 deletions

View file

@ -85,7 +85,7 @@
{
"code": 356,
"indent": 0,
"parameters": ["ICS_Open アイテムを組み合わせる"]
"parameters": ["ICS_Open Combine_Items"]
},
{ "code": 0, "indent": 0, "parameters": [] }
],

View file

@ -43,39 +43,39 @@ var $plugins = [
"Composit Title Format": "[]",
"Composit Title Align": "0",
"Comp Title Opacity": "192",
"Comp Title Frame Hide": "表示する(show)",
"Comp Title Frame Hide": "Show",
"--合成コマンドウィンドウの設定--": "",
"Command List": '["action,item,end"]',
"Change Materials Name": "",
"Change Resipes Name": "",
"Slot Cmd Name": "",
"Action Cmd Name": '["組み合わせる"]',
"End Cmd Name": '["ゲームに戻る"]',
"Item Cmd Name": '["アイテム選択"]',
"Action Cmd Name": '["Combine"]',
"End Cmd Name": '["Return"]',
"Item Cmd Name": '["Item"]',
"Weapon Cmd Name": "",
"Armor Cmd Name": "",
"Composit Command Align": "0",
"Comp Cmd Opacity": "192",
"Comp Cmd Frame Hide": "表示する(show)",
"Comp Cmd Frame Hide": "Show",
"--アイテムリストウィンドウの設定--": "",
"Item List Opacity": "192",
"Item List Frame Hide": "表示する(show)",
"Item List Frame Hide": "Show",
"--素材数指定ウィンドウの設定--": "",
"Show Number Button": "1",
"Display Materials On Number": "0",
"Number Opacity": "192",
"Number Frame Hide": "表示する(show)",
"Number Frame Hide": "Show",
"--スロットタイトルウィンドウの設定--": "",
"Slot Title Format": '["\\\\c[16]選択したアイテム"]',
"Slot Title Format": '["\\\\c[16]Selected"]',
"Slot Title Align": "0",
"Slot Title Opacity": "192",
"Slot Title Frame Hide": "表示する(show)",
"Slot Title Frame Hide": "Show",
"--素材スロットウィンドウの設定--": "",
"Empty Format": '["未設定"]',
"Empty Format": '["Empty"]',
"Empty Icon": "0",
"Return All Slot": '[""]',
"Slot Opacity": "192",
"Slot Frame Hide": "表示する(show)",
"Slot Frame Hide": "Show",
"--合成情報タイトルウィンドウの設定--": "",
"Status Title Format": "[]",
"Status Title Align": "0",
@ -92,24 +92,24 @@ var $plugins = [
"Status Opacity": "0",
"Status Frame Hide": "表示しない(hide)",
"--確認ウィンドウの設定(Confirmation Window)--": "",
"Conf Title Format": '["\\\\c[16]合成実行の確認"]',
"Conf Title Format": '["\\\\c[16]Confirm"]',
"Conf Title Align": "0",
"Confirmation Ok Format": '["実行する"]',
"Confirmation Cancel Format": '["実行しない"]',
"Confirmation Ok Format": '["Execute"]',
"Confirmation Cancel Format": '["Cancel"]',
"Conf Command Align": "1",
"Confirmation Opacity": "192",
"Confirmation Frame Hide": "表示する(show)",
"Confirmation Frame Hide": "Show",
"--合成結果ウィンドウの設定--": "",
"Result Title Format": '["\\\\c[16]結果"]',
"Result Title Format": '["\\\\c[16]Result"]',
"Result Title Align": "0",
"Result Great Success": '["大成功"]',
"Result Success": '["これで使えそうだ!"]',
"Result Failure": '["失敗"]',
"Result Lost": '["消失"]',
"Result Reset": '["組み合わせられないみたい"]',
"Result Ok Format": '["確認"]',
"Result Great Success": '["Great Success!"]',
"Result Success": '["Success"]',
"Result Failure": '["Failure"]',
"Result Lost": '["Lost"]',
"Result Reset": '["I can\'t combine them."]',
"Result Ok Format": '["Confirm"]',
"Result Opacity": "192",
"Result Frame Hide": "表示する(show)",
"Result Frame Hide": "Show",
"--終了確認ウィンドウの設定--": "",
"End Title Format": '["\\\\c[16]合成を終了しますか?"]',
"End Title Align": "0",

View file

@ -1519,11 +1519,11 @@ function Game_IcsRecipeBook() {
if (args.length === 1 && !isNaN(args[0])) {
FTKR.ICS.openType = Number(args[0]);
} else {
if (args[0]) FTKR.ICS.windowText.title = args[0];
if (args[1]) FTKR.ICS.windowText.slotTitle = args[1];
if (args[2]) FTKR.ICS.windowText.statusTitle = args[2];
if (args[3]) FTKR.ICS.windowText.command = setArgStr(args[3]);
if (args[4]) FTKR.ICS.windowText.background = setArgStr(args[4]);
if (args[0]) FTKR.ICS.windowText.title = args[0].replace(/_/g, ' ');
if (args[1]) FTKR.ICS.windowText.slotTitle = args[1].replace(/_/g, ' ');
if (args[2]) FTKR.ICS.windowText.statusTitle = args[2].replace(/_/g, ' ');
if (args[3]) FTKR.ICS.windowText.command = setArgStr(args[3].replace(/_/g, ' '));
if (args[4]) FTKR.ICS.windowText.background = setArgStr(args[4].replace(/_/g, ' '));
}
SceneManager.push(Scene_ICS);
break;