neelthee-mansion 3.19.23__tar.gz → 3.20.1__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.
Files changed (21) hide show
  1. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/PKG-INFO +1 -1
  2. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/Mansion_of_Amnesia.py +3 -1
  3. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/Rooms.py +1 -3
  4. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/creatures.py +4 -4
  5. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion.egg-info/PKG-INFO +1 -1
  6. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/setup.py +1 -1
  7. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/LICENSE.md +0 -0
  8. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/README.md +0 -0
  9. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/Books.py +0 -0
  10. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/Quests.py +0 -0
  11. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/__init__.py +0 -0
  12. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/__main__.py +0 -0
  13. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/all_game_utils.py +0 -0
  14. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/items.py +0 -0
  15. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion/utils.py +0 -0
  16. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion.egg-info/SOURCES.txt +0 -0
  17. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion.egg-info/dependency_links.txt +0 -0
  18. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion.egg-info/entry_points.txt +0 -0
  19. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion.egg-info/requires.txt +0 -0
  20. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/neelthee_mansion.egg-info/top_level.txt +0 -0
  21. {neelthee_mansion-3.19.23 → neelthee_mansion-3.20.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: neelthee_mansion
3
- Version: 3.19.23
3
+ Version: 3.20.1
4
4
  Summary: A text-based adventure game set in Neel-thee’s mansion.
5
5
  Home-page: https://github.com/Flameblade375/neelthee_mansion
6
6
  Author: Alexander.E.F
@@ -1286,7 +1286,9 @@ def main():
1286
1286
  if not isinstance(enemy, NPC):
1287
1287
  if enemy.hp > 0:
1288
1288
  enemy.type_text_flavor_text()
1289
- if ask_for_consent(f"Do you want to examine the {enemy.name}"):
1289
+ if ask_for_consent(
1290
+ f"Do you want to examine the {enemy.name}"
1291
+ ):
1290
1292
  enemy.type_text_description()
1291
1293
 
1292
1294
  is_reacting = False
@@ -737,9 +737,7 @@ You notice a "
737
737
  "west": Door("Room name"),
738
738
  "bookcase": Door("Cavern 3"),
739
739
  },
740
- "creatures stats": [
741
- Geraldo()
742
- ],
740
+ "creatures stats": [Geraldo()],
743
741
  "containers": {
744
742
  "bookcases": container(sample(books, 3)),
745
743
  },
@@ -475,12 +475,12 @@ class NPC(Guard):
475
475
  patrol_route=None,
476
476
  patrol_type="normal",
477
477
  frendly_text="",
478
- responses = {
478
+ responses={
479
479
  "introduction": "Oh, hello. I didn't see you there.",
480
- },
481
- keyword_variations = {
480
+ },
481
+ keyword_variations={
482
482
  "introduction": ["hello", "hi", "greetings", "hey"],
483
- },
483
+ },
484
484
  generic_response="The person looks like they don't see you.",
485
485
  ):
486
486
  super().__init__(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: neelthee-mansion
3
- Version: 3.19.23
3
+ Version: 3.20.1
4
4
  Summary: A text-based adventure game set in Neel-thee’s mansion.
5
5
  Home-page: https://github.com/Flameblade375/neelthee_mansion
6
6
  Author: Alexander.E.F
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="neelthee_mansion",
5
- version="3.19.23",
5
+ version="3.20.1",
6
6
  packages=find_packages(), # Automatically finds all packages and modules
7
7
  install_requires=[
8
8
  "wheel",