diff options
-rw-r--r-- | test-client/tiles.ts | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts index 18b50787..c1dacc00 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -110,46 +110,47 @@ const door: Component = c => { 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 foodprocessor = [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)")] +const leek = [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": herbs, - "herbs-mixer": [...mixer, ...herbs], - "herbs-pot": [...pot, ...herbs], + "foodprocessor": foodprocessor, + "leek": leek, + "leek-foodprocessor": [...foodprocessor, ...leek], + "leek-pot": [...pot, ...leek], "raw-steak": [circle(0.3, "#cc3705")], "raw-steak-pot": [...pot, circle(0.3, "#cc3705")], "steak-pot": [...pot, circle(0.3, "#702200")], "burned-pot": [...pot, ...burned], "steak": [circle(0.3, "#702200")], "flour": [circle(0.3, "#d8c9c2")], - "flour-mixer": [...mixer, circle(0.3, "#d8c9c2")], + "flour-foodprocessor": [...foodprocessor, circle(0.3, "#d8c9c2")], "dough": [circle(0.3, "#b38d7d")], - "dough-mixer": [...mixer, circle(0.3, "#b38d7d")], + "dough-foodprocessor": [...foodprocessor, circle(0.3, "#b38d7d")], "bread": [circle(0.3, "#853e20")], + "bread-slice": [circle(0.3, "#853e20")], "tomato": [circle(0.3, "#d63838")], - "tomato-mixer": [...mixer, circle(0.3, "#d63838")], - "tomato-juice-mixer": [...mixer, circle(0.3, "#b80000")], + "tomato-foodprocessor": [...foodprocessor, circle(0.3, "#d63838")], + "tomato-juice-foodprocessor": [...foodprocessor, circle(0.3, "#b80000")], "tomato-juice-pot": [...pot, circle(0.3, "#b80000")], - "herbs-tomato-juice-pot": [...pot, circle(0.3, "#dd5800")], - "tomato-soop-pot": [...pot, circle(0.3, "#ff2600")], - "tomato-soop-plate": [...plate, circle(0.3, "#ff2600")], + "leek-tomato-juice-pot": [...pot, circle(0.3, "#dd5800")], + "tomato-soup-pot": [...pot, circle(0.3, "#ff2600")], + "tomato-soup-plate": [...plate, circle(0.3, "#ff2600")], "burned": burned, "sliced-tomato": [circle(0.3, "#d16363", "#d63838", 0.08)], "plate": plate, "dirty-plate": [circle(0.4, "#947a6f", "#d3a187", 0.02)], "steak-plate": [...plate, ...arrange_items("steak")], - "bread-plate": [...plate, ...arrange_items("bread")], + "bread-slice-plate": [...plate, ...arrange_items("bread-slice")], "sliced-tomato-plate": [...plate, ...arrange_items("sliced-tomato")], - "bread-steak-plate": [...plate, ...arrange_items("bread", "steak")], - "bread-sliced-tomato-plate": [...plate, ...arrange_items("bread", "sliced-tomato")], + "bread-slice-steak-plate": [...plate, ...arrange_items("bread-slice", "steak")], + "bread-slice-sliced-tomato-plate": [...plate, ...arrange_items("bread-slice", "sliced-tomato")], "sliced-tomato-steak-plate": [...plate, ...arrange_items("sliced-tomato", "steak")], - "bread-sliced-tomato-steak-plate": [...plate, ...arrange_items("bread", "sliced-tomato", "steak")], + "bread-slice-sliced-tomato-steak-plate": [...plate, ...arrange_items("bread-slice", "sliced-tomato", "steak")], } const table = [base("rgb(133, 76, 38)")]; @@ -175,5 +176,5 @@ export const TILES: { [key: string]: Component[] } = { "flour-crate": crate("flour"), "raw-steak-crate": crate("raw-steak"), "tomato-crate": crate("tomato"), - "herbs-crate": crate("herbs"), + "leek-crate": crate("leek"), } |