added verbose cog types

This commit is contained in:
Darren Ranalli 2003-11-06 04:25:51 +00:00
parent 4dd13cbbb8
commit e700b5e152
1 changed files with 6 additions and 1 deletions

View File

@ -17,7 +17,12 @@ class LevelMgr(Entity):
permanent = 1
attribs = (
('cogLevel', 0, 'int', {'min':0, 'max':11}),
('cogTrack', 'c', 'choice', {'choiceSet':['c','s','l','m']}),
('cogTrack', 'c', 'choice', {'choiceSet':('sellbot','cashbot',
'lawbot','bossbot',),
'valueDict':{'sellbot':'s',
'cashbot':'m',
'lawbot':'l',
'bossbot':'c'}}),
('modelFilename', '', 'bamfilename'),
)