# HG changeset patch # User KarstenBock@gmx.net # Date 1317470860 -7200 # Node ID 39466c901dc925e4ef9485f24243b96a3ebb2385 # Parent 8d87e1203402973d8d539d7e957eef0aa0c0b482 Added gender, picture, age, origin and traits to the CharacterStatistics component and splitted statistics into primary_stats and secondary_stats. diff -r 8d87e1203402 -r 39466c901dc9 components/character_statistics.py --- a/components/character_statistics.py Sat Oct 01 13:39:52 2011 +0200 +++ b/components/character_statistics.py Sat Oct 01 14:07:40 2011 +0200 @@ -18,4 +18,6 @@ def __init__(self): """Constructor""" - Base.__init__(self, statistics=dict) \ No newline at end of file + Base.__init__(self, gender=str, picture=str, age=int, origin=str, + primary_stats=dict, secondary_stats=dict, traits=list, + ) \ No newline at end of file