# HG changeset patch # User KarstenBock@gmx.net # Date 1317470860 -7200 # Node ID e1ca6a99eb8580ccfbdc853c85c9998ee9c7f745 # Parent 7c9b7efc0f11eb0d988678079d33750d1cb36a62 Added gender, picture, age, origin and traits to the CharacterStatistics component and splitted statistics into primary_stats and secondary_stats. diff -r 7c9b7efc0f11 -r e1ca6a99eb85 src/parpg/components/character_statistics.py --- a/src/parpg/components/character_statistics.py Sat Oct 01 13:39:52 2011 +0200 +++ b/src/parpg/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