comparison gamelib/schematics.py @ 190:9d7d273a278f

Tornado machine.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 12 May 2012 14:48:45 +0200
parents 0ab75da0c7aa
children 0b746c72cb5b
comparison
equal deleted inserted replaced
189:0ab75da0c7aa 190:9d7d273a278f
192 FAILURE_TEXT = ( 192 FAILURE_TEXT = (
193 "Exciting buffer overflows in your neural interface. I'll spare you" 193 "Exciting buffer overflows in your neural interface. I'll spare you"
194 " the gruesome details.") 194 " the gruesome details.")
195 195
196 196
197 class TornadoMachine(Schematic):
198 NAME = "tornado machine"
199 COST = 7 * K
200 CATEGORIES = (cat.VEHICLE,)
201 PREREQUISITES = (
202 (research.Meteorology, 6),
203 (research.Physics, 5),
204 )
205
206 BASE_POWER = 40
207 POWER_INCREMENT = 8
208
209 FAILURE_TEXT = (
210 "Tornados! Dropping cows on you! Hardly conducive to mission success.")
211
212
197 class MonsterBear(Schematic): 213 class MonsterBear(Schematic):
198 NAME = "Giant Bear" 214 NAME = "Giant Bear"
199 COST = 10 * K 215 COST = 10 * K
200 CATEGORIES = (cat.BEAST,) 216 CATEGORIES = (cat.BEAST,)
201 PREREQUISITES = ( 217 PREREQUISITES = (