Shiny Sim offers simulation and tracking for shiny hunts. Pokémon data is pulled from PokéAPI. That means that the list of Pokémon that you can simulate hunts for is up to date with whatever they have. This allows for hunts that can't be done naturally to occur as well like megas. Below is a list of features for each of the modes.
- Simulate shiny hunts with odds that you input.
- Add a delay to when you can input the button next to simulate real world time between encounters.
- Increment and decrement the encounters of your hunt and submit it when found.
- Stats screen where you can view the encounters, status, start time, end time of a hunt.
- A secret shiny hunt of the glitch Missingno from the Gen 1 Pokémon games.
There is two ways to install the project. The first is using it as a container and the other is installing the libraries manually. The second option is needed if you would like to work on your own features and playing around with the code.
Both methods first require you to clone the repository by using this command.
git clone https://github.com/cjcocokrisp/shiny-sim.git
Installing through the Docker container is easy. You just need to have Docker installed on your computer and then to run it just run the following command.
docker-compose up
This will launch the application on http://localhost:3000
.
IMPORTANT NOTE: For some reason when running the app through the container the list of Pokémon will not be read by the server. This will cause an error on loading the React app. To fix this all you need to do is stop running the container and then run the command above again.
To stop the app from running and delete the container just simply call this command.
docker-compose down
You also can build the image and then run it as well. Just make sure you add a volume to it to save the database and the Pokémon list. The issue with the containers that require you to rerun it also will occur.
To manually install the project you must run the following two commands in the root of the project.
go mod download
npm install
These two commands will install the dependencies for the project and then to run it just run npm run dev
.
- Account system where each account holds different hunts associated with them.
- Official hunts that can be ran on the server with a collection feature to show how many of these you have completed.
- Social features, see recent hunts by others.
- Racing mode for both simulation and tracking where you race against other players to complete the hunt.
- More custom hunts.
If you encounter any bugs or issues please report them using one of the following.
- Github Issues (Preferred)
- Discord DM (karmareplicant)
When submitting a bug report, please include as much information about how to recreate the issue as possible.
- React Golang Full Stack - Helped with setting up the projects structure for the React part of the app.
- PokéAPI - Provided Pokémon list and the images of each Pokémon.
- Creators of all other resources used in the project.
This project is not endorsed by Nintendo or the Pokémon Company and is also not indended for profit.