This commit is contained in:
DazedAnon 2024-08-09 11:10:21 -05:00
parent 76d733c624
commit a19e6ec969
6 changed files with 23 additions and 23 deletions

View file

@ -6529,7 +6529,7 @@
"notify",
"通知の表示",
{
"message": "Maintaining 'calmness' Time until reignition:\n【\\C[10][Var_0]\\C[0]】",
"message": "Maintaining 'calmness' Time until reignition:\n【\\C[10]\\V[44]\\C[0]】",
"icon": "92",
"note": ""
}

View file

@ -1480,7 +1480,7 @@
"iconIndex": 0,
"itypeId": 3,
"name": "Fingering",
"note": "<SGピクチャ:SG_1>\n<SG説明:>\n<SG未入手説明:\n\n\n\n\n\\{\\{条件\n\\}初日にベッドへ向かう。> ",
"note": "<SGピクチャ:SG_1>\n<SG説明:>\n<SG未入手説明:\n\n\n\n\n\\{\\{Condition\n\\}Heading to bed. 1st Day> ",
"occasion": 2,
"price": 0,
"repeats": 1,
@ -1539,7 +1539,7 @@
"iconIndex": 0,
"itypeId": 3,
"name": "Blowjob",
"note": "<SGピクチャ:SG_2>\n<SG説明:>\n<SG未入手説明:\n\n\n\n\n\\{\\{条件\n\\}1次試験前日にへ向かう。> ",
"note": "<SGピクチャ:SG_2>\n<SG説明:>\n<SG未入手説明:\n\n\n\n\n\\{\\{Condition\n\\}Day before 1st test.> ",
"occasion": 2,
"price": 0,
"repeats": 1,
@ -1572,7 +1572,7 @@
"iconIndex": 0,
"itypeId": 3,
"name": "Reverse Cowgirl",
"note": "<SGピクチャ:SG_3>\n<SG説明:>\n<SG説明:>\n<SG未入手説明:\n\n\n\n\n\\{\\{条件\n\\}2次試験前日にへ向かう。> ",
"note": "<SGピクチャ:SG_3>\n<SG説明:>\n<SG説明:>\n<SG未入手説明:\n\n\n\n\n\\{\\{Condition\n\\}Day before 2nd test.> ",
"occasion": 2,
"price": 0,
"repeats": 1,
@ -1605,7 +1605,7 @@
"iconIndex": 0,
"itypeId": 3,
"name": "Missionary Position",
"note": "<SGピクチャ:SG_4>\n<SG説明:>\n<SG未入手説明:\n\n\n\n\n\\{\\{条件\n\\}最終試験合格後。\nまたスキル【平静】を所持で選択肢が増加>",
"note": "<SGピクチャ:SG_4>\n<SG説明:>\n<SG未入手説明:\n\n\n\n\n\\{\\{Condition\n\\}Passing final test. \nHaving [Calm] increases options>",
"occasion": 2,
"price": 0,
"repeats": 1,

View file

@ -9134,7 +9134,7 @@
"type": 0,
"variance": 20
},
"description": "Time until reactivation: 【\\C[10][Var_0]\\C[0]】",
"description": "Time until reignition: 【\\C[10]\\V[44]\\C[0]】",
"effects": [],
"hitType": 0,
"iconIndex": 92,

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("Cook", "composition", this.isEnabledComposition());
}
if (YukiKP.ItemComposition.isViewUpgrade()) {
this.addCommand("強化する", "upgrade", this.isEnabledUpgrade());
this.addCommand("Upgrade", "upgrade", this.isEnabledUpgrade());
}
this.addCommand(TextManager.cancel, "cancel");
};
@ -2598,16 +2598,16 @@ YukiKP.ItemComposition = YukiKP.ItemComposition || {};
const x = this.cursorX();
const y = this.itemNameY();
const width =
this.cursorWidth() - this.itemPadding() + this.textWidth(" (所持:99)");
this.cursorWidth() - this.itemPadding() + this.textWidth(" (Total:99)");
this.resetTextColor();
this.drawText(
this._number,
x,
y,
width - this.textWidth(" (所持:99)"),
width - this.textWidth(" (Total:99)"),
"right"
);
this.drawText("(所持:", x, y, width - this.textWidth("99)"), "right");
this.drawText("(Total:", x, y, width - this.textWidth("99)"), "right");
this.drawText(
$gameParty.numItems(item),
x,
@ -2902,7 +2902,7 @@ YukiKP.ItemComposition = YukiKP.ItemComposition || {};
};
Window_ItemUpgradeSuccess.prototype.makeCommandList = function () {
this.addCommand("強化する", "ok");
this.addCommand("Upgrade", "ok");
this.addCommand(TextManager.cancel, "cancel");
};

View file

@ -114,7 +114,7 @@ Window_Base.prototype.contentsHeight = function () {
Window_Base.prototype.resetFontSettings = function () {
this.contents.fontFace = $gameSystem.mainFontFace();
this.contents.fontSize = $gameSystem.mainFontSize() - 2;
this.contents.fontSize = $gameSystem.mainFontSize() - 4;
this.resetTextColor();
};