From bc8e7aa1688f517e752fafb5b84009eb92976c5e Mon Sep 17 00:00:00 2001 From: dazedanon Date: Mon, 3 Nov 2025 10:10:17 -0600 Subject: [PATCH] TL More drawText --- js/plugins/CBR_eroStatus_kaihatu.js | 4 ++-- js/plugins/CBR_eroStatus_main.js | 22 +++++++++++----------- js/plugins/CBR_ev_rec.js | 8 ++++---- js/plugins/CBR_menu_equip.js | 18 +++++++++--------- js/plugins/CBR_menu_item.js | 16 ++++++++-------- js/plugins/CBR_menu_skill.js | 12 ++++++------ js/plugins/CBR_save.js | 4 ++-- js/plugins/CBR_shop.js | 26 +++++++++++++------------- js/plugins/CBR_sideEpisode.js | 4 ++-- js/plugins/CBR_travel.js | 8 ++++---- js/plugins/LL_VariableWindow.js | 12 ++++++------ 11 files changed, 67 insertions(+), 67 deletions(-) diff --git a/js/plugins/CBR_eroStatus_kaihatu.js b/js/plugins/CBR_eroStatus_kaihatu.js index 16a47e8..e7e7c9b 100644 --- a/js/plugins/CBR_eroStatus_kaihatu.js +++ b/js/plugins/CBR_eroStatus_kaihatu.js @@ -333,9 +333,9 @@ function Window_EroStatus_kaihatu_view() { this.contents.fontSize = 14; if (exp_val >= keiken[rank_num]) { this.contents.blt(this.menu_rank_skin, 0, 0, 208, 26, 175, rect.y + 1); - this.drawTextM("RANK UP!", 304, rect.y - 21, 100, "left"); + this.drawTextM("RANK UP!!", 304, rect.y - 21, 100, "left"); } - this.drawTextM(`EXP:${Math.min(exp_val, 9999)}`, 194, rect.y - 21, 100, "left"); + this.drawTextM(`EXP: ${Math.min(exp_val, 9999)}`, 194, rect.y - 21, 100, "left"); this.placeGauge(actor, `ero_${info.id}`, rect.x + 180, rect.y - 10, info[chara]); }; diff --git a/js/plugins/CBR_eroStatus_main.js b/js/plugins/CBR_eroStatus_main.js index a81df2d..74fec4d 100644 --- a/js/plugins/CBR_eroStatus_main.js +++ b/js/plugins/CBR_eroStatus_main.js @@ -70,7 +70,7 @@ function Scene_eroStatus() { b.fontFace = "serif"; b.fontSize = 32; b.textColor = "#000000"; - b.drawTextM("Hステータス", 22, 20, 200, 22, "center"); + b.drawTextM("H Status", 22, 20, 200, 22, "center"); this.addChild(this._backgroundTextSprite); }; @@ -816,12 +816,12 @@ function Scene_eroStatus() { var sX = 84; var lineX = 98; this.changeTextColor("#000000"); - this.drawTextM("名前", sX, sY, 400); - this.drawTextM("身長", sX, sY + lineY, 400); - this.drawTextM("3サイズ", sX, sY + lineY * 2, 400); - this.drawTextM("バスト", sX + lineX, sY + lineY * 2, 400); - this.drawTextM("ウエスト", sX + lineX, sY + lineY * 3, 400); - this.drawTextM("ヒップ", sX + lineX, sY + lineY * 4, 400); + this.drawTextM("Name", sX, sY, 400); + this.drawTextM("Height", sX, sY + lineY, 400); + this.drawTextM("3 Sizes", sX, sY + lineY * 2, 400); + this.drawTextM("Bust", sX + lineX, sY + lineY * 2, 400); + this.drawTextM("Waist", sX + lineX, sY + lineY * 3, 400); + this.drawTextM("Hips", sX + lineX, sY + lineY * 4, 400); this.resetTextColor(); this.contents.fontSize = 18; @@ -839,10 +839,10 @@ function Scene_eroStatus() { var sX = 84; var lineX = 75; this.changeTextColor("#000000"); - this.drawTextM("最近のH経験報告", sX, sY, 400); - this.drawTextM("相手", sX, sY + lineY, 400); - this.drawTextM("種族", sX, sY + lineY * 2, 400); - this.drawTextM("場所", sX, sY + lineY * 3, 400); + this.drawTextM("Recent H Experience Report", sX, sY, 400); + this.drawTextM("Partner", sX, sY + lineY, 400); + this.drawTextM("Race", sX, sY + lineY * 2, 400); + this.drawTextM("Location", sX, sY + lineY * 3, 400); this.resetTextColor(); this.contents.fontSize = 17; diff --git a/js/plugins/CBR_ev_rec.js b/js/plugins/CBR_ev_rec.js index 4a65436..1b10155 100644 --- a/js/plugins/CBR_ev_rec.js +++ b/js/plugins/CBR_ev_rec.js @@ -36,7 +36,7 @@ DataManager._databaseFiles.push({ name: "CBR_evRecos", src: "CBR_eventList.json" b.fontFace = "serif"; b.fontSize = 32; b.textColor = "#000000"; - b.drawTextM("イベント記録", 22, 20, 200, 22, "center"); + b.drawTextM("Event Records", 22, 20, 200, 22, "center"); this.addChild(this._backgroundTextSprite); }; @@ -438,9 +438,9 @@ DataManager._databaseFiles.push({ name: "CBR_evRecos", src: "CBR_eventList.json" this.drawTextM(data.title, -26, 30, rect.width, "center"); this.contents.fontSize = 16; - this.drawTextM("進行状況", -24, 78, 140, "center"); - this.drawTextM("イベント手順", -24, 110, 140, "center"); - this.drawTextM("概要", -24, 260, 140, "center"); + this.drawTextM("Progress", -24, 78, 140, "center"); + this.drawTextM("Event Steps", -24, 110, 140, "center"); + this.drawTextM("Description", -24, 260, 140, "center"); this.changeTextColor("#FFFFFF"); var type_text = "発生中"; diff --git a/js/plugins/CBR_menu_equip.js b/js/plugins/CBR_menu_equip.js index 6155dee..97324c3 100644 --- a/js/plugins/CBR_menu_equip.js +++ b/js/plugins/CBR_menu_equip.js @@ -27,7 +27,7 @@ b.fontFace = "serif"; b.fontSize = 32; b.textColor = "#000000"; - b.drawTextM("装備", 22, 20, 200, 22, "center"); + b.drawTextM("Equipment", 22, 20, 200, 22, "center"); this.addChild(this._backgroundTextSprite); this._backgroundTextSprite2 = new Sprite(ImageManager.loadSystem("menu_equip_seifuku_1")); @@ -218,7 +218,7 @@ this.changeTextColor("#000000"); this.contents.fontFace = "serif"; this.contents.fontSize = 22; - this.drawTextM("アーティファクト", 65, 204, 300); + this.drawTextM("Artifact", 65, 204, 300); //var weap = this._actor.equips()[6]; //if (weap) { this.contents.fontSize = 26; @@ -399,7 +399,7 @@ b.fontFace = "serif"; b.fontSize = 24; b.textColor = "#000000"; - b.drawTextM(this.index() === 6 ? "服装変更" : "装備", 0, 0, b.width, b.height, "center"); + b.drawTextM(this.index() === 6 ? "Change Outfit" : "Equip", 0, 0, b.width, b.height, "center"); }; Window_EquipSlot.prototype._refreshCursor = function () { @@ -426,7 +426,7 @@ b.fontFace = "serif"; b.fontSize = 24; b.textColor = "#000000"; - b.drawTextM("装備", 0, 0, b.width, b.height, "center"); + b.drawTextM("Equip", 0, 0, b.width, b.height, "center"); this._cursorSprite.addChild(this._cursorTextSprite); } @@ -439,9 +439,9 @@ this.contents.fontFace = "serif"; this.contents.fontSize = 24; this.contents.textColor = "#000000"; - this.drawTextM("アクセサリー", 128, 10, 300, "center"); - this.drawTextM("パッシブスキル", 128, 232, 300, "center"); - this.drawTextM("服装変更", 128, 454, 300, "center"); + this.drawTextM("Accessories", 128, 10, 300, "center"); + this.drawTextM("Passive Skills", 128, 232, 300, "center"); + this.drawTextM("Change Outfit", 128, 454, 300, "center"); this.contents.fontSize = 20; this.contents.textColor = "#FFFFFF"; @@ -549,7 +549,7 @@ b.fontFace = "serif"; b.fontSize = 18; b.textColor = "#000000"; - b.drawTextM("所持数", 570, 72, 200, 22, "center"); + b.drawTextM("Quantity", 570, 72, 200, 22, "center"); this.addChild(this._bSprite); // windowが重なっても透過させる @@ -813,7 +813,7 @@ this.contents.fontFace = "serif"; this.changeTextColor("#000000"); this.contents.fontSize = 20; - this.drawTextM("概要", 0, -3, 80, "center"); + this.drawTextM("Description", 0, -3, 80, "center"); this.changeTextColor("#FFFFFF"); this.drawTextExS(this._text, rect.x + 88, rect.y + 2, rect.width); diff --git a/js/plugins/CBR_menu_item.js b/js/plugins/CBR_menu_item.js index e81928b..7fab331 100644 --- a/js/plugins/CBR_menu_item.js +++ b/js/plugins/CBR_menu_item.js @@ -11,7 +11,7 @@ b.fontFace = "serif"; b.fontSize = 32; b.textColor = "#000000"; - b.drawTextM("アイテム", 22, 20, 200, 22, "center"); + b.drawTextM("Items", 22, 20, 200, 22, "center"); this.addChild(this._backgroundTextSprite); this._backgroundTextSprite3 = new Sprite(new Bitmap(200, 50)); @@ -19,8 +19,8 @@ b3.fontFace = "serif"; b3.fontSize = 18; b3.textColor = "#000000"; - b3.drawTextM("所持数", 0, 0, 200, 50, "center"); - this._backgroundTextSprite3.x = 572; + b3.drawTextM("Quantity", 0, 0, 200, 50, "center"); + this._backgroundTextSprite3.x = 614; this._backgroundTextSprite3.y = 58; this.addChild(this._backgroundTextSprite3); @@ -29,7 +29,7 @@ b4.fontFace = "serif"; b4.fontSize = 26; b4.textColor = "#000000"; - b4.drawTextM("アイテムを使う", 0, 0, 200, 50, "center"); + b4.drawTextM("Use Item", 0, 0, 200, 50, "center"); this._backgroundTextSprite4.x = 920; this._backgroundTextSprite4.y = 124; this.addChild(this._backgroundTextSprite4); @@ -424,11 +424,11 @@ this.contents.clear(); this.contents.fontFace = "serif"; - this.changeTextColor("#000000"); - this.contents.fontSize = 20; - this.drawTextM("概要", 16, -3, 80, "center"); + this.changeTextColor("#000000"); + this.contents.fontSize = 20; + this.drawTextM("Description", 16, -3, 80, "center"); - this.changeTextColor("#FFFFFF"); + this.changeTextColor("#FFFFFF"); this.drawTextExS(this._text, rect.x + 100, rect.y, rect.width); }; this.addWindow(this._helpWindow); diff --git a/js/plugins/CBR_menu_skill.js b/js/plugins/CBR_menu_skill.js index 5083cd6..18df752 100644 --- a/js/plugins/CBR_menu_skill.js +++ b/js/plugins/CBR_menu_skill.js @@ -11,7 +11,7 @@ b.fontFace = "serif"; b.fontSize = 32; b.textColor = "#000000"; - b.drawTextM("スキル", 22, 20, 200, 22, "center"); + b.drawTextM("Skills", 22, 20, 200, 22, "center"); this.addChild(this._backgroundTextSprite); this._backgroundTextSprite3 = new Sprite(new Bitmap(200, 50)); @@ -19,7 +19,7 @@ b3.fontFace = "serif"; b3.fontSize = 18; b3.textColor = "#000000"; - b3.drawTextM("消費SP", 0, 0, 200, 50, "center"); + b3.drawTextM("SP Cost", 0, 0, 200, 50, "center"); this._backgroundTextSprite3.x = 572; this._backgroundTextSprite3.y = 58; this.addChild(this._backgroundTextSprite3); @@ -29,7 +29,7 @@ b4.fontFace = "serif"; b4.fontSize = 26; b4.textColor = "#000000"; - b4.drawTextM("スキルを使う", 0, 0, 200, 50, "center"); + b4.drawTextM("Use Skill", 0, 0, 200, 50, "center"); this._backgroundTextSprite4.x = 920; this._backgroundTextSprite4.y = 124; this.addChild(this._backgroundTextSprite4); @@ -405,9 +405,9 @@ this.contents.fontFace = "serif"; this.changeTextColor("#000000"); this.contents.fontSize = 20; - this.drawTextM("概要", 16, 35, 80, "center"); - this.drawTextM("属性", rect.x + 28, rect.y + 4, rect.width); - this.drawTextM("範囲", rect.x + 388, rect.y + 4, rect.width); + this.drawTextM("Description", 16, 35, 80, "center"); + this.drawTextM("Attribute", rect.x + 28, rect.y + 4, rect.width); + this.drawTextM("Range", rect.x + 388, rect.y + 4, rect.width); if (this.CBR_skill) { this.changeTextColor("#FFFFFF"); this.drawTextS(["Sure Hit", "Physical", "Magical"][this.CBR_skill.hitType], rect.x + 108, rect.y + 4, rect.width); diff --git a/js/plugins/CBR_save.js b/js/plugins/CBR_save.js index 59792a3..2144baf 100644 --- a/js/plugins/CBR_save.js +++ b/js/plugins/CBR_save.js @@ -16,9 +16,9 @@ function Window_SaveType() { b.fontSize = 32; b.textColor = "#000000"; if (!this._fromTitle) { - b.drawTextM("セーブ / ロード", 22, 20, 200, 22, "center"); + b.drawTextM("Save / Load", 22, 20, 200, 22, "center"); } else { - b.drawTextM("コンティニュ-", 22, 20, 200, 22, "center"); + b.drawTextM("Continue", 22, 20, 200, 22, "center"); } this.addChild(this._backgroundTextSprite); }; diff --git a/js/plugins/CBR_shop.js b/js/plugins/CBR_shop.js index 18ba777..3ff35e5 100644 --- a/js/plugins/CBR_shop.js +++ b/js/plugins/CBR_shop.js @@ -46,7 +46,7 @@ function CBR_Window_ShopDo() { b.fontFace = "serif"; b.fontSize = 32; b.textColor = "#000000"; - b.drawTextM("ショップ", 22, 20, 200, 22, "center"); + b.drawTextM("Shop", 22, 20, 200, 22, "center"); this.addChild(this._backgroundTextSprite); this._backgroundTextSprite2 = new Sprite(new Bitmap(200, 50)); @@ -54,7 +54,7 @@ function CBR_Window_ShopDo() { b2.fontFace = "serif"; b2.fontSize = 18; b2.textColor = "#000000"; - b2.drawTextM("価格", 0, 0, 200, 50, "center"); + b2.drawTextM("Price", 0, 0, 200, 50, "center"); this._backgroundTextSprite2.x = 524; this._backgroundTextSprite2.y = 58; this.addChild(this._backgroundTextSprite2); @@ -64,7 +64,7 @@ function CBR_Window_ShopDo() { b3.fontFace = "serif"; b3.fontSize = 18; b3.textColor = "#000000"; - b3.drawTextM("所持数", 0, 0, 200, 50, "center"); + b3.drawTextM("Quantity", 0, 0, 200, 50, "center"); this._backgroundTextSprite3.x = 614; this._backgroundTextSprite3.y = 58; this.addChild(this._backgroundTextSprite3); @@ -540,10 +540,10 @@ function CBR_Window_ShopDo() { this.drawItemBackground(0); this.contents.textColor = "#000000"; - this.drawTextM("所持金", 154, 24, 200, "center"); - this.drawTextM("購入合計", 154, 54, 200, "center"); - this.drawTextM("円", 326, 24, 200, "center"); - this.drawTextM("円", 326, 54, 200, "center"); + this.drawTextM("Money", 154, 24, 200, "center"); + this.drawTextM("Purchase Total", 154, 54, 200, "center"); + this.drawTextM("Yen", 326, 24, 200, "center"); + this.drawTextM("Yen", 326, 54, 200, "center"); this.contents.textColor = "#FFFFFF"; this.drawTextS($gameParty.gold(), 95, 24, 300, "right"); }; @@ -604,10 +604,10 @@ function CBR_Window_ShopDo() { this.drawTotalPrice(); this.contents.textColor = "#000000"; - this.drawTextM("所持金", 154, 24, 200, "center"); - this.drawTextM("購入合計", 154, 54, 200, "center"); - this.drawTextM("円", 326, 24, 200, "center"); - this.drawTextM("円", 326, 54, 200, "center"); + this.drawTextM("Money", 154, 24, 200, "center"); + this.drawTextM("Purchase Total", 154, 54, 200, "center"); + this.drawTextM("Yen", 326, 24, 200, "center"); + this.drawTextM("Yen", 326, 54, 200, "center"); this.contents.textColor = "#FFFFFF"; this.drawTextS($gameParty.gold(), 95, 24, 300, "right"); }; @@ -702,7 +702,7 @@ function CBR_Window_ShopDo() { this.changePaintOpacity(this.isCommandEnabled(index)); if (this.parent && this.parent.parent._commandWindow.currentSymbol() !== "buy" && !index) { - this.drawTextM("売却", rect.x, rect.y, rect.width, align); + this.drawTextM("Sell", rect.x, rect.y, rect.width, align); } else { this.drawTextM(this.commandName(index), rect.x, rect.y, rect.width, align); } @@ -818,7 +818,7 @@ function CBR_Window_ShopDo() { this.contents.fontFace = "serif"; this.contents.fontSize = 18; this.contents.textColor = "#000000"; - this.drawTextM("概要", rect.x + 4, rect.y - 3, 80, "center"); + this.drawTextM("Description", rect.x + 4, rect.y - 3, 80, "center"); this.contents.textColor = "#FFFFFF"; this.drawTextExS(this._text, rect.x + 100, rect.y + 2, rect.width); }; diff --git a/js/plugins/CBR_sideEpisode.js b/js/plugins/CBR_sideEpisode.js index 74b50c2..9f49715 100644 --- a/js/plugins/CBR_sideEpisode.js +++ b/js/plugins/CBR_sideEpisode.js @@ -47,7 +47,7 @@ DataManager._databaseFiles.push({ name: "CBR_sideEpisodes", src: "CBR_sideEpisod b.fontFace = "serif"; b.fontSize = 32; b.textColor = "#000000"; - b.drawTextM("サイドエピソード", 22, 20, 200, 22, "center"); + b.drawTextM("Side Episodes", 22, 20, 200, 22, "center"); this.addChild(this._backgroundTextSprite); }; @@ -319,7 +319,7 @@ DataManager._databaseFiles.push({ name: "CBR_sideEpisodes", src: "CBR_sideEpisod this.contents.fontSize = 26; this.changeTextColor("#000000"); this.contents.fontSize = 20; - this.drawTextM("概要", -4, 498, 100, "center"); + this.drawTextM("Description", -4, 498, 100, "center"); this.changeTextColor("#FFFFFF"); this.drawTextExS(data.text, 102, 504, 600, "left"); diff --git a/js/plugins/CBR_travel.js b/js/plugins/CBR_travel.js index 4e54899..10415d2 100644 --- a/js/plugins/CBR_travel.js +++ b/js/plugins/CBR_travel.js @@ -45,7 +45,7 @@ function Scene_Travel() { b.fontFace = "serif"; b.fontSize = 32; b.textColor = "#000000"; - b.drawTextM("ファストトラベル", 22, 20, 200, 22, "center"); + b.drawTextM("Fast Travel", 22, 20, 200, 22, "center"); this.addChild(this._backgroundTextSprite); }; @@ -539,7 +539,7 @@ $gamePlayer.reserveTransfer( this.contents.fontSize = 22; this.changeTextColor("#000000"); - this.drawTextM("移動する", 8, 32, rect.width, "center"); + this.drawTextM("Travel", 8, 32, rect.width, "center"); this.contents.fontSize = 28; this.changeTextColor("#000000"); @@ -556,8 +556,8 @@ $gamePlayer.reserveTransfer( } this.contents.fontSize = 20; - this.drawTextM("現在地", 46, 398, 100, "left"); - this.drawTextM("目的地", 46, 429, 100, "left"); + this.drawTextM("Current Location", 46, 398, 100, "left"); + this.drawTextM("Destination", 46, 429, 100, "left"); this.changeTextColor("#FFFFFF"); this.drawTextS($dataMapInfos[$gameMap.mapId()].name, 148, 398, 200, "left"); diff --git a/js/plugins/LL_VariableWindow.js b/js/plugins/LL_VariableWindow.js index 1ea7b91..01061aa 100644 --- a/js/plugins/LL_VariableWindow.js +++ b/js/plugins/LL_VariableWindow.js @@ -413,14 +413,14 @@ this.contents.fontSize = 22; this.changeTextColor("#000000"); - this.drawTextM("エッチ経験", 15, 122, 300, "center"); + this.drawTextM("H Experience", 15, 122, 300, "center"); - this.drawTextM("経験相手", 330, 122, 300, "center"); - this.drawTextM("絶頂・射精", 330, 122 + 27 * 4 + 2, 300, "center"); - this.drawTextM("エロシチュ", 330, 122 + 27 * 12 + 2 * 2, 300, "center"); + this.drawTextM("Partners", 330, 122, 300, "center"); + this.drawTextM("Climax/Ejaculation", 330, 122 + 27 * 4 + 2, 300, "center"); + this.drawTextM("Situations", 330, 122 + 27 * 12 + 2 * 2, 300, "center"); - this.drawTextM("エロ商売", 645, 122, 300, "center"); - this.drawTextM("出産", 645, 122 + 27 * 7 + 2, 300, "center"); + this.drawTextM("Sex Work", 645, 122, 300, "center"); + this.drawTextM("Births", 645, 122 + 27 * 7 + 2, 300, "center"); this.changeTextColor("#FFFFFF"); this.contents.fontSize = 18;