ac533bb4 by Branden

#First steps coding, default character tweek

1 parent a7777e13
......@@ -29,4 +29,15 @@ class Character(DefaultCharacter):
at_post_puppet - Echoes "PlayerName has entered the game" to the room.
"""
def at_object_creation(self):
self.db.strength = 5
self.db.agility = 4
self.db.magic = 2
def get_abilities(self):
return self.db.strength, self.db.agility, self.db.magic
pass
......