Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Branden
/
thiccmud
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
ac533bb4
authored
2016-12-20 18:15:15 -0500
by
Branden
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
#First steps coding, default character tweek
1 parent
a7777e13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
thiccMud/typeclasses/characters.py
thiccMud/typeclasses/characters.py
View file @
ac533bb
...
...
@@ -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
...
...
Please
register
or
sign in
to post a comment