Added Hunt (hangman) game.

This commit is contained in:
Niels Simenon
2022-10-30 04:21:32 +01:00
parent cb2fa362d6
commit b4add9e11d
9 changed files with 1970 additions and 3 deletions

View File

@@ -21,7 +21,23 @@ module.exports = {
greeting: 'Hi, I am aisha, your game host!',
usernamePrefix: '@',
channels: ['GamesNight'],
games: ['mash', 'trivia', 'letters', 'duck', '8ball', 'riddle', 'dice', 'rock-paper-scissors', 'ping', 'say', 'kill', 'uptime', 'help'],
games: [
'mash',
'trivia',
'letters',
'hunt',
'8ball',
'riddle',
'dice',
'parrot',
'rock-paper-scissors',
'duck',
'ping',
'say',
'kill',
'uptime',
'help',
],
schatColors: {
white: 'white',
blue: 'var(--message-40)',
@@ -65,4 +81,10 @@ module.exports = {
maxRolls: 10,
maxFaces: 1000,
},
hangman: {
minLength: 5,
maxLength: 9,
guesses: [2, 3, 4, 5, 6, 7], // by word length, last number repeats for longer words
// guesses: 6, // fixed
},
};