Home | Ideas | Snake | Ideation |
Section: Popcorn Hacks.
Defining the purpose of the files in the RPG games:
- rpg.md: This allows you to keep all the code for your RPG game all in one place for easy access. This makes changes and updates easier and more efficient. You are able to see and comprehend the code much easier.
- Background.js: Defines data for assets in the game and starts the game.
- GameEnv.js: Uses a classic Java static class pattern that manages the game environment.
- GameControl.js: Creates the background.
- Player.js: Creates the player.
What I want to do with my RPG
- Add an NPC: I plan to add an NPC that you are able to interact with so that it can give you different perks in the game
- Add a weapon that the character can use: I want to add a weapon into the game that the character is able to pick up and use.I would like to add a feature where the character can upgrade its weapon or "unlock" different weapons.
- Specific Sound effects: Though I have added background music, I would like to figure out how to add sound effects for specific movements.