A Dragon Quest (Famicom) / Warrior (NES) clone.
- venv;
- pip;
- Install Python;
- Install Visual Studio Code;
- Clone solution:
C:
mkdir C:\source
cd C:\source
git clone https://github.com/Simon-Charest/pyquest.git
cd C:\source\pyquest
- Open solution with Visual Studio Code;
- Create virtual environment:
python -m venv .venv
- Activate virtual environment:
.venv\Scripts\Activate.ps1
- Upgrade pip:
python -m pip install -U pip
- Install requirements:
pip install -r requirements.txt
- Run solution:
python pyquest -h
- Run tests:
pytest
- Distributed under the MIT License. See LICENSE.txt for more information.
- GitHub: Pyquest;
- Email: Simon Charest.
- An 8x8 tileset pixel recreation of the OG Dragon Warrior map I made for a DnD campaign. Took about 30 hours; Artwork (https://www.reddit.com/r/dragonquest/comments/qu45w1/an_8x8_tileset_pixel_recreation_of_the_og_dragon/);
- Dragon Warrior – Text Dump (https://gamefaqs.gamespot.com/nes/563408-dragon-warrior/faqs/54647);
- Mike's RPG Center - Dragon Warrior - Experience Levels (https://mikesrpgcenter.com/dw1/levels.html).