diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/maps/5star.yaml | 1 | ||||
-rw-r--r-- | data/maps/ring.yaml | 101 |
2 files changed, 102 insertions, 0 deletions
diff --git a/data/maps/5star.yaml b/data/maps/5star.yaml index a2a94dd0..10af0630 100644 --- a/data/maps/5star.yaml +++ b/data/maps/5star.yaml @@ -14,6 +14,7 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. # score_baseline: 200 +hand_count: 2 map: - " ''''''''''''' " - " *''*''''''''*''''*'''*''*' " diff --git a/data/maps/ring.yaml b/data/maps/ring.yaml new file mode 100644 index 00000000..42668a77 --- /dev/null +++ b/data/maps/ring.yaml @@ -0,0 +1,101 @@ +# Hurry Curry! - a game about cooking +# Copyright (C) 2025 Hurry Curry! contributors +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License only. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# +score_baseline: 200 +hand_count: 2 +map: + - " *''*'''''*'''*''' " + - " '''''''''''''*'''''' " + - "'''█████▒██▒█████''*' " + - "'''█##pppaa#gg##█'''' " + - "'''█#..........o█''*' " + - " ''█e..tc..ct..o█'''' " + - " ''█e..tc..ct..o█'''' " + - " ''█r....,.....#█'''' " + - " ''█r..........f█'''' " + - " ''█#..tc..ct..f█'''' " + - " ''█l..tc..ct..f█'''' " + - "'''█l..........#█'''' " + - "'''█XABCD..EFGHX█'''' " + - "'''██████dd██████'''' " + - "''''''''''''''''''''''" + - "''''''''''''''''''''''" + - "_____________________'" + - "_!___________________'" + - "''''''''''''''''''''''" + - " ''''''''''''''''''' " + +tiles: + "#": counter + "f": counter + "l": sink + "o": oven + "p": stove + "a": stove + "g": freezer + "e": cuttingboard + "r": rollingboard + "X": trash + + "A": steak-crate + "B": coconut-crate + "C": strawberry-crate + "D": fish-crate + "E": rice-crate + "F": tomato-crate + "G": flour-crate + "H": leek-crate + "I": lettuce-crate + "J": cheese-crate + + ".": floor + ",": floor + "'": grass + "t": table + "c": chair + "*": tree + "!": street + "_": street + "d": door + "█": wall + "▒": wall-window + +items: + "p": pot + "a": pan + "t": plate + "f": foodprocessor + +entities: + - !customers + scaling_factor: 0.8 + +chef_spawn: "," +customer_spawn: "!" + +walkable: + - door + - floor + - chair + - grass + - path + - street + +collider: + - wall + - tree + - wall-window + - fence + - lamp |