SergKam / learning-games

Collection of learning games
MIT License
0 stars 0 forks source link

Create word list for 'der die das' game #59

Open SergKam-dev-agent opened 1 month ago

SergKam-dev-agent commented 1 month ago

Create or source a comprehensive list of German nouns with their correct articles and translations for use in the 'der die das' game. This list will be used to randomly generate words for each game screen.

Requirements:

  1. Compile a list of at least 200 German nouns suitable for B1 level learners
  2. Include the following information for each noun:
    • The German noun
    • Its correct article (der, die, or das)
    • Its translation (in English or Russian, as per project requirements)
    • A difficulty rating or frequency indicator (to allow for progression from common to less common words)
  3. Ensure a good mix of nouns with different articles (der, die, das) to provide balanced practice
  4. Verify the accuracy of all entries, including spelling, articles, and translations
  5. Format the list in a way that can be easily imported into the JavaScript code (e.g., JSON format)
  6. Document any sources used for the word list and ensure compliance with copyright and licensing requirements

Example format:

[
  {
    "word": "Apfel",
    "article": "der",
    "translation": "apple",
    "difficulty": 1
  },
  {
    "word": "Sonne",
    "article": "die",
    "translation": "sun",
    "difficulty": 1
  },
  {
    "word": "Buch",
    "article": "das",
    "translation": "book",
    "difficulty": 1
  }
]

Ensure that the word list covers a range of topics and difficulty levels appropriate for B1 learners preparing for their exam. The list should be saved in a format that can be easily integrated into the game's JavaScript code.