In a quiz event, the player is prompted with one or more questions.
You can have different events be chained for if they pass or fail the quiz.
You can also use this event outside of a quiz setting - for example, as a way to ask the user whether they opt to go "left" or "right" down a path.
"quiz": {
"spirit_start": {
"questions": [
{
"texts": "The ATK of Sangan is...",
"right": ["1000"],
"wrong": ["600"]
},
{
"texts": "The Level of Witch of the Black Forest is...",
"right": ["4"],
"wrong": ["1", "2", "3", "5"]
}
],
"rightText": "You got it right!",
"wrongText": "You got it wrong!",
"shows": 1, One question will be asked
"pointsToWin": 1, One correct question is required to pass
"wins": "pack:Winner", You get a pack if you pass the quiz
"lose": "text:Losers" You get the loser text if you don't
}
}