forked from KittyCorpArchive/teambot
26 lines
465 B
JavaScript
26 lines
465 B
JavaScript
module.exports = [
|
|
{
|
|
host: 'localhost',
|
|
port: 25565,
|
|
useRandomUsername: true,
|
|
version: '1.21.1',
|
|
|
|
// Default Team Handler
|
|
inclusiveTeam: { name: '000a' },
|
|
exclusiveTeam: { name: '0000' },
|
|
|
|
// Reconnect
|
|
reconnect: true,
|
|
reconnectDelay: 0,
|
|
|
|
// Core
|
|
coreSize: {
|
|
from: { x: -1, y: 2, z: -1 },
|
|
to: { x: 1, y: 2, z: 1 },
|
|
refillInterval: 60 * 1000
|
|
},
|
|
|
|
// Self Care
|
|
selfCareInterval: 70
|
|
}
|
|
]
|