diff gamelib/missions.py @ 207:ed25c335fd67

Per-turn income
author Neil Muller <drnlmuller@gmail.com>
date Sat, 12 May 2012 19:50:53 +0200
parents 2b8b6c9b71eb
children 5ca97ed09738
line wrap: on
line diff
--- a/gamelib/missions.py	Sat May 12 19:14:22 2012 +0200
+++ b/gamelib/missions.py	Sat May 12 19:50:53 2012 +0200
@@ -450,7 +450,7 @@
                 " still, but you're finally out of that pokey basement and"
                 " have some elbow room to work with. Next step: the city!",
                 money=randint(1000, 2000), rep=randint(5, 15),
-                new_milestone="neighbourhood")
+                new_milestone="neighbourhood", income=100)
 
         if cat.HAND_WEAPON in categorised:
             self.succeed(
@@ -489,7 +489,7 @@
                 " for you. The city cowers before you, and you finally"
                 " feel like you're getting somewhere. Soon, the world will"
                 " be yours.", money=randint(10000, 20000),
-                rep=randint(10, 20), new_milestone='city')
+                rep=randint(10, 20), new_milestone='city', income=1000)
 
         if cat.AI in categorised:
             self.use_equipment_category(categorised, cat.AI)