Demo.Video.webm
This source code represents a python coded video game which has been coded using "pygame". This game is an RPG type game with attack elements and map gnerations. The code was developed by following a step by step tutorial done by "ShawCode".
Create your own virtual environment which will be compatible with the source code. Clone this repo and open a terminal and bash the following (Assuming you have conda already installed).
''' conda create --name py-games --file requirements.txt '''
This will install the necessary packages required for the source code.
To try the game, open the "main.py" file and run the code.
This file contains the main game code which describes the functionality of the game.
All in game sprite models are created within this code.
Configuration parameters such as windowsize. layer order is stored inthis file.
Contains the map of the game which can be changed as required.
- B : Blocks (Walls)
- E : Enemy Spawn Point
- P : Player Spawn Point