This commit is contained in:
DazedAnon 2026-05-09 14:48:27 -05:00
parent 7d75c2e9ec
commit b8708e007f
4 changed files with 8 additions and 8 deletions

View file

@ -274668,7 +274668,7 @@
"code": 401,
"indent": 0,
"parameters": [
"We'd only just met in front of the Guild. I ran into \\N[21] before I even had a\nchance to talk to her."
"We'd only just met in front of the Guild. We ran into \\N[21] before I even had a\nchance to talk to her."
]
},
{
@ -274704,7 +274704,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Figures she'd have the muscle, being a Swordsman and all."
"Figures she'd have the muscle, being a Swordswoman and all."
]
},
{
@ -274845,7 +274845,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Aww, no fair~. I want to be friends with Big Sis too."
"Aww, no fair~. I want you to be friends with Big Sis too."
]
},
{

View file

@ -66796,7 +66796,7 @@
"code": 401,
"indent": 1,
"parameters": [
"Your practice partner...?"
"My practice partner...?"
]
},
{

View file

@ -41882,7 +41882,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Uhehe... so cute... you're so cute..."
"Uhehe... so cute... I'm so cute..."
]
},
{
@ -43538,7 +43538,7 @@
"code": 401,
"indent": 0,
"parameters": [
"\\{Gustav ― you mean Gustav Kreutz!? The Marshal of this country, and Aegis No. I!?"
"\\{Gustav ― you mean Gustav Kreutz!?\nThe Marshal of this country, and Aegis No. I!?"
]
},
{

View file

@ -404,13 +404,13 @@ Window_Base.prototype.processDrawIcon = function(iconIndex, textState) {
Window_Base.prototype.makeFontBigger = function() {
if (this.contents.fontSize <= 96) {
this.contents.fontSize += 12;
this.contents.fontSize += 6;
}
};
Window_Base.prototype.makeFontSmaller = function() {
if (this.contents.fontSize >= 24) {
this.contents.fontSize -= 12;
this.contents.fontSize -= 6;
}
};