comparison gamelib/schematics.py @ 91:c57b5b46d3e0

Better mission data management.
author Jeremy Thurgood <firxen@gmail.com>
date Wed, 09 May 2012 21:08:29 +0200
parents 182fce9f70b6
children 245ef50de84d
comparison
equal deleted inserted replaced
90:0823e2529c23 91:c57b5b46d3e0
101 101
102 102
103 class PropagandaMachine(Schematic): 103 class PropagandaMachine(Schematic):
104 NAME = "propaganda machine" 104 NAME = "propaganda machine"
105 COST = 1000 105 COST = 1000
106 CATEGORIES = (cat.MIND_CONTROL) 106 CATEGORIES = (cat.MIND_CONTROL,)
107 PREREQUISITES = ( 107 PREREQUISITES = (
108 (research.Psychology, 2), 108 (research.Psychology, 2),
109 ) 109 )