diff options
-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)")], |