From 43bf6e3b9c1bbd8d5f534b2cbb7f68c50212f63d Mon Sep 17 00:00:00 2001 From: onms Date: Sat, 24 Jan 2026 15:28:58 -0600 Subject: [PATCH] added support for a 4th line to Slave Mode sex stats flavor text --- www/js/plugins/JsScript32Set.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/js/plugins/JsScript32Set.js b/www/js/plugins/JsScript32Set.js index 2245327..2430922 100644 --- a/www/js/plugins/JsScript32Set.js +++ b/www/js/plugins/JsScript32Set.js @@ -38,7 +38,7 @@ Game_Interpreter.prototype.D_Menu_Update = function () { } MenuFlame++; } -let Dorei_説明Arr = ["" , "" , ""]; +let Dorei_説明Arr = ["" , "" , "" , ""]; const CN_Dorei_MenuOn = 495; const CN_Dorei_MenuOff = 496; Game_Interpreter.prototype.D_Menu_L0_View = function () { @@ -62,7 +62,7 @@ Game_Interpreter.prototype.D_Menu_L0_View = function () { this.MoveSprite(PN_mDkpkTxt + 0 , true , true , 5); this.SpriteStrC(PN_mDkpkTxt + 1 , this._屈服度StrGet() , 18 , 117 , 570 , 0); this.MoveSprite(PN_mDkpkTxt + 1 , true , true , 5); - for (let i = 0; i <= 3 - 1; i++) { + for (let i = 0; i <= 4 - 1; i++) { this.SpriteStr(PN_mDKpkSetu + i , Dorei_説明Arr[i] , 20 , 79 , 616 + (i * 40) , 0); this.MoveSprite(PN_mDKpkSetu + i , true , true , 5); } @@ -111,7 +111,7 @@ Game_Interpreter.prototype._屈服度StrGet = function () { if($gameVariables.value(VN_奴隷_屈服度) < 50){ return " Defiant "; } else if($gameVariables.value(VN_奴隷_屈服度) < 100){ - return " Subjugated "; + return " Suppressed "; } else { return " Subservient "; }