'use strict';

module.exports = {
	platform: 'schat',
	user: {
		id: 'aisha',
		username: 'Aisha',
		realName: 'Aisha',
	},
	style: {
		// color: 'var(--message-56)',
	},
	operators: ['admin'],
	server: 'irc.libera.chat',
	port: 6697,
	socket: 'ws://127.0.0.1:3000/socket',
	api: 'http://127.0.0.1:3000/api',
	reconnectDelay: 10, // seconds
	prefix: '~',
	labels: true,
	greeting: 'Hi, I am aisha, your game host!',
	usernamePrefix: '@',
	channels: ['GamesNight'],
	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)',
		navy: 'var(--message-40)',
	},
	schatColorAliases: {
		red: 'red',
		orange: 'orange',
		yellow: 'yellow',
		green: 'green',
		cyan: 'cyan',
		blue: 'blue',
		purple: 'purple',
		magenta: 'magenta',
		pink: 'pink',
		grey: 'shadow',
	},
	trivia: {
		mode: 'first', // first or timeout
		rounds: 10,
		timeout: 60,
		bounds: {
			rounds: [1, 30],
			timeout: [5, 300],
		},
	},
	duck: {
		interval: [10, 3600], // seconds
		duck: ':duck:',
		missRatio: 0.25,
	},
	letters: {
		length: 9,
		timeout: 60,
	},
	riddle: {
		timeout: 20,
		score: false,
	},
	dice: {
		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
	},
};