papercats/config.js

19 lines
318 B
JavaScript
Raw Normal View History

2022-11-12 04:28:24 -05:00
export const config = {
"dev": true,
2024-09-29 12:40:40 -04:00
"port": 62787,
"bots": 0,
2022-11-12 04:28:24 -05:00
};
export const consts = {
2024-09-29 14:00:38 -04:00
"GRID_COUNT": 128,
2022-11-12 04:28:24 -05:00
"CELL_WIDTH": 40,
"SPEED": 5,
"BORDER_WIDTH": 20,
"MAX_PLAYERS": 30,
"NEW_PLAYER_LAG": 60,
"LEADERBOARD_NUM": 5,
2024-09-29 12:40:40 -04:00
"PREFIXES": "Cute Adorable Scratchy Angry",
"NAMES": "Cat Kitty Kitten Feline"
2022-11-12 04:28:24 -05:00
};