'use strict';

module.exports = {
	platform: 'schat',
	user: {
		nick: 'aisha',
		username: 'Aisha',
		realName: 'Aisha',
	},
	style: {
		color: 'var(--message-56)',
	},
	operators: ['admin'],
	server: 'irc.libera.chat',
	port: 6697,
	reconnectDelay: 10, // seconds
	prefix: '~',
	labels: true,
	greeting: 'Hi, I am aisha, your game host!',
	usernamePrefix: '@',
	channels: ['##pendulum'],
	games: ['mash', 'trivia', 'duck', 'ping', 'say', 'kill'],
	trivia: {
		mode: 'first', // first or timeout
		rounds: 10,
		timeout: 60,
	},
	duck: {
		interval: [10, 3600], // seconds
		duck: ':duck:',
	},
};