This commit is contained in:
dazedanon 2026-03-23 10:57:44 -05:00
parent 0e6e45ef6b
commit f22ac1cc4f
3 changed files with 5 additions and 5 deletions

View file

@ -223065,7 +223065,7 @@
"code": 401,
"indent": 0,
"parameters": [
"\"My big sister was teaching me magic, and then that weird\nguy suddenly got all angry.\""
"\"My big brother was teaching me magic, and then that weird\nguy suddenly got all angry.\""
]
},
{
@ -424504,7 +424504,7 @@
"code": 401,
"indent": 3,
"parameters": [
"Please choose 2 cards that are stronger than the displayed\ncard"
"Please choose the card that are stronger."
]
},
{

View file

@ -5564,7 +5564,7 @@
"code": 401,
"indent": 1,
"parameters": [
"[Anazema]\n\"The \\|\\{power of blessing to reincarnate people as monsters and\nfree them from eternal suffering!\""
"[Anazema]\n\"\\|\\{The power of blessing to reincarnate people as monsters and\nfree them from eternal suffering!\""
]
},
{

View file

@ -385,13 +385,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;
}
};