Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -52,51 +52,43 @@ def load_score(key):
|
|
52 |
return 0
|
53 |
|
54 |
roleplaying_glossary = {
|
55 |
-
"
|
56 |
-
"
|
57 |
-
"
|
58 |
-
"
|
59 |
-
"
|
60 |
-
"
|
61 |
},
|
62 |
-
"
|
63 |
-
"
|
64 |
-
"
|
65 |
-
"
|
66 |
-
"
|
67 |
-
"Legend of the Five Rings": ["Living Card Game", "Honor and conflict", "Clan loyalty"],
|
68 |
},
|
69 |
-
"
|
70 |
-
"
|
71 |
-
"
|
72 |
-
"
|
73 |
-
"Eternal Card Game": ["Digital CCG", "Cross-platform", "Drafting and events"],
|
74 |
},
|
75 |
-
"
|
76 |
-
"
|
77 |
-
"
|
78 |
-
"
|
79 |
-
"Legends of Runeterra": ["League of Legends universe", "Dynamic combat", "Champion leveling"],
|
80 |
},
|
81 |
-
"
|
82 |
-
"
|
83 |
-
"
|
84 |
-
"
|
85 |
},
|
86 |
"📚 Lore & Background": {
|
87 |
-
"
|
88 |
-
"
|
89 |
-
"
|
90 |
-
},
|
91 |
-
"🛠️ Digital Tools & Platforms": {
|
92 |
-
"Online Play": ["Remote gameplay", "Digital tournaments", "Community events"],
|
93 |
-
"Deck Building Tools": ["Card database access", "Deck testing", "Community sharing"],
|
94 |
-
"Strategy Guides": ["Meta analysis", "Deck guides", "Tournament reports"],
|
95 |
},
|
96 |
-
"
|
97 |
-
"
|
98 |
-
"
|
99 |
-
"
|
100 |
},
|
101 |
}
|
102 |
|
|
|
52 |
return 0
|
53 |
|
54 |
roleplaying_glossary = {
|
55 |
+
"📚 Traditional Word Games": {
|
56 |
+
"Scrabble": ["Tile placement", "Word formation", "Point scoring"],
|
57 |
+
"Boggle": ["Letter grid", "Timed word search", "Word length points"],
|
58 |
+
"Crossword Puzzles": ["Clue solving", "Word filling", "Thematic puzzles"],
|
59 |
+
"Banagrams": ["Tile shuffling", "Personal anagram puzzles", "Speed challenge"],
|
60 |
+
"Hangman": ["Word guessing", "Letter guessing", "Limited attempts"],
|
61 |
},
|
62 |
+
"💡 Digital Word Games": {
|
63 |
+
"Words With Friends": ["Digital Scrabble-like", "Online multiplayer", "Social interaction"],
|
64 |
+
"Wordle": ["Daily word guessing", "Limited tries", "Shareable results"],
|
65 |
+
"Letterpress": ["Competitive word search", "Territory control", "Strategic letter usage"],
|
66 |
+
"Alphabear": ["Word formation", "Cute characters", "Puzzle strategy"],
|
|
|
67 |
},
|
68 |
+
"🎮 Game Design and Mechanics": {
|
69 |
+
"Gameplay Dynamics": ["Word discovery", "Strategic placement", "Time pressure"],
|
70 |
+
"Player Engagement": ["Daily challenges", "Leaderboards", "Community puzzles"],
|
71 |
+
"Learning and Development": ["Vocabulary building", "Spelling practice", "Cognitive skills"],
|
|
|
72 |
},
|
73 |
+
"🌐 Online Platforms & Tools": {
|
74 |
+
"Multiplayer Platforms": ["Real-time competition", "Asynchronous play", "Global matchmaking"],
|
75 |
+
"Educational Tools": ["Learning modes", "Progress tracking", "Skill levels"],
|
76 |
+
"Community Features": ["Forums", "Tips and tricks sharing", "Tournament organization"],
|
|
|
77 |
},
|
78 |
+
"🎖️ Competitive Scene": {
|
79 |
+
"Scrabble Tournaments": ["Official rules", "National and international", "Professional rankings"],
|
80 |
+
"Crossword Competitions": ["Speed solving", "Puzzle variety", "Prizes and recognition"],
|
81 |
+
"Wordle Challenges": ["Streaks", "Perfect scores", "Community leaderboards"],
|
82 |
},
|
83 |
"📚 Lore & Background": {
|
84 |
+
"History of Word Games": ["Evolution over time", "Cultural significance", "Famous games"],
|
85 |
+
"Iconic Word Game Creators": ["Creators and designers", "Inspirational stories", "Game development"],
|
86 |
+
"Word Games in Literature": ["Literary puzzles", "Wordplay in writing", "Famous examples"],
|
|
|
|
|
|
|
|
|
|
|
87 |
},
|
88 |
+
"🛠️ Resources & Development": {
|
89 |
+
"Game Creation Tools": ["Word game generators", "Puzzle design software", "Community mods"],
|
90 |
+
"Educational Resources": ["Vocabulary lists", "Word game strategies", "Learning methodologies"],
|
91 |
+
"Digital Platforms": ["App development", "Online game hosting", "Social media integration"],
|
92 |
},
|
93 |
}
|
94 |
|