Install
openclaw skills install football-englishFootball quiz in English! Test your knowledge about football while learning English vocabulary. Используй когда пользователь просит football quiz, футбольную викторину или хочет выучить футбольные слова на английском.
openclaw skills install football-englishInteractive football quiz in English — learn English through football!
ВСЕГДА используй inline buttons для ВСЕХ взаимодействий!
Никогда не проси пользователя писать текст — только кнопки!
Когда пользователь просит football quiz, ИСПОЛЬЗУЙ INLINE BUTTONS:
{
"action": "send",
"channel": "telegram",
"target": "<user_id>",
"message": "⚽ *Football English Quiz!*\n\nTest your football knowledge while learning English!\n\nГотов проверить свои знания?",
"buttons": [
[
{"text": "🚀 Start Quiz", "callback_data": "fb:start_quiz"},
{"text": "📚 Learn Words First", "callback_data": "fb:learn_words"}
]
]
}
Используй message с параметром buttons:
{
"action": "send",
"channel": "telegram",
"target": "<user_id>",
"message": "⚽ Question 1/5\n\nWhich country won the 2022 FIFA World Cup?\n\nКакая страна выиграла Чемпионат мира 2022?",
"buttons": [
[
{"text": "🇫🇷 France", "callback_data": "fb:q1:a"},
{"text": "🇦🇷 Argentina", "callback_data": "fb:q1:b"}
],
[
{"text": "🇧🇷 Brazil", "callback_data": "fb:q1:c"},
{"text": "🇩🇪 Germany", "callback_data": "fb:q1:d"}
]
]
}
Correct:
{
"action": "send",
"channel": "telegram",
"target": "<user_id>",
"message": "✅ Correct! Argentina won on penalties! 🏆\n🎯 +10 points\n\n🆕 New word: *\"penalty shootout\"* — серия пенальти",
"buttons": [
[{"text": "➡️ Next Question", "callback_data": "fb:next"}]
]
}
Wrong:
{
"action": "send",
"channel": "telegram",
"target": "<user_id>",
"message": "❌ Not quite!\n✓ Argentina won the 2022 World Cup!\n\n🆕 New word: *\"final\"* — финал",
"buttons": [
[{"text": "➡️ Next Question", "callback_data": "fb:next"}]
]
}
🏆 World Cup:
⭐ Players:
🏟️ Clubs:
📊 Stats & Records:
После каждого вопроса учи новое слово:
Basic Vocabulary:
Cards & Rules:
Match Events:
{
"action": "send",
"channel": "telegram",
"target": "<user_id>",
"message": "⚽ *Football English Quiz Complete!*\n━━━━━━━━━━━━━━━━━━━━━━\n🎯 Score: 40/50\n📊 Correct: 4/5\n🆕 Words learned: 5\n\n🔥 Great job! You're getting better!",
"buttons": [
[
{"text": "🔄 Play Again", "callback_data": "fb:restart"},
{"text": "📚 Review Words", "callback_data": "fb:review"}
]
]
}
Когда пользователь просит повторить слова, ИСПОЛЬЗУЙ INLINE BUTTONS:
{
"action": "send",
"channel": "telegram",
"target": "<user_id>",
"message": "📚 *Football Vocabulary Review:*\n\n⚽ Goal — гол\n🏆 Trophy — трофей\n🥅 Net — сетка\n🟨 Yellow card — жёлтая карточка\n🟥 Red card — красная карточка\n🧤 Goalkeeper — вратарь\n👟 Boots — бутсы\n🏃 Sprint — рывок\n\nKeep practicing! 🔥",
"buttons": [
[{"text": "🔄 Back to Quiz", "callback_data": "fb:start_quiz"}]
]
}
Каждый вопрос имеет:
User: football quiz
Bot: (использует message tool с кнопками)
{
"message": "⚽ *Football English Quiz!*\n\nReady to test your knowledge?",
"buttons": [[
{"text": "🚀 Start Quiz", "callback_data": "fb:start_quiz"}
]]
}
---
User: [нажимает 🚀 Start Quiz]
Bot: ⚽ Question 1/5
Who won the 2022 World Cup?
(Кто выиграл ЧМ 2022?)
{
"buttons": [
[
{"text": "🇫🇷 France", "callback_data": "fb:q1:a"},
{"text": "🇦🇷 Argentina", "callback_data": "fb:q1:b"}
],
[
{"text": "🇧🇷 Brazil", "callback_data": "fb:q1:c"},
{"text": "🇩🇪 Germany", "callback_data": "fb:q1:d"}
]
]
}
---
User: [нажимает 🇦🇷 Argentina]
Bot: ✅ Correct! Argentina won on penalties!
🎯 +10 points
🆕 "penalty shootout" — серия пенальти
{
"buttons": [[
{"text": "➡️ Next Question", "callback_data": "fb:next"}
]]
}
---
... (ещё 4 вопроса) ...
---
Bot: ⚽ Quiz Complete!
━━━━━━━━━━━━━━━━
🎯 Score: 50/50
📊 Correct: 5/5
🆕 Words learned: 5
🏆 Perfect score! You're a football expert!
{
"buttons": [
[
{"text": "🔄 Play Again", "callback_data": "fb:restart"},
{"text": "📚 Review Words", "callback_data": "fb:review"}
]
]
}