neelthee-mansion 3.19.17__tar.gz → 3.19.18__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.17 → neelthee_mansion-3.19.18}/PKG-INFO +1 -1
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/creatures.py +8 -6
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/PKG-INFO +1 -1
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/setup.py +1 -1
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/LICENSE.md +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/README.md +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/Books.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/Mansion_of_Amnesia.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/Quests.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/Rooms.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/__init__.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/__main__.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/all_game_utils.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/items.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/utils.py +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/SOURCES.txt +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/dependency_links.txt +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/entry_points.txt +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/requires.txt +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/top_level.txt +0 -0
- {neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/setup.cfg +0 -0
@@ -475,6 +475,12 @@ class NPC(Guard):
|
|
475
475
|
patrol_route=None,
|
476
476
|
patrol_type="normal",
|
477
477
|
frendly_text="",
|
478
|
+
responses = {
|
479
|
+
"introduction": "Oh, hello. I didn't see you there.",
|
480
|
+
},
|
481
|
+
keyword_variations = {
|
482
|
+
"introduction": ["hello", "hi", "greetings", "hey"],
|
483
|
+
},
|
478
484
|
generic_response="The person looks like they don't see you.",
|
479
485
|
):
|
480
486
|
super().__init__(
|
@@ -493,14 +499,10 @@ class NPC(Guard):
|
|
493
499
|
)
|
494
500
|
self.frendly = True
|
495
501
|
# Define the responses for each topic
|
496
|
-
self.responses =
|
497
|
-
"introduction": "Oh, hello. I didn't see you there.",
|
498
|
-
}
|
502
|
+
self.responses = responses
|
499
503
|
|
500
504
|
# Define keyword variations that map to the same topic
|
501
|
-
self.keyword_variations =
|
502
|
-
"introduction": ["hello", "hi", "greetings", "hey"],
|
503
|
-
}
|
505
|
+
self.keyword_variations = keyword_variations
|
504
506
|
|
505
507
|
# To keep track of which topics the player has asked about
|
506
508
|
self.asked_about = set()
|
File without changes
|
File without changes
|
File without changes
|
{neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion/Mansion_of_Amnesia.py
RENAMED
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.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/dependency_links.txt
RENAMED
File without changes
|
{neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/entry_points.txt
RENAMED
File without changes
|
{neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/requires.txt
RENAMED
File without changes
|
{neelthee_mansion-3.19.17 → neelthee_mansion-3.19.18}/neelthee_mansion.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|