neelthee-mansion 3.23.6__tar.gz → 3.23.8__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/PKG-INFO +1 -1
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/Mansion_of_Amnesia.py +6 -2
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/Rooms.py +1 -2
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion.egg-info/PKG-INFO +1 -1
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/setup.py +1 -1
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/LICENSE.md +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/README.md +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/Books.py +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/Quests.py +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/__init__.py +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/__main__.py +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/all_game_utils.py +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/creatures.py +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/items.py +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion/utils.py +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion.egg-info/SOURCES.txt +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion.egg-info/dependency_links.txt +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion.egg-info/entry_points.txt +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion.egg-info/requires.txt +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion.egg-info/top_level.txt +0 -0
- {neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/setup.cfg +0 -0
@@ -393,7 +393,7 @@ def start():
|
|
393
393
|
sleep(0.1)
|
394
394
|
# shows the main menu
|
395
395
|
add_text_to_textbox(info_text_area,
|
396
|
-
f"\nHello
|
396
|
+
f"\nHello {player.name} and welcome to my Role Playing Game. \nI hope you have fun!",
|
397
397
|
)
|
398
398
|
showInstructions()
|
399
399
|
|
@@ -894,10 +894,13 @@ def handle_search_command(player, *Args):
|
|
894
894
|
def search_container(player: PC, Container):
|
895
895
|
ContainerName = Container
|
896
896
|
Container = ROOMS[player.CURRENTROOM]["containers"][Container]
|
897
|
+
print("Got to if staitment")
|
897
898
|
if isinstance(Container, container):
|
899
|
+
print("got past if statement")
|
898
900
|
if isinstance(Container.lock, Lock):
|
899
901
|
key = PickKey(Container.lock)
|
900
902
|
Container.Unlock(key, player)
|
903
|
+
print("Adding text now")
|
901
904
|
add_text_to_textbox(info_text_area,
|
902
905
|
f"You search the{' secret' if Container.secret else ''} {ContainerName} and find a ",
|
903
906
|
newline=False
|
@@ -1220,7 +1223,8 @@ def initializer():
|
|
1220
1223
|
exit()
|
1221
1224
|
|
1222
1225
|
def continue_setup():
|
1223
|
-
ask_color_coding()
|
1226
|
+
#ask_color_coding()
|
1227
|
+
choose_background()
|
1224
1228
|
|
1225
1229
|
def start_game():
|
1226
1230
|
# I will add more logic for starting the game later
|
@@ -218,8 +218,7 @@ obsessed with his work, his experiments, his need to control everything—everyt
|
|
218
218
|
Perhaps the mansion is not just a building. It is the keeper of souls.”
|
219
219
|
|
220
220
|
Entry 78 - The Change
|
221
|
-
“There is another price of immortality. Over the last 34 days I have been changing, and soon I will not be able to write in this diary anymore. This is the last thing I will put in
|
222
|
-
my diary. This is the last thing you will hear from Geraldo Times.”
|
221
|
+
“There is another price of immortality. Over the last 34 days I have been changing, and soon I will not be able to write in this diary anymore. This is the last thing I will put in my diary. This is the last thing you will hear from Geraldo Times.”
|
223
222
|
"""
|
224
223
|
)
|
225
224
|
]),
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name="neelthee_mansion",
|
5
|
-
version="3.23.
|
5
|
+
version="3.23.8", # Update version number for each release
|
6
6
|
packages=find_packages(), # Automatically finds all packages and modules
|
7
7
|
install_requires=[
|
8
8
|
"wheel",
|
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
|
File without changes
|
{neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion.egg-info/dependency_links.txt
RENAMED
File without changes
|
{neelthee_mansion-3.23.6 → neelthee_mansion-3.23.8}/neelthee_mansion.egg-info/entry_points.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|