diff options
-rw-r--r-- | bot/resources/evergreen/trivia_quiz.json | 12 | ||||
-rw-r--r-- | bot/seasons/evergreen/trivia_quiz.py | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/bot/resources/evergreen/trivia_quiz.json b/bot/resources/evergreen/trivia_quiz.json index 69a834f8..1ad2a1e1 100644 --- a/bot/resources/evergreen/trivia_quiz.json +++ b/bot/resources/evergreen/trivia_quiz.json @@ -71,17 +71,17 @@ { "id": 106, "question": "Which country is known as the \"Land of Thunderbolt\"?", - "info": "\"Bhutan is known as the \\\"Land of Thunder Dragon\\\" or \\\"Land of Thunderbolt\\\" due to the violent and large thunderstorms that whip down through the valleys from the Himalayas. The dragon reference was due to people thinking the sparkling light of thunderbolts was the red fire of a dragon.\"" + "info": "Bhutan is known as the \"Land of Thunder Dragon\" or \"Land of Thunderbolt\" due to the violent and large thunderstorms that whip down through the valleys from the Himalayas. The dragon reference was due to people thinking the sparkling light of thunderbolts was the red fire of a dragon." }, { "id": 107, - "question": "Which country is the largest producer of coffee?", + "question": "Which country is the largest producer of tea in the world?", "answer": "China", "info": "Tea is mainly grown in Asia, Africa, South America, and around the Black and Caspian Seas. The four biggest tea-producing countries today are China, India, Sri Lanka and Kenya. Together they represent 75% of world production." }, { "id": 108, - "question": "Which country is the largest producer of tea in the world?", + "question": "Which country is the largest producer of coffee?", "answer": "Brazil", "info": "Brazil is the world's largest coffee producer. In 2016, Brazil produced a staggering 2,595,000 metric tons of coffee beans. It is not a new development, as Brazil has been the highest global producer of coffee beans for over 150 years." }, @@ -165,7 +165,7 @@ }, { "id": 122, - "question": "Which is the largest desert in the world (exclude cold deserts.) ?", + "question": "Which is the largest hot desert in the world?", "answer": "Sahara", "info": "The Sahara Desert covers 3.6 million square miles. It is almost the same size as the United States or China. There are sand dunes in the Sahara as tall as 590 feet." }, @@ -183,7 +183,7 @@ }, { "id": 125, - "question": "What is the name of the largest Dam in the world?", + "question": "What is the name of the largest dam in the world?", "answer": "Three Gorges Dam", "info": "At 1.4 miles wide (2.3 kilometers) and 630 feet (192 meters) high, Three Gorges Dam is the largest hydroelectric dam in the world, according to International Water Power & Dam Construction magazine. Three Gorges impounds the Yangtze River about 1,000 miles (1,610 km) west of Shanghai." }, @@ -213,7 +213,7 @@ }, { "id": 130, - "question": "Expand GPRS", + "question": "What does the acronym GPRS stand for?", "answer": "General Packet Radio Service", "info": "General Packet Radio Service (GPRS) is a packet-based mobile data service on the global system for mobile communications (GSM) of 3G and 2G cellular communication systems. It is a non-voice, high-speed and useful packet-switching technology intended for GSM networks." } diff --git a/bot/seasons/evergreen/trivia_quiz.py b/bot/seasons/evergreen/trivia_quiz.py index 4b937035..798523e6 100644 --- a/bot/seasons/evergreen/trivia_quiz.py +++ b/bot/seasons/evergreen/trivia_quiz.py @@ -45,7 +45,7 @@ class TriviaQuiz(commands.Cog): questions = json.load(json_data) return questions - @commands.command(name="quiz", aliases=["trivia", "tquiz"]) + @commands.command(name="quiz", aliases=["trivia"]) async def quiz_game(self, ctx: commands.Context, category: str = "general") -> None: """ Start/Stop a quiz! @@ -73,7 +73,7 @@ class TriviaQuiz(commands.Cog): start_embed.description = "Each game consists of 5 questions.\n" start_embed.description += "**Rules :**\nNo cheating and have fun!" start_embed.set_footer( - text="Points for a question reduces by 25 after 10s or after a hint.Total time is 30s per question" + text="Points for a question reduces by 25 after 10s or after a hint. Total time is 30s per question" ) await ctx.send(embed=start_embed) # send an embed with the rules await asyncio.sleep(1) @@ -216,7 +216,7 @@ class TriviaQuiz(commands.Cog): @staticmethod async def send_answer(channel: discord.TextChannel, question_dict: dict) -> None: - """Send the correct the answer of a question to the game channel.""" + """Send the correct answer of a question to the game channel.""" answer = question_dict["answer"] info = question_dict["info"] embed = discord.Embed(color=discord.Colour.red()) |