{ "GUID": "94a1f8", "Name": "Custom_Model_Bag", "Transform": { "posX": 12.2498932, "posY": 1.46560538, "posZ": 3.98637438, "rotX": 359.920135, "rotY": 269.999878, "rotZ": 0.0168727878, "scaleX": 2.21, "scaleY": 0.2, "scaleZ": 2.46 }, "Nickname": "Masks of Nyarlathotep – New York", "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/798737729142939810/7A53406FA1EFA9D556EF559B24A679E566114745/", "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,\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\":{\"0f2ffc\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6555,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9837,\"z\":0.0803}},\"256aa6\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"4e3390\":{\"lock\":false,\"pos\":{\"x\":-13.0308,\"y\":1.6899,\"z\":7.2677},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}},\"515e9e\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2789},\"rot\":{\"x\":359.9552,\"y\":224.9984,\"z\":0.0687}},\"8f0718\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7504,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":269.9868,\"z\":180.0168}},\"aae2b1\":{\"lock\":false,\"pos\":{\"x\":-3.566,\"y\":1.582,\"z\":-15.0714},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"fed65c\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6571,\"z\":0.3733},\"rot\":{\"x\":0.0169,\"y\":179.9893,\"z\":0.0803}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "515e9e", "Name": "Deck", "Transform": { "posX": 1.69647491, "posY": 1.636754, "posZ": 14.278862, "rotX": 359.95517, "rotY": 224.998413, "rotZ": 0.0686534345, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Set Aside", "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": [ 510, 510, 510, 510, 300, 503, 520, 112 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "711d14", "Name": "Card", "Transform": { "posX": -5.10322857, "posY": 1.18884981, "posZ": -5.950076, "rotX": -0.00241802982, "rotY": 179.99649, "rotZ": 180.014359, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "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, "Hands": true, "CardID": 510, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4b9721", "Name": "Card", "Transform": { "posX": -4.688677, "posY": 1.18245733, "posZ": -6.22356033, "rotX": -0.0020776703, "rotY": 179.999954, "rotZ": 179.997391, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "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, "Hands": true, "CardID": 510, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "83fdcb", "Name": "Card", "Transform": { "posX": -5.37724, "posY": 1.17735815, "posZ": -6.00084, "rotX": -0.000691544847, "rotY": 180.000076, "rotZ": 179.991226, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "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, "Hands": true, "CardID": 510, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9035ea", "Name": "Card", "Transform": { "posX": -5.06231976, "posY": 1.17478907, "posZ": -6.2075243, "rotX": -0.00173057278, "rotY": 179.999939, "rotZ": 179.995911, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Acolyte", "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, "Hands": true, "CardID": 510, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0b8563", "Name": "Card", "Transform": { "posX": -5.00656128, "posY": 1.176694, "posZ": -5.68757153, "rotX": 359.9822, "rotY": 179.997131, "rotZ": 179.977936, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ghoul Priest", "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, "Hands": true, "CardID": 300, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "109526", "Name": "Card", "Transform": { "posX": -4.797693, "posY": 1.19046342, "posZ": -6.3277626, "rotX": 359.991821, "rotY": 179.994492, "rotZ": 180.004608, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "grasping hands", "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, "Hands": true, "CardID": 503, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bba01d", "Name": "Card", "Transform": { "posX": -8.883166, "posY": 1.1848079, "posZ": 2.99391127, "rotX": 359.938965, "rotY": 179.941177, "rotZ": 359.735931, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Relentless Dark Young", "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, "Hands": true, "CardID": 520, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f51822", "Name": "Card", "Transform": { "posX": -9.191869, "posY": 1.18582118, "posZ": 2.60451627, "rotX": 0.000234192077, "rotY": 180.0013, "rotZ": 0.0122154122, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mask of Hayama", "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, "Hands": true, "CardID": 112, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8f0718", "Name": "Deck", "Transform": { "posX": -3.927527, "posY": 1.75039184, "posZ": 5.75698137, "rotX": 359.919739, "rotY": 269.986755, "rotZ": 180.016846, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter 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": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 502, 509, 501, 507, 503, 506, 506, 504, 508, 504, 500, 500, 505, 505, 501, 501, 500, 504, 507, 508, 503, 302, 503, 303, 507, 509 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d565cc", "Name": "Card", "Transform": { "posX": -7.525551, "posY": 1.31053841, "posZ": 0.628142, "rotX": -0.00051548786, "rotY": 180.0001, "rotZ": 179.999634, "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, "Hands": true, "CardID": 502, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6b4f8d", "Name": "Card", "Transform": { "posX": 1.36666679, "posY": 1.03171039, "posZ": -6.6183815, "rotX": -0.0001794275, "rotY": 179.999359, "rotZ": -9.014901E-05, "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, "CardID": 509, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "adc5e2", "Name": "Card", "Transform": { "posX": -3.00728369, "posY": 1.03170729, "posZ": -9.884871, "rotX": -0.00029844782, "rotY": 180.000031, "rotZ": -0.000101214522, "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, "CardID": 501, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "287c80", "Name": "Card", "Transform": { "posX": 0.7983031, "posY": 1.03170359, "posZ": -5.865242, "rotX": -0.000465005083, "rotY": 180.000031, "rotZ": -0.000145578029, "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, "CardID": 507, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "109526", "Name": "Card", "Transform": { "posX": 3.30773377, "posY": 1.031703, "posZ": -9.183528, "rotX": -0.000485041819, "rotY": 180.000031, "rotZ": -0.000148552339, "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, "CardID": 503, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "18713c", "Name": "Card", "Transform": { "posX": 4.84296656, "posY": 1.03170264, "posZ": -9.985904, "rotX": -0.0005048124, "rotY": 180.000031, "rotZ": -0.000154789377, "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, "CardID": 506, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "90d2be", "Name": "Card", "Transform": { "posX": 7.063261, "posY": 1.190593, "posZ": -9.36762, "rotX": 1.74960348E-08, "rotY": 180.025558, "rotZ": 2.20283619E-06, "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, "CardID": 506, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "336bb3", "Name": "Card", "Transform": { "posX": -2.02339387, "posY": 1.19523346, "posZ": -10.13251, "rotX": -8.24803863E-07, "rotY": 180.004562, "rotZ": 1.656517E-06, "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, "CardID": 504, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "45009b", "Name": "Card", "Transform": { "posX": -2.39139175, "posY": 1.1779635, "posZ": -7.24111462, "rotX": -6.17061247E-08, "rotY": 180.000046, "rotZ": 2.718165E-07, "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, "CardID": 508, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "336bb3", "Name": "Card", "Transform": { "posX": -2.01655221, "posY": 1.03170931, "posZ": -10.228302, "rotX": -0.000200693015, "rotY": 180.004547, "rotZ": -6.642803E-05, "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, "CardID": 504, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e3723", "Name": "Card", "Transform": { "posX": -18.384882, "posY": 1.31804264, "posZ": 3.4307394, "rotX": -2.43713E-07, "rotY": 179.9893, "rotZ": 180.000015, "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, "CardID": 500, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "41b7b0", "Name": "Card", "Transform": { "posX": -18.22021, "posY": 1.30838454, "posZ": 3.90669227, "rotX": 3.31619141E-08, "rotY": 180.0107, "rotZ": 180.0, "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, "CardID": 500, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7ca836", "Name": "Card", "Transform": { "posX": 1.54948092, "posY": 1.03170443, "posZ": -10.0616331, "rotX": -0.0004283262, "rotY": 180.000031, "rotZ": -0.000135281982, "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, "CardID": 505, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d35c3c", "Name": "Card", "Transform": { "posX": 1.54049611, "posY": 1.1779635, "posZ": -9.951112, "rotX": 4.36317464E-07, "rotY": 180.000046, "rotZ": 3.81197083E-07, "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, "CardID": 505, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ce2dd2", "Name": "Card", "Transform": { "posX": -2.692787, "posY": 1.1779635, "posZ": -9.599893, "rotX": 8.38239657E-07, "rotY": 180.000046, "rotZ": -2.65311769E-06, "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, "CardID": 501, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "adc5e2", "Name": "Card", "Transform": { "posX": -2.692787, "posY": 1.19523346, "posZ": -9.599893, "rotX": 8.38239657E-07, "rotY": 180.000046, "rotZ": -2.65311769E-06, "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, "CardID": 501, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c9fb36", "Name": "Card", "Transform": { "posX": -18.3778572, "posY": 1.28231692, "posZ": 3.86834049, "rotX": -3.39729155E-07, "rotY": 179.969437, "rotZ": 180.000015, "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, "CardID": 500, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a1ae06", "Name": "Card", "Transform": { "posX": -2.02339387, "posY": 1.1779635, "posZ": -10.13251, "rotX": -8.24803863E-07, "rotY": 180.004562, "rotZ": 1.656517E-06, "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, "CardID": 504, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d64b13", "Name": "Card", "Transform": { "posX": 0.79415, "posY": 1.1779635, "posZ": -5.819797, "rotX": 5.38826555E-07, "rotY": 180.000046, "rotZ": 2.43092541E-06, "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, "CardID": 507, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2b8359", "Name": "Card", "Transform": { "posX": -2.38581371, "posY": 1.03170359, "posZ": -7.286182, "rotX": -0.000465171674, "rotY": 180.000031, "rotZ": -0.000146240593, "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, "CardID": 508, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e553d5", "Name": "Card", "Transform": { "posX": 3.61364746, "posY": 1.1779635, "posZ": -9.087218, "rotX": 1.7501975E-07, "rotY": 180.000046, "rotZ": -6.267025E-07, "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, "CardID": 503, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "623f88", "Name": "Card", "Transform": { "posX": -23.1215725, "posY": 1.17335117, "posZ": -2.054199, "rotX": 0.22232908, "rotY": 179.993149, "rotZ": 359.461853, "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, "CardID": 302, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "109526", "Name": "Card", "Transform": { "posX": 3.13094139, "posY": 1.19721842, "posZ": -9.280788, "rotX": -0.00303117954, "rotY": 180.001953, "rotZ": 0.018014634, "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, "CardID": 503, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b1da52", "Name": "Card", "Transform": { "posX": -23.0621777, "posY": 1.03131986, "posZ": -1.8735311, "rotX": 359.97937, "rotY": 179.998413, "rotZ": 359.9928, "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, "CardID": 303, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "287c80", "Name": "Card", "Transform": { "posX": 0.79415, "posY": 1.19523346, "posZ": -5.819797, "rotX": 5.38826555E-07, "rotY": 180.000046, "rotZ": 2.43092541E-06, "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, "CardID": 507, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fca5db", "Name": "Card", "Transform": { "posX": 0.9619628, "posY": 1.1779635, "posZ": -6.352775, "rotX": 1.03514958E-06, "rotY": 179.999359, "rotZ": 1.83088525E-06, "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, "CardID": 509, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "fed65c", "Name": "Card", "Transform": { "posX": -2.72472262, "posY": 1.65710127, "posZ": 0.3733364, "rotX": 0.0168500654, "rotY": 179.989288, "rotZ": 0.08025455, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda", "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": 101, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0f2ffc", "Name": "Card", "Transform": { "posX": -2.68856955, "posY": 1.6554575, "posZ": -5.04852247, "rotX": 0.0168578327, "rotY": 179.983734, "rotZ": 0.08025274, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act", "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": 100, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "256aa6", "Name": "Card", "Transform": { "posX": -3.956012, "posY": 1.655648, "posZ": -10.4412107, "rotX": 359.919739, "rotY": 270.000122, "rotZ": 0.01684105, "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": 104, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "aae2b1", "Name": "Custom_Tile", "Transform": { "posX": -3.56600833, "posY": 1.58202791, "posZ": -15.0713816, "rotX": 359.919739, "rotY": 270.000153, "rotZ": 0.0168382619, "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": "4e3390", "Name": "Deck", "Transform": { "posX": -13.0307932, "posY": 1.68992829, "posZ": 7.26769257, "rotX": 359.9201, "rotY": 269.9855, "rotZ": 0.016898023, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "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": [ 102, 103, 105, 106, 107, 109, 111, 110, 119, 118, 117, 116, 115, 114, 113, 108 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "3d15e9", "Name": "Card", "Transform": { "posX": -2.24099517, "posY": 1.21386945, "posZ": 2.40633559, "rotX": 0.000511379854, "rotY": 179.999451, "rotZ": 179.998886, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Caryle Mansion Library", "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, "Hands": true, "CardID": 102, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dd71f0", "Name": "Card", "Transform": { "posX": -2.041262, "posY": 1.2041899, "posZ": 2.86869764, "rotX": 0.0005418666, "rotY": 179.998566, "rotZ": 180.004532, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Caryle Mansion", "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, "Hands": true, "CardID": 103, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "06f09c", "Name": "Card", "Transform": { "posX": -1.98662412, "posY": 1.19452155, "posZ": 2.258135, "rotX": 0.000747017039, "rotY": 180.000046, "rotZ": 180.001587, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Emerson Imports", "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, "Hands": true, "CardID": 105, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3b07a6", "Name": "Card", "Transform": { "posX": -2.20006728, "posY": 1.1848563, "posZ": 2.69334984, "rotX": 0.000337080739, "rotY": 180.01181, "rotZ": 180.007431, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Funeral", "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, "Hands": true, "CardID": 106, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a6913d", "Name": "Card", "Transform": { "posX": -2.59464431, "posY": 1.17542386, "posZ": 2.44965, "rotX": 0.0006914822, "rotY": 179.999039, "rotZ": 179.952881, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fire Escape", "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, "Hands": true, "CardID": 107, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d6b99e", "Name": "Card", "Transform": { "posX": -2.25951982, "posY": 1.16555083, "posZ": 2.46710467, "rotX": 0.0007531052, "rotY": 179.9992, "rotZ": 179.998383, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Harvard University", "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, "Hands": true, "CardID": 109, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2d32a2", "Name": "Card", "Transform": { "posX": -2.42064166, "posY": 1.15583944, "posZ": 2.71955037, "rotX": 0.0009123445, "rotY": 180.021255, "rotZ": 179.999741, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ju-Ju House Basement", "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, "Hands": true, "CardID": 111, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c96a80", "Name": "Card", "Transform": { "posX": -2.73883176, "posY": 1.14621019, "posZ": 2.31337953, "rotX": -0.002354515, "rotY": 180.000061, "rotZ": 179.992737, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ju-Ju House", "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, "Hands": true, "CardID": 110, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "69858a", "Name": "Card", "Transform": { "posX": -2.37942076, "posY": 1.18873572, "posZ": 2.508488, "rotX": 0.0008166906, "rotY": 180.000076, "rotZ": 179.999878, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Pit", "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, "Hands": true, "CardID": 119, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a0ca08", "Name": "Card", "Transform": { "posX": -2.02817178, "posY": 1.18242586, "posZ": 2.34926271, "rotX": 2.59258031E-05, "rotY": 179.999634, "rotZ": 180.002487, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Room 410", "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, "Hands": true, "CardID": 118, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "23bbfe", "Name": "Card", "Transform": { "posX": -2.17513585, "posY": 1.17743444, "posZ": 2.65257788, "rotX": 0.000714968948, "rotY": 180.000015, "rotZ": 179.999634, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Police Department", "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, "Hands": true, "CardID": 117, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9ee8d8", "Name": "Card", "Transform": { "posX": -2.187505, "posY": 1.17478335, "posZ": 2.37244415, "rotX": 0.0006505073, "rotY": 179.99968, "rotZ": 179.999588, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "NY Train Station", "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, "Hands": true, "CardID": 116, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4ca809", "Name": "Card", "Transform": { "posX": -2.521739, "posY": 1.176837, "posZ": 2.33039021, "rotX": -0.00177800714, "rotY": 180.000046, "rotZ": 179.997543, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "New York Times", "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, "Hands": true, "CardID": 115, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "706cfc", "Name": "Card", "Transform": { "posX": -4.63920927, "posY": 1.1916405, "posZ": 6.26973963, "rotX": -0.000905235065, "rotY": 180.000427, "rotZ": 0.00326996623, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "New York Streets", "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, "Hands": true, "CardID": 114, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bb4aa3", "Name": "Card", "Transform": { "posX": -4.30386972, "posY": 1.200917, "posZ": 5.57035, "rotX": 0.006549201, "rotY": 179.99968, "rotZ": 0.03732681, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Miskatonik University", "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, "Hands": true, "CardID": 113, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7bdddd", "Name": "Card", "Transform": { "posX": -4.94964743, "posY": 1.21100926, "posZ": 5.84343529, "rotX": 359.9862, "rotY": 179.931381, "rotZ": 0.03435499, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hotel Lobby", "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, "Hands": true, "CardID": 108, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 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 } } ] }