- Nov 4, 2017
- 395
- 385
It seems like the Lizard boss is almost impossible even with really high stats? Does anyone know how to defeat him while keeping purity?
I hacked the rope to make the Lizard Boss easier, you will have to buy the rope to do this trick.
Rope power up, go to www\js\plugins and find the file Remtairy Karryn.js
Open it with Notepad. Ctrl + F and search BRACELET_ROPE_ID
Original
Game_Actor.prototype.accessoriesParamPlus = function(paramId) {
let value = 0;
if(paramId === PARAM_STRENGTH_ID) {
if(this.isEquippingThisAccessory(BRACELET_ROPE_ID)) {
if(this.isUsingThisTitle(TITLE_ID_ASPIRING_HERO)) value += 5;
else value += 10;
--------------------------------------------------------------------------------------------
Cheat
Game_Actor.prototype.accessoriesParamPlus = function(paramId) {
let value = 0;
if(paramId === PARAM_STRENGTH_ID) {
if(this.isEquippingThisAccessory(BRACELET_ROPE_ID)) {
if(this.isUsingThisTitle(TITLE_ID_ASPIRING_HERO)) value += 150;
else value += 150;
You can make the rope stronger, but I find 150 is about right number to use. This is because the amount of HP to use your attacks is raised to match your strength.
I hacked the rope to make the Lizard Boss easier, you will have to buy the rope to do this trick.
Rope power up, go to www\js\plugins and find the file Remtairy Karryn.js
Open it with Notepad. Ctrl + F and search BRACELET_ROPE_ID
Original
Game_Actor.prototype.accessoriesParamPlus = function(paramId) {
let value = 0;
if(paramId === PARAM_STRENGTH_ID) {
if(this.isEquippingThisAccessory(BRACELET_ROPE_ID)) {
if(this.isUsingThisTitle(TITLE_ID_ASPIRING_HERO)) value += 5;
else value += 10;
--------------------------------------------------------------------------------------------
Cheat
Game_Actor.prototype.accessoriesParamPlus = function(paramId) {
let value = 0;
if(paramId === PARAM_STRENGTH_ID) {
if(this.isEquippingThisAccessory(BRACELET_ROPE_ID)) {
if(this.isUsingThisTitle(TITLE_ID_ASPIRING_HERO)) value += 150;
else value += 150;
You can make the rope stronger, but I find 150 is about right number to use. This is because the amount of HP to use your attacks is raised to match your strength.