{ "GUID": "5ccf55", "Name": "Custom_Model_Bag", "Transform": { "posX": 12.2499027, "posY": 1.46560514, "posZ": 3.98637247, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 0.0168724786, "scaleX": 2.21, "scaleY": 0.2, "scaleZ": 2.46 }, "Nickname": "The Grand Oak Hotel", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/798737729142935568/34A42BC3AEF7764F8D7BB242DB08FD36B8EC6DCB/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"076680\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.4756,\"z\":-26.9304},\"rot\":{\"x\":359.9201,\"y\":270.0086,\"z\":0.0169}},\"1832f9\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0168}},\"31b5a1\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0168}},\"51a259\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6256,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0003,\"z\":0.0803}},\"580dd8\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0168}},\"5895c2\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7299,\"z\":5.7534},\"rot\":{\"x\":359.9197,\"y\":269.999,\"z\":180.0168}},\"6fc753\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6508,\"z\":15.1901},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"794c01\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0025,\"z\":0.0168}},\"7f738c\":{\"lock\":false,\"pos\":{\"x\":-17.1198,\"y\":1.6167,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"801388\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":0.0168}},\"93cb42\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6234,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"9cd1ad\":{\"lock\":false,\"pos\":{\"x\":-4.0559,\"y\":1.5827,\"z\":-15.1513},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"ad2380\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6239,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9811,\"z\":0.0803}},\"b3a042\":{\"lock\":false,\"pos\":{\"x\":-0.217,\"y\":1.6291,\"z\":-10.403},\"rot\":{\"x\":359.9582,\"y\":269.9997,\"z\":-0.0057}},\"daa47d\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"e3a8d4\":{\"lock\":false,\"pos\":{\"x\":-17.1188,\"y\":1.6212,\"z\":7.5574},\"rot\":{\"x\":359.9201,\"y\":269.9977,\"z\":0.0168}},\"fc4638\":{\"lock\":false,\"pos\":{\"x\":1.6963,\"y\":1.5583,\"z\":14.2748},\"rot\":{\"x\":359.9552,\"y\":224.9405,\"z\":0.0687}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "daa47d", "Name": "Card", "Transform": { "posX": -36.7732, "posY": 1.64856255, "posZ": 7.569985, "rotX": 359.9201, "rotY": 269.999817, "rotZ": 0.0168399028, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266717, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6fc753", "Name": "Card", "Transform": { "posX": -36.7732, "posY": 1.650802, "posZ": 15.1901007, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.01683959, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Manager's Office", "Description": "Floor 1.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266308, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "794c01", "Name": "Card", "Transform": { "posX": -36.7731819, "posY": 1.646329, "posZ": -0.03000887, "rotX": 359.9201, "rotY": 270.002472, "rotZ": 0.0168361552, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hotel Room", "Description": "Floor 8.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266705, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1832f9", "Name": "Card", "Transform": { "posX": -30.22415, "posY": 1.63719678, "posZ": -0.0300126541, "rotX": 359.9201, "rotY": 270.000031, "rotZ": 0.0168397762, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hotel Room", "Description": "Floor 8.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266739, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "580dd8", "Name": "Card", "Transform": { "posX": -30.2242088, "posY": 1.6394304, "posZ": 7.569987, "rotX": 359.9201, "rotY": 270.000122, "rotZ": 0.0168394968, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hotel Room", "Description": "Floor 8.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266303, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e3a8d4", "Name": "Card", "Transform": { "posX": -17.11884, "posY": 1.62115216, "posZ": 7.55740643, "rotX": 359.9201, "rotY": 269.997742, "rotZ": 0.016842721, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Luxury Suite", "Description": "Floor 15.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266307, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "31b5a1", "Name": "Card", "Transform": { "posX": -17.12, "posY": 1.6189239, "posZ": -0.0300115366, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 0.0168395489, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Your Room", "Description": "Floor 15.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266321, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7f738c", "Name": "Card", "Transform": { "posX": -17.11981, "posY": 1.61666954, "posZ": -7.700107, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hotel Elevator", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266302, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "93cb42", "Name": "Card", "Transform": { "posX": -17.12, "posY": 1.623397, "posZ": 15.1900005, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.01683955, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lounge ", "Description": "Floor 15.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266306, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fc4638", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.6962924, "posY": 1.558316, "posZ": 14.2748337, "rotX": 359.9552, "rotY": 224.9405, "rotZ": 0.06871718, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set Aside", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "baa02a", "Name": "Deck", "Transform": { "posX": 1.696451, "posY": 3.69159651, "posZ": 14.2788305, "rotX": 359.948059, "rotY": 224.998062, "rotZ": 0.0583363138, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266626, 266626, 266626, 266626 ], "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "a90276", "Name": "Card", "Transform": { "posX": -11.9124308, "posY": 1.61460018, "posZ": 9.999316, "rotX": 359.9202, "rotY": 270.0013, "rotZ": 0.0161862373, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grand Oak Hotel", "Description": "Remember It Well", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266626, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4808d8", "Name": "Card", "Transform": { "posX": -11.280345, "posY": 1.66441166, "posZ": 9.638388, "rotX": 359.922455, "rotY": 270.001221, "rotZ": 0.000540205743, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grand Oak Hotel", "Description": "Remember It Well", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266626, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "96de6e", "Name": "Card", "Transform": { "posX": -11.2803421, "posY": 1.67782927, "posZ": 9.638357, "rotX": 0.0244401377, "rotY": 270.0018, "rotZ": 0.0343055539, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grand Oak Hotel", "Description": "Remember It Well", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266626, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a77507", "Name": "Card", "Transform": { "posX": -11.2803154, "posY": 1.71047211, "posZ": 9.638371, "rotX": 0.207413077, "rotY": 270.001465, "rotZ": 0.0451203324, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grand Oak Hotel", "Description": "Remember It Well", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266626, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "522810", "Name": "Card", "Transform": { "posX": 1.93875265, "posY": 2.57988715, "posZ": 1.6346209, "rotX": 359.919739, "rotY": 269.992126, "rotZ": 0.016849352, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Yill, Memory Feaster", "Description": "Unanchored Hunger", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266538, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ea337c", "Name": "Deck", "Transform": { "posX": 1.69643629, "posY": 3.69424129, "posZ": 14.2788334, "rotX": 359.94812, "rotY": 224.997955, "rotZ": 359.905579, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266631, 266631, 266631, 266631 ], "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e64945", "Name": "Card", "Transform": { "posX": -12.0186605, "posY": 1.61565483, "posZ": 13.13304, "rotX": 359.92038, "rotY": 270.0025, "rotZ": 0.0151945315, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Never Happened", "Description": "Curse.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266631, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "67a842", "Name": "Card", "Transform": { "posX": -12.1775084, "posY": 1.65837181, "posZ": 13.459136, "rotX": 359.933533, "rotY": 270.002441, "rotZ": 359.99353, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Never Happened", "Description": "Curse.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266631, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c20cc0", "Name": "Card", "Transform": { "posX": -12.1774988, "posY": 1.69473028, "posZ": 13.4591331, "rotX": 359.9196, "rotY": 270.002441, "rotZ": 0.015685197, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Never Happened", "Description": "Curse.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266631, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "adda45", "Name": "Card", "Transform": { "posX": -12.1775465, "posY": 1.69085622, "posZ": 13.4591236, "rotX": 359.918732, "rotY": 270.002838, "rotZ": 0.0142474826, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Never Happened", "Description": "Curse.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266631, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a370ab", "Name": "Card", "Transform": { "posX": 1.69657171, "posY": 3.69306016, "posZ": 14.2789946, "rotX": 358.672729, "rotY": 224.9984, "rotZ": 0.057509888, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Lost Accountant", "Description": "How Long Has He Been Here?", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266532, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "776015", "Name": "Card", "Transform": { "posX": 1.69644868, "posY": 3.66541219, "posZ": 14.2788305, "rotX": 359.967, "rotY": 224.997986, "rotZ": 0.0547256023, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Missing Room", "Description": "Basement.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266316, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ca2df4", "Name": "Card", "Transform": { "posX": 1.69642663, "posY": 3.66519046, "posZ": 14.2788029, "rotX": 359.970428, "rotY": 224.997955, "rotZ": 0.06992209, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "William Hebb", "Description": "Someone Always Remembers", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266637, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bb06cc", "Name": "Deck", "Transform": { "posX": 1.696434, "posY": 3.691433, "posZ": 14.2788048, "rotX": 359.967224, "rotY": 224.997955, "rotZ": 0.07090063, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Set Aside locations", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266320, 266300, 266304, 266312 ], "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "129dc3", "Name": "Card", "Transform": { "posX": -12.9086084, "posY": 1.63238132, "posZ": 18.7011833, "rotX": 359.916229, "rotY": 269.992859, "rotZ": 356.4577, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Workshop", "Description": "Basement.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266320, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "193c7e", "Name": "Card", "Transform": { "posX": -12.8712873, "posY": 1.67331851, "posZ": 18.77372, "rotX": 359.9131, "rotY": 269.986633, "rotZ": 356.445038, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Boiler Room", "Description": "Basement.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266300, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b879d1", "Name": "Card", "Transform": { "posX": -0.53399384, "posY": 2.472121, "posZ": -37.5469971, "rotX": 0.0168766417, "rotY": 179.996948, "rotZ": 0.07987723, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Janitor's Office", "Description": "Floor 13.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266304, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5ec867", "Name": "Card", "Transform": { "posX": -2.00814557, "posY": 1.60039341, "posZ": 19.0932026, "rotX": 359.566742, "rotY": 179.99826, "rotZ": 0.07113583, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Storage Room", "Description": "Floor 13.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266312, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "ea820d", "Name": "Card", "Transform": { "posX": 1.69643366, "posY": 3.66510653, "posZ": 14.2788057, "rotX": 359.9673, "rotY": 224.997955, "rotZ": 0.0709268749, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Becoming Nobody", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266522, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "5895c2", "Name": "Deck", "Transform": { "posX": -3.92770052, "posY": 1.72993541, "posZ": 5.753401, "rotX": 359.919739, "rotY": 269.999023, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 266523, 266523, 266523, 266524, 266524, 266525, 266525, 266527, 266527, 266527, 266528, 266528, 266529, 266530, 266530, 266533, 266533, 266533, 266534, 266534, 266535, 266535, 266535, 266536, 266536 ], "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b3a7e3", "Name": "Card", "Transform": { "posX": -3.84265947, "posY": 1.6029408, "posZ": 8.555654, "rotX": 359.919983, "rotY": 269.999939, "rotZ": 0.0153386937, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Confused Guest", "Description": "Humanoid.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266523, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d2aa24", "Name": "Card", "Transform": { "posX": -3.47300363, "posY": 1.64261878, "posZ": 8.739718, "rotX": 359.9231, "rotY": 269.999969, "rotZ": 0.0119274594, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Confused Guest", "Description": "Humanoid.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266523, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "86afa4", "Name": "Card", "Transform": { "posX": -3.4730072, "posY": 1.68105626, "posZ": 8.739719, "rotX": 359.918671, "rotY": 269.999969, "rotZ": 0.0147009734, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Confused Guest", "Description": "Humanoid.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266523, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7ba77c", "Name": "Card", "Transform": { "posX": -6.76889038, "posY": 1.70920444, "posZ": 6.197511, "rotX": 5.5662446, "rotY": 269.9845, "rotZ": 0.0106101427, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Corner Of Your Eye", "Description": "Insight.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266524, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9f859d", "Name": "Card", "Transform": { "posX": -6.333298, "posY": 1.7820313, "posZ": 6.08877, "rotX": 5.568471, "rotY": 269.9602, "rotZ": 0.00140296738, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Corner Of Your Eye", "Description": "Insight.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266524, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "316a06", "Name": "Card", "Transform": { "posX": -4.10726929, "posY": 1.74366367, "posZ": 8.81228352, "rotX": 0.06691978, "rotY": 270.026184, "rotZ": 0.03035067, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Deranged Crowd", "Description": "Humanoid.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266525, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b13dab", "Name": "Card", "Transform": { "posX": -3.24397635, "posY": 1.71203446, "posZ": 8.797215, "rotX": 359.917419, "rotY": 269.999573, "rotZ": 0.013626839, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Deranged Crowd", "Description": "Humanoid.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266525, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8502bb", "Name": "Card", "Transform": { "posX": -7.43340969, "posY": 1.607088, "posZ": 5.69922638, "rotX": 359.9231, "rotY": 270.005371, "rotZ": 0.012265576, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "How Did I get Here?", "Description": "Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266527, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d05860", "Name": "Card", "Transform": { "posX": -7.677744, "posY": 1.6483444, "posZ": 5.326554, "rotX": 359.9284, "rotY": 270.0054, "rotZ": 0.0030607942, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "How Did I get Here?", "Description": "Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266527, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dc16de", "Name": "Card", "Transform": { "posX": -7.67777634, "posY": 1.69194889, "posZ": 5.3265605, "rotX": 359.920227, "rotY": 270.0054, "rotZ": 0.0159135573, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "How Did I get Here?", "Description": "Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266527, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0358cb", "Name": "Card", "Transform": { "posX": -7.52415133, "posY": 1.60742807, "posZ": 6.277029, "rotX": 359.9212, "rotY": 270.004761, "rotZ": 0.0167282764, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "It Must Have Worked", "Description": "Memory. Insight.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266528, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e30200", "Name": "Card", "Transform": { "posX": -7.60982943, "posY": 1.63920963, "posZ": 6.073454, "rotX": 359.9171, "rotY": 269.985626, "rotZ": 0.00391113432, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "It Must Have Worked", "Description": "Memory. Insight.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266528, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b8f474", "Name": "Card", "Transform": { "posX": -4.60322237, "posY": 1.77134621, "posZ": 8.149702, "rotX": 359.923553, "rotY": 270.004639, "rotZ": 0.0231917035, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Loose Thoughts", "Description": "Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266529, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a966de", "Name": "Card", "Transform": { "posX": -8.124041, "posY": 1.60815585, "posZ": 5.8800745, "rotX": 359.921753, "rotY": 270.017059, "rotZ": 0.0169888642, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lost Time", "Description": "Memory. Omen.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266530, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6b1b3d", "Name": "Card", "Transform": { "posX": -7.856985, "posY": 1.63963878, "posZ": 5.72886944, "rotX": 359.9292, "rotY": 270.0053, "rotZ": 0.0132736638, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lost Time", "Description": "Memory. Omen.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266530, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2a327a", "Name": "Card", "Transform": { "posX": -7.84119558, "posY": 1.60619175, "posZ": 6.09835625, "rotX": 0.11562825, "rotY": 270.002747, "rotZ": 359.9361, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Thought Harvester", "Description": "You Aren't Supposed To See That", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266533, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d29b03", "Name": "Card", "Transform": { "posX": -7.071255, "posY": 1.63254738, "posZ": 5.532418, "rotX": 359.893219, "rotY": 270.002, "rotZ": 0.0620296448, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Thought Harvester", "Description": "You Aren't Supposed To See That", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266533, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a5c402", "Name": "Card", "Transform": { "posX": -7.07126236, "posY": 1.68467236, "posZ": 5.53239727, "rotX": 359.902435, "rotY": 270.0021, "rotZ": 0.05755743, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Thought Harvester", "Description": "You Aren't Supposed To See That", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266533, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "274710", "Name": "Card", "Transform": { "posX": -8.461935, "posY": 1.60864341, "posZ": 5.87122726, "rotX": 359.924469, "rotY": 270.002075, "rotZ": 0.0175481178, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "What Hit Me?", "Description": "Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266534, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f92e0a", "Name": "Card", "Transform": { "posX": -8.088851, "posY": 1.63887656, "posZ": 6.16588068, "rotX": 359.6017, "rotY": 270.0032, "rotZ": 359.573853, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "What Hit Me?", "Description": "Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266534, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fc4674", "Name": "Card", "Transform": { "posX": -8.278647, "posY": 1.60759127, "posZ": 5.700656, "rotX": 359.832642, "rotY": 270.001282, "rotZ": 0.04228852, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Whispering Remnant", "Description": "Spirit. Monster. Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266535, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3ab26b", "Name": "Card", "Transform": { "posX": -7.52026749, "posY": 1.631281, "posZ": 4.942252, "rotX": 359.861938, "rotY": 270.001678, "rotZ": 0.1335949, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Whispering Remnant", "Description": "Spirit. Monster. Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266535, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "805ff0", "Name": "Card", "Transform": { "posX": -7.52030325, "posY": 1.67832279, "posZ": 4.94229364, "rotX": 359.873444, "rotY": 270.002136, "rotZ": 0.1458162, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Whispering Remnant", "Description": "Spirit. Monster. Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266535, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "aeb1c5", "Name": "Card", "Transform": { "posX": -4.000826, "posY": 1.87173271, "posZ": 8.104219, "rotX": 359.897919, "rotY": 270.0116, "rotZ": 359.9924, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Who Are You?", "Description": "Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266536, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8711cb", "Name": "Card", "Transform": { "posX": -4.133484, "posY": 1.88690567, "posZ": 8.275079, "rotX": 359.921234, "rotY": 270.0023, "rotZ": 0.01666327, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Who Are You?", "Description": "Memory.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266536, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "51a259", "Name": "Deck", "Transform": { "posX": -2.7247, "posY": 1.62557447, "posZ": 0.373300433, "rotX": 0.0168351438, "rotY": 180.000275, "rotZ": 0.08025619, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda Deck", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 266401, 266419, 266409, 266411 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e0d29d", "Name": "Card", "Transform": { "posX": -7.78577042, "posY": 1.605745, "posZ": -1.67740762, "rotX": 0.0164316036, "rotY": 180.00473, "rotZ": 359.493958, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Empty Shells", "Description": "Agenda 4", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266401, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "92c412", "Name": "Card", "Transform": { "posX": -8.042594, "posY": 1.6407479, "posZ": -1.45915151, "rotX": 0.022487171, "rotY": 180.019943, "rotZ": 359.494141, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Why Are We Here?", "Description": "Agenda 3", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266419, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4c178b", "Name": "Card", "Transform": { "posX": -7.805772, "posY": 1.67658079, "posZ": -1.74731886, "rotX": 0.01599163, "rotY": 180.023727, "rotZ": 0.0386677347, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Missing Hours", "Description": "Agenda 2", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266409, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3eb532", "Name": "Card", "Transform": { "posX": -8.000263, "posY": 1.685143, "posZ": -1.78996241, "rotX": 0.0164335053, "rotY": 180.007019, "rotZ": 359.695526, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Still Air", "Description": "Agenda 1", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266411, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "ad2380", "Name": "Deck", "Transform": { "posX": -2.688494, "posY": 1.62393057, "posZ": -5.04850531, "rotX": 0.0168620739, "rotY": 179.9811, "rotZ": 0.08025057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act Deck", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 266413, 266415, 266418, 266410 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "079e9a", "Name": "Card", "Transform": { "posX": -9.087316, "posY": 1.604883, "posZ": -11.2571316, "rotX": 0.0173918437, "rotY": 179.998215, "rotZ": 0.9053756, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Forgotten Room", "Description": "Act 4", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266413, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7d4fcd", "Name": "Card", "Transform": { "posX": -9.26310349, "posY": 1.700394, "posZ": -11.5345888, "rotX": 0.0175702125, "rotY": 180.006638, "rotZ": 3.834218, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Janitor Remembers", "Description": "Act 3", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266415, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ce82b1", "Name": "Card", "Transform": { "posX": -9.232253, "posY": 1.73965812, "posZ": -11.69567, "rotX": 0.0172913279, "rotY": 180.015381, "rotZ": 3.97228813, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Who Remembers?", "Description": "Act 2", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266418, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "753207", "Name": "Card", "Transform": { "posX": -9.239979, "posY": 1.75044775, "posZ": -11.020421, "rotX": 0.0174022876, "rotY": 180.008621, "rotZ": 4.010906, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Missing Persons", "Description": "Act 1", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266410, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "801388", "Name": "Card", "Transform": { "posX": -3.956, "posY": 1.59753942, "posZ": -10.4412012, "rotX": 359.919739, "rotY": 269.999451, "rotZ": 0.01683797, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Grand Oak Hotel", "Description": "Scenario Card", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266314, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526217543/5DFB0379AA41300E7486AE7E654010F344027799/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1660105005526238714/D45F8E7E1001A10A897D5811228E7A9C09C3D60C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b3a042", "Name": "Custom_Model", "Transform": { "posX": -0.2169836, "posY": 1.62908888, "posZ": -10.403018, "rotX": 359.95816, "rotY": 269.9997, "rotZ": -0.005701588, "scaleX": 0.5000004, "scaleY": 0.5000004, "scaleZ": 0.5000004 }, "Nickname": "Custom Data Helper", "Description": "Include this in custom content for clue spawning!", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/", "NormalURL": "", "ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/", "Convex": true, "MaterialIndex": 2, "TypeIndex": 0, "CustomShader": { "SpecularColor": { "r": 0.7222887, "g": 0.507659256, "b": 0.339915335 }, "SpecularIntensity": 0.4, "SpecularSharpness": 7.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for _ and if\r\nwe find nothing we look for \r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"Lounge \": {\"type\": \"fixed\", \"value\": 3, \"clueSide\": \"back\"},\r\n \"Luxury Suite\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Your Room\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Hotel Room_580dd8\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Hotel Room_1832f9\": {\"type\": \"fixed\", \"value\": 5, \"clueSide\": \"back\"},\r\n \"Hotel Bar\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Workshop\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Boiler Room\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Janitor's Office\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Storage Room\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"back\"}\r\n}\r\n]]\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\nend", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9cd1ad", "Name": "Custom_Tile", "Transform": { "posX": -4.05590057, "posY": 1.58269036, "posZ": -15.1513033, "rotX": 359.919739, "rotY": 269.999969, "rotZ": 0.016837975, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "Core Difficulty", "Description": "click to set chaos token difficulty", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "076680", "Name": "Custom_PDF", "Transform": { "posX": -1.4656018, "posY": 1.47562289, "posZ": -26.93039, "rotX": 359.920135, "rotY": 270.0086, "rotZ": 0.0168598071, "scaleX": 2.99246836, "scaleY": 1.0, "scaleZ": 2.99246836 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomPDF": { "PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1658977015951341678/1FFD33A4A72EFF85F7ECE9F3E851759E05FF24D7/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }