diff options
Diffstat (limited to 'test-client/tiles.ts')
-rw-r--r-- | test-client/tiles.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts index 5a6769ed..a7fe0911 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -102,11 +102,12 @@ export const ITEMS: { [key: string]: Component[] } = { "bread": [circle(0.3, "#853e20")], "tomato": [circle(0.3, "#d63838")], "sliced-tomato": [circle(0.3, "#d16363", "#d63838", 0.08)], - "dirty-plate": [circle(0.4, "#947a6f", "#d3a187", 0.02)], "plate": plate, + "dirty-plate": [circle(0.4, "#947a6f", "#d3a187", 0.02)], "steak-meal": [...plate, ...arrange_items("steak")], - "sliced-tomato-meal": [...plate, ...arrange_items("sliced-tomato")], "burger-meal": [...plate, ...arrange_items("bread", "steak")], + "sliced-tomato-meal": [...plate, ...arrange_items("sliced-tomato")], + "tomatosteak-meal": [...plate, ...arrange_items("tomato", "steak")], "tomatoburger-meal": [...plate, ...arrange_items("bread", "steak", "tomato")], } |