comparison gamelib/schematics.py @ 204:8d90a63895dd

fix typo
author Neil Muller <drnlmuller@gmail.com>
date Sat, 12 May 2012 18:59:34 +0200
parents 4159e34d7310
children f9426f6cebf4
comparison
equal deleted inserted replaced
203:4159e34d7310 204:8d90a63895dd
380 380
381 381
382 class Android(Schematic): 382 class Android(Schematic):
383 NAME = "Lifelike Android" 383 NAME = "Lifelike Android"
384 COST = 50 * K 384 COST = 50 * K
385 CATEGORIS = (cat.INTELLIGENCE, cat.AI, cat.CLONE) 385 CATEGORIES = (cat.INTELLIGENCE, cat.AI, cat.CLONE, cat.SPY)
386 PREREQUISITES = ( 386 PREREQUISITES = (
387 (research.ArtificialIntelligence, 5), 387 (research.ArtificialIntelligence, 5),
388 (research.Robotics, 5), 388 (research.Robotics, 5),
389 ) 389 )
390 390