This commit is contained in:
dazedanon 2025-09-18 08:58:57 -05:00
parent 4e4b84fe9f
commit be3e8ea0e8
2 changed files with 4 additions and 4 deletions

View file

@ -139,7 +139,7 @@
"Body",
"Panties"
],
"gameTitle": "Magical Girl Pureful Lily | TL: DazedAnon",
"gameTitle": "Magical Girl Pureful Lily | TL: DazedAnon & O&M",
"gameoverMe": {
"name": "Gameover1",
"pan": 0,

View file

@ -554,7 +554,7 @@
this.drawText(TextManager.param(3), col2X, y + lineHeight * 1, labelWidth);
this.drawText(actor.def, valueX, y + lineHeight * 1, statusValueWidth, 'right');
this.drawText("会心率", col2X, y + lineHeight * 2, labelWidth);
this.drawText("Crit Rate", col2X, y + lineHeight * 2, labelWidth);
const finalCri = actor.cri + (actor.luk / 10 / 100);
this.drawText(Math.floor(finalCri * 100), valueX, y + lineHeight * 2, statusValueWidth, 'right');
this.drawText("%", unitX, y + lineHeight * 2, statusUnitWidth, 'left');
@ -705,7 +705,7 @@
const label1Width = this.textWidth(label1);
const value1Width = this.textWidth(String(value1));
const label2 = "次のレベルまで";
const label2 = "Next Lv";
const value2 = actor.isMaxLevel() ? "MAX" : actor.nextRequiredExp().toLocaleString();
const label2Width = this.textWidth(label2);
const value2Width = this.textWidth(value2);
@ -732,7 +732,7 @@
const rightSidePadding = 12; // ウィンドウ右端からの余白
// 所持金ブロックの各要素のテキストとその幅を計算
const label3 = "所持金";
const label3 = "Money";
const value3 = $gameParty.gold().toLocaleString();
const unit3 = TextManager.currencyUnit;
const label3Width = this.textWidth(label3);