neelthee-mansion 3.14.2__py3-none-any.whl → 3.14.3__py3-none-any.whl

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/Rooms.py CHANGED
@@ -675,7 +675,8 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
675
675
  'discovered': False,
676
676
  'directions': {
677
677
  'north': Door('Basement 3'),
678
- 'shoot': 'Cavern 1',
678
+ 'east': Door('Library'),
679
+ 'shoot': Door('Cavern 1'),
679
680
  },
680
681
  'item': item('torch'),
681
682
  'info': 'You are in an dimly lit underground (all the light in the room comes from 3 %*BLUE*%torch%*RESET*%es on the walls). there is a choot in the floor (type: \'go shoot\' to go down the shoot).',
@@ -684,7 +685,7 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
684
685
  █ █
685
686
  █ █
686
687
  █ █
687
-
688
+
688
689
  █ █
689
690
  █ █
690
691
  █ █
@@ -694,6 +695,33 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
694
695
  ],
695
696
  },
696
697
 
698
+ 'Library': {
699
+ 'room type': 'house',
700
+ 'position': (0, 0, 0),
701
+ 'discovered': False,
702
+ 'directions': {
703
+ 'west': Door('Room name'),
704
+ 'bookcase': Door('Cavern 3'),
705
+ },
706
+ 'containers': {
707
+ 'bookcases': container([item('\'Book of mistory', 'readable', "Neel-thee is waching you through the mansion itself")]),
708
+ },
709
+ 'info': 'Towering bookcases 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.',
710
+ 'map': '''
711
+ █████████
712
+ █ █
713
+ █ █
714
+ █ █
715
+ ║ █
716
+ █ █
717
+ █ █
718
+ █ █
719
+ █████████''',
720
+ 'Hints': [
721
+ 'Is it just me or are the first letters of all of those book names spelling the words "I\'m watching you"',
722
+ ],
723
+ },
724
+
697
725
  'Cavern 1': {
698
726
  'room type': 'cavern',
699
727
  'position': (-2, 0, 0),
@@ -742,6 +770,30 @@ You notice a ''%*RED*%storage%*RESET*% device in one corner. You hear a %*YELLOW
742
770
  ],
743
771
  },
744
772
 
773
+ 'Cavern 3': {
774
+ 'room type': 'cavern',
775
+ 'position': (-3, 0, 0),
776
+ 'discovered': False,
777
+ 'directions': {
778
+ 'down': Door('Cavern 2'),
779
+ 'bookcase': Door('Library'),
780
+ },
781
+ 'info': 'you are in a dark cavern with the only light coming from the crack behind a %*GREEN*%bookcase%*RESET*%. A voice in the back of your head says: \'I give up.\'',
782
+ 'map': '''
783
+ █████████
784
+ █ █
785
+ █ █
786
+ █ █
787
+ █ █
788
+ █ █
789
+ █ █
790
+ █ █
791
+ █████████''',
792
+ 'Hints': [
793
+ 'I wander what\'s behind that %*GREEN*%bookcase%*RESET*%.',
794
+ ],
795
+ },
796
+
745
797
  'Forest Clearing': {
746
798
  'room type': 'forest',
747
799
  'directions': {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: neelthee-mansion
3
- Version: 3.14.2
3
+ Version: 3.14.3
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
@@ -1,14 +1,14 @@
1
1
  neelthee_mansion/Mansion_of_Amnesia.py,sha256=UU5c55WquTvcqh6oo4r48VlkqQ4HNVK8nHjvbRyDooE,45049
2
2
  neelthee_mansion/Quests.py,sha256=q6VzR3mt9AYe29ACWZuf-suz4yOKrL946aJ493eQRS0,2611
3
- neelthee_mansion/Rooms.py,sha256=grgMiAAC9EUlZlhDlb9hOpk23h6S9Uyzib7uFkVwnTk,87865
3
+ neelthee_mansion/Rooms.py,sha256=DJ-Y_qr_-xXMJbENgtLnWqxeIhbEEM7BXsAxpuhlh0Y,90063
4
4
  neelthee_mansion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  neelthee_mansion/__main__.py,sha256=OIAWZ04le70DyjtR4hlmK9csHej7EHxeUrMoNnM-Vjc,95
6
6
  neelthee_mansion/all_game_utils.py,sha256=mnxws_YEnsoftkkBMZv1k_zlnGKWGenUvsZnNKjuFJQ,349
7
7
  neelthee_mansion/creatures.py,sha256=_TF-rbiTITvTX2rb6d5gZqGMwpMDPOKjFYnYwq76UK8,15513
8
8
  neelthee_mansion/items.py,sha256=_6-kBLmlUcB9c0_YpOjAr43Mwvy0kdoTkGU4tDvA2hk,5538
9
9
  neelthee_mansion/utils.py,sha256=Wt1CdK4eCskrxRXkeKgzVoa_NIzwQ047dJU-b_e8pb8,13559
10
- neelthee_mansion-3.14.2.dist-info/METADATA,sha256=ibekRzfly2AI05oT-OG7JobPm0rJQJd7H51LrV9F9fE,1992
11
- neelthee_mansion-3.14.2.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
12
- neelthee_mansion-3.14.2.dist-info/entry_points.txt,sha256=j5ScTTyIidFhmT3F6hcX9pnlom4cJdDmfe26BmM6Igo,56
13
- neelthee_mansion-3.14.2.dist-info/top_level.txt,sha256=woQImQewylhly5Rb24HwPEGMxPY6do_PaUwGd5BNLOM,17
14
- neelthee_mansion-3.14.2.dist-info/RECORD,,
10
+ neelthee_mansion-3.14.3.dist-info/METADATA,sha256=SPQjKAkf36FRNbPEpCiRINLy8YArUmZPZog-tLxmtV0,1992
11
+ neelthee_mansion-3.14.3.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
12
+ neelthee_mansion-3.14.3.dist-info/entry_points.txt,sha256=j5ScTTyIidFhmT3F6hcX9pnlom4cJdDmfe26BmM6Igo,56
13
+ neelthee_mansion-3.14.3.dist-info/top_level.txt,sha256=woQImQewylhly5Rb24HwPEGMxPY6do_PaUwGd5BNLOM,17
14
+ neelthee_mansion-3.14.3.dist-info/RECORD,,