added support for a 4th line to Slave Mode sex stats flavor text
This commit is contained in:
parent
8c864a349d
commit
43bf6e3b9c
1 changed files with 3 additions and 3 deletions
|
|
@ -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 ";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue