Skip to content

Commit

Permalink
Slightly updated game data and question form
Browse files Browse the repository at this point in the history
  • Loading branch information
guydav committed Nov 11, 2023
1 parent 7a2617f commit 68e83d7
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
20 changes: 17 additions & 3 deletions data/games.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,32 @@
{
"games": [
{
"id": 1,
"id": 0,
"originalGameId": 1,
"real": true,
"quantile": 0,
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum"
"text": "To play this game, pick up a dodgeball and throw it into a hexagonal bin. The game ends when you decide to stop, and your score is equal to the number of successful throws you made into the bin."
},
{
"id": 1,
"originalGameId": 1,
"real": false,
"quantile": 1,
"text": "To set up the game, place a hexagonal bin in the center of the room. The objective of the game is to pick up and move different objects into the bin. Your score at the end of the game is determined by the number of different objects you successfully moved into the bin."
},
{
"id": 2,
"originalGameId": 1,
"real": false,
"quantile": 1,
"text": "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"
"text": "To play this game, stand on a rug and throw cube blocks onto a desk without hitting or breaking any lamps, desktops, or laptops. Your score at the end of the game is equal to the number of different cube blocks you successfully threw onto the desk."
},
{
"id": 3,
"originalGameId": 1,
"real": false,
"quantile": 1,
"text": "To play this game, arrange objects of the same color so that one is either on top of, adjacent to, or inside the other. Make sure the main light switch or a lamp is turned off and avoid breaking any objects in the room. At the end of the game, your score is calculated as follows: you get 5 points for every different object used to satisfy the color arrangement condition, an additional 5 points for every different green object used in this way, and another 5 points for every different brown object used in this way. You also get 15 points for every different object used to satisfy the light switch or lamp condition. However, you lose 10 points for every different object that is broken."
}
]
}
16 changes: 11 additions & 5 deletions src/components/molecules/SingleGameExtendedJudgment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,20 @@ const VALIDATION_TYPE = 'required:trim';
const JUDGEMENT_QUESTIONS = [
{
'id': 'fun',
'label': "How fun do you think this game would be to play?",
'id': 'fun_play',
'label': 'How fun would it be to play game yourself?',
'options': buildDefaultOptions(5, 'fun'),
// 'options': {1: 'Not fun at all', 4: 'Medium', 7: 'Very fun'},
},
{
'id': 'fun_watch',
'label': 'How fun would it be to watch someone else play this game?',
'options': buildDefaultOptions(5, 'fun'),
// 'options': {1: 'Not fun at all', 4: 'Medium', 7: 'Very fun'},
},
{
'id': 'capability',
'label': "Do you think playing this game be helpful in becoming more capable in this video game environment?",
'label': "Imagine that you played this game for several minutes. How much better would it make you at interacting with the virtual environment?",
'options': buildDefaultOptions(5, 'helpful'),
// 'options': {1: 'Not at all', 4: 'Somewhat', 7: 'Very much so'},
},
Expand All @@ -50,12 +56,12 @@ const JUDGEMENT_QUESTIONS = [
},
{
'id': 'difficulty',
'label': "How difficult do you think this game would be to play?",
'label': "Imagine playing this game. How difficult do you think it would be to play?",
'options': buildDefaultOptions(5, 'difficult'),
},
{
'id': 'creativity',
'label': "How creative is this game?",
'label': "How creatively designed is this game?",
'options': buildDefaultOptions(5, 'creative'),
},
{
Expand Down

0 comments on commit 68e83d7

Please sign in to comment.