64 lines
1.2 KiB
JavaScript
Executable File
64 lines
1.2 KiB
JavaScript
Executable File
'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', 'duck', '8ball', 'dice', 'rock-paper-scissors', 'ping', 'say', 'kill', 'uptime', 'help'],
|
|
schatColors: {
|
|
white: 'white',
|
|
blue: '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,
|
|
},
|
|
dice: {
|
|
maxRolls: 10,
|
|
maxFaces: 1000,
|
|
},
|
|
};
|