changeset 99:531eb3239da2

Research points allocated based on milestone.
author Jeremy Thurgood <firxen@gmail.com>
date Wed, 09 May 2012 22:13:15 +0200
parents e386ec5d179b
children 1085bbed254f
files gamelib/gamestate.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/gamestate.py	Wed May 09 22:03:07 2012 +0200
+++ b/gamelib/gamestate.py	Wed May 09 22:13:15 2012 +0200
@@ -5,7 +5,7 @@
 
 from gamelib import missions, lab
 from gamelib.game_base import get_subclasses
-from gamelib.constants import NEW_SCIENCE, NEW_SCHEMATIC
+from gamelib.constants import NEW_SCIENCE, NEW_SCHEMATIC, M_VALS
 
 
 class Game(object):
@@ -33,7 +33,7 @@
 
     def start_turn(self):
         # Make more flexible?
-        self.points += 3
+        self.points += 1 + M_VALS[self.milestone] * 2
         self.turn += 1
         self.cur_missions = []
         self.cur_allocation = []