papercats/config.js

20 lines
329 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,
"fps": 60
2022-11-12 04:28:24 -05:00
};
export const consts = {
"GRID_COUNT": 100,
"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
};