summaryrefslogtreecommitdiff
path: root/test-client/tiles.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-13 19:25:56 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-13 19:26:02 +0200
commit1a3603848aede0e0633ad36a200d886db99a0a4e (patch)
tree3e53790bd9557f1331fe244d04598a9292e08d6b /test-client/tiles.ts
parentb96a77a4cc63bc7f560dbf8cc87a8cb9bab1c0ba (diff)
downloadhurrycurry-1a3603848aede0e0633ad36a200d886db99a0a4e.tar
hurrycurry-1a3603848aede0e0633ad36a200d886db99a0a4e.tar.bz2
hurrycurry-1a3603848aede0e0633ad36a200d886db99a0a4e.tar.zst
patty
Diffstat (limited to 'test-client/tiles.ts')
-rw-r--r--test-client/tiles.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts
index d57a0754..38f3daf5 100644
--- a/test-client/tiles.ts
+++ b/test-client/tiles.ts
@@ -132,6 +132,8 @@ const ITEMS: { [key in ItemName]: (c: string[]) => Component } = {
"sliced-bun": () => circle(0.3, "#853e20"),
"sliced-fish": () => circle(0.3, "salmon", "rgb(62, 66, 104)"),
"steak": () => circle(0.3, "#ca3510"),
+ "patty": () => circle(0.3, "#c26149"),
+ "seared-patty": () => circle(0.3, "#502c23"),
"strawberry-icecream": () => circle(0.2, "rgb(250, 148, 236)"),
"strawberry-mochi": () => circle(0.2, "rgb(161, 111, 132)"),
"strawberry-shake": () => circle(0.3, "rgb(255, 180, 180)"),
@@ -143,9 +145,10 @@ const ITEMS: { [key in ItemName]: (c: string[]) => Component } = {
"sliced-tomato": () => circle(0.3, "#d16363", "#d63838", 0.08),
"lettuce": () => circle(0.3, "#64a30b"),
"sliced-lettuce": () => circle(0.3, "#a0da4f", "#64a30b", 0.08),
+ "dirty-plate": () => circle(0.4, "#947a6f", "#d3a187", 0.02),
- "pot": i => c => (circle(0.35, "rgb(29, 29, 29)", "rgb(39, 39, 39)", 0.04)(c), arrange_items(...i)(c)),
- "pan": i => c => (circle(0.35, "rgb(29, 29, 29)", "rgb(56, 56, 56)", 0.2)(c), arrange_items(...i)(c)),
+ "pan": i => c => (circle(0.35, "rgb(29, 29, 29)", "rgb(39, 39, 39)", 0.04)(c), arrange_items(...i)(c)),
+ "pot": i => c => (circle(0.27, "rgb(29, 29, 29)", "rgb(56, 56, 56)", 0.2)(c), arrange_items(...i)(c)),
"foodprocessor": i => c => (circle(0.35, "rgb(86, 168, 189)", "rgb(88, 222, 255)", 0.04)(c), arrange_items(...i)(c)),
"plate": i => c => (circle(0.4, "#b6b6b6", "#f7f7f7", 0.02)(c), arrange_items(...i)(c)),
"glass": i => c => (circle(0.35, "rgb(150, 255, 237)", "rgb(52, 129, 155)", 0.02), arrange_items(...i)(c)),