Nyaruru Fishy Fight: Boss Rush 50+ Stars (Easy Mode)

Achieve the Boss Rush 50+ Stars can be a daunting task in Nyaruru Fishy Fight. However, with a few simple modifications to the game files, you can unlock this achievement without breaking a sweat. This guide is designed to help you understand how to make these changes and, just as importantly, how to revert them if you wish to return to the original game experience.

 

Step-by-Step Guide:

Go to your game files and locate the Nyaruru folder
Open js then nya (C:\..\SteamLibrary\steamapps\common\Nyaruru\js\nya)
To disable the checks for item consumption and getting hit open: nya_statem.js (any text editor will do)
Use STRG-F to search for Game_Player.prototype.triggerBossScore
Replace both of true statements with false statements
It should look like this:

Game_Player.prototype.triggerBossScoreOnHit = function() {
if(this._bossScoreRecording && !this._bossScoreOnHit) {
this._bossScoreOnHit = false;
}
};

Game_Player.prototype.triggerBossScoreUseConsumables = function() {
if(this._bossScoreRecording && !this._bossScoreUseConsumables) {
this._bossScoreUseConsumables = false;
}
};

To get more health open: nya_game_system.js
Search for battleObject().hp
replace with

Game_System.prototype.adjustDifficultyHp = function(oldmhp) {
$gamePlayer.battleObject().hp = 10000;
};

The edits in the first file will disable checks for item consumption and getting hit, while the second one will set your hp to 10000 AFTER changing the difficulty in the game.

Method credit to Danse

 

How to Undo:

Should you decide that you want to revert the changes and experience the game in its original state, the process is straightforward. Right-click on ‘Nyaruru’ in your library, go to properties, and verify the file integrity. Steam will then re-download the unmodified files, ensuring that your game is back to its original condition.

Leave a Comment