diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-11 00:40:49 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-11 01:35:05 +0200 |
commit | f753629acd906ff7acd42a18a266cc93a883330c (patch) | |
tree | 32f5732f717989581a1f9aa25ebb8064ffc2dd06 /test-client | |
parent | 024dd39b0bfbdf5b39bc972ea7ad2f6546a4d460 (diff) | |
download | hurrycurry-f753629acd906ff7acd42a18a266cc93a883330c.tar hurrycurry-f753629acd906ff7acd42a18a266cc93a883330c.tar.bz2 hurrycurry-f753629acd906ff7acd42a18a266cc93a883330c.tar.zst |
tc: add freezer and street tiles
Diffstat (limited to 'test-client')
-rw-r--r-- | test-client/tiles.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts index fee27c9f..dee93c21 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -159,6 +159,7 @@ const crate = (i: string) => [base("#60701e", "#b9da37", 0.05), ...ITEMS[i]]; const TILES: { [key: string]: Component[] } = { "floor": floor, + "street": [base("rgb(19, 19, 19)")], "table": table, "door": [...floor, door], "chair": [...floor, circle(0.45, "rgb(136, 83, 41)")], @@ -174,6 +175,7 @@ const TILES: { [key: string]: Component[] } = { "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)], + "freezer": [base("rgb(61, 97, 241)", "rgb(84, 88, 109)", 0.3)], "stove": [...counter, circle(0.4, "#444", "#999")], "book": [...counter, rect(0.2, "rgb(88, 44, 7)")], |