-
Notifications
You must be signed in to change notification settings - Fork 0
/
regions.py
29 lines (28 loc) · 840 Bytes
/
regions.py
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
from typing import Dict, List
gator_regions: Dict[str, List[str]] = {
"Menu": ["Tutorial Island"],
"Tutorial Island": [
"Big Island",
"Tutorial Island Races",
"Tutorial Island Breakables",
"Pots Shootable from Tutorial Island",
"Playground",
],
"Playground": [],
"Pots Shootable from Tutorial Island": [],
"Tutorial Island Races": [],
"Tutorial Island Breakables": [],
"Big Island": [
"Big Island Races",
"Big Island Breakables",
"Mountain",
"Junk 4 Trash",
"Big Island Bracelet Shops",
],
"Big Island Races": [],
"Big Island Breakables": [],
"Mountain": ["Mountain Breakables"],
"Mountain Breakables": ["Pots Shootable from Tutorial Island"],
"Junk 4 Trash": [],
"Big Island Bracelet Shops": [],
}