csbrodle is a game that starts with TV show characters that my friends and I have watched, but has easy customization for different TV characters if you would like to adapt and play with your friends too!
Only main or secondary characters were chosen.
These customizations only works when running app on localhost!
The app takes in TV characters from csbrodle_data.csv. You can add/delete TV characters into this csv as long as the attributes exactly match according to name, age, height, hair, sex, series.
If users would like to decide the target character, they can hard code the character name exactly as in the csbrodle_data.csv.
- Comment out
target = query_db.get_random_character()inbackend/app.py'sindex() - Add your own target using this format
target = query_db.get_character_by_name('Your target here') - E.g.
target = query_db.get_character_by_name('Conrad Fisher')
