summaryrefslogtreecommitdiff
path: root/test-client/tiles.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-06-25 18:31:35 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-25 18:31:35 +0200
commit84c90e84a1e0d6cd2eae36fd8888354b4e23c354 (patch)
treefe315384b6fd59592f774b2eac26a5bef56e0dcc /test-client/tiles.ts
parent652f2f53c05ce963553a053a6429d0259a56772b (diff)
downloadhurrycurry-84c90e84a1e0d6cd2eae36fd8888354b4e23c354.tar
hurrycurry-84c90e84a1e0d6cd2eae36fd8888354b4e23c354.tar.bz2
hurrycurry-84c90e84a1e0d6cd2eae36fd8888354b4e23c354.tar.zst
add new window types
Diffstat (limited to 'test-client/tiles.ts')
-rw-r--r--test-client/tiles.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts
index 1619106b..da5b0761 100644
--- a/test-client/tiles.ts
+++ b/test-client/tiles.ts
@@ -162,14 +162,15 @@ export const FALLBACK_TILE: Component[] = [base("#f0f")];
export const TILES: { [key: string]: Component[] } = {
"floor": floor,
"table": table,
- "counter": counter,
"door": [...floor, door],
"chair": [...floor, circle(0.45, "rgb(136, 83, 41)")],
"wall": [base("rgb(0, 14, 56)")],
+ "wall-window": [base("rgb(19, 40, 102)")],
+ "counter": counter,
+ "counter-window": [base("rgb(233, 233, 233)")],
"grass": [base("rgb(0, 107, 4)")],
"path": [base("rgb(100, 80, 55)")],
"tree": [base("rgb(1, 82, 4)")],
- "window": [base("rgb(233, 233, 233)")],
"cuttingboard": [...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)],