schat2-clive/config/default.js

34 lines
674 B
JavaScript

'use strict';
module.exports = {
user: {
id: 'clive',
key: 'abcdefgh12345678',
username: 'Clive',
// optional
gender: 'male',
countryCode: 'GB',
birthdate: new Date(1952, 11, 10),
avatar: 'https://i.imgur.com/IZwrjjG.png',
},
operators: ['admin'],
uniqueUsername: false,
socket: 'ws://127.0.0.1:3000/socket',
api: 'http://127.0.0.1:3000/api',
reconnectDelay: 10, // seconds
prefix: '~',
style: {
color: 'var(--message-56)',
},
channels: ['GamesNight'],
games: ['mash', 'trivia', 'duck', 'ping', 'say', 'kill'],
trivia: {
mode: 'first', // first or timeout
rounds: 10,
timeout: 60,
},
duck: {
interval: [10, 3600], // seconds
},
};