31 lines
823 B
JavaScript
31 lines
823 B
JavaScript
module.exports = {
|
|
titleScreen: {
|
|
instructions: [
|
|
"Press Space to Start!",
|
|
"Press T for the tutorial",
|
|
"Press Q to quit",
|
|
]
|
|
},
|
|
tutorial: [
|
|
"Use WASD or the direction keys to move",
|
|
"Press Ctrl to sprint, but watch your stamina!",
|
|
"Press space to interact with objects",
|
|
"If the arrow above an object is red, you cannot interact with it",
|
|
"You might be missing key or have already interacted with it",
|
|
"Press space to return"
|
|
],
|
|
gameOver: {
|
|
dead: "You died!",
|
|
instruction: "Press space to return to title"
|
|
},
|
|
logoScreen: [
|
|
"Made by JoVo and McArn"
|
|
],
|
|
game: {
|
|
lives: "Lives",
|
|
stamina: "Stamina",
|
|
keyFind: "You found a key!",
|
|
keyMiss: "You do not have the key for this door!",
|
|
chestOpen: "You already opened this chest"
|
|
}
|
|
}; |