-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.toml
31 lines (25 loc) · 924 Bytes
/
data.toml
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
[game]
welcome_text = "Welcome to the Isopod Adventure Game! 🐞"
win_text = "Congratulations! You've found all three things and won the game! 🎉"
start_location = "Garden" # New field for the starting location
win_conditions = ["A Place to Hide 🛏️", "Cookie Crumb 🍪", "Isopod Friend 🐾"]
[locations.Garden]
description = "🌷 You are in a lush garden with colorful flowers."
north = "Pond"
east = "Rocky Path"
[locations.Pond]
description = "🐟 You are at a peaceful pond with lilypads floating on the surface."
south = "Garden"
east = "Forest"
[locations."Rocky Path"]
description = "🪨 You are on a rocky path. Watch your step!"
west = "Garden"
north = "Forest"
[locations.Forest]
description = "🌲 You are in a dense forest with tall trees surrounding you."
west = "Pond"
south = "Rocky Path"
[items]
Garden = "Cookie Crumb 🍪"
Pond = "Isopod Friend 🐾"
Forest = "A Place to Hide 🛏️"