From 511721f0f1bc027e863ea5869ceebb8c9f6114e2 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Thu, 23 Oct 2025 12:58:24 -0500 Subject: [PATCH] TL ero acc files --- data/Plugin/着替え.js | 49 +++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 25 deletions(-) diff --git a/data/Plugin/着替え.js b/data/Plugin/着替え.js index bc6a759..1ffbb2b 100644 --- a/data/Plugin/着替え.js +++ b/data/Plugin/着替え.js @@ -1,24 +1,23 @@ - var itemIdMap = { - 24: -2 // 裸で出撃 - ,35: -1 // 淫魔の首輪 - ,22: 4 // 乳首ピアス - ,23: 7 // 裸で出撃 - ,25: 5 // ぶっかけA - ,31: 6 // ぶっかけB - ,26: 1 // 落書き1 - ,27: 2 // 落書き2 + 24: -2 // Deploy Naked + ,35: -1 // Succubus Collar + ,22: 4 // Nipple Piercing + ,23: 7 // Deploy Naked + ,25: 5 // Cumshot A + ,31: 6 // Cumshot B + ,26: 1 // Graffiti 1 + ,27: 2 // Graffiti 2 ,28: 3 ,30: 0 - ,29: 8 // 黒乳首 - ,12: 9 // 性処理当番 - ,13: 10 // 中出し - ,14: 11 // 出産1回 - ,15: 12 // 出産2回 - ,16: 13 // 出産3回 - ,18: 14 // 乳 - ,33: 15 // 変形まんこ - ,34: 16 // 避妊の法 + ,29: 8 // Black Nipples + ,12: 9 // Sex Relief Duty + ,13: 10 // Creampie + ,14: 11 // Childbirth x1 + ,15: 12 // Childbirth x2 + ,16: 13 // Childbirth x3 + ,18: 14 // Breasts + ,33: 15 // Deformed Pussy + ,34: 16 // Contraceptive Law }; @@ -128,11 +127,11 @@ MarshalCommand.UnitEquip = defineObject(MarshalBaseCommand, }, getCommandName: function() { - return 'エロアクセ装備'; + return 'Erotic Accessories'; }, getMarshalDescription: function() { - return '女の子のエロアクセの設定をします'; + return 'Setup ero accessories for the selected unit.'; }, _createScreenParam: function() { @@ -210,11 +209,11 @@ var EquipScreen = defineObject(BaseScreen, var yy = 690; var font = root.getBaseData().getFontList().getData(10); if (item !== null && item.getId() == 34) { - var text = '妊娠しなくなります'; + var text = 'Will no longer become pregnant'; TextRenderer.drawText(104, yy, text, -1, ColorValue.DEFAULT, font); } else if (item !== null && item.custom.syusan >= 0) { - var text = '出産回数' + item.custom.syusan + '回が必要です'; + var text = 'Requires childbirth x' + item.custom.syusan; TextRenderer.drawText(104, yy, text, -1, ColorValue.DEFAULT, font); } else if (item !== null && item.custom.seisyori >= 0) { @@ -223,12 +222,12 @@ var EquipScreen = defineObject(BaseScreen, text = 'クリスには装備できません'; TextRenderer.drawText(90, yy, text, -1, ColorValue.DEFAULT, font); } else { - text = item.custom.seisyori + '人まで指定できます'; + text = 'Can assign to up to ' + item.custom.seisyori + ' people'; TextRenderer.drawText(104, yy, text, -1, ColorValue.DEFAULT, font); } } else if (item !== null && item.custom.level >= 0) { - var text = '調教回数' + item.custom.level + '回が必要です'; + var text = 'Requires ' + item.custom.level + 'x training'; TextRenderer.drawText(104, yy, text, -1, ColorValue.DEFAULT, font); } else { @@ -477,7 +476,7 @@ var EquipItemWindow = defineObject(BaseWindow, }, drawWindowContent: function(x, y) { - // 情報ウインドウにスクロールカーソルがかぶらないように、後で描画 + // Draw after to avoid scroll cursor overlapping info window this._scrollbar.drawScrollbar(x, y); },