aboutsummaryrefslogtreecommitdiff
path: root/test-client/tiles.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-06-21 20:23:26 +0200
committermetamuffin <metamuffin@disroot.org>2024-06-23 19:27:04 +0200
commit904c885b80d7360daee7de3f47f8698e3e0de6a6 (patch)
tree7f312635c5dac51f2107ae4f44168688291790db /test-client/tiles.ts
parentb6454acae66f526f6de7ccf12cb8532547fb2663 (diff)
downloadhurrycurry-904c885b80d7360daee7de3f47f8698e3e0de6a6.tar
hurrycurry-904c885b80d7360daee7de3f47f8698e3e0de6a6.tar.bz2
hurrycurry-904c885b80d7360daee7de3f47f8698e3e0de6a6.tar.zst
herbs
Diffstat (limited to 'test-client/tiles.ts')
-rw-r--r--test-client/tiles.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts
index 618d6573..ebf70842 100644
--- a/test-client/tiles.ts
+++ b/test-client/tiles.ts
@@ -95,13 +95,15 @@ const plate = [circle(0.4, "#b6b6b6", "#f7f7f7", 0.02)];
const pot = [circle(0.35, "rgb(29, 29, 29)", "rgb(39, 39, 39)", 0.04)];
const mixer = [circle(0.35, "rgb(86, 168, 189)", "rgb(88, 222, 255)", 0.04)];
const burned = [circle(0.3, "rgb(61, 18, 0)"), cross(0.2, "red", 0.02)]
+const herbs = [circle(0.3, "rgb(50, 133, 17)")]
export const FALLBACK_ITEM: Component[] = [circle(0.3, "#f0f")];
export const ITEMS: { [key: string]: Component[] } = {
"pot": pot,
"mixer": mixer,
- "herbs": [circle(0.3, "rgb(50, 133, 17)")],
- "herbs-mixer": [...mixer, circle(0.3, "rgb(50, 133, 17)")],
+ "herbs": herbs,
+ "herbs-mixer": [...mixer, ...herbs],
+ "herbs-pot": [...pot, ...herbs],
"raw-steak": [circle(0.3, "#cc3705")],
"raw-steak-pot": [...pot, circle(0.3, "#cc3705")],
"steak-pot": [...pot, circle(0.3, "#702200")],