2021-10-31 21:33:18 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
module.exports = {
|
2022-10-18 23:24:13 +00:00
|
|
|
platform: 'schat',
|
2021-11-04 00:51:43 +00:00
|
|
|
user: {
|
2022-10-17 02:06:55 +00:00
|
|
|
nick: 'aisha',
|
|
|
|
username: 'Aisha',
|
|
|
|
realName: 'Aisha',
|
2021-11-04 00:51:43 +00:00
|
|
|
},
|
2022-10-19 22:07:48 +00:00
|
|
|
style: {
|
|
|
|
color: 'var(--message-56)',
|
|
|
|
},
|
2021-11-15 19:44:34 +00:00
|
|
|
operators: ['admin'],
|
2022-10-17 02:06:55 +00:00
|
|
|
server: 'irc.libera.chat',
|
|
|
|
port: 6697,
|
2021-11-06 00:33:52 +00:00
|
|
|
reconnectDelay: 10, // seconds
|
2021-11-04 00:51:43 +00:00
|
|
|
prefix: '~',
|
2022-10-18 23:24:13 +00:00
|
|
|
labels: true,
|
2022-10-17 22:08:17 +00:00
|
|
|
greeting: 'Hi, I am aisha, your game host!',
|
2022-10-17 02:06:55 +00:00
|
|
|
usernamePrefix: '@',
|
|
|
|
channels: ['##pendulum'],
|
2021-11-16 18:23:51 +00:00
|
|
|
games: ['mash', 'trivia', 'duck', 'ping', 'say', 'kill'],
|
2021-11-06 00:33:52 +00:00
|
|
|
trivia: {
|
|
|
|
mode: 'first', // first or timeout
|
|
|
|
rounds: 10,
|
2021-11-14 18:55:14 +00:00
|
|
|
timeout: 60,
|
2022-10-20 00:45:15 +00:00
|
|
|
bounds: {
|
|
|
|
rounds: [1, 30],
|
|
|
|
timeout: [5, 300],
|
|
|
|
},
|
2021-11-06 00:33:52 +00:00
|
|
|
},
|
2021-11-12 15:43:20 +00:00
|
|
|
duck: {
|
|
|
|
interval: [10, 3600], // seconds
|
2022-10-17 02:06:55 +00:00
|
|
|
duck: ':duck:',
|
2021-11-12 15:43:20 +00:00
|
|
|
},
|
2022-10-20 03:38:47 +00:00
|
|
|
letters: {
|
|
|
|
length: 9,
|
2022-10-21 03:07:32 +00:00
|
|
|
timeout: 30,
|
2022-10-20 03:38:47 +00:00
|
|
|
},
|
2021-10-31 21:33:18 +00:00
|
|
|
};
|