From 98da9104939005087c8ab6dbd29f1daadfdd88a2 Mon Sep 17 00:00:00 2001 From: onpon4 Date: Fri, 27 Feb 2015 18:11:59 -0500 Subject: [PATCH] Added some buffs for easy difficulty and some nerfs for nightmare difficulty. --- src/game.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/game.cpp b/src/game.cpp index f4e0763..70bd7d6 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -71,12 +71,22 @@ void newGame() { case DIFFICULTY_EASY: player.maxShield = 100; + currentGame.minPlasmaRate = 2; + currentGame.minPlasmaOutput = 2; + currentGame.minPlasmaDamage = 2; + currentGame.maxPlasmaRate = 3; + currentGame.maxPlasmaOutput = 3; + currentGame.maxPlasmaDamage = 3; break; case DIFFICULTY_HARD: player.maxShield = 25; break; case DIFFICULTY_NIGHTMARE: player.maxShield = 1; + currentGame.maxPlasmaRate = 1; + currentGame.maxPlasmaOutput = 1; + currentGame.maxPlasmaDamage = 1; + currentGame.maxRocketAmmo = 5; break; default: player.maxShield = 50;