vantaMOO/typeclasses/characters.py

16 lines
448 B
Python
Raw Normal View History

2023-01-06 04:50:33 +01:00
"""
Characters
Characters are (by default) Objects setup to be puppeted by Accounts.
They are what you "see" in game. The Character class in this module
is setup to be the "default" character type created by the default
creation commands.
"""
from evennia.contrib.rpg.rpsystem import ContribRPCharacter
2023-01-06 08:39:56 +01:00
from evennia.contrib.game_systems.clothing import ClothedCharacter
2023-01-06 04:50:33 +01:00
# rpsystem
2023-01-06 08:39:56 +01:00
class Character(ContribRPCharacter, ClothedCharacter):
2023-01-06 04:50:33 +01:00
pass