41 lines
702 B
JavaScript
41 lines
702 B
JavaScript
'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,
|
|
bounds: {
|
|
rounds: [1, 30],
|
|
timeout: [5, 300],
|
|
},
|
|
},
|
|
duck: {
|
|
interval: [10, 3600], // seconds
|
|
duck: ':duck:',
|
|
},
|
|
letters: {
|
|
length: 9,
|
|
timeout: 30,
|
|
},
|
|
};
|