lila/ui/storm/src/config.ts

21 lines
280 B
TypeScript

const config = {
// all times in seconds
clock: {
initial: 3 * 60,
// initial: 10,
malus: 10
},
combo: {
levels: [
[0, 0],
[5, 3],
[12, 5],
[20, 7],
[30, 10]
],
},
timeToStart: 1000 * 60 * 2
};
export default config;