schat2-clive/config/default.js

33 lines
599 B
JavaScript
Raw Normal View History

'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)',
},
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,
greeting: 'Hi, I am aisha, your game host!',
2022-10-17 02:06:55 +00:00
usernamePrefix: '@',
channels: ['##pendulum'],
games: ['mash', 'trivia', 'duck', 'ping', 'say', 'kill'],
2021-11-06 00:33:52 +00:00
trivia: {
mode: 'first', // first or timeout
rounds: 10,
timeout: 60,
2021-11-06 00:33:52 +00:00
},
duck: {
interval: [10, 3600], // seconds
2022-10-17 02:06:55 +00:00
duck: ':duck:',
},
};