mpp-server-dev2/Quotas.js

51 lines
867 B
JavaScript
Raw Normal View History

2020-04-07 09:55:16 +02:00
module.exports = Object.seal({
note: {
lobby: {
allowance: 200,
max: 600,
maxHistLen: 3
2020-04-07 09:55:16 +02:00
},
normal: {
allowance: 400,
max: 1200,
maxHistLen: 3
2020-04-07 09:55:16 +02:00
},
insane: {
allowance: 600,
max: 1800,
maxHistLen: 3
2020-04-07 09:55:16 +02:00
}
},
chat: {
lobby: {
amount: 4,
time: 4000
2020-04-07 09:55:16 +02:00
},
normal: {
amount: 4,
time: 4000
2020-04-07 09:55:16 +02:00
},
insane: {
amount: 10,
time: 4000
2020-04-07 09:55:16 +02:00
}
},
chown: {
amount: 10,
time: 5000
2020-04-07 09:55:16 +02:00
},
name: {
amount: 30,
time: 30 * 60000
2020-04-07 09:55:16 +02:00
},
room: {
time: 500
2020-04-07 09:55:16 +02:00
},
cursor: {
time: 16
2020-04-07 09:55:16 +02:00
},
kickban: {
amount: 2,
time: 1000
2020-04-07 09:55:16 +02:00
}
})