1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# 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/>.
#
# Difficulty levels:
# 1 Easy
# 2 Moderate
# 3 Hard
# 4 Very Hard
# 5 Unplayable
maps:
# "campaign/lobby": { name: "Campaign Lobby", players: 1, difficulty: 0 }
5star: { name: "5 Star", players: 4, difficulty: 3 }
anticurry: { name: "Anti Curry!", players: 3, difficulty: 4 }
auto_sushi: { name: "AutoSushi", players: 2, difficulty: 2 }
bar: { name: "Bar", players: 3, difficulty: 2 }
bbq: { name: "BBQ", players: 2, difficulty: 1 }
burgers_inc: { name: "Burgers, Inc.", players: 2, difficulty: 2 }
bus: { name: "Bus", players: 5, difficulty: 3 }
duplex: { name: "Duplex", players: 2, difficulty: 3 }
junior: { name: "Junior", players: 3, difficulty: 1 }
line: { name: "Line", players: 2, difficulty: 1 }
paris: { name: "Paris", players: 2, difficulty: 1 }
ring: { name: "Ring", players: 3, difficulty: 2 }
salad: { name: "Salad Store", players: 2, difficulty: 1 }
scattered: { name: "Scattered", players: 4, difficulty: 3 }
senior: { name: "Senior", players: 3, difficulty: 1 }
sophomore: { name: "Sophomore", players: 1, difficulty: 1 }
station: { name: "Station", players: 3, difficulty: 3 }
streetfood: { name: "Street Food", players: 2, difficulty: 1 }
sushibar: { name: "Sushi Bar", players: 2, difficulty: 2 }
teeny: { name: "Teeny", players: 3, difficulty: 2 }
zigzag: { name: "Zig-zag", players: 3, difficulty: 3 }
recipes:
- none
- default
- anticurry
|