diff --git a/DiceProbabilities/DiceProbabilities/bin/Debug/netstandard2.0/DiceProbabilities.dll b/DiceProbabilities/DiceProbabilities/bin/Debug/netstandard2.0/DiceProbabilities.dll index 417e586..d4d9f93 100644 Binary files a/DiceProbabilities/DiceProbabilities/bin/Debug/netstandard2.0/DiceProbabilities.dll and b/DiceProbabilities/DiceProbabilities/bin/Debug/netstandard2.0/DiceProbabilities.dll differ diff --git a/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DiceProbabilities.dll b/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DiceProbabilities.dll index 417e586..d4d9f93 100644 Binary files a/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DiceProbabilities.dll and b/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DiceProbabilities.dll differ diff --git a/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapConsolePrinter.dll b/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapConsolePrinter.dll index 6e5f479..8cacfcc 100644 Binary files a/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapConsolePrinter.dll and b/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapConsolePrinter.dll differ diff --git a/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapConsolePrinter.exe b/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapConsolePrinter.exe index 9ea0eae..504161b 100644 Binary files a/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapConsolePrinter.exe and b/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapConsolePrinter.exe differ diff --git a/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapGenerator.dll b/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapGenerator.dll index fca1078..7e2e81e 100644 Binary files a/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapGenerator.dll and b/DungeonMapGenerator/DungeonMapConsolePrinter/bin/Debug/net9.0/DungeonMapGenerator.dll differ diff --git a/DungeonMapGenerator/DungeonMapGenerator/DungeonLockPopulator.cs b/DungeonMapGenerator/DungeonMapGenerator/DungeonLockPopulator.cs index ce8acfd..17690ba 100644 --- a/DungeonMapGenerator/DungeonMapGenerator/DungeonLockPopulator.cs +++ b/DungeonMapGenerator/DungeonMapGenerator/DungeonLockPopulator.cs @@ -8,6 +8,7 @@ namespace DungeonMapGenerator public static class DungeonLockPopulator { private const float ACCEPTABLE_ERROR = .02f; + private const int MAX_HARD_LOCKS = 3; public static void PopulateLocksOfDungeon(DungeonMap dungeon) { Random random = new Random(); @@ -24,6 +25,15 @@ namespace DungeonMapGenerator entranceRoomLock += 1; entranceRoom.Lock = new Lock((entranceRoomLock.ToString())); } + + // Give the dead ends very hard locks + foreach (Room room in dungeon.GetAllRooms().Except(currentRooms)) + { + if (room.GetAdjacentRooms().Count() == 1) + { + room.Lock = Lock.GetRandomVeryHardLock(); + } + } while (currentRooms.Count > 0) { @@ -31,7 +41,6 @@ namespace DungeonMapGenerator List alreadyLockedRooms = new List(); List adjacentRooms = new List(); - // Get all adjacent rooms that haven't been locked at foreach (Room room in currentRooms.ToList()) { foreach (Room adjacentRoom in room.GetAdjacentRooms()) @@ -83,15 +92,26 @@ namespace DungeonMapGenerator currentRooms = adjacentRooms; } - - // Check if all locks were set + + int hardLocksAdded = 0; foreach (var room in dungeon.GetAllRooms()) { + // Check if all locks were set if (room.Lock == null) { Console.WriteLine($"Room at {room.GetCenterOfRoom()} wasn't seen whilst populating locks"); room.Lock = Lock.NormalLocks[random.Next(0, Lock.NormalLocks.Count)]; } + + // Add two hard locks + if (hardLocksAdded < MAX_HARD_LOCKS + && room.TypeOfRoom == RoomType.Normal + && room.GetAdjacentRooms().All(adjacent => adjacent.TypeOfRoom == RoomType.Normal) + && (room.Lock.GetLock() == "4" || room.Lock.GetLock() == "10")) + { + room.Lock = Lock.GetRandomHardLock(); + hardLocksAdded++; + } } } diff --git a/DungeonMapGenerator/DungeonMapGenerator/Lock.cs b/DungeonMapGenerator/DungeonMapGenerator/Lock.cs index 3502cba..c17c74a 100644 --- a/DungeonMapGenerator/DungeonMapGenerator/Lock.cs +++ b/DungeonMapGenerator/DungeonMapGenerator/Lock.cs @@ -1,4 +1,6 @@ +using System; using System.Collections.Generic; +using System.Linq; using DiceProbabilities; using Newtonsoft.Json; @@ -33,6 +35,27 @@ namespace DungeonMapGenerator [JsonProperty("LockType")] private string _lockType; + public static Lock GetRandomVeryHardLock() + { + return GetRandomLockFromList(VeryHardLocks); + } + + public static Lock GetRandomHardLock() + { + return GetRandomLockFromList(HardLocks); + } + + public static Lock GetRandomNormalLock() + { + return GetRandomLockFromList(NormalLocks); + } + + private static Lock GetRandomLockFromList(List list) + { + Random random = new Random(); + return new Lock(list[random.Next(0, list.Count())].GetLock()); + } + public Lock() { diff --git a/DungeonMapGenerator/DungeonMapGenerator/Room.cs b/DungeonMapGenerator/DungeonMapGenerator/Room.cs index 9d992db..727fb76 100644 --- a/DungeonMapGenerator/DungeonMapGenerator/Room.cs +++ b/DungeonMapGenerator/DungeonMapGenerator/Room.cs @@ -35,7 +35,7 @@ namespace DungeonMapGenerator [JsonProperty("AdjacentRoomIds")] private HashSet _adjacentRoomIds = new HashSet(); - private List _adjacentRooms = new List(); + private HashSet _adjacentRooms = new HashSet(); private readonly Dictionary> _adjacentRoomsBySide = new Dictionary>(); public Room() diff --git a/DungeonMapGenerator/DungeonMapGenerator/bin/Debug/netstandard2.0/DiceProbabilities.dll b/DungeonMapGenerator/DungeonMapGenerator/bin/Debug/netstandard2.0/DiceProbabilities.dll index 417e586..d4d9f93 100644 Binary files a/DungeonMapGenerator/DungeonMapGenerator/bin/Debug/netstandard2.0/DiceProbabilities.dll and b/DungeonMapGenerator/DungeonMapGenerator/bin/Debug/netstandard2.0/DiceProbabilities.dll differ diff --git a/DungeonMapGenerator/DungeonMapGenerator/bin/Debug/netstandard2.0/DungeonMapGenerator.dll b/DungeonMapGenerator/DungeonMapGenerator/bin/Debug/netstandard2.0/DungeonMapGenerator.dll index fca1078..7e2e81e 100644 Binary files a/DungeonMapGenerator/DungeonMapGenerator/bin/Debug/netstandard2.0/DungeonMapGenerator.dll and b/DungeonMapGenerator/DungeonMapGenerator/bin/Debug/netstandard2.0/DungeonMapGenerator.dll differ diff --git a/Dungeons/dungeon 30x20(02).json b/Dungeons/dungeon 30x20(02).json new file mode 100644 index 0000000..340b583 --- /dev/null +++ b/Dungeons/dungeon 30x20(02).json @@ -0,0 +1,1367 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 2, + 523, + 3, + 631, + 4, + 625, + 521, + 530 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "7" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 2, + "Y": 2 + }, + "Id": 43 + }, + { + "AdjacentRoomIds": [ + 543, + 708, + 534, + 539 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "6" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 24, + "Y": 11 + }, + "Id": 136 + }, + { + "AdjacentRoomIds": [ + 552, + 550, + 557 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "7" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 7, + "Y": 16 + }, + "Id": 298 + }, + { + "AdjacentRoomIds": [ + 662, + 563, + 565 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "7" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 26, + "Y": 0 + }, + "Id": 362 + }, + { + "AdjacentRoomIds": [ + 571 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "=" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 25, + "Y": 16 + }, + "Id": 460 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 687, + 6, + 8 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 11 + }, + "Id": 7 + }, + { + "AdjacentRoomIds": [ + 43, + 2, + 4 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 3 + }, + "Id": 3 + }, + { + "AdjacentRoomIds": [ + 2 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": -1 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 8, + 10 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 15 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 10 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 19 + }, + "Id": 11 + }, + { + "AdjacentRoomIds": [ + 9, + 11 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 17 + }, + "Id": 10 + }, + { + "AdjacentRoomIds": [ + 7, + 9 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 13 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 43, + 1, + 3 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 1 + }, + "Id": 2 + }, + { + "AdjacentRoomIds": [ + 685, + 4, + 6 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 7 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 43, + 3, + 5 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 5 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 685, + 687, + 5, + 7 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 9 + }, + "Id": 6 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 523, + 43 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 0 + }, + "Id": 521 + }, + { + "AdjacentRoomIds": [ + 521, + 643, + 43, + 636, + 631 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 1 + }, + "Id": 523 + }, + { + "AdjacentRoomIds": [ + 625, + 624, + 43, + 683 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 6 + }, + "Id": 530 + }, + { + "AdjacentRoomIds": [ + 136, + 708 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 12 + }, + "Id": 534 + }, + { + "AdjacentRoomIds": [ + 706, + 597, + 136 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 9 + }, + "Id": 539 + }, + { + "AdjacentRoomIds": [ + 584, + 136, + 711 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 11 + }, + "Id": 543 + }, + { + "AdjacentRoomIds": [ + 298, + 667 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 18 + }, + "Id": 550 + }, + { + "AdjacentRoomIds": [ + 731, + 298 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 16 + }, + "Id": 552 + }, + { + "AdjacentRoomIds": [ + 298, + 619 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 14 + }, + "Id": 557 + }, + { + "AdjacentRoomIds": [ + 603, + 362, + 565, + 600 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 3 + }, + "Id": 563 + }, + { + "AdjacentRoomIds": [ + 563, + 362, + 705 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 4 + }, + "Id": 565 + }, + { + "AdjacentRoomIds": [ + 677, + 460, + 680 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 18 + }, + "Id": 571 + }, + { + "AdjacentRoomIds": [ + 624, + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 7 + }, + "Id": 574 + }, + { + "AdjacentRoomIds": [ + 12, + 543, + 711 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 10 + }, + "Id": 584 + }, + { + "AdjacentRoomIds": [ + 713, + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 12 + }, + "Id": 593 + }, + { + "AdjacentRoomIds": [ + 600, + 539 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 7 + }, + "Id": 597 + }, + { + "AdjacentRoomIds": [ + 604, + 603, + 563, + 597 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 5 + }, + "Id": 600 + }, + { + "AdjacentRoomIds": [ + 609, + 563, + 604, + 600 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 3 + }, + "Id": 603 + }, + { + "AdjacentRoomIds": [ + 600, + 609, + 603 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 5 + }, + "Id": 604 + }, + { + "AdjacentRoomIds": [ + 603, + 604 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 3 + }, + "Id": 609 + }, + { + "AdjacentRoomIds": [ + 620, + 557, + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 12 + }, + "Id": 619 + }, + { + "AdjacentRoomIds": [ + 621, + 12, + 619 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 10 + }, + "Id": 620 + }, + { + "AdjacentRoomIds": [ + 683, + 693, + 620, + 624 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 9 + }, + "Id": 621 + }, + { + "AdjacentRoomIds": [ + 530, + 574, + 683, + 625, + 621 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 7 + }, + "Id": 624 + }, + { + "AdjacentRoomIds": [ + 43, + 629, + 530, + 631, + 624 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 5 + }, + "Id": 625 + }, + { + "AdjacentRoomIds": [ + 631, + 625, + 636 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 4 + }, + "Id": 629 + }, + { + "AdjacentRoomIds": [ + 43, + 636, + 629, + 523, + 625 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 3 + }, + "Id": 631 + }, + { + "AdjacentRoomIds": [ + 523, + 645, + 631, + 643, + 629 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 2 + }, + "Id": 636 + }, + { + "AdjacentRoomIds": [ + 523, + 645, + 636 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 0 + }, + "Id": 643 + }, + { + "AdjacentRoomIds": [ + 643, + 647, + 636 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 1 + }, + "Id": 645 + }, + { + "AdjacentRoomIds": [ + 645, + 650 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 1 + }, + "Id": 647 + }, + { + "AdjacentRoomIds": [ + 647, + 654 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 1 + }, + "Id": 650 + }, + { + "AdjacentRoomIds": [ + 650, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 2 + }, + "Id": 654 + }, + { + "AdjacentRoomIds": [ + 658, + 654 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 1 + }, + "Id": 655 + }, + { + "AdjacentRoomIds": [ + 660, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 0 + }, + "Id": 658 + }, + { + "AdjacentRoomIds": [ + 658, + 662 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 0 + }, + "Id": 660 + }, + { + "AdjacentRoomIds": [ + 660, + 362 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 0 + }, + "Id": 662 + }, + { + "AdjacentRoomIds": [ + 550, + 668 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 18 + }, + "Id": 667 + }, + { + "AdjacentRoomIds": [ + 671, + 667 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 17 + }, + "Id": 668 + }, + { + "AdjacentRoomIds": [ + 668, + 675, + 721 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 17 + }, + "Id": 671 + }, + { + "AdjacentRoomIds": [ + 671, + 677, + 726 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 18 + }, + "Id": 675 + }, + { + "AdjacentRoomIds": [ + 675, + 571, + 726, + 680 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 18 + }, + "Id": 677 + }, + { + "AdjacentRoomIds": [ + 726, + 677, + 571 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 16 + }, + "Id": 680 + }, + { + "AdjacentRoomIds": [ + 685, + 624, + 621, + 530, + 693 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 8 + }, + "Id": 683 + }, + { + "AdjacentRoomIds": [ + 5, + 683, + 6, + 687 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 8 + }, + "Id": 685 + }, + { + "AdjacentRoomIds": [ + 6, + 693, + 7, + 685, + 690 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 10 + }, + "Id": 687 + }, + { + "AdjacentRoomIds": [ + 699, + 687, + 693 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 12 + }, + "Id": 690 + }, + { + "AdjacentRoomIds": [ + 687, + 621, + 683, + 690, + 699 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 10 + }, + "Id": 693 + }, + { + "AdjacentRoomIds": [ + 690, + 693 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 12 + }, + "Id": 699 + }, + { + "AdjacentRoomIds": [ + 565, + 706 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 6 + }, + "Id": 705 + }, + { + "AdjacentRoomIds": [ + 539, + 705, + 708 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 8 + }, + "Id": 706 + }, + { + "AdjacentRoomIds": [ + 136, + 706, + 534 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 10 + }, + "Id": 708 + }, + { + "AdjacentRoomIds": [ + 543, + 713, + 584, + 716 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 12 + }, + "Id": 711 + }, + { + "AdjacentRoomIds": [ + 593, + 711, + 716, + 721 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 13 + }, + "Id": 713 + }, + { + "AdjacentRoomIds": [ + 713, + 721, + 711, + 726 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 14 + }, + "Id": 716 + }, + { + "AdjacentRoomIds": [ + 716, + 726, + 713, + 671 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 15 + }, + "Id": 721 + }, + { + "AdjacentRoomIds": [ + 721, + 680, + 716, + 675, + 677 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 16 + }, + "Id": 726 + }, + { + "AdjacentRoomIds": [ + 552 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 15 + }, + "Id": 731 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 574, + 620, + 584, + 619, + 593 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "4" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 12 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(03).json b/Dungeons/dungeon 30x20(03).json new file mode 100644 index 0000000..b198bd3 --- /dev/null +++ b/Dungeons/dungeon 30x20(03).json @@ -0,0 +1,1166 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 528, + 517, + 686, + 526 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 4, + "Y": 1 + }, + "Id": 35 + }, + { + "AdjacentRoomIds": [ + 542, + 535, + 537 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "10" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 24, + "Y": 16 + }, + "Id": 162 + }, + { + "AdjacentRoomIds": [ + 547, + 549 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 25, + "Y": 0 + }, + "Id": 243 + }, + { + "AdjacentRoomIds": [ + 8, + 554, + 7, + 561 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "10" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 2, + "Y": 15 + }, + "Id": 322 + }, + { + "AdjacentRoomIds": [ + 565, + 683, + 6, + 9, + 568, + 684 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "4" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 0, + "Y": 8 + }, + "Id": 469 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 528, + 657, + 5 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 2 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 654, + 2 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 11 + }, + "Id": 3 + }, + { + "AdjacentRoomIds": [ + 686, + 4, + 6 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 4 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 322, + 9, + 7 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 14 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 684, + 469, + 8 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 12 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 568, + 5, + 469 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 6 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 651, + 2 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 7 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 651, + 654, + 1, + 3 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 9 + }, + "Id": 2 + }, + { + "AdjacentRoomIds": [ + 322, + 8 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 16 + }, + "Id": 7 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 604, + 35 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 0 + }, + "Id": 517 + }, + { + "AdjacentRoomIds": [ + 588, + 35, + 599 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 5 + }, + "Id": 526 + }, + { + "AdjacentRoomIds": [ + 657, + 35, + 4 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 1 + }, + "Id": 528 + }, + { + "AdjacentRoomIds": [ + 162 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 18 + }, + "Id": 535 + }, + { + "AdjacentRoomIds": [ + 678, + 675, + 162 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 14 + }, + "Id": 537 + }, + { + "AdjacentRoomIds": [ + 659, + 162 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 16 + }, + "Id": 542 + }, + { + "AdjacentRoomIds": [ + 672, + 243, + 618, + 549 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 2 + }, + "Id": 547 + }, + { + "AdjacentRoomIds": [ + 618, + 547, + 641, + 243, + 645 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 4 + }, + "Id": 549 + }, + { + "AdjacentRoomIds": [ + 561, + 322, + 622 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 14 + }, + "Id": 554 + }, + { + "AdjacentRoomIds": [ + 684, + 554, + 683, + 322 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 13 + }, + "Id": 561 + }, + { + "AdjacentRoomIds": [ + 469, + 636, + 634, + 683 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 9 + }, + "Id": 565 + }, + { + "AdjacentRoomIds": [ + 6, + 686, + 469 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 6 + }, + "Id": 568 + }, + { + "AdjacentRoomIds": [ + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 6 + }, + "Id": 571 + }, + { + "AdjacentRoomIds": [ + 627, + 670, + 10, + 628 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 12 + }, + "Id": 580 + }, + { + "AdjacentRoomIds": [ + 526, + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 4 + }, + "Id": 588 + }, + { + "AdjacentRoomIds": [ + 10, + 636, + 526, + 637 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 7 + }, + "Id": 599 + }, + { + "AdjacentRoomIds": [ + 517, + 606 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 0 + }, + "Id": 604 + }, + { + "AdjacentRoomIds": [ + 604, + 608 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 0 + }, + "Id": 606 + }, + { + "AdjacentRoomIds": [ + 606, + 611 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 0 + }, + "Id": 608 + }, + { + "AdjacentRoomIds": [ + 608, + 614 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 1 + }, + "Id": 611 + }, + { + "AdjacentRoomIds": [ + 611, + 617, + 673 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 2 + }, + "Id": 614 + }, + { + "AdjacentRoomIds": [ + 614, + 618, + 672 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 3 + }, + "Id": 617 + }, + { + "AdjacentRoomIds": [ + 617, + 549, + 547, + 641 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 4 + }, + "Id": 618 + }, + { + "AdjacentRoomIds": [ + 554, + 624 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 15 + }, + "Id": 622 + }, + { + "AdjacentRoomIds": [ + 622, + 628, + 627 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 15 + }, + "Id": 624 + }, + { + "AdjacentRoomIds": [ + 580, + 628, + 624 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 13 + }, + "Id": 627 + }, + { + "AdjacentRoomIds": [ + 627, + 670, + 624, + 668, + 580 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 14 + }, + "Id": 628 + }, + { + "AdjacentRoomIds": [ + 565, + 637, + 683, + 636 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 10 + }, + "Id": 634 + }, + { + "AdjacentRoomIds": [ + 599, + 565, + 637, + 634 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 8 + }, + "Id": 636 + }, + { + "AdjacentRoomIds": [ + 636, + 10, + 634, + 599 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 9 + }, + "Id": 637 + }, + { + "AdjacentRoomIds": [ + 645, + 618, + 549, + 647 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 6 + }, + "Id": 641 + }, + { + "AdjacentRoomIds": [ + 641, + 549, + 647, + 651 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 6 + }, + "Id": 645 + }, + { + "AdjacentRoomIds": [ + 651, + 641, + 645 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 8 + }, + "Id": 647 + }, + { + "AdjacentRoomIds": [ + 647, + 1, + 2, + 645, + 654 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 8 + }, + "Id": 651 + }, + { + "AdjacentRoomIds": [ + 2, + 3, + 651 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 10 + }, + "Id": 654 + }, + { + "AdjacentRoomIds": [ + 528, + 4 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 0 + }, + "Id": 657 + }, + { + "AdjacentRoomIds": [ + 661, + 542 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 16 + }, + "Id": 659 + }, + { + "AdjacentRoomIds": [ + 665, + 659 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 15 + }, + "Id": 661 + }, + { + "AdjacentRoomIds": [ + 668, + 661 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 15 + }, + "Id": 665 + }, + { + "AdjacentRoomIds": [ + 628, + 665, + 670 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 15 + }, + "Id": 668 + }, + { + "AdjacentRoomIds": [ + 580, + 628, + 668 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 13 + }, + "Id": 670 + }, + { + "AdjacentRoomIds": [ + 673, + 547, + 617 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 1 + }, + "Id": 672 + }, + { + "AdjacentRoomIds": [ + 672, + 614 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 0 + }, + "Id": 673 + }, + { + "AdjacentRoomIds": [ + 678, + 537 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 12 + }, + "Id": 675 + }, + { + "AdjacentRoomIds": [ + 675, + 537, + 680 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 13 + }, + "Id": 678 + }, + { + "AdjacentRoomIds": [ + 678 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 14 + }, + "Id": 680 + }, + { + "AdjacentRoomIds": [ + 469, + 634, + 684, + 565, + 561 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 11 + }, + "Id": 683 + }, + { + "AdjacentRoomIds": [ + 9, + 683, + 561, + 469 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 12 + }, + "Id": 684 + }, + { + "AdjacentRoomIds": [ + 5, + 35, + 568 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 4 + }, + "Id": 686 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 571, + 599, + 637, + 588, + 580 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "7" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 10 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(04).json b/Dungeons/dungeon 30x20(04).json new file mode 100644 index 0000000..c989d73 --- /dev/null +++ b/Dungeons/dungeon 30x20(04).json @@ -0,0 +1,1135 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 518, + 523 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 0, + "Y": 0 + }, + "Id": 25 + }, + { + "AdjacentRoomIds": [ + 534, + 8, + 7, + 530, + 527 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "9" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 24, + "Y": 14 + }, + "Id": 121 + }, + { + "AdjacentRoomIds": [ + 3, + 545, + 543, + 547 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "4" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 18, + "Y": 1 + }, + "Id": 249 + }, + { + "AdjacentRoomIds": [ + 557, + 550 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "9" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 1, + "Y": 15 + }, + "Id": 325 + }, + { + "AdjacentRoomIds": [ + 559, + 10, + 565, + 597, + 568, + 589 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "6" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 6, + "Y": 4 + }, + "Id": 483 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 8 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 12 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 121, + 8 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 16 + }, + "Id": 7 + }, + { + "AdjacentRoomIds": [ + 608, + 4, + 6 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 4 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 121, + 9, + 7 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 14 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 681, + 5, + 680 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 6 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 604, + 5 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 2 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 2, + 657, + 656 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 0 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 2, + 249 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 0 + }, + "Id": 3 + }, + { + "AdjacentRoomIds": [ + 1, + 3 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 0 + }, + "Id": 2 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 25, + 593, + 597 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 1 + }, + "Id": 518 + }, + { + "AdjacentRoomIds": [ + 25, + 659 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 4 + }, + "Id": 523 + }, + { + "AdjacentRoomIds": [ + 121, + 677 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 12 + }, + "Id": 527 + }, + { + "AdjacentRoomIds": [ + 121 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 18 + }, + "Id": 530 + }, + { + "AdjacentRoomIds": [ + 121 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 13 + }, + "Id": 534 + }, + { + "AdjacentRoomIds": [ + 249, + 601, + 547 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 4 + }, + "Id": 543 + }, + { + "AdjacentRoomIds": [ + 689, + 249 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 3 + }, + "Id": 545 + }, + { + "AdjacentRoomIds": [ + 543, + 10, + 249, + 581 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 5 + }, + "Id": 547 + }, + { + "AdjacentRoomIds": [ + 325, + 684 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 13 + }, + "Id": 550 + }, + { + "AdjacentRoomIds": [ + 325, + 613 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 17 + }, + "Id": 557 + }, + { + "AdjacentRoomIds": [ + 568, + 656, + 483, + 586, + 657 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 3 + }, + "Id": 559 + }, + { + "AdjacentRoomIds": [ + 483, + 670 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 7 + }, + "Id": 565 + }, + { + "AdjacentRoomIds": [ + 597, + 657, + 559, + 483 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 2 + }, + "Id": 568 + }, + { + "AdjacentRoomIds": [ + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 12 + }, + "Id": 571 + }, + { + "AdjacentRoomIds": [ + 10, + 649, + 547, + 643 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 7 + }, + "Id": 581 + }, + { + "AdjacentRoomIds": [ + 559, + 689, + 656, + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 4 + }, + "Id": 586 + }, + { + "AdjacentRoomIds": [ + 10, + 483 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 8 + }, + "Id": 589 + }, + { + "AdjacentRoomIds": [ + 518, + 597 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 0 + }, + "Id": 593 + }, + { + "AdjacentRoomIds": [ + 518, + 568, + 593, + 483 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 2 + }, + "Id": 597 + }, + { + "AdjacentRoomIds": [ + 604, + 543, + 608 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 3 + }, + "Id": 601 + }, + { + "AdjacentRoomIds": [ + 4, + 601, + 608 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 2 + }, + "Id": 604 + }, + { + "AdjacentRoomIds": [ + 601, + 5, + 604, + 681 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 4 + }, + "Id": 608 + }, + { + "AdjacentRoomIds": [ + 557, + 615 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 18 + }, + "Id": 613 + }, + { + "AdjacentRoomIds": [ + 613, + 616 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 18 + }, + "Id": 615 + }, + { + "AdjacentRoomIds": [ + 619, + 615 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 17 + }, + "Id": 616 + }, + { + "AdjacentRoomIds": [ + 616, + 622 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 17 + }, + "Id": 619 + }, + { + "AdjacentRoomIds": [ + 619, + 626 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 17 + }, + "Id": 622 + }, + { + "AdjacentRoomIds": [ + 622, + 629 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 18 + }, + "Id": 626 + }, + { + "AdjacentRoomIds": [ + 634, + 632, + 626 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 16 + }, + "Id": 629 + }, + { + "AdjacentRoomIds": [ + 629, + 634 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 17 + }, + "Id": 632 + }, + { + "AdjacentRoomIds": [ + 629, + 636, + 632 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 15 + }, + "Id": 634 + }, + { + "AdjacentRoomIds": [ + 638, + 634 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 13 + }, + "Id": 636 + }, + { + "AdjacentRoomIds": [ + 10, + 641, + 643, + 636 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 11 + }, + "Id": 638 + }, + { + "AdjacentRoomIds": [ + 643, + 638, + 649 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 10 + }, + "Id": 641 + }, + { + "AdjacentRoomIds": [ + 10, + 649, + 641, + 581, + 638 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 9 + }, + "Id": 643 + }, + { + "AdjacentRoomIds": [ + 581, + 643, + 641 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 8 + }, + "Id": 649 + }, + { + "AdjacentRoomIds": [ + 657, + 559, + 689, + 1, + 586 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 2 + }, + "Id": 656 + }, + { + "AdjacentRoomIds": [ + 1, + 568, + 656, + 559 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 1 + }, + "Id": 657 + }, + { + "AdjacentRoomIds": [ + 662, + 523 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 6 + }, + "Id": 659 + }, + { + "AdjacentRoomIds": [ + 667, + 659 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 8 + }, + "Id": 662 + }, + { + "AdjacentRoomIds": [ + 662, + 670, + 684 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 9 + }, + "Id": 667 + }, + { + "AdjacentRoomIds": [ + 667, + 565, + 685 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 9 + }, + "Id": 670 + }, + { + "AdjacentRoomIds": [ + 527, + 680 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 10 + }, + "Id": 677 + }, + { + "AdjacentRoomIds": [ + 681, + 677, + 6 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 8 + }, + "Id": 680 + }, + { + "AdjacentRoomIds": [ + 6, + 608, + 680 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 6 + }, + "Id": 681 + }, + { + "AdjacentRoomIds": [ + 685, + 667, + 550 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 11 + }, + "Id": 684 + }, + { + "AdjacentRoomIds": [ + 684, + 670 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 11 + }, + "Id": 685 + }, + { + "AdjacentRoomIds": [ + 656, + 545, + 586 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 3 + }, + "Id": 689 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 483, + 547, + 581, + 589, + 643, + 638, + 571, + 586 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "7" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 10 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(05).json b/Dungeons/dungeon 30x20(05).json new file mode 100644 index 0000000..bbf2f81 --- /dev/null +++ b/Dungeons/dungeon 30x20(05).json @@ -0,0 +1,1143 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 523, + 521 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 0, + "Y": 0 + }, + "Id": 57 + }, + { + "AdjacentRoomIds": [ + 527, + 11, + 532 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "10" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 26, + "Y": 15 + }, + "Id": 145 + }, + { + "AdjacentRoomIds": [ + 535, + 539, + 546 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "=" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 21, + "Y": 1 + }, + "Id": 316 + }, + { + "AdjacentRoomIds": [ + 663, + 559, + 551, + 557 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "7" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 12, + "Y": 0 + }, + "Id": 385 + }, + { + "AdjacentRoomIds": [ + 571, + 575, + 662, + 595, + 569, + 565, + 527 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "=" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 21, + "Y": 10 + }, + "Id": 438 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 7, + 9, + 674 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 18 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 8, + 10, + 646 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 18 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 2 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 18 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 6, + 8, + 676, + 674 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 18 + }, + "Id": 7 + }, + { + "AdjacentRoomIds": [ + 9, + 11, + 646, + 649 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 18 + }, + "Id": 10 + }, + { + "AdjacentRoomIds": [ + 10, + 145, + 649 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 18 + }, + "Id": 11 + }, + { + "AdjacentRoomIds": [ + 5, + 7, + 676 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 18 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 3, + 5, + 683 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 18 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 1, + 3 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 18 + }, + "Id": 2 + }, + { + "AdjacentRoomIds": [ + 4, + 6, + 683 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 18 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 2, + 4 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 18 + }, + "Id": 3 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 57, + 596 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 4 + }, + "Id": 521 + }, + { + "AdjacentRoomIds": [ + 57, + 653 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 0 + }, + "Id": 523 + }, + { + "AdjacentRoomIds": [ + 569, + 145, + 438, + 649, + 662 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 14 + }, + "Id": 527 + }, + { + "AdjacentRoomIds": [ + 662, + 145, + 688 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 13 + }, + "Id": 532 + }, + { + "AdjacentRoomIds": [ + 316 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 1 + }, + "Id": 535 + }, + { + "AdjacentRoomIds": [ + 316 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 0 + }, + "Id": 539 + }, + { + "AdjacentRoomIds": [ + 626, + 316 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 5 + }, + "Id": 546 + }, + { + "AdjacentRoomIds": [ + 658, + 385, + 663 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 2 + }, + "Id": 551 + }, + { + "AdjacentRoomIds": [ + 385, + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 4 + }, + "Id": 557 + }, + { + "AdjacentRoomIds": [ + 385 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 1 + }, + "Id": 559 + }, + { + "AdjacentRoomIds": [ + 627, + 438, + 626 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 8 + }, + "Id": 565 + }, + { + "AdjacentRoomIds": [ + 527, + 438, + 646, + 649 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 14 + }, + "Id": 569 + }, + { + "AdjacentRoomIds": [ + 438, + 627, + 662 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 10 + }, + "Id": 571 + }, + { + "AdjacentRoomIds": [ + 664, + 438, + 12, + 668 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 12 + }, + "Id": 575 + }, + { + "AdjacentRoomIds": [ + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 4 + }, + "Id": 583 + }, + { + "AdjacentRoomIds": [ + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 7 + }, + "Id": 587 + }, + { + "AdjacentRoomIds": [ + 12, + 438 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 8 + }, + "Id": 595 + }, + { + "AdjacentRoomIds": [ + 600, + 521 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 6 + }, + "Id": 596 + }, + { + "AdjacentRoomIds": [ + 596, + 603 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 8 + }, + "Id": 600 + }, + { + "AdjacentRoomIds": [ + 600, + 606 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 10 + }, + "Id": 603 + }, + { + "AdjacentRoomIds": [ + 603, + 610 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 12 + }, + "Id": 606 + }, + { + "AdjacentRoomIds": [ + 606, + 612 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 14 + }, + "Id": 610 + }, + { + "AdjacentRoomIds": [ + 616, + 610, + 614 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 16 + }, + "Id": 612 + }, + { + "AdjacentRoomIds": [ + 616, + 612 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 18 + }, + "Id": 614 + }, + { + "AdjacentRoomIds": [ + 612, + 614 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 16 + }, + "Id": 616 + }, + { + "AdjacentRoomIds": [ + 546, + 630, + 565, + 627 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 6 + }, + "Id": 626 + }, + { + "AdjacentRoomIds": [ + 565, + 635, + 626, + 571, + 630 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 8 + }, + "Id": 627 + }, + { + "AdjacentRoomIds": [ + 626, + 640, + 627, + 635 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 6 + }, + "Id": 630 + }, + { + "AdjacentRoomIds": [ + 627, + 630, + 640 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 8 + }, + "Id": 635 + }, + { + "AdjacentRoomIds": [ + 630, + 635 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 6 + }, + "Id": 640 + }, + { + "AdjacentRoomIds": [ + 649, + 9, + 569, + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 16 + }, + "Id": 646 + }, + { + "AdjacentRoomIds": [ + 646, + 569, + 10, + 527, + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 16 + }, + "Id": 649 + }, + { + "AdjacentRoomIds": [ + 523, + 654, + 658 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 1 + }, + "Id": 653 + }, + { + "AdjacentRoomIds": [ + 663, + 653, + 658 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 0 + }, + "Id": 654 + }, + { + "AdjacentRoomIds": [ + 653, + 551, + 654 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 2 + }, + "Id": 658 + }, + { + "AdjacentRoomIds": [ + 438, + 532, + 571, + 527 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 12 + }, + "Id": 662 + }, + { + "AdjacentRoomIds": [ + 654, + 385, + 551 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 0 + }, + "Id": 663 + }, + { + "AdjacentRoomIds": [ + 575, + 12, + 670, + 668 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 12 + }, + "Id": 664 + }, + { + "AdjacentRoomIds": [ + 670, + 664, + 674, + 575 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 14 + }, + "Id": 668 + }, + { + "AdjacentRoomIds": [ + 668, + 676, + 664, + 674 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 14 + }, + "Id": 670 + }, + { + "AdjacentRoomIds": [ + 676, + 670, + 7, + 668, + 8 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 16 + }, + "Id": 674 + }, + { + "AdjacentRoomIds": [ + 677, + 674, + 6, + 670, + 7 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 16 + }, + "Id": 676 + }, + { + "AdjacentRoomIds": [ + 679, + 683, + 676 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 15 + }, + "Id": 677 + }, + { + "AdjacentRoomIds": [ + 677, + 683 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 14 + }, + "Id": 679 + }, + { + "AdjacentRoomIds": [ + 677, + 679, + 4, + 5 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 16 + }, + "Id": 683 + }, + { + "AdjacentRoomIds": [ + 532 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 11 + }, + "Id": 688 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 587, + 595, + 557, + 664, + 583, + 575 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "6" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 12 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(06).json b/Dungeons/dungeon 30x20(06).json new file mode 100644 index 0000000..90c01d2 --- /dev/null +++ b/Dungeons/dungeon 30x20(06).json @@ -0,0 +1,1233 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 521, + 622, + 520, + 620, + 1, + 528 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 2, + "Y": 2 + }, + "Id": 42 + }, + { + "AdjacentRoomIds": [ + 536, + 540, + 531 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 22, + "Y": 13 + }, + "Id": 124 + }, + { + "AdjacentRoomIds": [ + 545, + 552, + 554, + 668 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "6" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 3, + "Y": 16 + }, + "Id": 227 + }, + { + "AdjacentRoomIds": [ + 558, + 562, + 591, + 5, + 12, + 6, + 7 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "9" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 13, + "Y": 2 + }, + "Id": 322 + }, + { + "AdjacentRoomIds": [ + 569, + 566, + 577 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "4" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 25, + "Y": 5 + }, + "Id": 429 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 7, + 9 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 0 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 2, + 4 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 0 + }, + "Id": 3 + }, + { + "AdjacentRoomIds": [ + 4, + 6, + 558, + 322 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 0 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 8, + 10 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 0 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 5, + 7, + 322 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 0 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 10, + 629, + 631 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 0 + }, + "Id": 11 + }, + { + "AdjacentRoomIds": [ + 3, + 5, + 558 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 0 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 6, + 8, + 322 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 0 + }, + "Id": 7 + }, + { + "AdjacentRoomIds": [ + 520, + 2, + 42 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 0 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 1, + 3, + 521 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 0 + }, + "Id": 2 + }, + { + "AdjacentRoomIds": [ + 9, + 11, + 632 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 0 + }, + "Id": 10 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 1, + 42 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 0 + }, + "Id": 520 + }, + { + "AdjacentRoomIds": [ + 42, + 637, + 2 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 2 + }, + "Id": 521 + }, + { + "AdjacentRoomIds": [ + 42, + 662 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 6 + }, + "Id": 528 + }, + { + "AdjacentRoomIds": [ + 124 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 17 + }, + "Id": 531 + }, + { + "AdjacentRoomIds": [ + 124, + 698, + 540 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 13 + }, + "Id": 536 + }, + { + "AdjacentRoomIds": [ + 536, + 607, + 124 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 11 + }, + "Id": 540 + }, + { + "AdjacentRoomIds": [ + 554, + 227 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 15 + }, + "Id": 545 + }, + { + "AdjacentRoomIds": [ + 227, + 638 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 18 + }, + "Id": 552 + }, + { + "AdjacentRoomIds": [ + 668, + 545, + 611, + 227, + 665 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 14 + }, + "Id": 554 + }, + { + "AdjacentRoomIds": [ + 322, + 4, + 591, + 5 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 2 + }, + "Id": 558 + }, + { + "AdjacentRoomIds": [ + 322, + 657 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 3 + }, + "Id": 562 + }, + { + "AdjacentRoomIds": [ + 429 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 9 + }, + "Id": 566 + }, + { + "AdjacentRoomIds": [ + 659, + 429, + 632, + 631 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 4 + }, + "Id": 569 + }, + { + "AdjacentRoomIds": [ + 629, + 429, + 627 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 3 + }, + "Id": 577 + }, + { + "AdjacentRoomIds": [ + 655, + 12, + 653 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 12 + }, + "Id": 585 + }, + { + "AdjacentRoomIds": [ + 322, + 558, + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 4 + }, + "Id": 591 + }, + { + "AdjacentRoomIds": [ + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 9 + }, + "Id": 597 + }, + { + "AdjacentRoomIds": [ + 12, + 608, + 610, + 659 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 6 + }, + "Id": 601 + }, + { + "AdjacentRoomIds": [ + 610, + 608, + 540 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 9 + }, + "Id": 607 + }, + { + "AdjacentRoomIds": [ + 601, + 610, + 607 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 7 + }, + "Id": 608 + }, + { + "AdjacentRoomIds": [ + 12, + 608, + 607, + 601 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 8 + }, + "Id": 610 + }, + { + "AdjacentRoomIds": [ + 665, + 616, + 554 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 12 + }, + "Id": 611 + }, + { + "AdjacentRoomIds": [ + 664, + 617, + 611, + 662, + 665 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 10 + }, + "Id": 616 + }, + { + "AdjacentRoomIds": [ + 662, + 620, + 616 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 8 + }, + "Id": 617 + }, + { + "AdjacentRoomIds": [ + 622, + 42, + 617 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 6 + }, + "Id": 620 + }, + { + "AdjacentRoomIds": [ + 42, + 620 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 4 + }, + "Id": 622 + }, + { + "AdjacentRoomIds": [ + 629, + 577 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 1 + }, + "Id": 627 + }, + { + "AdjacentRoomIds": [ + 11, + 627, + 631, + 577 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 1 + }, + "Id": 629 + }, + { + "AdjacentRoomIds": [ + 632, + 629, + 11, + 569 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 2 + }, + "Id": 631 + }, + { + "AdjacentRoomIds": [ + 631, + 10, + 659, + 569 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 2 + }, + "Id": 632 + }, + { + "AdjacentRoomIds": [ + 521 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 3 + }, + "Id": 637 + }, + { + "AdjacentRoomIds": [ + 640, + 552 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 17 + }, + "Id": 638 + }, + { + "AdjacentRoomIds": [ + 638, + 645 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 16 + }, + "Id": 640 + }, + { + "AdjacentRoomIds": [ + 647, + 640 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 14 + }, + "Id": 645 + }, + { + "AdjacentRoomIds": [ + 645, + 653, + 651 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 15 + }, + "Id": 647 + }, + { + "AdjacentRoomIds": [ + 647, + 653 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 16 + }, + "Id": 651 + }, + { + "AdjacentRoomIds": [ + 698, + 647, + 585, + 651, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 14 + }, + "Id": 653 + }, + { + "AdjacentRoomIds": [ + 585, + 12, + 653, + 698 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 12 + }, + "Id": 655 + }, + { + "AdjacentRoomIds": [ + 562, + 659 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 3 + }, + "Id": 657 + }, + { + "AdjacentRoomIds": [ + 657, + 569, + 601, + 632 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 4 + }, + "Id": 659 + }, + { + "AdjacentRoomIds": [ + 617, + 528, + 616, + 664 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 8 + }, + "Id": 662 + }, + { + "AdjacentRoomIds": [ + 616, + 662, + 665, + 671 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 10 + }, + "Id": 664 + }, + { + "AdjacentRoomIds": [ + 611, + 671, + 616, + 554, + 664, + 668 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 12 + }, + "Id": 665 + }, + { + "AdjacentRoomIds": [ + 554, + 675, + 665, + 227, + 671 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 14 + }, + "Id": 668 + }, + { + "AdjacentRoomIds": [ + 665, + 680, + 664, + 668, + 675 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 12 + }, + "Id": 671 + }, + { + "AdjacentRoomIds": [ + 668, + 686, + 671, + 680 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 14 + }, + "Id": 675 + }, + { + "AdjacentRoomIds": [ + 671, + 692, + 675, + 686 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 12 + }, + "Id": 680 + }, + { + "AdjacentRoomIds": [ + 675, + 680, + 692 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 14 + }, + "Id": 686 + }, + { + "AdjacentRoomIds": [ + 680, + 12, + 686 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 12 + }, + "Id": 692 + }, + { + "AdjacentRoomIds": [ + 653, + 536, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 14 + }, + "Id": 698 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 601, + 610, + 597, + 692, + 591, + 322, + 585, + 655 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "4" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 12 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(07).json b/Dungeons/dungeon 30x20(07).json new file mode 100644 index 0000000..55b6ccf --- /dev/null +++ b/Dungeons/dungeon 30x20(07).json @@ -0,0 +1,1134 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 1, + 523, + 521 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 0, + "Y": 1 + }, + "Id": 41 + }, + { + "AdjacentRoomIds": [ + 533, + 686, + 540, + 530 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "=" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 24, + "Y": 13 + }, + "Id": 120 + }, + { + "AdjacentRoomIds": [ + 549, + 555, + 544 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "5" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 5, + "Y": 15 + }, + "Id": 226 + }, + { + "AdjacentRoomIds": [ + 556, + 562, + 7, + 12, + 8, + 9 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "6" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 17, + "Y": 2 + }, + "Id": 391 + }, + { + "AdjacentRoomIds": [ + 564, + 574, + 655, + 571 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "=" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 16, + "Y": 16 + }, + "Id": 508 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 2, + 4 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 0 + }, + "Id": 3 + }, + { + "AdjacentRoomIds": [ + 4, + 6, + 696, + 694 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 0 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 5, + 7, + 694, + 556 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 0 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 1, + 3, + 624 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 0 + }, + "Id": 2 + }, + { + "AdjacentRoomIds": [ + 9, + 11 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 0 + }, + "Id": 10 + }, + { + "AdjacentRoomIds": [ + 10 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 0 + }, + "Id": 11 + }, + { + "AdjacentRoomIds": [ + 7, + 9, + 391 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 0 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 2, + 41, + 523 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 0 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 8, + 10, + 391 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 0 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 6, + 8, + 556, + 391 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 0 + }, + "Id": 7 + }, + { + "AdjacentRoomIds": [ + 3, + 5, + 696 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 0 + }, + "Id": 4 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 41, + 607 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 5 + }, + "Id": 521 + }, + { + "AdjacentRoomIds": [ + 41, + 624, + 1 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 2 + }, + "Id": 523 + }, + { + "AdjacentRoomIds": [ + 120 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 17 + }, + "Id": 530 + }, + { + "AdjacentRoomIds": [ + 120 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 14 + }, + "Id": 533 + }, + { + "AdjacentRoomIds": [ + 678, + 679, + 120 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 11 + }, + "Id": 540 + }, + { + "AdjacentRoomIds": [ + 619, + 688, + 620, + 226 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 13 + }, + "Id": 544 + }, + { + "AdjacentRoomIds": [ + 226, + 647 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 17 + }, + "Id": 549 + }, + { + "AdjacentRoomIds": [ + 226 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 18 + }, + "Id": 555 + }, + { + "AdjacentRoomIds": [ + 694, + 391, + 6, + 7 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 2 + }, + "Id": 556 + }, + { + "AdjacentRoomIds": [ + 391, + 670 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 5 + }, + "Id": 562 + }, + { + "AdjacentRoomIds": [ + 508, + 685, + 571 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 16 + }, + "Id": 564 + }, + { + "AdjacentRoomIds": [ + 692, + 600, + 508, + 564 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 14 + }, + "Id": 571 + }, + { + "AdjacentRoomIds": [ + 508, + 653 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 17 + }, + "Id": 574 + }, + { + "AdjacentRoomIds": [ + 696, + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 4 + }, + "Id": 578 + }, + { + "AdjacentRoomIds": [ + 641, + 12, + 635 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 7 + }, + "Id": 585 + }, + { + "AdjacentRoomIds": [ + 692, + 12, + 571 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 12 + }, + "Id": 600 + }, + { + "AdjacentRoomIds": [ + 12, + 670 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 8 + }, + "Id": 602 + }, + { + "AdjacentRoomIds": [ + 521, + 611 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 7 + }, + "Id": 607 + }, + { + "AdjacentRoomIds": [ + 615, + 607, + 613 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 9 + }, + "Id": 611 + }, + { + "AdjacentRoomIds": [ + 615, + 619, + 611 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 11 + }, + "Id": 613 + }, + { + "AdjacentRoomIds": [ + 611, + 613, + 620, + 619 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 10 + }, + "Id": 615 + }, + { + "AdjacentRoomIds": [ + 613, + 620, + 544, + 615 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 12 + }, + "Id": 619 + }, + { + "AdjacentRoomIds": [ + 615, + 619, + 688, + 544 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 11 + }, + "Id": 620 + }, + { + "AdjacentRoomIds": [ + 523, + 627, + 2, + 630 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 2 + }, + "Id": 624 + }, + { + "AdjacentRoomIds": [ + 624, + 630, + 635 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 3 + }, + "Id": 627 + }, + { + "AdjacentRoomIds": [ + 627, + 635, + 624, + 641 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 4 + }, + "Id": 630 + }, + { + "AdjacentRoomIds": [ + 630, + 641, + 12, + 627, + 585 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 5 + }, + "Id": 635 + }, + { + "AdjacentRoomIds": [ + 635, + 585, + 630 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 6 + }, + "Id": 641 + }, + { + "AdjacentRoomIds": [ + 549, + 650 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 17 + }, + "Id": 647 + }, + { + "AdjacentRoomIds": [ + 653, + 647 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 15 + }, + "Id": 650 + }, + { + "AdjacentRoomIds": [ + 650, + 655, + 656, + 574 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 15 + }, + "Id": 653 + }, + { + "AdjacentRoomIds": [ + 656, + 692, + 653, + 662, + 508 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 14 + }, + "Id": 655 + }, + { + "AdjacentRoomIds": [ + 662, + 655, + 653 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 13 + }, + "Id": 656 + }, + { + "AdjacentRoomIds": [ + 656, + 692, + 12, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 12 + }, + "Id": 662 + }, + { + "AdjacentRoomIds": [ + 671, + 602, + 562 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 7 + }, + "Id": 670 + }, + { + "AdjacentRoomIds": [ + 670, + 676 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 6 + }, + "Id": 671 + }, + { + "AdjacentRoomIds": [ + 679, + 671, + 678 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 8 + }, + "Id": 676 + }, + { + "AdjacentRoomIds": [ + 679, + 540, + 676 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 10 + }, + "Id": 678 + }, + { + "AdjacentRoomIds": [ + 676, + 678, + 540 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 9 + }, + "Id": 679 + }, + { + "AdjacentRoomIds": [ + 564, + 686 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 17 + }, + "Id": 685 + }, + { + "AdjacentRoomIds": [ + 685, + 120 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 17 + }, + "Id": 686 + }, + { + "AdjacentRoomIds": [ + 620, + 544, + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 12 + }, + "Id": 688 + }, + { + "AdjacentRoomIds": [ + 662, + 600, + 655, + 571 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 13 + }, + "Id": 692 + }, + { + "AdjacentRoomIds": [ + 696, + 556, + 5, + 6 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 2 + }, + "Id": 694 + }, + { + "AdjacentRoomIds": [ + 694, + 4, + 578, + 5 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 2 + }, + "Id": 696 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 635, + 585, + 602, + 688, + 578, + 662, + 391, + 600 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "=" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 12 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(08).json b/Dungeons/dungeon 30x20(08).json new file mode 100644 index 0000000..1405863 --- /dev/null +++ b/Dungeons/dungeon 30x20(08).json @@ -0,0 +1,1184 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 523, + 520, + 609, + 526, + 444 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "6" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 3, + "Y": 0 + }, + "Id": 43 + }, + { + "AdjacentRoomIds": [ + 535, + 540, + 529, + 8, + 665, + 9, + 668, + 10 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 19, + "Y": 14 + }, + "Id": 181 + }, + { + "AdjacentRoomIds": [ + 548, + 553, + 655, + 557, + 545, + 1 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "10" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 2, + "Y": 14 + }, + "Id": 248 + }, + { + "AdjacentRoomIds": [ + 12, + 571, + 563, + 562 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "10" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 20, + "Y": 6 + }, + "Id": 358 + }, + { + "AdjacentRoomIds": [ + 576, + 574, + 12, + 43, + 579, + 609 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "6" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 6, + "Y": 4 + }, + "Id": 444 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 3, + 5, + 646 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 18 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 4, + 6, + 606 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 18 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 6, + 8, + 604 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 18 + }, + "Id": 7 + }, + { + "AdjacentRoomIds": [ + 9, + 11, + 181 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 18 + }, + "Id": 10 + }, + { + "AdjacentRoomIds": [ + 10, + 677 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 18 + }, + "Id": 11 + }, + { + "AdjacentRoomIds": [ + 1, + 3 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 18 + }, + "Id": 2 + }, + { + "AdjacentRoomIds": [ + 8, + 10, + 181 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 18 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 7, + 9, + 181 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 18 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 557, + 2, + 248 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 18 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 5, + 7, + 606, + 604 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 18 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 2, + 4 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 18 + }, + "Id": 3 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 43 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 1 + }, + "Id": 520 + }, + { + "AdjacentRoomIds": [ + 43, + 611, + 609 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 0 + }, + "Id": 523 + }, + { + "AdjacentRoomIds": [ + 648, + 43 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 4 + }, + "Id": 526 + }, + { + "AdjacentRoomIds": [ + 665, + 12, + 181 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 12 + }, + "Id": 529 + }, + { + "AdjacentRoomIds": [ + 181, + 672, + 668, + 677 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 14 + }, + "Id": 535 + }, + { + "AdjacentRoomIds": [ + 181, + 604 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 15 + }, + "Id": 540 + }, + { + "AdjacentRoomIds": [ + 683, + 248 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 12 + }, + "Id": 545 + }, + { + "AdjacentRoomIds": [ + 248, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 14 + }, + "Id": 548 + }, + { + "AdjacentRoomIds": [ + 248, + 638, + 642 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 14 + }, + "Id": 553 + }, + { + "AdjacentRoomIds": [ + 1, + 248 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 18 + }, + "Id": 557 + }, + { + "AdjacentRoomIds": [ + 358 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 4 + }, + "Id": 562 + }, + { + "AdjacentRoomIds": [ + 12, + 358, + 665 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 10 + }, + "Id": 563 + }, + { + "AdjacentRoomIds": [ + 358, + 669 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 9 + }, + "Id": 571 + }, + { + "AdjacentRoomIds": [ + 648, + 444, + 685 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 6 + }, + "Id": 574 + }, + { + "AdjacentRoomIds": [ + 615, + 444, + 611 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 3 + }, + "Id": 576 + }, + { + "AdjacentRoomIds": [ + 685, + 681, + 444, + 680 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 8 + }, + "Id": 579 + }, + { + "AdjacentRoomIds": [ + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 12 + }, + "Id": 588 + }, + { + "AdjacentRoomIds": [ + 680, + 12, + 681, + 638 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 11 + }, + "Id": 593 + }, + { + "AdjacentRoomIds": [ + 628, + 633, + 12 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 4 + }, + "Id": 599 + }, + { + "AdjacentRoomIds": [ + 606, + 540, + 6, + 7 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 16 + }, + "Id": 604 + }, + { + "AdjacentRoomIds": [ + 604, + 5, + 6 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 16 + }, + "Id": 606 + }, + { + "AdjacentRoomIds": [ + 43, + 611, + 523, + 444 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 2 + }, + "Id": 609 + }, + { + "AdjacentRoomIds": [ + 523, + 612, + 609, + 576 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 1 + }, + "Id": 611 + }, + { + "AdjacentRoomIds": [ + 611, + 615 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 0 + }, + "Id": 612 + }, + { + "AdjacentRoomIds": [ + 622, + 576, + 612, + 619 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 2 + }, + "Id": 615 + }, + { + "AdjacentRoomIds": [ + 628, + 615, + 12, + 622 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 4 + }, + "Id": 619 + }, + { + "AdjacentRoomIds": [ + 615, + 633, + 619, + 628 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 2 + }, + "Id": 622 + }, + { + "AdjacentRoomIds": [ + 619, + 599, + 622, + 12, + 633 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 4 + }, + "Id": 628 + }, + { + "AdjacentRoomIds": [ + 622, + 628, + 599 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 2 + }, + "Id": 633 + }, + { + "AdjacentRoomIds": [ + 553, + 593, + 642 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 13 + }, + "Id": 638 + }, + { + "AdjacentRoomIds": [ + 553, + 646, + 638 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 15 + }, + "Id": 642 + }, + { + "AdjacentRoomIds": [ + 642, + 4 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 16 + }, + "Id": 646 + }, + { + "AdjacentRoomIds": [ + 574, + 526, + 649 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 6 + }, + "Id": 648 + }, + { + "AdjacentRoomIds": [ + 657, + 648, + 654 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 8 + }, + "Id": 649 + }, + { + "AdjacentRoomIds": [ + 657, + 683, + 649, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 10 + }, + "Id": 654 + }, + { + "AdjacentRoomIds": [ + 657, + 548, + 654, + 248 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 12 + }, + "Id": 655 + }, + { + "AdjacentRoomIds": [ + 654, + 649, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 10 + }, + "Id": 657 + }, + { + "AdjacentRoomIds": [ + 529, + 668, + 563, + 181 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 12 + }, + "Id": 665 + }, + { + "AdjacentRoomIds": [ + 665, + 669, + 181, + 535 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 12 + }, + "Id": 668 + }, + { + "AdjacentRoomIds": [ + 668, + 571, + 672 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 11 + }, + "Id": 669 + }, + { + "AdjacentRoomIds": [ + 535, + 669, + 676 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 13 + }, + "Id": 672 + }, + { + "AdjacentRoomIds": [ + 677, + 672 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 15 + }, + "Id": 676 + }, + { + "AdjacentRoomIds": [ + 676, + 535, + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 16 + }, + "Id": 677 + }, + { + "AdjacentRoomIds": [ + 683, + 681, + 593, + 579 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 10 + }, + "Id": 680 + }, + { + "AdjacentRoomIds": [ + 579, + 12, + 680, + 593 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 9 + }, + "Id": 681 + }, + { + "AdjacentRoomIds": [ + 654, + 680, + 685, + 545 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 10 + }, + "Id": 683 + }, + { + "AdjacentRoomIds": [ + 579, + 574, + 683 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 8 + }, + "Id": 685 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 444, + 358, + 681, + 563, + 593, + 619, + 628, + 588, + 599, + 529 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "6" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 12 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(09).json b/Dungeons/dungeon 30x20(09).json new file mode 100644 index 0000000..75ef097 --- /dev/null +++ b/Dungeons/dungeon 30x20(09).json @@ -0,0 +1,1220 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 522, + 657, + 532, + 3, + 519, + 527 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "3" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 4, + "Y": 2 + }, + "Id": 101 + }, + { + "AdjacentRoomIds": [ + 626, + 539, + 536, + 543, + 660 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "3" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 24, + "Y": 15 + }, + "Id": 139 + }, + { + "AdjacentRoomIds": [ + 553, + 548, + 557, + 671 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "11" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 2, + "Y": 16 + }, + "Id": 222 + }, + { + "AdjacentRoomIds": [ + 6, + 564, + 561, + 571 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "=" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 20, + "Y": 0 + }, + "Id": 357 + }, + { + "AdjacentRoomIds": [ + 580, + 577, + 575 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "10" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 21, + "Y": 8 + }, + "Id": 421 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 357, + 5, + 561 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 0 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 1, + 3, + 522 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 0 + }, + "Id": 2 + }, + { + "AdjacentRoomIds": [ + 688, + 8, + 689 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 18 + }, + "Id": 7 + }, + { + "AdjacentRoomIds": [ + 2, + 101 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 0 + }, + "Id": 3 + }, + { + "AdjacentRoomIds": [ + 5, + 695 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 0 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 7, + 9 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 18 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 2 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 0 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 6, + 4 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 0 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 8, + 632 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 18 + }, + "Id": 9 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 101, + 607, + 676 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 6 + }, + "Id": 519 + }, + { + "AdjacentRoomIds": [ + 101, + 2 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 2 + }, + "Id": 522 + }, + { + "AdjacentRoomIds": [ + 101 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 0 + }, + "Id": 527 + }, + { + "AdjacentRoomIds": [ + 101, + 10, + 657 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 5 + }, + "Id": 532 + }, + { + "AdjacentRoomIds": [ + 625, + 139, + 630, + 626 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 17 + }, + "Id": 536 + }, + { + "AdjacentRoomIds": [ + 139 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 15 + }, + "Id": 539 + }, + { + "AdjacentRoomIds": [ + 660, + 626, + 139 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 13 + }, + "Id": 543 + }, + { + "AdjacentRoomIds": [ + 671, + 678, + 222, + 682 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 15 + }, + "Id": 548 + }, + { + "AdjacentRoomIds": [ + 222 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 16 + }, + "Id": 553 + }, + { + "AdjacentRoomIds": [ + 619, + 671, + 613, + 222 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 14 + }, + "Id": 557 + }, + { + "AdjacentRoomIds": [ + 357, + 694, + 6, + 571 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 2 + }, + "Id": 561 + }, + { + "AdjacentRoomIds": [ + 646, + 357 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 1 + }, + "Id": 564 + }, + { + "AdjacentRoomIds": [ + 357, + 575, + 561 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 4 + }, + "Id": 571 + }, + { + "AdjacentRoomIds": [ + 571, + 421 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 6 + }, + "Id": 575 + }, + { + "AdjacentRoomIds": [ + 593, + 622, + 421 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 12 + }, + "Id": 577 + }, + { + "AdjacentRoomIds": [ + 421, + 663, + 668 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 8 + }, + "Id": 580 + }, + { + "AdjacentRoomIds": [ + 577, + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 12 + }, + "Id": 593 + }, + { + "AdjacentRoomIds": [ + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 4 + }, + "Id": 601 + }, + { + "AdjacentRoomIds": [ + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 5 + }, + "Id": 605 + }, + { + "AdjacentRoomIds": [ + 676, + 610, + 519 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 8 + }, + "Id": 607 + }, + { + "AdjacentRoomIds": [ + 613, + 607 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 10 + }, + "Id": 610 + }, + { + "AdjacentRoomIds": [ + 616, + 619, + 557, + 610 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 12 + }, + "Id": 613 + }, + { + "AdjacentRoomIds": [ + 613, + 619 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 11 + }, + "Id": 616 + }, + { + "AdjacentRoomIds": [ + 613, + 557, + 616 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 13 + }, + "Id": 619 + }, + { + "AdjacentRoomIds": [ + 626, + 577, + 625 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 14 + }, + "Id": 622 + }, + { + "AdjacentRoomIds": [ + 634, + 626, + 536, + 622, + 630 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 16 + }, + "Id": 625 + }, + { + "AdjacentRoomIds": [ + 622, + 139, + 625, + 536, + 543 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 15 + }, + "Id": 626 + }, + { + "AdjacentRoomIds": [ + 632, + 536, + 625 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 18 + }, + "Id": 630 + }, + { + "AdjacentRoomIds": [ + 9, + 630, + 634 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 18 + }, + "Id": 632 + }, + { + "AdjacentRoomIds": [ + 637, + 625, + 632 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 16 + }, + "Id": 634 + }, + { + "AdjacentRoomIds": [ + 640, + 634 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 15 + }, + "Id": 637 + }, + { + "AdjacentRoomIds": [ + 637, + 689 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 15 + }, + "Id": 640 + }, + { + "AdjacentRoomIds": [ + 648, + 564 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 1 + }, + "Id": 646 + }, + { + "AdjacentRoomIds": [ + 652, + 646 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 0 + }, + "Id": 648 + }, + { + "AdjacentRoomIds": [ + 648, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 1 + }, + "Id": 652 + }, + { + "AdjacentRoomIds": [ + 652, + 657 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 2 + }, + "Id": 655 + }, + { + "AdjacentRoomIds": [ + 101, + 655, + 532 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 3 + }, + "Id": 657 + }, + { + "AdjacentRoomIds": [ + 543, + 139, + 662 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 13 + }, + "Id": 660 + }, + { + "AdjacentRoomIds": [ + 660, + 663 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 11 + }, + "Id": 662 + }, + { + "AdjacentRoomIds": [ + 580, + 662, + 667 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 9 + }, + "Id": 663 + }, + { + "AdjacentRoomIds": [ + 668, + 663 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 7 + }, + "Id": 667 + }, + { + "AdjacentRoomIds": [ + 667, + 580 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 6 + }, + "Id": 668 + }, + { + "AdjacentRoomIds": [ + 557, + 548, + 222, + 673 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 14 + }, + "Id": 671 + }, + { + "AdjacentRoomIds": [ + 671, + 675 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 12 + }, + "Id": 673 + }, + { + "AdjacentRoomIds": [ + 676, + 673 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 10 + }, + "Id": 675 + }, + { + "AdjacentRoomIds": [ + 607, + 519, + 675 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 8 + }, + "Id": 676 + }, + { + "AdjacentRoomIds": [ + 548, + 684, + 682 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 14 + }, + "Id": 678 + }, + { + "AdjacentRoomIds": [ + 548, + 684, + 688, + 678 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 16 + }, + "Id": 682 + }, + { + "AdjacentRoomIds": [ + 678, + 682, + 689, + 688 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 15 + }, + "Id": 684 + }, + { + "AdjacentRoomIds": [ + 682, + 689, + 7, + 684 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 17 + }, + "Id": 688 + }, + { + "AdjacentRoomIds": [ + 684, + 640, + 688, + 7 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 16 + }, + "Id": 689 + }, + { + "AdjacentRoomIds": [ + 561, + 695 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 3 + }, + "Id": 694 + }, + { + "AdjacentRoomIds": [ + 694, + 4 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 2 + }, + "Id": 695 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 532, + 605, + 601, + 593 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "9" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 10 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(10).json b/Dungeons/dungeon 30x20(10).json new file mode 100644 index 0000000..d8fee98 --- /dev/null +++ b/Dungeons/dungeon 30x20(10).json @@ -0,0 +1,1193 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 518, + 528, + 522 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "7" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 2, + "Y": 0 + }, + "Id": 79 + }, + { + "AdjacentRoomIds": [ + 533, + 539 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "7" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 25, + "Y": 16 + }, + "Id": 140 + }, + { + "AdjacentRoomIds": [ + 548, + 5, + 11, + 544, + 542 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "8" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 19, + "Y": 2 + }, + "Id": 218 + }, + { + "AdjacentRoomIds": [ + 557, + 550, + 6, + 553, + 650 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "9" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 6, + "Y": 16 + }, + "Id": 383 + }, + { + "AdjacentRoomIds": [ + 566, + 562, + 570, + 8, + 9, + 612, + 10 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "9" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 15, + "Y": 14 + }, + "Id": 430 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 7, + 9, + 430 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 18 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 383, + 7, + 550 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 18 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 685, + 2 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 0 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 3, + 5 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 0 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 6, + 8, + 627 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 18 + }, + "Id": 7 + }, + { + "AdjacentRoomIds": [ + 2, + 4, + 618 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 0 + }, + "Id": 3 + }, + { + "AdjacentRoomIds": [ + 9, + 430 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 18 + }, + "Id": 10 + }, + { + "AdjacentRoomIds": [ + 8, + 10, + 430 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 18 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 4, + 218 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 0 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 1, + 3, + 618 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 0 + }, + "Id": 2 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 79 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 0 + }, + "Id": 518 + }, + { + "AdjacentRoomIds": [ + 79, + 631 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 4 + }, + "Id": 522 + }, + { + "AdjacentRoomIds": [ + 79, + 685 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 1 + }, + "Id": 528 + }, + { + "AdjacentRoomIds": [ + 601, + 140, + 604 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 17 + }, + "Id": 533 + }, + { + "AdjacentRoomIds": [ + 688, + 140 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 14 + }, + "Id": 539 + }, + { + "AdjacentRoomIds": [ + 218 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 0 + }, + "Id": 542 + }, + { + "AdjacentRoomIds": [ + 653, + 218, + 574, + 652 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 6 + }, + "Id": 544 + }, + { + "AdjacentRoomIds": [ + 616, + 218, + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 4 + }, + "Id": 548 + }, + { + "AdjacentRoomIds": [ + 383, + 627, + 650, + 6, + 626 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 16 + }, + "Id": 550 + }, + { + "AdjacentRoomIds": [ + 650, + 383, + 649 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 14 + }, + "Id": 553 + }, + { + "AdjacentRoomIds": [ + 383 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 16 + }, + "Id": 557 + }, + { + "AdjacentRoomIds": [ + 430 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 15 + }, + "Id": 562 + }, + { + "AdjacentRoomIds": [ + 626, + 430, + 627 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 14 + }, + "Id": 566 + }, + { + "AdjacentRoomIds": [ + 612, + 11, + 430 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 12 + }, + "Id": 570 + }, + { + "AdjacentRoomIds": [ + 11, + 652, + 697, + 544 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 8 + }, + "Id": 574 + }, + { + "AdjacentRoomIds": [ + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "12" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 8 + }, + "Id": 581 + }, + { + "AdjacentRoomIds": [ + 621, + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 4 + }, + "Id": 587 + }, + { + "AdjacentRoomIds": [ + 649, + 11, + 650, + 626 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 12 + }, + "Id": 593 + }, + { + "AdjacentRoomIds": [ + 533, + 604 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 17 + }, + "Id": 601 + }, + { + "AdjacentRoomIds": [ + 605, + 601, + 533 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 15 + }, + "Id": 604 + }, + { + "AdjacentRoomIds": [ + 610, + 604 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 13 + }, + "Id": 605 + }, + { + "AdjacentRoomIds": [ + 612, + 605, + 11, + 697 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 12 + }, + "Id": 610 + }, + { + "AdjacentRoomIds": [ + 570, + 610, + 11, + 430 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 12 + }, + "Id": 612 + }, + { + "AdjacentRoomIds": [ + 618, + 621, + 548 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 3 + }, + "Id": 616 + }, + { + "AdjacentRoomIds": [ + 616, + 2, + 621, + 3 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 2 + }, + "Id": 618 + }, + { + "AdjacentRoomIds": [ + 587, + 616, + 618, + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 4 + }, + "Id": 621 + }, + { + "AdjacentRoomIds": [ + 650, + 566, + 593, + 550, + 627 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 14 + }, + "Id": 626 + }, + { + "AdjacentRoomIds": [ + 550, + 626, + 7, + 566 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 16 + }, + "Id": 627 + }, + { + "AdjacentRoomIds": [ + 522, + 633 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 6 + }, + "Id": 631 + }, + { + "AdjacentRoomIds": [ + 631, + 637 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 8 + }, + "Id": 633 + }, + { + "AdjacentRoomIds": [ + 633, + 638, + 642 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 10 + }, + "Id": 637 + }, + { + "AdjacentRoomIds": [ + 642, + 637 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 2, + "Y": 12 + }, + "Id": 638 + }, + { + "AdjacentRoomIds": [ + 638, + 644, + 637 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 12 + }, + "Id": 642 + }, + { + "AdjacentRoomIds": [ + 642, + 649 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 11 + }, + "Id": 644 + }, + { + "AdjacentRoomIds": [ + 644, + 593, + 553, + 650 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 12 + }, + "Id": 649 + }, + { + "AdjacentRoomIds": [ + 553, + 626, + 649, + 383, + 593, + 550 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 14 + }, + "Id": 650 + }, + { + "AdjacentRoomIds": [ + 574, + 656, + 544, + 695, + 653 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 8 + }, + "Id": 652 + }, + { + "AdjacentRoomIds": [ + 544, + 661, + 652, + 656 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 6 + }, + "Id": 653 + }, + { + "AdjacentRoomIds": [ + 652, + 667, + 653, + 693, + 661 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 8 + }, + "Id": 656 + }, + { + "AdjacentRoomIds": [ + 653, + 673, + 656, + 667 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 6 + }, + "Id": 661 + }, + { + "AdjacentRoomIds": [ + 656, + 679, + 661, + 690, + 673 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 8 + }, + "Id": 667 + }, + { + "AdjacentRoomIds": [ + 661, + 667, + 679 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 6 + }, + "Id": 673 + }, + { + "AdjacentRoomIds": [ + 667, + 673 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 8 + }, + "Id": 679 + }, + { + "AdjacentRoomIds": [ + 1, + 528 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 0 + }, + "Id": 685 + }, + { + "AdjacentRoomIds": [ + 690, + 539 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 12 + }, + "Id": 688 + }, + { + "AdjacentRoomIds": [ + 693, + 667, + 688 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 10 + }, + "Id": 690 + }, + { + "AdjacentRoomIds": [ + 695, + 690, + 656 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 10 + }, + "Id": 693 + }, + { + "AdjacentRoomIds": [ + 697, + 693, + 652 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 22, + "Y": 10 + }, + "Id": 695 + }, + { + "AdjacentRoomIds": [ + 11, + 695, + 574, + 610 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 10 + }, + "Id": 697 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 581, + 574, + 697, + 593, + 587, + 621, + 570, + 548, + 612, + 218, + 610 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "4" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 11 + } +} \ No newline at end of file diff --git a/Dungeons/dungeon 30x20(11).json b/Dungeons/dungeon 30x20(11).json new file mode 100644 index 0000000..1c828ec --- /dev/null +++ b/Dungeons/dungeon 30x20(11).json @@ -0,0 +1,1138 @@ +{ + "Width": 30, + "Height": 20, + "MonsterRooms": [ + { + "AdjacentRoomIds": [ + 526, + 527, + 519, + 681 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "6" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 0, + "Y": 3 + }, + "Id": 14 + }, + { + "AdjacentRoomIds": [ + 532, + 635, + 536, + 542 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "4" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 21, + "Y": 13 + }, + "Id": 119 + }, + { + "AdjacentRoomIds": [ + 546, + 580, + 652, + 553, + 660, + 555 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "7" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 5, + "Y": 15 + }, + "Id": 217 + }, + { + "AdjacentRoomIds": [ + 564, + 572, + 560, + 11 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "4" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 17, + "Y": 2 + }, + "Id": 323 + }, + { + "AdjacentRoomIds": [ + 590, + 666, + 580, + 583, + 11, + 615, + 575 + ], + "TypeOfRoom": "Monster", + "Lock": { + "LockType": "7" + }, + "Height": 4, + "Width": 4, + "PositionOfTopLeft": { + "X": 11, + "Y": 12 + }, + "Id": 436 + } + ], + "EntranceRooms": [ + { + "AdjacentRoomIds": [ + 1, + 3 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 7 + }, + "Id": 2 + }, + { + "AdjacentRoomIds": [ + 2, + 4 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 9 + }, + "Id": 3 + }, + { + "AdjacentRoomIds": [ + 3, + 5 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 11 + }, + "Id": 4 + }, + { + "AdjacentRoomIds": [ + 627, + 630, + 2 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 5 + }, + "Id": 1 + }, + { + "AdjacentRoomIds": [ + 8, + 10, + 638 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 16, + "Y": 18 + }, + "Id": 9 + }, + { + "AdjacentRoomIds": [ + 9, + 638 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 18, + "Y": 18 + }, + "Id": 10 + }, + { + "AdjacentRoomIds": [ + 7, + 9, + 575 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 14, + "Y": 18 + }, + "Id": 8 + }, + { + "AdjacentRoomIds": [ + 7, + 553, + 615 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 10, + "Y": 18 + }, + "Id": 6 + }, + { + "AdjacentRoomIds": [ + 4 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 28, + "Y": 13 + }, + "Id": 5 + }, + { + "AdjacentRoomIds": [ + 6, + 8, + 615, + 575 + ], + "TypeOfRoom": "Entrance", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 12, + "Y": 18 + }, + "Id": 7 + } + ], + "NormalRooms": [ + { + "AdjacentRoomIds": [ + 681, + 14 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 1 + }, + "Id": 519 + }, + { + "AdjacentRoomIds": [ + 14, + 610 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 4, + "Y": 6 + }, + "Id": 526 + }, + { + "AdjacentRoomIds": [ + 14, + 643 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 7 + }, + "Id": 527 + }, + { + "AdjacentRoomIds": [ + 665, + 119, + 633, + 635, + 536 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 13 + }, + "Id": 532 + }, + { + "AdjacentRoomIds": [ + 11, + 589, + 532, + 119 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 11 + }, + "Id": 536 + }, + { + "AdjacentRoomIds": [ + 119 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 17 + }, + "Id": 542 + }, + { + "AdjacentRoomIds": [ + 555, + 651, + 217, + 652 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 14 + }, + "Id": 546 + }, + { + "AdjacentRoomIds": [ + 217, + 615, + 580, + 6 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 16 + }, + "Id": 553 + }, + { + "AdjacentRoomIds": [ + 606, + 546, + 603, + 217 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 13 + }, + "Id": 555 + }, + { + "AdjacentRoomIds": [ + 323 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "2" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 0 + }, + "Id": 560 + }, + { + "AdjacentRoomIds": [ + 323, + 618 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 21, + "Y": 1 + }, + "Id": 564 + }, + { + "AdjacentRoomIds": [ + 667, + 323, + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 4 + }, + "Id": 572 + }, + { + "AdjacentRoomIds": [ + 615, + 436, + 7, + 8 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 16 + }, + "Id": 575 + }, + { + "AdjacentRoomIds": [ + 436, + 217, + 590, + 553 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 14 + }, + "Id": 580 + }, + { + "AdjacentRoomIds": [ + 436, + 633, + 666 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 14 + }, + "Id": 583 + }, + { + "AdjacentRoomIds": [ + 11, + 536 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 20, + "Y": 9 + }, + "Id": 589 + }, + { + "AdjacentRoomIds": [ + 606, + 436, + 580, + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 12 + }, + "Id": 590 + }, + { + "AdjacentRoomIds": [ + 612, + 11 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "11" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 8, + "Y": 9 + }, + "Id": 598 + }, + { + "AdjacentRoomIds": [ + 606, + 555, + 612 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "3" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 11 + }, + "Id": 603 + }, + { + "AdjacentRoomIds": [ + 603, + 590, + 555 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 12 + }, + "Id": 606 + }, + { + "AdjacentRoomIds": [ + 526, + 612 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 7 + }, + "Id": 610 + }, + { + "AdjacentRoomIds": [ + 598, + 610, + 603 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 6, + "Y": 9 + }, + "Id": 612 + }, + { + "AdjacentRoomIds": [ + 553, + 575, + 436, + 6, + 7 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 16 + }, + "Id": 615 + }, + { + "AdjacentRoomIds": [ + 564, + 620, + 622 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 23, + "Y": 2 + }, + "Id": 618 + }, + { + "AdjacentRoomIds": [ + 618, + 630, + 622 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 25, + "Y": 2 + }, + "Id": 620 + }, + { + "AdjacentRoomIds": [ + 627, + 618, + 620 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 24, + "Y": 4 + }, + "Id": 622 + }, + { + "AdjacentRoomIds": [ + 622, + 1, + 630 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 26, + "Y": 5 + }, + "Id": 627 + }, + { + "AdjacentRoomIds": [ + 620, + 627, + 1 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 27, + "Y": 3 + }, + "Id": 630 + }, + { + "AdjacentRoomIds": [ + 583, + 532, + 635, + 665, + 638 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 14 + }, + "Id": 633 + }, + { + "AdjacentRoomIds": [ + 633, + 119, + 638, + 532 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 19, + "Y": 15 + }, + "Id": 635 + }, + { + "AdjacentRoomIds": [ + 635, + 633, + 9, + 10 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 16 + }, + "Id": 638 + }, + { + "AdjacentRoomIds": [ + 527, + 646 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "=" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 9 + }, + "Id": 643 + }, + { + "AdjacentRoomIds": [ + 643, + 647 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "5" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 11 + }, + "Id": 646 + }, + { + "AdjacentRoomIds": [ + 646, + 651 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 0, + "Y": 13 + }, + "Id": 647 + }, + { + "AdjacentRoomIds": [ + 546, + 652, + 647, + 655 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 15 + }, + "Id": 651 + }, + { + "AdjacentRoomIds": [ + 651, + 217, + 655, + 546, + 660 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 16 + }, + "Id": 652 + }, + { + "AdjacentRoomIds": [ + 652, + 660, + 651 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 1, + "Y": 17 + }, + "Id": 655 + }, + { + "AdjacentRoomIds": [ + 655, + 217, + 652 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 18 + }, + "Id": 660 + }, + { + "AdjacentRoomIds": [ + 666, + 532, + 11, + 633 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 17, + "Y": 12 + }, + "Id": 665 + }, + { + "AdjacentRoomIds": [ + 436, + 665, + 11, + 583 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "10" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 15, + "Y": 12 + }, + "Id": 666 + }, + { + "AdjacentRoomIds": [ + 669, + 572 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "4" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 13, + "Y": 3 + }, + "Id": 667 + }, + { + "AdjacentRoomIds": [ + 672, + 667 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "9" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 11, + "Y": 2 + }, + "Id": 669 + }, + { + "AdjacentRoomIds": [ + 675, + 669 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 9, + "Y": 1 + }, + "Id": 672 + }, + { + "AdjacentRoomIds": [ + 679, + 672 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "6" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 7, + "Y": 0 + }, + "Id": 675 + }, + { + "AdjacentRoomIds": [ + 681, + 675 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "7" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 5, + "Y": 1 + }, + "Id": 679 + }, + { + "AdjacentRoomIds": [ + 519, + 679, + 14 + ], + "TypeOfRoom": "Normal", + "Lock": { + "LockType": "8" + }, + "Height": 2, + "Width": 2, + "PositionOfTopLeft": { + "X": 3, + "Y": 1 + }, + "Id": 681 + } + ], + "BossRoom": { + "AdjacentRoomIds": [ + 598, + 589, + 536, + 590, + 436, + 572, + 666, + 323, + 665 + ], + "TypeOfRoom": "Boss", + "Lock": { + "LockType": "4" + }, + "Height": 6, + "Width": 10, + "PositionOfTopLeft": { + "X": 10, + "Y": 6 + }, + "Id": 11 + } +} \ No newline at end of file diff --git a/PuzzleGameProject/Assets/Scenes/LooksLikeItCouldBeGood.unity b/PuzzleGameProject/Assets/Scenes/LooksLikeItCouldBeGood.unity new file mode 100644 index 0000000..b5d6182 --- /dev/null +++ b/PuzzleGameProject/Assets/Scenes/LooksLikeItCouldBeGood.unity @@ -0,0 +1,10102 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 1 + m_PVRFilteringGaussRadiusAO: 1 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &27283139 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 27283140} + - component: {fileID: 27283141} + m_Layer: 0 + m_Name: StartingBlackDieAbility + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &27283140 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 27283139} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -57.19168, y: -132.5, z: -3.3417058} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 534537517} + - {fileID: 1948928675} + - {fileID: 704888142} + - {fileID: 2078984185} + m_Father: {fileID: 801256675} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &27283141 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 27283139} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 79af16baa8fbe4744817b63d2b6f2007, type: 3} + m_Name: + m_EditorClassIdentifier: + abilityUseOne: {fileID: 534537518} + abilityUseTwo: {fileID: 1948928676} + abilityUseThree: {fileID: 704888143} +--- !u!1 &37414490 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 37414491} + - component: {fileID: 37414492} + m_Layer: 0 + m_Name: BlackDieAbility + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &37414491 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 37414490} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -57.19168, y: -64.1, z: -3.3417058} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1333995206} + - {fileID: 1775902215} + - {fileID: 1577335135} + - {fileID: 365296037} + m_Father: {fileID: 801256675} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &37414492 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 37414490} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 04241db9fdb62a147acac6895a47db06, type: 3} + m_Name: + m_EditorClassIdentifier: + abilityUseOne: {fileID: 1333995207} + abilityUseTwo: {fileID: 1775902216} + abilityUseThree: {fileID: 1577335136} +--- !u!1001 &49064126 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 822261218} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1396914260} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1503166512} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &80609031 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 331488502} + m_PrefabAsset: {fileID: 0} +--- !u!114 &80609032 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 80609031} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 6 +--- !u!4 &80609038 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 331488502} + m_PrefabAsset: {fileID: 0} +--- !u!1 &95627855 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1440793723} + m_PrefabAsset: {fileID: 0} +--- !u!114 &95627856 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 95627855} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &95627862 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1440793723} + m_PrefabAsset: {fileID: 0} +--- !u!1 &106574081 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 2025991242} + m_PrefabAsset: {fileID: 0} +--- !u!114 &106574082 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 106574081} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &106574088 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 2025991242} + m_PrefabAsset: {fileID: 0} +--- !u!1 &114017720 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 124082160} + m_PrefabAsset: {fileID: 0} +--- !u!114 &114017721 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 114017720} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &114017727 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 124082160} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &124082160 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 837544816} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 518515969} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1471218072} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 95627855} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 114017721} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &137188443 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 819713208} + m_PrefabAsset: {fileID: 0} +--- !u!114 &137188444 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 137188443} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &137188450 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 819713208} + m_PrefabAsset: {fileID: 0} +--- !u!1 &155650673 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 393457346} + m_PrefabAsset: {fileID: 0} +--- !u!114 &155650674 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 155650673} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 3 +--- !u!4 &155650680 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 393457346} + m_PrefabAsset: {fileID: 0} +--- !u!1 &156879598 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 486607276} + m_PrefabAsset: {fileID: 0} +--- !u!114 &156879599 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 156879598} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 7 +--- !u!4 &156879605 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 486607276} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &190153524 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1441658031} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 2037381803} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1937619455} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -6.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1155785795} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &191457250 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1350215595} + m_PrefabAsset: {fileID: 0} +--- !u!114 &191457251 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 191457250} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &191457257 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1350215595} + m_PrefabAsset: {fileID: 0} +--- !u!1 &196328906 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1936899068} + m_PrefabAsset: {fileID: 0} +--- !u!114 &196328907 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 196328906} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &196328913 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1936899068} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &211626630 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 336514226} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 114017720} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1471218073} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &231309885 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1700110557} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 336890587} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1503166511} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1498967892} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1396914261} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &253101413 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1574457939} + m_PrefabAsset: {fileID: 0} +--- !u!114 &253101414 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 253101413} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 11 +--- !u!4 &253101420 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1574457939} + m_PrefabAsset: {fileID: 0} +--- !u!1 &261250900 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1024016174} + m_PrefabAsset: {fileID: 0} +--- !u!114 &261250901 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 261250900} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &261250907 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1024016174} + m_PrefabAsset: {fileID: 0} +--- !u!1 &271950131 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1777887365} + m_PrefabAsset: {fileID: 0} +--- !u!114 &271950132 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271950131} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 7 +--- !u!4 &271950138 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1777887365} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &285095336 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 966306750} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1916122899} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1707502360} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 992764452} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &293229712 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 394386056} + m_PrefabAsset: {fileID: 0} +--- !u!114 &293229713 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 293229712} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 2 +--- !u!4 &293229719 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 394386056} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &310586900 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 95627855} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1238087150} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 837544816} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[4]' + value: + objectReference: {fileID: 1122289064} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1791921249} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &323570087 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 323570089} + - component: {fileID: 323570088} + m_Layer: 0 + m_Name: UIManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &323570088 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 323570087} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a277ce4246f154447a52f88a6c9937e0, type: 3} + m_Name: + m_EditorClassIdentifier: + canvas: {fileID: 1353551473} + chestRewardSelectionUI: {fileID: 6007503688929917977, guid: 2d3967bed0790c44c88fabab60350749, type: 3} +--- !u!4 &323570089 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 323570087} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 877.48254, y: 545.2116, z: -1.9109683} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &331488502 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_Name + value: MonsterRoom + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 702961432} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1182543164} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 261250900} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1014671923} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[4]' + value: + objectReference: {fileID: 1835327815} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.x + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + insertIndex: -1 + addedObject: {fileID: 80609032} + m_SourcePrefab: {fileID: 100100000, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} +--- !u!1 &336514226 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1594750066} + m_PrefabAsset: {fileID: 0} +--- !u!114 &336514227 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 336514226} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 8 +--- !u!4 &336514233 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1594750066} + m_PrefabAsset: {fileID: 0} +--- !u!1 &336890587 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1200513882} + m_PrefabAsset: {fileID: 0} +--- !u!114 &336890588 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 336890587} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &336890594 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1200513882} + m_PrefabAsset: {fileID: 0} +--- !u!1 &365296036 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 365296037} + - component: {fileID: 365296039} + - component: {fileID: 365296038} + m_Layer: 0 + m_Name: AbilityText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &365296037 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 365296036} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 3.3417058} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 37414491} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 56.7, y: 32.3} + m_SizeDelta: {x: 103.5541, y: 24.1728} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &365296038 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 365296036} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Black Dice + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 21.8 + m_fontSizeBase: 21.8 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &365296039 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 365296036} + m_CullTransparentMesh: 1 +--- !u!1001 &377955553 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1937619455} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1607637623} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1366609343} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1770463459} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 2060217365} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &379942240 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 379942241} + m_Layer: 5 + m_Name: Dice + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &379942241 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 379942240} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1180479346} + - {fileID: 600536636} + - {fileID: 1973998406} + - {fileID: 1287376635} + - {fileID: 864735005} + m_Father: {fileID: 1353551474} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 346.18, y: -247} + m_SizeDelta: {x: 150.14001, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &386902758 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 386902761} + - component: {fileID: 386902759} + - component: {fileID: 386902760} + m_Layer: 0 + m_Name: Player + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &386902759 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 386902758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 516f63f4d32b3614b92fb0535c742078, type: 3} + m_Name: + m_EditorClassIdentifier: + maxHealth: 20 + healthGameObject: {fileID: 1728296560} +--- !u!114 &386902760 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 386902758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01621b291be214dc6bf7ab90a7cb0d79, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &386902761 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 386902758} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 1014.4642, y: 342.2176, z: 6.637133} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &393457346 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 293229712} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 253101413} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1751513135} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 155650674} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &394386056 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1339472624} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 155650673} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1415918689} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -2 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 293229713} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &483623968 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1707502360} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 754036110} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1859659483} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1686367316} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &486607276 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1858048563} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 568664532} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1883102600} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 5.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -2 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 156879599} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &518515969 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 647254775} + m_PrefabAsset: {fileID: 0} +--- !u!114 &518515970 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 518515969} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 8 +--- !u!4 &518515976 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 647254775} + m_PrefabAsset: {fileID: 0} +--- !u!1 &520191493 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 520191494} + - component: {fileID: 520191496} + - component: {fileID: 520191495} + m_Layer: 0 + m_Name: AbilityText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &520191494 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520191493} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1015377332} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -1.7771, y: 3.0979633} + m_SizeDelta: {x: 103.5541, y: 24.1728} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &520191495 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520191493} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Torch + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 21.8 + m_fontSizeBase: 21.8 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &520191496 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520191493} + m_CullTransparentMesh: 1 +--- !u!1 &523227394 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1131748020} + m_PrefabAsset: {fileID: 0} +--- !u!114 &523227395 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 523227394} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 2 +--- !u!4 &523227401 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1131748020} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &534537516 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 27283140} + m_Modifications: + - target: {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Colors.m_ColorMultiplier + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Colors.m_DisabledColor.b + value: 0.7924528 + objectReference: {fileID: 0} + - target: {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Colors.m_DisabledColor.g + value: 0.7924528 + objectReference: {fileID: 0} + - target: {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Colors.m_DisabledColor.r + value: 0.7924528 + objectReference: {fileID: 0} + - target: {fileID: 1648245930821754079, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Interactable + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Name + value: BlackDieAbility 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.z + value: 1.1596711 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20.622864 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 1.5364685 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} +--- !u!224 &534537517 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 534537516} + m_PrefabAsset: {fileID: 0} +--- !u!1 &534537518 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 534537516} + m_PrefabAsset: {fileID: 0} +--- !u!1 &568664532 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1329635769} + m_PrefabAsset: {fileID: 0} +--- !u!114 &568664533 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 568664532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &568664539 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1329635769} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &600536635 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 379942241} + m_Modifications: + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMax.x + value: 0.7102522 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMin.y + value: 0.172 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_SizeDelta.x + value: -1.4297638 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_SizeDelta.y + value: 20.031998 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchoredPosition.x + value: 14.215088 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchoredPosition.y + value: 4.8539734 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7874367151511621086, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Name + value: White Die (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} +--- !u!224 &600536636 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + m_PrefabInstance: {fileID: 600536635} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &609885843 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1117416201} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1014671923} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1155785794} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -6 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 2037381804} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &647254775 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 114017720} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1835327815} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 336514226} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -2 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 518515970} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &653478652 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_Name + value: MonsterRoom + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1858048563} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1635393090} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1700110557} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1609483967} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[4]' + value: + objectReference: {fileID: 1396914260} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[5]' + value: + objectReference: {fileID: 1150515057} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[6]' + value: + objectReference: {fileID: 336890587} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[7]' + value: + objectReference: {fileID: 709588791} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.y + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + insertIndex: -1 + addedObject: {fileID: 1498967893} + m_SourcePrefab: {fileID: 100100000, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} +--- !u!1001 &666426345 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_Name + value: MonsterRoom + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1100508978} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1503166511} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 523227394} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.x + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + insertIndex: -1 + addedObject: {fileID: 822261219} + m_SourcePrefab: {fileID: 100100000, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} +--- !u!1 &702961432 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1568888051} + m_PrefabAsset: {fileID: 0} +--- !u!114 &702961433 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 702961432} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 7 +--- !u!4 &702961439 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1568888051} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &704888141 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 27283140} + m_Modifications: + - target: {fileID: 1648245930821754079, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Interactable + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Name + value: BlackDieAbility 3 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.z + value: 3.3417058 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 94.62286 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 2.0364685 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} +--- !u!224 &704888142 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 704888141} + m_PrefabAsset: {fileID: 0} +--- !u!1 &704888143 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 704888141} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &706419355 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1883102600} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1858048563} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1669129430} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 716078111} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &709588791 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1975845598} + m_PrefabAsset: {fileID: 0} +--- !u!114 &709588792 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 709588791} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 5 +--- !u!4 &709588798 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1975845598} + m_PrefabAsset: {fileID: 0} +--- !u!1 &716078110 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 706419355} + m_PrefabAsset: {fileID: 0} +--- !u!114 &716078111 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 716078110} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &716078117 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 706419355} + m_PrefabAsset: {fileID: 0} +--- !u!1 &716093248 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 716093249} + m_Layer: 0 + m_Name: Rooms + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &716093249 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 716093248} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -5.563501, y: 1.9766169, z: 0.0070788427} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &733480119 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1015377332} + m_Modifications: + - target: {fileID: 6167039396952026974, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_Name + value: TorchUseTwo + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20.2 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchoredPosition.y + value: -26.012 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} +--- !u!224 &733480120 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + m_PrefabInstance: {fileID: 733480119} + m_PrefabAsset: {fileID: 0} +--- !u!1 &733480121 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6167039396952026974, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + m_PrefabInstance: {fileID: 733480119} + m_PrefabAsset: {fileID: 0} +--- !u!1 &748138895 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 748138896} + m_Layer: 0 + m_Name: Abilities + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &748138896 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 748138895} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 217.57709, y: 11.303192, z: 2.1820347} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 801256675} + m_Father: {fileID: 1353551474} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &754036110 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1365059289} + m_PrefabAsset: {fileID: 0} +--- !u!114 &754036111 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 754036110} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 7 +--- !u!4 &754036117 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1365059289} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &790638097 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1859659483} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 293229712} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -2 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1415918690} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &801256674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 801256675} + - component: {fileID: 801256677} + - component: {fileID: 801256676} + m_Layer: 0 + m_Name: AbilityPanel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &801256675 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801256674} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 37414491} + - {fileID: 27283140} + - {fileID: 1015377332} + m_Father: {fileID: 748138896} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 144.56882, y: 94.07434} + m_SizeDelta: {x: 115.6624, y: 306.029} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &801256676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801256674} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.392} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &801256677 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801256674} + m_CullTransparentMesh: 1 +--- !u!1001 &819713208 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1607637623} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 106574081} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 754036110} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 137188444} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &822261218 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 666426345} + m_PrefabAsset: {fileID: 0} +--- !u!114 &822261219 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 822261218} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &822261225 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 666426345} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &828813982 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 837544816} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1791921248} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1238087150} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1122289065} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &835229519 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_Name + value: MonsterRoom + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 191457250} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1686367315} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1731616339} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 966306750} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[4]' + value: + objectReference: {fileID: 1770463459} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[5]' + value: + objectReference: {fileID: 992764451} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.x + value: -5.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.y + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + insertIndex: -1 + addedObject: {fileID: 1707502361} + m_SourcePrefab: {fileID: 100100000, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} +--- !u!1 &837544816 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1368817179} + m_PrefabAsset: {fileID: 0} +--- !u!114 &837544817 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 837544816} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &837544823 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1368817179} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &854319667 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1441658031} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 191457250} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1937619455} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1707502360} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -6.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1731616340} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &864735004 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 379942241} + m_Modifications: + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_AnchoredPosition.x + value: -60.07007 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6156510816236760012, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_Color.b + value: 0.27450982 + objectReference: {fileID: 0} + - target: {fileID: 6156510816236760012, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_Color.g + value: 0.27450982 + objectReference: {fileID: 0} + - target: {fileID: 6156510816236760012, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_Color.r + value: 0.27450982 + objectReference: {fileID: 0} + - target: {fileID: 7735920291706219313, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_fontColor.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7735920291706219313, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_fontColor.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7735920291706219313, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_fontColor.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7735920291706219313, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_fontColor32.rgba + value: 4294967295 + objectReference: {fileID: 0} + - target: {fileID: 7874367151511621086, guid: de405f9dca058480ab9e8433965408b2, type: 3} + propertyPath: m_Name + value: Black Die + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: de405f9dca058480ab9e8433965408b2, type: 3} +--- !u!224 &864735005 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1556923700715053098, guid: de405f9dca058480ab9e8433965408b2, type: 3} + m_PrefabInstance: {fileID: 864735004} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &883516788 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 80609031} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -6.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1182543165} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &888557367 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 271950131} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 155650673} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 253101413} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1751513136} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &896056461 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 896056464} + - component: {fileID: 896056463} + - component: {fileID: 896056462} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &896056462 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 896056461} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01614664b831546d2ae94a42149d80ac, type: 3} + m_Name: + m_EditorClassIdentifier: + m_SendPointerHoverToParent: 1 + m_MoveRepeatDelay: 0.5 + m_MoveRepeatRate: 0.1 + m_XRTrackingOrigin: {fileID: 0} + m_ActionsAsset: {fileID: -944628639613478452, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_PointAction: {fileID: -1654692200621890270, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_MoveAction: {fileID: -8784545083839296357, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_SubmitAction: {fileID: 392368643174621059, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_CancelAction: {fileID: 7727032971491509709, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_LeftClickAction: {fileID: 3001919216989983466, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_MiddleClickAction: {fileID: -2185481485913320682, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_RightClickAction: {fileID: -4090225696740746782, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_ScrollWheelAction: {fileID: 6240969308177333660, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_TrackedDevicePositionAction: {fileID: 6564999863303420839, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_TrackedDeviceOrientationAction: {fileID: 7970375526676320489, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_DeselectOnBackgroundClick: 1 + m_PointerBehavior: 0 + m_CursorLockBehavior: 0 + m_ScrollDeltaPerTick: 6 +--- !u!114 &896056463 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 896056461} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &896056464 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 896056461} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &900953842 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1609483967} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 709588791} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1498967892} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1150515058} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &955203279 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1015377332} + m_Modifications: + - target: {fileID: 6167039396952026974, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_Name + value: TorchUseOne + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchoredPosition.x + value: -20.9 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_AnchoredPosition.y + value: -26.012 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} +--- !u!224 &955203280 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8989188457857827130, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + m_PrefabInstance: {fileID: 955203279} + m_PrefabAsset: {fileID: 0} +--- !u!1 &955203281 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6167039396952026974, guid: 5e46b071ca9c11745a7893c22faf6976, type: 3} + m_PrefabInstance: {fileID: 955203279} + m_PrefabAsset: {fileID: 0} +--- !u!1 &966306750 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1162621063} + m_PrefabAsset: {fileID: 0} +--- !u!114 &966306751 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 966306750} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &966306757 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1162621063} + m_PrefabAsset: {fileID: 0} +--- !u!1 &992764451 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 285095336} + m_PrefabAsset: {fileID: 0} +--- !u!114 &992764452 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992764451} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &992764458 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 285095336} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &996931667 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1396914260} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1498967892} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1700110558} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1012806569 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 2435349004046080434, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_Name + value: BossRoom + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1835327815} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 822261218} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 106574081} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1503166511} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[4]' + value: + objectReference: {fileID: 137188443} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[5]' + value: + objectReference: {fileID: 95627855} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[6]' + value: + objectReference: {fileID: 1791921248} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[7]' + value: + objectReference: {fileID: 1580428532} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[8]' + value: + objectReference: {fileID: 1238087150} + - target: {fileID: 3406749035128918688, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[9]' + value: + objectReference: {fileID: 1700110557} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalPosition.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + insertIndex: -1 + addedObject: {fileID: 1213863221} + m_SourcePrefab: {fileID: 100100000, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} +--- !u!1 &1014671923 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1113613738} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1014671924 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1014671923} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b40cbe88356086a49b6bc7dc8ff549c0, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} +--- !u!4 &1014671930 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1113613738} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1015377331 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1015377332} + - component: {fileID: 1015377333} + m_Layer: 0 + m_Name: TorchAbility + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1015377332 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1015377331} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 955203280} + - {fileID: 733480120} + - {fileID: 520191494} + m_Father: {fileID: 801256675} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 34.64} + m_SizeDelta: {x: 100, y: 82.024} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1015377333 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1015377331} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a942e4ca1244b054b8ca96ded24fb63a, type: 3} + m_Name: + m_EditorClassIdentifier: + abilityUseOne: {fileID: 955203281} + abilityUseTwo: {fileID: 733480121} +--- !u!1001 &1024016174 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 80609031} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 336514226} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 702961432} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1835327815} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 261250901} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1047830822 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1580428533} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1077453916 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1498967892} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 156879598} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 336890587} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 716078110} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1858048564} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1100508978 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1765209975} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1100508979 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100508978} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &1100508985 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1765209975} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1102077067 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1686367315} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1415918689} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 754036110} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1859659484} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1113613738 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 2037381803} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 80609031} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -6 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1014671924} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1117416201 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1738024603} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1117416202 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1117416201} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 6 +--- !u!4 &1117416208 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1738024603} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1122289064 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 828813982} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1122289065 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1122289064} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &1122289071 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 828813982} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1131748020 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 822261218} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 523227395} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1131960792 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1131960793} + - component: {fileID: 1131960795} + - component: {fileID: 1131960794} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1131960793 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1131960792} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2099449970} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1131960794 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1131960792} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Pass + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1131960795 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1131960792} + m_CullTransparentMesh: 1 +--- !u!1 &1150515057 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 900953842} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1150515058 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1150515057} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 8 +--- !u!4 &1150515064 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 900953842} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1155785794 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 190153524} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1155785795 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1155785794} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &1155785801 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 190153524} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1162621063 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 992764451} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1707502360} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -6 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 966306751} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1180479345 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 379942241} + m_Modifications: + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.07007 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7874367151511621086, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Name + value: White Die + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} +--- !u!224 &1180479346 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + m_PrefabInstance: {fileID: 1180479345} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1182543164 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 883516788} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1182543165 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1182543164} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 12 +--- !u!4 &1182543171 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 883516788} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1200513882 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1396914260} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 568664532} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1498967892} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1858048563} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 336890588} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1213863220 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + m_PrefabInstance: {fileID: 1012806569} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1213863221 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1213863220} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 6 +--- !u!4 &1213863226 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: c902621f4d7a49348bfab382716c9a6b, type: 3} + m_PrefabInstance: {fileID: 1012806569} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1238087150 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1297313487} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1238087151 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238087150} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1238087157 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1297313487} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1287376634 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 379942241} + m_Modifications: + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchoredPosition.x + value: -30.070068 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7874367151511621086, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Name + value: White Die (3) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} +--- !u!224 &1287376635 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + m_PrefabInstance: {fileID: 1287376634} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1297313487 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1791921248} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1122289064} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1238087151} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1329635769 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 336890587} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1100508978} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 156879598} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 568664533} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1333995205 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 37414491} + m_Modifications: + - target: {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Colors.m_ColorMultiplier + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Colors.m_DisabledColor.b + value: 0.7924528 + objectReference: {fileID: 0} + - target: {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Colors.m_DisabledColor.g + value: 0.7924528 + objectReference: {fileID: 0} + - target: {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Colors.m_DisabledColor.r + value: 0.7924528 + objectReference: {fileID: 0} + - target: {fileID: 1648245930821754079, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Interactable + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Name + value: BlackDieAbility 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.z + value: 1.1596711 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 20.622864 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 1.5364685 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} +--- !u!224 &1333995206 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 1333995205} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1333995207 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 1333995205} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1339472624 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 2062054610} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1339472625 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 2062054610} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1339472626 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1339472624} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 12 +--- !u!1001 &1350215595 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1707502360} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1731616339} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -7 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 191457251} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1353551473 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1353551474} + - component: {fileID: 1353551477} + - component: {fileID: 1353551476} + - component: {fileID: 1353551475} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1353551474 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1353551473} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1728296563} + - {fileID: 1369094916} + - {fileID: 2099449970} + - {fileID: 379942241} + - {fileID: 748138896} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &1353551475 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1353551473} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1353551476 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1353551473} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!223 &1353551477 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1353551473} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 0 + m_AdditionalShaderChannelsFlag: 25 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!1001 &1365059289 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1686367315} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 137188443} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1859659483} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -2 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 754036111} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1366609343 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1515160563} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1366609344 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1366609343} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1366609350 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1515160563} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1368817179 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 114017720} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1122289064} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 95627855} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1791921248} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 837544817} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1369094915 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1369094916} + - component: {fileID: 1369094919} + - component: {fileID: 1369094918} + - component: {fileID: 1369094917} + - component: {fileID: 1369094920} + m_Layer: 5 + m_Name: RollButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1369094916 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369094915} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1814678932} + m_Father: {fileID: 1353551474} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 383.71, y: -217} + m_SizeDelta: {x: 75.07, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1369094917 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369094915} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1369094918} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1369094918 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369094915} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1369094919 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369094915} + m_CullTransparentMesh: 1 +--- !u!114 &1369094920 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369094915} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6b493144d8ebc4dda85e2070fb9573e7, type: 3} + m_Name: + m_EditorClassIdentifier: + rollDiceButton: {fileID: 1369094917} + dice: {fileID: 379942240} +--- !u!1 &1396914260 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 231309885} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1396914261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1396914260} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1396914267 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 231309885} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1415918689 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 790638097} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1415918690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415918689} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b40cbe88356086a49b6bc7dc8ff549c0, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} +--- !u!4 &1415918696 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 790638097} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1417835870 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1417835872} + - component: {fileID: 1417835871} + m_Layer: 0 + m_Name: GameManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1417835871 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1417835870} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 85fe57d438ef1ec4fa8b36b9c17c11a4, type: 3} + m_Name: + m_EditorClassIdentifier: + rooms: {fileID: 0} + diceRoller: {fileID: 1369094920} + passManager: {fileID: 2099449974} + player: {fileID: 386902759} +--- !u!4 &1417835872 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1417835870} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -2.5528438, y: -0.111962736, z: -9.939027} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1419151607 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 992764451} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1339472624} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1916122900} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1440793723 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1791921248} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 114017720} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 837544816} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 95627856} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1441658031 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1723998117} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1441658032 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441658031} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1441658038 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1723998117} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1471218072 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 211626630} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1471218073 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471218072} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 8 +--- !u!4 &1471218079 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 211626630} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1498967892 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 653478652} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1498967893 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1498967892} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 8 +--- !u!4 &1498967899 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 653478652} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1503166511 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 49064126} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1503166512 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1503166511} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 9 +--- !u!4 &1503166518 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 49064126} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1507671413 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 2084952799} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1507671414 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1507671413} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 5 +--- !u!4 &1507671420 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 2084952799} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1508446612 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_Name + value: MonsterRoom + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 518515969} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1117416201} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 80609031} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[4]' + value: + objectReference: {fileID: 1507671413} + - target: {fileID: 3406749035128918688, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: 'AdjacentRooms.Array.data[5]' + value: + objectReference: {fileID: 261250900} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.x + value: -3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + insertIndex: -1 + addedObject: {fileID: 1835327816} + m_SourcePrefab: {fileID: 100100000, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} +--- !u!1001 &1515160563 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1507671413} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1117416201} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 2060217364} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1366609344} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1536218564 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 2060217364} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 106574081} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 137188443} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1507671413} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1607637624} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1568888051 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 80609031} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 336514226} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 261250900} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 702961433} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1574457939 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 155650673} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 196328906} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1751513135} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 271950131} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 253101414} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1577335134 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 37414491} + m_Modifications: + - target: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Name + value: BlackDieAbility 3 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.z + value: 3.3417058 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 94.62286 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 2.0364685 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} +--- !u!224 &1577335135 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 1577335134} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1577335136 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 1577335134} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1580428532 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1047830822} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1580428533 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1580428532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 2 +--- !u!4 &1580428539 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1047830822} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1594750066 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 702961432} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1471218072} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 261250900} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 518515969} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -2.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 336514227} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1607637623 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1536218564} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1607637624 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607637623} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &1607637630 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1536218564} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1609379640 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1498967892} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 271950131} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1635393091} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1609483967 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1971051858} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1609483968 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1609483967} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 9 +--- !u!4 &1609483974 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1971051858} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1620851464 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 709588791} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 716078110} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1669129431} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1635393090 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1609379640} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1635393091 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1635393090} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &1635393097 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1609379640} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1660988305 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1441658031} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 2060217364} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1155785794} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1731616339} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -6 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1937619456} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1669129430 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1620851464} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1669129431 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1669129430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 6 +--- !u!4 &1669129437 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1620851464} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1686367315 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 483623968} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1686367316 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1686367315} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1686367322 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 483623968} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1700110557 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 996931667} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1700110558 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1700110557} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &1700110564 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 996931667} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1707502360 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 835229519} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1707502361 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1707502360} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1707502367 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 835229519} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1723998117 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1937619455} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1155785794} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1731616339} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -7 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1441658032} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1728296560 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1728296563} + - component: {fileID: 1728296562} + - component: {fileID: 1728296561} + m_Layer: 5 + m_Name: Health + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1728296561 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1728296560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: New Text + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278255434 + m_fontColor: {r: 0.29063714, g: 1, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 4 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1728296562 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1728296560} + m_CullTransparentMesh: 1 +--- !u!224 &1728296563 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1728296560} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1353551474} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 222, y: 230} + m_SizeDelta: {x: 150.14, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1731616339 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 854319667} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1731616340 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1731616339} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1731616346 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 854319667} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1738024603 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 2037381803} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1835327815} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1366609343} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1117416202} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1751513135 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 888557367} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1751513136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1751513135} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 7 +--- !u!4 &1751513142 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 888557367} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1765209975 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 822261218} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 568664532} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1100508979} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1770463459 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1976755243} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1770463460 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1770463459} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &1770463466 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1976755243} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1775902214 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 37414491} + m_Modifications: + - target: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Name + value: BlackDieAbility 2 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.z + value: 3.3417058 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 57.622864 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 2.0364685 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} +--- !u!224 &1775902215 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 1775902214} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1775902216 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 1775902214} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1777887365 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1751513135} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1635393090} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 253101413} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 196328906} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -3.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 271950132} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1791921248 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 310586900} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1791921249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1791921248} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1791921255 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 310586900} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1814678931 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1814678932} + - component: {fileID: 1814678934} + - component: {fileID: 1814678933} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1814678932 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814678931} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1369094916} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1814678933 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814678931} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'Roll ' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1814678934 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814678931} + m_CullTransparentMesh: 1 +--- !u!1 &1835327815 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 1508446612} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1835327816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1835327815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 6 +--- !u!4 &1835327822 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: dffcf67f187414eacb9e7abf6d8cf39b, type: 3} + m_PrefabInstance: {fileID: 1508446612} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1858048563 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1077453916} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1858048564 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1858048563} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &1858048570 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1077453916} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1859659483 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1102077067} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1859659484 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1859659483} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 8 +--- !u!4 &1859659490 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1102077067} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1883102600 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1959319098} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1883102601 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1883102600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1883102607 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1959319098} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1885847795 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1885847796} + m_Layer: 0 + m_Name: RoomsParent(Clone) + m_TagString: RoomsParent + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1885847796 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1885847795} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1213863226} + - {fileID: 80609038} + - {fileID: 1498967899} + - {fileID: 1707502367} + - {fileID: 822261225} + - {fileID: 1835327822} + - {fileID: 1182543171} + - {fileID: 702961439} + - {fileID: 1014671930} + - {fileID: 1700110564} + - {fileID: 1858048570} + - {fileID: 1635393097} + - {fileID: 1770463466} + - {fileID: 191457257} + - {fileID: 1686367322} + - {fileID: 966306757} + - {fileID: 523227401} + - {fileID: 1503166518} + - {fileID: 1100508985} + - {fileID: 1117416208} + - {fileID: 518515976} + - {fileID: 1507671420} + - {fileID: 1580428539} + - {fileID: 137188450} + - {fileID: 1238087157} + - {fileID: 271950138} + - {fileID: 1751513142} + - {fileID: 261250907} + - {fileID: 336514233} + - {fileID: 1471218079} + - {fileID: 114017727} + - {fileID: 95627862} + - {fileID: 837544823} + - {fileID: 1791921255} + - {fileID: 1122289071} + - {fileID: 754036117} + - {fileID: 1859659490} + - {fileID: 1415918696} + - {fileID: 2037381810} + - {fileID: 1155785801} + - {fileID: 1937619462} + - {fileID: 1731616346} + - {fileID: 1441658038} + - {fileID: 1396914267} + - {fileID: 336890594} + - {fileID: 568664539} + - {fileID: 156879605} + - {fileID: 1883102607} + - {fileID: 716078117} + - {fileID: 1607637630} + - {fileID: 106574088} + - {fileID: 2060217371} + - {fileID: 1366609350} + - {fileID: 293229719} + - {fileID: 155650680} + - {fileID: 196328913} + - {fileID: 709588798} + - {fileID: 1669129437} + - {fileID: 1916122906} + - {fileID: 1150515064} + - {fileID: 1609483974} + - {fileID: 992764458} + - {fileID: 253101420} + - {fileID: 1339472625} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1916122899 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1419151607} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1916122900 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1916122899} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 7 +--- !u!4 &1916122906 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1419151607} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1936899068 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 253101413} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1609483967} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 271950131} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 196328907} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &1937619455 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1660988305} + m_PrefabAsset: {fileID: 0} +--- !u!114 &1937619456 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1937619455} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &1937619462 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 1660988305} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1948928674 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 27283140} + m_Modifications: + - target: {fileID: 1648245930821754079, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Interactable + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Name + value: BlackDieAbility 2 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalPosition.z + value: 3.3417058 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 57.622864 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 2.0364685 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 203272712866963024, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} +--- !u!224 &1948928675 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8989188457857827130, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 1948928674} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1948928676 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 6167039396952026974, guid: 66fcddbe7a3c341c5b9ca4f8801259a6, type: 3} + m_PrefabInstance: {fileID: 1948928674} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1959319098 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 716078110} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 156879598} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1883102601} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1971051858 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 196328906} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1150515057} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1498967892} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1609483968} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1973998405 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 379942241} + m_Modifications: + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_SizeDelta.x + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_SizeDelta.y + value: 30 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchoredPosition.x + value: -0.07006836 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7874367151511621086, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + propertyPath: m_Name + value: White Die (2) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} +--- !u!224 &1973998406 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1556923700715053098, guid: ca942b415faef4e1ca2ca32043893efd, type: 3} + m_PrefabInstance: {fileID: 1973998405} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1975845598 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1150515057} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1669129430} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1498967892} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 709588792} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &1976755243 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 2060217364} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1707502360} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -1.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1770463460} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1001 &2025991242 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1507671413} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 1213863220} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1607637623} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 137188443} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 106574082} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &2029992415 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2029992418} + - component: {fileID: 2029992417} + - component: {fileID: 2029992416} + - component: {fileID: 2029992419} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &2029992416 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2029992415} + m_Enabled: 1 +--- !u!20 &2029992417 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2029992415} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0.031372372, g: 0.040399473, b: 0.047169805, a: 1} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 1 + orthographic size: 7.35 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &2029992418 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2029992415} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2029992419 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2029992415} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 1 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_Version: 2 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 +--- !u!1 &2037381803 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 609885843} + m_PrefabAsset: {fileID: 0} +--- !u!114 &2037381804 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2037381803} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 10 +--- !u!4 &2037381810 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 609885843} + m_PrefabAsset: {fileID: 0} +--- !u!1 &2060217364 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 377955553} + m_PrefabAsset: {fileID: 0} +--- !u!114 &2060217365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2060217364} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0f021f4903d50cb4b8bea2c40701ad58, type: 3} + m_Name: + m_EditorClassIdentifier: + blockingRoom: {fileID: 0} + number: 4 +--- !u!4 &2060217371 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + m_PrefabInstance: {fileID: 377955553} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2062054610 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: IsEntrance + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1916122899} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 293229712} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -3 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: -4.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1339472626} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &2078984184 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2078984185} + - component: {fileID: 2078984187} + - component: {fileID: 2078984186} + m_Layer: 0 + m_Name: AbilityText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2078984185 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2078984184} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 3.3417058} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 27283140} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 56.7, y: 32.3} + m_SizeDelta: {x: 103.5541, y: 24.1728} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2078984186 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2078984184} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Black Dice + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4278190080 + m_fontColor: {r: 0, g: 0, b: 0, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 21.8 + m_fontSizeBase: 21.8 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2078984187 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2078984184} + m_CullTransparentMesh: 1 +--- !u!1001 &2084952799 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 1885847796} + m_Modifications: + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: AdjacentRooms.Array.size + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[0]' + value: + objectReference: {fileID: 1366609343} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[1]' + value: + objectReference: {fileID: 106574081} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[2]' + value: + objectReference: {fileID: 1835327815} + - target: {fileID: 849256457500513523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: 'AdjacentRooms.Array.data[3]' + value: + objectReference: {fileID: 1607637623} + - target: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_Name + value: Room + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.x + value: -4 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9187907134033443523, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 2435349004046080434, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} + insertIndex: -1 + addedObject: {fileID: 1507671414} + m_SourcePrefab: {fileID: 100100000, guid: 92d87e25cc40b3e448e62e8ba0328315, type: 3} +--- !u!1 &2099449969 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2099449970} + - component: {fileID: 2099449973} + - component: {fileID: 2099449972} + - component: {fileID: 2099449971} + - component: {fileID: 2099449974} + m_Layer: 5 + m_Name: PassButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2099449970 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2099449969} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1131960793} + m_Father: {fileID: 1353551474} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 308.63998, y: -217} + m_SizeDelta: {x: 75.06, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2099449971 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2099449969} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 2099449972} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &2099449972 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2099449969} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2099449973 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2099449969} + m_CullTransparentMesh: 1 +--- !u!114 &2099449974 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2099449969} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 95487118287b4514fb9b9fb7018ae717, type: 3} + m_Name: + m_EditorClassIdentifier: + passButton: {fileID: 2099449971} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 2029992418} + - {fileID: 716093249} + - {fileID: 323570089} + - {fileID: 386902761} + - {fileID: 896056464} + - {fileID: 1353551474} + - {fileID: 1417835872} + - {fileID: 1885847796} diff --git a/PuzzleGameProject/Assets/Scenes/LooksLikeItCouldBeGood.unity.meta b/PuzzleGameProject/Assets/Scenes/LooksLikeItCouldBeGood.unity.meta new file mode 100644 index 0000000..c7ba7b8 --- /dev/null +++ b/PuzzleGameProject/Assets/Scenes/LooksLikeItCouldBeGood.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 668d089d7832d1541bc7d61754599b94 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: