diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-21 21:38:33 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-21 21:38:35 +0200 |
commit | e1f6d55b1a26458d132ba58a72c0e0def1bc121e (patch) | |
tree | 4dce0abe240954cdd15c11e43422e2045b156ece /test-client | |
parent | cdc7b759a1d4e44493378c22d43217d50c40173a (diff) | |
download | hurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar hurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar.bz2 hurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar.zst |
rename cutting and rolling board everywhere
Diffstat (limited to 'test-client')
-rw-r--r-- | test-client/tiles.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts index 780af73f..0f5d34bb 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -127,7 +127,7 @@ const iref = (name: ItemName): Component => c => draw_item_sprite(c, name) const tref = (name: TileName): Component => c => TILES[name].forEach(f => f(c)) export type ItemName = string -export type TileName = "sink" | "conveyor" | "book" | "lettuce-crate" | "cheese-crate" | "tomato-crate" | "steak-crate" | "flour-crate" | "leek-crate" | "rice-crate" | "fish-crate" | "coconut-crate" | "strawberry-crate" | "oven" | "cuttingboard" | "stove" | "freezer" | "trash" | "grass" | "tree" | "wall" | "chair" | "floor" | "door" | "counter" | "wall-window" | "table" | "counter-window" | "path" | "lamp" | "street" +export type TileName = "sink" | "conveyor" | "book" | "lettuce-crate" | "cheese-crate" | "tomato-crate" | "steak-crate" | "flour-crate" | "leek-crate" | "rice-crate" | "fish-crate" | "coconut-crate" | "strawberry-crate" | "oven" | "cutting-board" | "stove" | "freezer" | "trash" | "grass" | "tree" | "wall" | "chair" | "floor" | "door" | "counter" | "wall-window" | "table" | "counter-window" | "path" | "lamp" | "street" const ITEMS: { [key in ItemName]: (c: string[]) => Component } = { "bun": () => circle(0.3, "#853e20"), @@ -191,7 +191,7 @@ const TILES: { [key in TileName]: Component[] } = { "path": [base("rgb(100, 80, 55)")], "conveyor": [base("rgb(107, 62, 128)")], "tree": [base("rgb(1, 82, 4)")], - "cuttingboard": [counter, rect(0.3, "rgb(158, 236, 68)", "rgb(158, 236, 68)", 0.2)], + "cutting-board": [counter, rect(0.3, "rgb(158, 236, 68)", "rgb(158, 236, 68)", 0.2)], "trash": [floor, circle(0.4, "rgb(20, 20, 20)"), cross(0.3, "rgb(90, 36, 36)")], "sink": [base("rgb(131, 129, 161)", "rgb(177, 174, 226)", 0.2)], "oven": [base("rgb(241, 97, 61)", "rgb(109, 84, 84)", 0.3)], |