- F STRINGS???????????? - Enforce relativity - Rename things for better - Separate the cheating from the game playing - Remove most hardcoded constants - Introduce new wordlist 'format' (lol python, who needs json) - Test things fairly extensively
15 lines
422 B
Python
15 lines
422 B
Python
# dummy wordlist
|
|
# by Jeeb
|
|
# Information about your version of Wordle
|
|
Metadata = {
|
|
"name": "Dummy",
|
|
"version": "dummy",
|
|
"guesses": 4,
|
|
"launch": (2222, 2, 16)
|
|
}
|
|
# Your custom list of non-answer words goes here
|
|
Words = [
|
|
"b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m",
|
|
"n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]
|
|
# Your custom list of answer-words goes here
|
|
Answers = ["a"] |