Hardware components | ||||||
| × | 1 | ||||
| × | 1 | ||||
| × | 1 | ||||
Software apps and online services | ||||||
| ||||||
|
This project is to create a fun filled game which teaches about the greatest Man who ever lived on the earth -Jesus Christ.
It helps you to learn more about Jesus Christ in a fun filled way either alone or with family and friends.
I created it using Amazon web services and node.Js and aws lambda.
how to create skill
TexFollow the steps below to start building today:
Get Echo Buttons: Visit Amazon.com/EchoButtons to purchase your two-pack of Echo Buttons!
Access the developer portal and build your first Echo Button game skill.
Build and Publish Your Game Skill.
Get Echo Buttons: Visit Amazon.com/EchoButtons to purchase your two-pack of Echo Buttons!
Access the developer portal and build your first Echo Button game skill.
Build and Publish Your Game Skill.
No preview (download only).
'use strict';
/* Copyright 2018 Ruth. All rights reserved.
*/
module.exports = Object.freeze({
questions_en_US: [
{
index: 1,
question: 'What is the name for a follower of Jesus Christ?',
answers: ['believers', 'Christians', 'followers', 'disciples'],
correct_answer: 'Christians'
},
{
index: 2,
question: 'What is the name by which only Jesus Christ called Himself in the Holy Bible?',
answers: ['Son of God', 'Messiah', 'Saviour', 'Son of Man'],
correct_answer: 'Son of Man'
},
{
index: 3,
question: 'What type of animal did Jesus Christ ride?’,
answers: ['horse', 'fish', 'donkey', 'whale'],
correct_answer: 'donkey'
},
{
index: 4,
question: 'What color people are accepted by Jesus Christ?',
answers: ['Brown', 'all',black,white],
correct_answer: 'all because God does not differentiate based on color'
},
{
index: 5,
question: 'What is the name of Mother of Jesus Christ?’,
answers: ['Ruth', 'Mary', 'Naomi', 'Rachel'],
correct_answer: ' Mary '
},
{
index: 6,
question: 'What is the only way to God according to Jesus Christ?',
answers: ['Faith', 'Good works', 'Offerings', 'Jesus Christ Himself'],
correct_answer: 'Jesus Christ Himself'
},
{
index: 7,
question: 'What is first miracle of Jesus Christ?',
answers: ['forgiving sins', 'changing water into wine', 'raising from the dead', feeding 5000 men with 5 loaves and 2 fish],
correct_answer: ' changing water into wine '
},
{
index: 8,
question: 'What did Jesus Christ preach on the mountain for the first time?',
answers: ['stories', 'fables', ' beatitudes ', 'parables'],
correct_answer: 'beatitudes'
},
{
index: 9,
question: 'The first disciples of Jesus Christ?',
answers: ['simon and john', 'paul and silas', 'simon and andrew', 'john and peter'],
correct_answer: 'simon and andrew '
},
{
index: 10,
question: 'what is the meaning of Christ?',
answers: ['God', 'Life', 'The Anointed One', 'the Gracious God'],
correct_answer: ''The Anointed One '
}
],
questions_en_GB: [
{
index: 1,
question: 'What is the name for a follower of Jesus Christ?',
answers: ['believers', 'Christians', 'followers', 'disciples'],
correct_answer: 'Christians'
},
{
index: 2,
question: 'What is the name by which only Jesus Christ called Himself in the Holy Bible?',
answers: ['Son of God', 'Messiah', 'Saviour', 'Son of Man'],
correct_answer: 'Son of Man'
},
{
index: 3,
question: 'What type of animal did Jesus Christ ride?’,
answers: ['horse', 'fish', 'donkey', 'whale'],
correct_answer: 'donkey'
},
{
index: 4,
question: 'What color people are accepted by Jesus Christ?',
answers: ['Brown', 'all',black,white],
correct_answer: 'all because God does not differentiate based on color'
},
{
index: 5,
question: 'What is the name of Mother of Jesus Christ?’,
answers: ['Ruth', 'Mary', 'Naomi', 'Rachel'],
correct_answer: ' Mary '
},
{
index: 6,
question: 'What is the only way to God according to Jesus Chrsit?',
answers: ['Faith', 'Good works', 'Offerings', 'Jesus Christ Himself'],
correct_answer: 'Jesus Christ Himself'
},
{
index: 7,
question: 'What is first miracle of Jesus Christ?',
answers: ['forgiving sins', 'changing water into wine', 'raising from the dead', feeding 5000 men with 5 loaves and 2 fish],
correct_answer: ' changing water into wine '
},
{
index: 8,
question: 'What did Jesus Christ preach on the mountain for the first time?',
answers: ['stories', 'fables', ' beatitudes ', 'parables'],
correct_answer: 'beatitudes'
},
{
index: 9,
question: 'The first disciples of Jesus Christ?',
answers: ['simon and john', 'paul and silas', 'simon and andrew', 'john and peter'],
correct_answer: 'simon and andrew '
},
{
index: 10,
question: 'what is the meaning of Christ?',
answers: ['God', 'Life', 'The Anointed One', 'the Gracious God'],
correct_answer: ''The Anointed One '
}
]
});
Comments