neelthee-mansion 0.3.0.0__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-0.3.0.0/PKG-INFO +38 -0
- neelthee_mansion-0.3.0.0/README.md +18 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/Mansion_of_Amnesia.py +1017 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/Quests.py +70 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/Rooms.py +1818 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/__init__.py +0 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/__main__.py +4 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/all_game_utils.py +13 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/creatures.py +391 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/items.py +74 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion/utils.py +388 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion.egg-info/PKG-INFO +38 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion.egg-info/SOURCES.txt +17 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion.egg-info/dependency_links.txt +1 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion.egg-info/entry_points.txt +2 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion.egg-info/requires.txt +9 -0
- neelthee_mansion-0.3.0.0/neelthee_mansion.egg-info/top_level.txt +1 -0
- neelthee_mansion-0.3.0.0/setup.cfg +4 -0
- neelthee_mansion-0.3.0.0/setup.py +35 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: neelthee_mansion
|
3
|
+
Version: 0.3.0.0
|
4
|
+
Summary: A text-based adventure game set in Neel-thee’s mansion.
|
5
|
+
Home-page: https://github.com/Flameblade375/neelthee_mansion
|
6
|
+
Author: Alexander.E.F
|
7
|
+
Author-email: alexander@xandy.rocks
|
8
|
+
License: MIT
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
10
|
+
Classifier: Programming Language :: Python :: 3.6
|
11
|
+
Classifier: Programming Language :: Python :: 3.7
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
17
|
+
Classifier: Operating System :: OS Independent
|
18
|
+
Requires-Python: >=3.6
|
19
|
+
Description-Content-Type: text/markdown
|
20
|
+
|
21
|
+
# Neel-thee's Mansion of Amnesia
|
22
|
+
|
23
|
+
**Neel-thee's Mansion of Amnesia** is a text-based adventure game where players explore a mysterious mansion, interact with objects and creatures, and strive to escape while uncovering their lost identity.
|
24
|
+
|
25
|
+
## Features
|
26
|
+
|
27
|
+
- Explore a richly detailed mansion with various rooms and interactable objects.
|
28
|
+
- Encounter and interact with different creatures.
|
29
|
+
- Collect and use items throughout the game.
|
30
|
+
- Navigate through quests that drive the narrative forward.
|
31
|
+
|
32
|
+
## Installation
|
33
|
+
|
34
|
+
You can install **Neel-thee's Mansion of Amnesia** using `pip` from the Python Package Index (PyPI). Run the following commands. You need wheel installed before you can install **Neel-thee's Mansion of Amnesia**. (worning! make sure you are using command line and even then sometimes it doesn't work. Please use Visual Studio Code or have turned off colour coding or it will brake):
|
35
|
+
|
36
|
+
```bash
|
37
|
+
pip install wheel
|
38
|
+
pip install --no-cache-dir neelthee_mansion
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# Neel-thee's Mansion of Amnesia
|
2
|
+
|
3
|
+
**Neel-thee's Mansion of Amnesia** is a text-based adventure game where players explore a mysterious mansion, interact with objects and creatures, and strive to escape while uncovering their lost identity.
|
4
|
+
|
5
|
+
## Features
|
6
|
+
|
7
|
+
- Explore a richly detailed mansion with various rooms and interactable objects.
|
8
|
+
- Encounter and interact with different creatures.
|
9
|
+
- Collect and use items throughout the game.
|
10
|
+
- Navigate through quests that drive the narrative forward.
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
You can install **Neel-thee's Mansion of Amnesia** using `pip` from the Python Package Index (PyPI). Run the following commands. You need wheel installed before you can install **Neel-thee's Mansion of Amnesia**. (worning! make sure you are using command line and even then sometimes it doesn't work. Please use Visual Studio Code or have turned off colour coding or it will brake):
|
15
|
+
|
16
|
+
```bash
|
17
|
+
pip install wheel
|
18
|
+
pip install --no-cache-dir neelthee_mansion
|