neelthee-mansion 3.19.16__tar.gz → 3.19.17__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/PKG-INFO +1 -1
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/Mansion_of_Amnesia.py +7 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/Rooms.py +4 -1
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/creatures.py +1 -1
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/PKG-INFO +1 -1
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/setup.py +1 -1
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/LICENSE.md +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/README.md +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/Books.py +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/Quests.py +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/__init__.py +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/__main__.py +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/all_game_utils.py +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/items.py +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/utils.py +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/SOURCES.txt +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/dependency_links.txt +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/entry_points.txt +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/requires.txt +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/top_level.txt +0 -0
- {neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/setup.cfg +0 -0
{neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion/Mansion_of_Amnesia.py
RENAMED
@@ -531,6 +531,13 @@ def Examine(*Args):
|
|
531
531
|
type_text(f"The container {Name} has no lock.")
|
532
532
|
else:
|
533
533
|
type_text(f"There is no container named {Name} in this room.")
|
534
|
+
elif "creatures stats" in ROOMS[player.CURRENTROOM]:
|
535
|
+
for Creature in ROOMS[player.CURRENTROOM]["creatures stats"]:
|
536
|
+
if isinstance(Creature, creature):
|
537
|
+
if isinstance(Creature, NPC):
|
538
|
+
if Creature.name.lower() == Name:
|
539
|
+
Creature.talk()
|
540
|
+
return
|
534
541
|
else:
|
535
542
|
type_text(f"There is nothing special about the {Name}.")
|
536
543
|
|
@@ -737,10 +737,13 @@ You notice a "
|
|
737
737
|
"west": Door("Room name"),
|
738
738
|
"bookcase": Door("Cavern 3"),
|
739
739
|
},
|
740
|
+
"creatures stats": [
|
741
|
+
Geraldo()
|
742
|
+
],
|
740
743
|
"containers": {
|
741
744
|
"bookcases": container(sample(books, 3)),
|
742
745
|
},
|
743
|
-
"info": "Towering %*RED*%bookcases%*RESET*% filled with odd, mismatched books line the walls. Some have faded titles, others are blank, arranged almost deliberately. One bookcase stands slightly forward, leaving a faint scrape on the floor. The air is still, as if waiting for you to notice.",
|
746
|
+
"info": "Towering %*RED*%bookcases%*RESET*% filled with odd, mismatched books line the walls. A cat named %*BROWN*%geraldo times%*RESET*% Some have faded titles, others are blank, arranged almost deliberately. One bookcase stands slightly forward, leaving a faint scrape on the floor. The air is still, as if waiting for you to notice.",
|
744
747
|
"map": """
|
745
748
|
█████████
|
746
749
|
█ █
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/dependency_links.txt
RENAMED
File without changes
|
{neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/entry_points.txt
RENAMED
File without changes
|
{neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/requires.txt
RENAMED
File without changes
|
{neelthee_mansion-3.19.16 → neelthee_mansion-3.19.17}/neelthee_mansion.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|