comparison 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
comparison
equal deleted inserted replaced
206:2b8b6c9b71eb 207:ed25c335fd67
448 self.succeed( 448 self.succeed(
449 "Guns and persuasion, that's all you need. It's early days" 449 "Guns and persuasion, that's all you need. It's early days"
450 " still, but you're finally out of that pokey basement and" 450 " still, but you're finally out of that pokey basement and"
451 " have some elbow room to work with. Next step: the city!", 451 " have some elbow room to work with. Next step: the city!",
452 money=randint(1000, 2000), rep=randint(5, 15), 452 money=randint(1000, 2000), rep=randint(5, 15),
453 new_milestone="neighbourhood") 453 new_milestone="neighbourhood", income=100)
454 454
455 if cat.HAND_WEAPON in categorised: 455 if cat.HAND_WEAPON in categorised:
456 self.succeed( 456 self.succeed(
457 "You'll need more than guns to win the people over. But until" 457 "You'll need more than guns to win the people over. But until"
458 " then, you can take their cash.", money=randint(100, 200)) 458 " then, you can take their cash.", money=randint(100, 200))
487 self.succeed( 487 self.succeed(
488 "Overwhelming force! It works for governments, and it works" 488 "Overwhelming force! It works for governments, and it works"
489 " for you. The city cowers before you, and you finally" 489 " for you. The city cowers before you, and you finally"
490 " feel like you're getting somewhere. Soon, the world will" 490 " feel like you're getting somewhere. Soon, the world will"
491 " be yours.", money=randint(10000, 20000), 491 " be yours.", money=randint(10000, 20000),
492 rep=randint(10, 20), new_milestone='city') 492 rep=randint(10, 20), new_milestone='city', income=1000)
493 493
494 if cat.AI in categorised: 494 if cat.AI in categorised:
495 self.use_equipment_category(categorised, cat.AI) 495 self.use_equipment_category(categorised, cat.AI)
496 self.succeed( 496 self.succeed(
497 "While the AI can't control the entire city, you can at" 497 "While the AI can't control the entire city, you can at"