neelthee-mansion 2.3.4__tar.gz → 2.3.5__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-2.3.4 → neelthee_mansion-2.3.5}/PKG-INFO +1 -1
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/Rooms.py +20 -20
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion.egg-info/PKG-INFO +1 -1
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/setup.py +1 -1
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/README.md +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/Mansion_of_Amnesia.py +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/Quests.py +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/__init__.py +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/__main__.py +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/all_game_utils.py +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/creatures.py +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/items.py +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion/utils.py +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion.egg-info/SOURCES.txt +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion.egg-info/dependency_links.txt +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion.egg-info/entry_points.txt +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion.egg-info/requires.txt +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion.egg-info/top_level.txt +0 -0
- {neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/setup.cfg +0 -0
@@ -35,8 +35,8 @@ def SetMapsAndPosiitionsDicts(map_dict, positions):
|
|
35
35
|
|
36
36
|
positions = {}
|
37
37
|
for RoomName, RoomItem in ROOMS.items():
|
38
|
-
if '
|
39
|
-
if RoomItem['
|
38
|
+
if 'discovered' in RoomItem and 'position' in RoomItem and 'map' in RoomItem:
|
39
|
+
if RoomItem['discovered']:
|
40
40
|
map_dict[RoomName] = string_to_2d_list(RoomItem['map'])
|
41
41
|
positions[RoomName] = RoomItem['position']
|
42
42
|
return map_dict, positions
|
@@ -99,7 +99,7 @@ ROOMS = {
|
|
99
99
|
'Hall': {
|
100
100
|
'room type': 'house',
|
101
101
|
'position': (0, 8, 0),
|
102
|
-
'
|
102
|
+
'discovered': True,
|
103
103
|
'directions': {
|
104
104
|
'south': 'Kitchen',
|
105
105
|
'east': 'Dining Room',
|
@@ -143,7 +143,7 @@ ROOMS = {
|
|
143
143
|
'Kitchen': {
|
144
144
|
'room type': 'house',
|
145
145
|
'position': (0, 16, 0),
|
146
|
-
'
|
146
|
+
'discovered': False,
|
147
147
|
'directions': {
|
148
148
|
'north': 'Hall',
|
149
149
|
'east': 'Garden',
|
@@ -181,7 +181,7 @@ ROOMS = {
|
|
181
181
|
'Dining Room': {
|
182
182
|
'room type': 'house',
|
183
183
|
'position': (0, 8, 8),
|
184
|
-
'
|
184
|
+
'discovered': False,
|
185
185
|
'directions': {
|
186
186
|
'west': 'Hall',
|
187
187
|
'south': 'Garden',
|
@@ -212,7 +212,7 @@ ROOMS = {
|
|
212
212
|
'Garden': {
|
213
213
|
'room type': 'house',
|
214
214
|
'position': (0, 16, 8),
|
215
|
-
'
|
215
|
+
'discovered': False,
|
216
216
|
'directions': {
|
217
217
|
'north': 'Dining Room',
|
218
218
|
'west': 'Kitchen',
|
@@ -236,7 +236,7 @@ ROOMS = {
|
|
236
236
|
'Armoury': {
|
237
237
|
'room type': 'house',
|
238
238
|
'position': (0, 0, 0),
|
239
|
-
'
|
239
|
+
'discovered': False,
|
240
240
|
'directions': {
|
241
241
|
'south' :'Hall',
|
242
242
|
'east': 'Sitting Room',
|
@@ -268,7 +268,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
268
268
|
'Sitting Room': {
|
269
269
|
'room type': 'house',
|
270
270
|
'position': (0, 0, 8),
|
271
|
-
'
|
271
|
+
'discovered': False,
|
272
272
|
'directions': {
|
273
273
|
'west': 'Armoury',
|
274
274
|
'south': 'Dining Room',
|
@@ -306,7 +306,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
306
306
|
'Landing': {
|
307
307
|
'room type': 'house',
|
308
308
|
'position': (1, 8, 0),
|
309
|
-
'
|
309
|
+
'discovered': False,
|
310
310
|
'directions': {
|
311
311
|
'down': 'Hall',
|
312
312
|
'north': 'Tower Bottom',
|
@@ -335,7 +335,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
335
335
|
'Bedroom': {
|
336
336
|
'room type': 'house',
|
337
337
|
'position': (1, 8, 8),
|
338
|
-
'
|
338
|
+
'discovered': False,
|
339
339
|
'directions': {
|
340
340
|
'west': 'Landing',
|
341
341
|
'north': 'Office',
|
@@ -367,7 +367,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
367
367
|
'Office': {
|
368
368
|
'room type': 'house',
|
369
369
|
'position': (1, 0, 8),
|
370
|
-
'
|
370
|
+
'discovered': False,
|
371
371
|
'directions': {
|
372
372
|
'south': 'Bedroom',
|
373
373
|
'west': 'Tower Bottom',
|
@@ -397,7 +397,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
397
397
|
'Balcony': {
|
398
398
|
'room type': 'house',
|
399
399
|
'position': (1, 16, 0),
|
400
|
-
'
|
400
|
+
'discovered': False,
|
401
401
|
'directions': {
|
402
402
|
'north': 'Landing',
|
403
403
|
},
|
@@ -420,7 +420,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
420
420
|
'Tower Bottom': {
|
421
421
|
'room type': 'house',
|
422
422
|
'position': (1, 0, 0),
|
423
|
-
'
|
423
|
+
'discovered': False,
|
424
424
|
'directions': {
|
425
425
|
'south': 'Landing',
|
426
426
|
'east': 'Office',
|
@@ -444,7 +444,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
444
444
|
'Tower Middle': {
|
445
445
|
'room type': 'house',
|
446
446
|
'position': (2, 0, 0),
|
447
|
-
'
|
447
|
+
'discovered': False,
|
448
448
|
'directions': {
|
449
449
|
'down': 'Tower Bottom',
|
450
450
|
'up': 'Tower Top',
|
@@ -472,7 +472,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
472
472
|
'Tower Top' :{
|
473
473
|
'room type': 'house',
|
474
474
|
'position': (3, 0, 0),
|
475
|
-
'
|
475
|
+
'discovered': False,
|
476
476
|
'directions': {
|
477
477
|
'down': 'Tower Middle',
|
478
478
|
'teleport': 'Teleportation Deck',
|
@@ -505,7 +505,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
505
505
|
'Basement Armoury': {
|
506
506
|
'room type': 'house',
|
507
507
|
'position': (-1, 0, 0),
|
508
|
-
'
|
508
|
+
'discovered': False,
|
509
509
|
'directions': {
|
510
510
|
'south': 'Basement 3',
|
511
511
|
'east': 'Basement 1',
|
@@ -536,7 +536,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
536
536
|
'Basement 1': {
|
537
537
|
'room type': 'house',
|
538
538
|
'position': (-1, 0, 8),
|
539
|
-
'
|
539
|
+
'discovered': False,
|
540
540
|
'directions': {
|
541
541
|
'south': 'Basement 2',
|
542
542
|
'west': 'Basement Armoury',
|
@@ -563,7 +563,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
563
563
|
'Basement 2': {
|
564
564
|
'room type': 'house',
|
565
565
|
'position': (-1, 8, 8),
|
566
|
-
'
|
566
|
+
'discovered': False,
|
567
567
|
'directions': {
|
568
568
|
'north': 'Basement 1',
|
569
569
|
'west': 'Basement 3',
|
@@ -588,7 +588,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
588
588
|
'Basement 3': {
|
589
589
|
'room type': 'house',
|
590
590
|
'position': (-1, 8, 0),
|
591
|
-
'
|
591
|
+
'discovered': False,
|
592
592
|
'directions': {
|
593
593
|
'south': 'Basement 4',
|
594
594
|
'east': 'Basement 2',
|
@@ -612,7 +612,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
|
|
612
612
|
'Basement 4': {
|
613
613
|
'room type': 'house',
|
614
614
|
'position': (-1, 16, 0),
|
615
|
-
'
|
615
|
+
'discovered': False,
|
616
616
|
'directions': {
|
617
617
|
'north': 'Basement 3',
|
618
618
|
},
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='neelthee_mansion',
|
5
|
-
version='2.3.
|
5
|
+
version='2.3.5',
|
6
6
|
packages=find_packages(), # Automatically finds all packages and modules
|
7
7
|
install_requires=[
|
8
8
|
'wheel', 'psutil', 'playsound', 'requests', 'keyboard', 'pandas', 'validators', 'dicttoxml', 'pytz',
|
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-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion.egg-info/dependency_links.txt
RENAMED
File without changes
|
{neelthee_mansion-2.3.4 → neelthee_mansion-2.3.5}/neelthee_mansion.egg-info/entry_points.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|