This commit is contained in:
Alexander Yakovlev 2023-01-24 20:35:08 +06:00
parent 2be244b5b6
commit c644f274ff
1 changed files with 10 additions and 7 deletions

View File

@ -4,15 +4,16 @@ Moby Dick
This is a joke object that contains the full text of Moby Dick. Nothing else.
"""
from typeclasses.objects import Object
from evennia.contrib.game_systems.clothing import ContribClothing as Clothes
from evennia.utils.evmore import EvMore
class MobyDick(Object):
def at_object_creation(self):
"""
Called at initial creation.
"""
super().at_object_creation()
self.db.desc = """
"""
Can't be a self.db.desc because we *need* a pager here.
"""
def get_display_desc(self, looker, **kwargs):
text = """
CHAPTER 1. Loomings.
Call me Ishmael. Some years agonever mind how long preciselyhaving
@ -21132,5 +21133,7 @@ children, only found another orphan.
THE END
"""
EvMore(looker, text)
return
pass