Add wheel item type and random step/wall movement audio

This commit is contained in:
Jage9
2026-02-21 00:55:19 -05:00
parent 9b518d79dc
commit 9ee915e42c
23 changed files with 118 additions and 39 deletions

View File

@@ -1,8 +1,8 @@
export const GRID_SIZE = 40;
export const HEARING_RADIUS = 15;
export const MOVE_COOLDOWN_MS = 100;
export const MOVE_COOLDOWN_MS = 200;
export type ItemType = 'radio_station' | 'dice';
export type ItemType = 'radio_station' | 'dice' | 'wheel';
export type WorldItem = {
id: string;