Added Wall
This commit is contained in:
973
src/lib/games/games.ts
Normal file
973
src/lib/games/games.ts
Normal file
@@ -0,0 +1,973 @@
|
||||
const games: Games = [
|
||||
{
|
||||
name: "LAN Party",
|
||||
walls: [
|
||||
{
|
||||
name: "Wall 1",
|
||||
categories: [
|
||||
{
|
||||
name: "Category 1",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 2",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 3",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 4",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 5",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Wall 2",
|
||||
categories: [
|
||||
{
|
||||
name: "Category 1",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 2",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 3",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 4",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 5",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "LAN Party 2",
|
||||
walls: [
|
||||
{
|
||||
name: "Wall 1",
|
||||
categories: [
|
||||
{
|
||||
name: "Category 1",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 2",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 3",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 4",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 5",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Wall 2",
|
||||
categories: [
|
||||
{
|
||||
name: "Category 1",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 2",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 3",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 4",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Category 5",
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 1?",
|
||||
answer: "Answer 1"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 2?",
|
||||
answer: "Answer 2"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 3?",
|
||||
answer: "Answer 3"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 4?",
|
||||
answer: "Answer 4"
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: "SIMPLE",
|
||||
data: {
|
||||
question: "Question 5?",
|
||||
answer: "Answer 5"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
export type Question = {
|
||||
points: number;
|
||||
type: "SIMPLE" | "MULTIPLE_CHOICE";
|
||||
};
|
||||
|
||||
export type SimpleQuestion = Question & {
|
||||
type: "SIMPLE";
|
||||
data: {
|
||||
question: string;
|
||||
answer: string;
|
||||
};
|
||||
};
|
||||
|
||||
export type MultipleChoiceQuestion = Question & {
|
||||
type: "MULTIPLE_CHOICE";
|
||||
data: {
|
||||
question: string;
|
||||
answer: number;
|
||||
choices: string[];
|
||||
};
|
||||
};
|
||||
|
||||
export type Category = {
|
||||
name: string;
|
||||
questions: (SimpleQuestion | MultipleChoiceQuestion)[];
|
||||
};
|
||||
|
||||
export type Wall = {
|
||||
name: string;
|
||||
categories: Category[];
|
||||
};
|
||||
|
||||
export type Game = {
|
||||
name: string;
|
||||
walls: Wall[];
|
||||
};
|
||||
|
||||
export type Games = Game[];
|
||||
|
||||
export default games;
|
||||
@@ -1,932 +0,0 @@
|
||||
export default [
|
||||
{
|
||||
name: 'LAN Party',
|
||||
walls: [
|
||||
{
|
||||
name: 'Wall 1',
|
||||
categories: [
|
||||
{
|
||||
name: 'Category 1',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 2',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 3',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 4',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 5',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Wall 2',
|
||||
categories: [
|
||||
{
|
||||
name: 'Category 1',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 2',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 3',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 4',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 5',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'LAN Party 2',
|
||||
walls: [
|
||||
{
|
||||
name: 'Wall 1',
|
||||
categories: [
|
||||
{
|
||||
name: 'Category 1',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 2',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 3',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 4',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 5',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Wall 2',
|
||||
categories: [
|
||||
{
|
||||
name: 'Category 1',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 2',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 3',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 4',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Category 5',
|
||||
questions: [
|
||||
{
|
||||
points: 100,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 1?',
|
||||
answer: 'Answer 1'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 200,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 2?',
|
||||
answer: 'Answer 2'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 300,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 3?',
|
||||
answer: 'Answer 3'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 400,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 4?',
|
||||
answer: 'Answer 4'
|
||||
}
|
||||
},
|
||||
{
|
||||
points: 500,
|
||||
type: 'SIMPLE',
|
||||
data: {
|
||||
question: 'Question 5?',
|
||||
answer: 'Answer 5'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user