diff --git a/www/data/CommonEvents.json b/www/data/CommonEvents.json index a0bda7a..6394d34 100644 --- a/www/data/CommonEvents.json +++ b/www/data/CommonEvents.json @@ -25277,7 +25277,7 @@ "code": 401, "indent": 0, "parameters": [ - "\\{Ah\"Aaaaahh!!♥♥" + "\\{Ah\\}Aaaaahh!!♥♥" ] }, { @@ -142822,7 +142822,7 @@ "code": 401, "indent": 0, "parameters": [ - "You have learned \\c[23]Yatsufune Leap\\c[0]!" + "You have learned \\c[23]Eightfold Leap\\c[0]!" ] }, { diff --git a/www/data/Map025.json b/www/data/Map025.json index 989e5f7..2ca18cf 100644 --- a/www/data/Map025.json +++ b/www/data/Map025.json @@ -9371,7 +9371,7 @@ "code": 401, "indent": 0, "parameters": [ - "It didn't look like they'd be able to land another lucky hit\nnow." + "It didn't look like I'd be able to land another lucky hit\nnow." ] }, { diff --git a/www/data/Map062.json b/www/data/Map062.json index 33faf34..b119ed1 100644 --- a/www/data/Map062.json +++ b/www/data/Map062.json @@ -14588,7 +14588,7 @@ "code": 401, "indent": 1, "parameters": [ - "There's a" + "There's a double lock sealing the dungeon." ] }, { diff --git a/www/data/Map124.json b/www/data/Map124.json index d4a0ad4..e5f699f 100644 --- a/www/data/Map124.json +++ b/www/data/Map124.json @@ -7897,7 +7897,7 @@ "code": 401, "indent": 0, "parameters": [ - "({Idiot♥} Like I'm just gonna let myself get caught!)" + "\\(\\{Idiot♥\\} Like I'm just gonna let myself get caught!)" ] }, { diff --git a/www/data/Map213.json b/www/data/Map213.json index 6c73c92..a5c7c8c 100644 --- a/www/data/Map213.json +++ b/www/data/Map213.json @@ -7796,7 +7796,7 @@ "code": 401, "indent": 0, "parameters": [ - "But... it's so sad if she can never leave this village." + "But... it's too sad if he can never leave this village." ] }, { @@ -7836,7 +7836,7 @@ "code": 401, "indent": 0, "parameters": [ - "Her life comes first. She'll just have to endure it." + "His life comes first. He'll just have to endure it." ] }, { diff --git a/www/data/Map277.json b/www/data/Map277.json index 8a45c29..d1bae47 100644 --- a/www/data/Map277.json +++ b/www/data/Map277.json @@ -18621,7 +18621,7 @@ "code": 401, "indent": 0, "parameters": [ - "Sorry, \\N[1]-kun. Your onee-chan is just too quick on her\nfeet." + "Sorry, \\N[1]-kun. Onee-chan is just too quick on her\nfeet." ] }, { diff --git a/www/js/rpg_windows.js b/www/js/rpg_windows.js index c377f96..a3efb2c 100644 --- a/www/js/rpg_windows.js +++ b/www/js/rpg_windows.js @@ -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; } };