Small tweaks

This commit is contained in:
onpon4 2015-03-20 13:05:14 -04:00
parent 4d8ceec9c4
commit 6ea311a046
1 changed files with 2 additions and 6 deletions

View File

@ -76,6 +76,8 @@ void newGame()
currentGame.maxPlasmaAmmoLimit = 250;
currentGame.maxRocketAmmoLimit = 50;
player.maxShield = 50;
switch (currentGame.difficulty)
{
case DIFFICULTY_EASY:
@ -102,14 +104,8 @@ void newGame()
break;
case DIFFICULTY_NIGHTMARE:
player.maxShield = 1;
currentGame.maxPlasmaRate = 1;
currentGame.maxPlasmaOutput = 1;
currentGame.maxPlasmaDamage = 1;
currentGame.maxRocketAmmo = 5;
currentGame.cash = 6000;
break;
default:
player.maxShield = 50;
}
player.shield = player.maxShield;