From f717a556a909b831cb6965bcd2f8e057053e5161 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 22 May 2024 12:45:43 -0400 Subject: Start sending and receiving items --- AnodyneArchipelago/Locations.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 AnodyneArchipelago/Locations.cs (limited to 'AnodyneArchipelago/Locations.cs') 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 @@ + +using System; +using System.Collections.Generic; + +namespace AnodyneArchipelago +{ + internal class Locations + { + public static Dictionary LocationsByGuid = new() + { + {new Guid("40de36cf-9238-f8b0-7a57-c6c8ca465cc2"), "Temple of the Seeing One - Entrance Chest" }, + {new Guid("621c284f-cbd0-74c3-f51b-2a9fdde8d4d7"), "Temple of the Seeing One - Rock-Surrounded Chest" }, + {new Guid("401939a4-41ba-e07e-3ba2-dc22513dcc5c"), "Temple of the Seeing One - Dark Room Chest" }, + {new Guid("88d0a7b8-eeab-c45f-324e-f1c7885c41ce"), "Temple of the Seeing One - Shieldy Room Chest" }, + {new Guid("0bce5346-48a2-47f9-89cb-3f59d9d0b7d2"), "Temple of the Seeing One - Boss Chest" }, + {new Guid("d41f2750-e3c7-bbb4-d650-fafc190ebd32"), "Temple of the Seeing One - After Statue Left Chest" }, + {new Guid("3167924e-5d52-1cd6-d6f4-b8e0e328215b"), "Temple of the Seeing One - After Statue Right Chest" }, + }; + } +} -- cgit 1.4.1