diff --git a/www/data/CommonEvents.json b/www/data/CommonEvents.json index f7188e3..160df4d 100644 --- a/www/data/CommonEvents.json +++ b/www/data/CommonEvents.json @@ -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." ] }, { diff --git a/www/data/Map229.json b/www/data/Map229.json index 112e154..1a2dfad 100644 --- a/www/data/Map229.json +++ b/www/data/Map229.json @@ -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!\"" ] }, { diff --git a/www/js/rpg_windows.js b/www/js/rpg_windows.js index 685359d..1cfca12 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; } };