The game kept crashing on some main map transitions.
Downloading the last stable version of Electron "v22" from GitHub fixed it for me. (It's the game engine)
For windows, the file name is: "electron-v22.0.0-win32-x64.zip"
(Verify OS compatibility first. v22 works for Win10 /Win11. )
Couldn't cheat engine the game, so I search for something else and found a way to edit the source code.
(Besides using save editor for infinite Souls.)
I made a "readme" of the steps, but regardless, here they are:
1- Open cmd.exe and install Asar:
CMD: npm install -g asar js-beautify
2- Navigate to the "resources" folder:
CMD: cd x:\whatereverfolderpath\resources
3- Extract "app.asar" into a folder name "app" (takes a couple of minutes):
CMD: asar extract app.asar app
4- Rename "app.asar" to conserve it as backup (either with CMD or Explorer):
(This is necessary so the game reads from the "app" folder instead of "app.asar")
CMD: mv app.asar app.asar.bak
5-Open the following files from "resources\app\src\js\plugins":
AS_GameMap.js
AS_GamePlayer.js
AS_StruggleCode.js
6- Search for those terms (Ctrl+F or Ctrl+H) and replace the "+" with "-":
battler.erosion +=
battler.erosion++
7- Now Erosion decreases over time instead of increasing.
Only using the cursed sword gives erosion, so you still can't abuse it, but that's fine.
The game becomes casual now with this.