comparison gamelib/missions.py @ 219:53e78cddb9a4

Tweak mission
author Neil Muller <drnlmuller@gmail.com>
date Sat, 12 May 2012 20:49:07 +0200
parents 5ca97ed09738
children d7285d65c668
comparison
equal deleted inserted replaced
218:b7612992a1db 219:53e78cddb9a4
663 self.fail( 663 self.fail(
664 "While overwhelming force is always a tempting choice," 664 "While overwhelming force is always a tempting choice,"
665 " total destruction of the lab will not help you cause.") 665 " total destruction of the lab will not help you cause.")
666 666
667 if cat.AI in categorised: 667 if cat.AI in categorised:
668 self.use_equipment_category(categorised, cat.AI)
668 self._succ("Your AI easily takes control of the lab's network.", 669 self._succ("Your AI easily takes control of the lab's network.",
669 state) 670 state)
671
672 if cat.INTELLIGENCE in categorised:
673 self.use_equipment_category(categorised, cat.INTELLIGENCE)
674 self._succ("You are able to gather all the information needed"
675 " to completely survert the lab defenses, making the actual"
676 " takeover trivial", state)
670 677
671 if self.combat_power(categorised) > randint(20, 40): 678 if self.combat_power(categorised) > randint(20, 40):
672 self._succ( 679 self._succ(
673 "The resistance is stiff, but your forces prevail" 680 "The resistance is stiff, but your forces prevail"
674 " thanks to your superior technology.", state) 681 " thanks to your superior technology.", state)