comparison gamelib/schematics.py @ 193:9e86ed5343d9

Mind control ray.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 12 May 2012 15:26:09 +0200
parents 0b746c72cb5b
children df350c2f8c10
comparison
equal deleted inserted replaced
192:57bf6a5e31cb 193:9e86ed5343d9
142 FAILURE_TEXT = ( 142 FAILURE_TEXT = (
143 "The propaganda machine printed reams of carefully structured" 143 "The propaganda machine printed reams of carefully structured"
144 " nonsense, which the proofreaders didn't catch until too late.") 144 " nonsense, which the proofreaders didn't catch until too late.")
145 145
146 146
147 class MindControlRay(Schematic):
148 NAME = "mind control ray"
149 COST = 4 * K
150 CATEGORIES = (cat.MIND_CONTROL,)
151 PREREQUISITES = (
152 (research.Psychology, 6),
153 (research.MedicalExperiments, 6),
154 )
155
156 BASE_POWER = 40
157 POWER_INCREMENT = 6
158
159 FAILURE_TEXT = (
160 "The frequency tuner on the mind control ray was slightly"
161 " miscalibrated. A new genre of glitterpop was born, but this"
162 " entirely fails to advance your shadowy agenda.")
163
164
147 class GiantSquid(Schematic): 165 class GiantSquid(Schematic):
148 NAME = "giant squid" 166 NAME = "giant squid"
149 COST = 50 * K 167 COST = 50 * K
150 CATEGORIES = (cat.BEAST, cat.AQUATIC) 168 CATEGORIES = (cat.BEAST, cat.AQUATIC)
151 PREREQUISITES = ( 169 PREREQUISITES = (