Documentation
Readme
View as plain text
01)
acquire gems equal to 100x score points
02)
mega robot boss parts are destroyed using only 1 bomb
01)
SaveDataManager
public void addGems(uint val)
***
this.gems = (uint)Mathf.Min((float)(this.gems + val), 9999999f);
into
this.gems = (uint)Mathf.Min(this.gems + val * 100U, 9999999f);
***
02)
BossRobotController
onTriggerEnter
***
parts[num3].hp = parts[num3].hp - 1;
into
parts[num3].hp = parts[num3].hp - 1;
parts[num3].hp = 0;
***