about summary refs log tree commit diff stats
path: root/AnodyneArchipelago/Locations.cs
diff options
context:
space:
mode:
Diffstat (limited to 'AnodyneArchipelago/Locations.cs')
-rw-r--r--AnodyneArchipelago/Locations.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/AnodyneArchipelago/Locations.cs b/AnodyneArchipelago/Locations.cs new file mode 100644 index 0000000..46e2471 --- /dev/null +++ b/AnodyneArchipelago/Locations.cs
@@ -0,0 +1,20 @@
1
2using System;
3using System.Collections.Generic;
4
5namespace AnodyneArchipelago
6{
7 internal class Locations
8 {
9 public static Dictionary<Guid, string> LocationsByGuid = new()
10 {
11 {new Guid("40de36cf-9238-f8b0-7a57-c6c8ca465cc2"), "Temple of the Seeing One - Entrance Chest" },
12 {new Guid("621c284f-cbd0-74c3-f51b-2a9fdde8d4d7"), "Temple of the Seeing One - Rock-Surrounded Chest" },
13 {new Guid("401939a4-41ba-e07e-3ba2-dc22513dcc5c"), "Temple of the Seeing One - Dark Room Chest" },
14 {new Guid("88d0a7b8-eeab-c45f-324e-f1c7885c41ce"), "Temple of the Seeing One - Shieldy Room Chest" },
15 {new Guid("0bce5346-48a2-47f9-89cb-3f59d9d0b7d2"), "Temple of the Seeing One - Boss Chest" },
16 {new Guid("d41f2750-e3c7-bbb4-d650-fafc190ebd32"), "Temple of the Seeing One - After Statue Left Chest" },
17 {new Guid("3167924e-5d52-1cd6-d6f4-b8e0e328215b"), "Temple of the Seeing One - After Statue Right Chest" },
18 };
19 }
20}