TL Some vars and ui

This commit is contained in:
DazedAnon 2025-02-28 12:51:29 -06:00
parent f1e2092ad9
commit d62e20583a
3 changed files with 18 additions and 18 deletions

View file

@ -48896,7 +48896,7 @@
310,
0,
4,
"'再投資'"
"`Reinvestment`"
]
},
{
@ -48963,7 +48963,7 @@
310,
0,
4,
"'再投資'"
"`Reinvestment`"
]
},
{
@ -50170,7 +50170,7 @@
310,
0,
4,
"'受け取り'"
"`Receive`"
]
},
{
@ -50219,7 +50219,7 @@
310,
0,
4,
"'再投資'"
"`Reinvest`"
]
},
{

File diff suppressed because one or more lines are too long

View file

@ -2268,10 +2268,10 @@ YukiKP.ItemComposition = YukiKP.ItemComposition || {};
Window_ItemCompositionCommand.prototype.makeCommandList = function () {
if (YukiKP.ItemComposition.isViewComposition()) {
this.addCommand("合成する", "composition", this.isEnabledComposition());
this.addCommand("Synthesize", "composition", this.isEnabledComposition());
}
if (YukiKP.ItemComposition.isViewUpgrade()) {
this.addCommand("強化する", "upgrade", this.isEnabledUpgrade());
this.addCommand("Enhance", "upgrade", this.isEnabledUpgrade());
}
this.addCommand(TextManager.cancel, "cancel");
};