comparison gamelib/schematics.py @ 189:0ab75da0c7aa

Cybernetic implants.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 12 May 2012 14:43:35 +0200
parents f78468bba66e
children 9d7d273a278f
comparison
equal deleted inserted replaced
188:f78468bba66e 189:0ab75da0c7aa
173 FAILURE_TEXT = ( 173 FAILURE_TEXT = (
174 "Explosions full of spiders. What could possibly go wrong? Oh god!" 174 "Explosions full of spiders. What could possibly go wrong? Oh god!"
175 " They're everywhere! EVERYWHERE! Get them off me!") 175 " They're everywhere! EVERYWHERE! Get them off me!")
176 176
177 177
178 class CyberneticImplants(Schematic):
179 NAME = "cybernetic implants"
180 COST = 1500
181 CATEGORIES = (cat.HAND_WEAPON, cat.INTELLIGENCE)
182 PREREQUISITES = (
183 (research.MedicalExperiments, 5),
184 (research.Robotics, 5),
185 )
186
187 BASE_POWER = 25
188 POWER_INCREMENT = 5
189
190 PRODUCTION_RELIABILITY = 0.9
191
192 FAILURE_TEXT = (
193 "Exciting buffer overflows in your neural interface. I'll spare you"
194 " the gruesome details.")
195
196
178 class MonsterBear(Schematic): 197 class MonsterBear(Schematic):
179 NAME = "Giant Bear" 198 NAME = "Giant Bear"
180 COST = 10 * K 199 COST = 10 * K
181 CATEGORIES = (cat.BEAST,) 200 CATEGORIES = (cat.BEAST,)
182 PREREQUISITES = ( 201 PREREQUISITES = (