Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ollyisonit/minecraft-bingo-card-generator
Randomly generate fair cards for playing Minecraft Bingo.
https://github.com/ollyisonit/minecraft-bingo-card-generator
Last synced: about 2 months ago
JSON representation
Randomly generate fair cards for playing Minecraft Bingo.
- Host: GitHub
- URL: https://github.com/ollyisonit/minecraft-bingo-card-generator
- Owner: ollyisonit
- License: gpl-3.0
- Created: 2020-08-21T20:54:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-21T21:35:11.000Z (over 4 years ago)
- Last Synced: 2024-03-31T14:28:22.342Z (9 months ago)
- Language: Python
- Homepage:
- Size: 6.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minecraft Bingo Card Generator
![Sample Bingo Card](example.png "Sample Bingo Card")
## What Is Minecraft Bingo?
Minecraft bingo is a game where you complete tasks in Minecraft in order to mark off squares on your bingo card. The first player to mark off five squares in the same row, column, or diagonal wins!## How to Use
This program allows you to generate perfectly fair bingo cards from a spreadsheet of challenges to put on the squares of the bingo card. Each row, column, and diagonal of the card will contain two easy, two medium, and one hard challenge, and will also contain one challenge from each of up to five categories.In order to add and remove squares from the bingo card, you will need to edit the bingocategories.csv spreadsheet. Each row in this spreadsheet represents a single potential square on the bingo card. The columns of the spreadsheet are:
#### Category
The category that a square belongs to. When a card is generated, five categories will be selected at random and a space from each of those categories will be present in each row, column, and diagonal exactly once.
#### Difficulty
Can be 'easy' 'medium' or 'hard'. Each category must contain at least one square of each difficulty level. When a card is generated, each row, column, and diagonal will contain 2 easy, 2 medium, and 1 hard square.
#### Text
The optional text to display on the square
#### Image
The filename of the optional image to display on the square. By default, all images should be placed in the images folder.
When opening/saving the .csv file, your spreadsheet editing software may ask you how you want to format the csv file. If the options are available, make sure that the csv is comma-separated and uses " as its text delimiter.Once you've filled in the bingocategories.csv spreadsheet, double-click GenerateBingoCard.py to run it. It will create a file called bingocard.png located in the same directory as GenerateBingoCard.py.
In order to customize the names/locations of the files created and used by the programs, you can change the constants on lines 10-19 of GenerateBingoCard.py.
## Dependencies
This program requires [Python 3.8](https://www.python.org/downloads/).This program also requires Pillow to be installed. In order to install Pillow, first make sure that you have Python installed, then open your command prompt and run "pip install Pillow"
## Troubleshooting
If the program doesn't run, it's most likely because you either don't have python or don't have Pillow and you need to install them.