{ "GUID": "bcfff6", "Name": "Custom_Model_Bag", "Transform": { "posX": 0.269771069, "posY": 1.489607, "posZ": 28.7770214, "rotX": 359.920135, "rotY": 270.000183, "rotZ": 0.0168742146, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "The Dying Star", "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/798737729142922162/AD09D68EC542F778CCA3A4F5B33E17EF50AFE31B/", "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\":{\"9ae382\":{\"lock\":false,\"pos\":{\"x\":-3.3515,\"y\":1.4052,\"z\":13.818},\"rot\":{\"x\":359.9832,\"y\":-0.0001,\"z\":359.9197}},\"b310b9\":{\"lock\":false,\"pos\":{\"x\":8.6044,\"y\":1.2859,\"z\":4.9796},\"rot\":{\"x\":0.08,\"y\":89.9997,\"z\":359.9831}},\"c2a55d\":{\"lock\":false,\"pos\":{\"x\":8.6023,\"y\":1.2838,\"z\":-2.2398},\"rot\":{\"x\":0.08,\"y\":89.9987,\"z\":359.9831}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "b310b9", "Name": "Bag", "Transform": { "posX": 8.604401, "posY": 1.28594744, "posZ": 4.97959948, "rotX": 0.07995989, "rotY": 89.9997, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Part 1", "Description": "The Dying Star", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.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, "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,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\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, 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\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", 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--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\":{\"2ea07b\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.655,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9981,\"z\":0.0687}},\"37bf35\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.857,\"z\":5.7572},\"rot\":{\"x\":359.9198,\"y\":269.9612,\"z\":180.0169}},\"414e12\":{\"lock\":false,\"pos\":{\"x\":-9.705,\"y\":1.4138,\"z\":12.8271},\"rot\":{\"x\":359.9831,\"y\":0.002,\"z\":359.92}},\"46c729\":{\"lock\":false,\"pos\":{\"x\":-9.2963,\"y\":1.6522,\"z\":-0.1895},\"rot\":{\"x\":359.9202,\"y\":269.9999,\"z\":0.0168}},\"516099\":{\"lock\":false,\"pos\":{\"x\":-13.6326,\"y\":1.6929,\"z\":-0.0771},\"rot\":{\"x\":359.9201,\"y\":269.9896,\"z\":0.0169}},\"749379\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9832,\"y\":359.9894,\"z\":359.9197}},\"7dff5b\":{\"lock\":false,\"pos\":{\"x\":-8.9396,\"y\":1.3985,\"z\":9.056},\"rot\":{\"x\":359.9831,\"y\":0.0049,\"z\":354.5837}},\"8cfb70\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.655,\"z\":-5.0485},\"rot\":{\"x\":359.9832,\"y\":359.9856,\"z\":359.9197}},\"8d62ae\":{\"lock\":false,\"pos\":{\"x\":-3.5101,\"y\":1.5819,\"z\":-15.2044},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"e43848\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "2ea07b", "Name": "Card", "Transform": { "posX": 1.696401, "posY": 1.65499461, "posZ": 14.2788019, "rotX": 359.95517, "rotY": 224.998062, "rotZ": 0.06866192, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Al-Khazin", "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": 509, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "414e12", "Name": "Bag", "Transform": { "posX": -9.704998, "posY": 1.4137758, "posZ": 12.8271017, "rotX": 359.9831, "rotY": 0.00190903433, "rotZ": 359.92, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "1 Delta File 1", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.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, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "be83a3", "Name": "Card", "Transform": { "posX": 12.29983, "posY": 3.04587674, "posZ": -2.38726735, "rotX": 357.687561, "rotY": 359.937134, "rotZ": 1.506065, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 1", "Description": "from delta file 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": 606, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c83f00", "Name": "Deck", "Transform": { "posX": 13.2691116, "posY": 3.01694441, "posZ": -8.652511, "rotX": 2.05504261E-06, "rotY": 269.985565, "rotZ": 7.54448E-06, "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": [ 528, 529, 530 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "a041e8", "Name": "Card", "Transform": { "posX": -4.23333836, "posY": 1.03158951, "posZ": -3.882624, "rotX": 0.00207581744, "rotY": 179.9935, "rotZ": -0.0005014452, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Globe Room", "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": 528, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b68582", "Name": "Card", "Transform": { "posX": -4.076352, "posY": 1.17004848, "posZ": -3.608552, "rotX": 0.00372373126, "rotY": 179.9934, "rotZ": 0.00929096248, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "McArthur Household", "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": 529, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "90faef", "Name": "Card", "Transform": { "posX": -3.70731616, "posY": 1.1877439, "posZ": -3.72649336, "rotX": -0.004372664, "rotY": 179.97966, "rotZ": 0.016846085, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Myers Household", "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": 530, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "7dff5b", "Name": "Bag", "Transform": { "posX": -8.939598, "posY": 1.39849555, "posZ": 9.056002, "rotX": 359.9822, "rotY": 0.00464434549, "rotZ": 354.580139, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "1 Delta File 2", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.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, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7f351d", "Name": "Card", "Transform": { "posX": 0.8420549, "posY": 3.090881, "posZ": 10.0924244, "rotX": 0.495833963, "rotY": 270.012756, "rotZ": 2.10326338, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "1 Agenda 2a", "Description": "from Delta file 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, "Hands": true, "CardID": 607, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "707f6e", "Name": "Deck", "Transform": { "posX": 5.460905, "posY": 3.025889, "posZ": 8.2813, "rotX": 3.73618221, "rotY": 179.97522, "rotZ": 359.395264, "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, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 531, 532, 533, 534 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "c05e53", "Name": "Card", "Transform": { "posX": 1.723061, "posY": 1.03151357, "posZ": -3.10790563, "rotX": 0.00896273, "rotY": 180.00032, "rotZ": 0.00236741663, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alley", "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": 531, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8537e1", "Name": "Card", "Transform": { "posX": 1.48397708, "posY": 1.17860007, "posZ": -3.05556, "rotX": 0.0547305681, "rotY": 180.001648, "rotZ": 0.164725944, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Franklin Household", "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": 532, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3df91e", "Name": "Card", "Transform": { "posX": 1.71510732, "posY": 1.1875726, "posZ": -3.11699414, "rotX": -0.000936827, "rotY": 180.007263, "rotZ": -0.000719851465, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Myers Household", "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": 533, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e6b69", "Name": "Card", "Transform": { "posX": 1.669958, "posY": 1.1740402, "posZ": -3.28449869, "rotX": 0.00168330222, "rotY": 180.0, "rotZ": 0.000443409983, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Greenstone Park", "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": 534, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "24a651", "Name": "Card", "Transform": { "posX": 4.97689962, "posY": 3.01617336, "posZ": 8.318436, "rotX": 2.78180075, "rotY": 179.886368, "rotZ": 356.800964, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dificulty", "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": 535, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d76f6d", "Name": "Deck", "Transform": { "posX": 23.8342266, "posY": 3.064101, "posZ": -9.988421, "rotX": 1.30050457, "rotY": 270.048279, "rotZ": 183.3505, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter", "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": [ 540, 539, 538, 537 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "2d3389", "Name": "Card", "Transform": { "posX": -4.339507, "posY": 1.03168154, "posZ": -4.62028265, "rotX": 0.00126451976, "rotY": 179.980408, "rotZ": 0.0005734454, "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": 540, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4e6f1d", "Name": "Card", "Transform": { "posX": -4.66866636, "posY": 1.17008889, "posZ": -4.740373, "rotX": 0.0152796237, "rotY": 179.999771, "rotZ": 359.9887, "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": 539, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cd2b35", "Name": "Card", "Transform": { "posX": -4.23662663, "posY": 1.18770182, "posZ": -4.57978535, "rotX": 0.00152744167, "rotY": 180.001038, "rotZ": 0.004938084, "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": 538, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c39e64", "Name": "Card", "Transform": { "posX": -3.9379952, "posY": 1.173934, "posZ": -4.715411, "rotX": 0.0050116186, "rotY": 179.9998, "rotZ": 0.00375403115, "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": 537, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "1569f4", "Name": "Card", "Transform": { "posX": 23.1228619, "posY": 3.0174036, "posZ": -15.1593513, "rotX": 7.77706E-07, "rotY": 269.985565, "rotZ": -8.12507665E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Al-Khazin", "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": 536, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "37bf35", "Name": "DeckCustom", "Transform": { "posX": -3.92770028, "posY": 1.8569814, "posZ": 5.7572, "rotX": 359.919769, "rotY": 269.961151, "rotZ": 180.0169, "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": [ 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745 ], "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "c08261", "Name": "Card", "Transform": { "posX": 0.662694752, "posY": 1.50371444, "posZ": -6.158035, "rotX": -0.0007199763, "rotY": 180.000824, "rotZ": 180.001724, "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": 700, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8d3812", "Name": "Card", "Transform": { "posX": -0.2740369, "posY": 1.61000049, "posZ": 3.09213686, "rotX": -0.000367840985, "rotY": 180.0, "rotZ": 179.999878, "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": 701, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 702, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 703, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 704, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 705, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 706, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 707, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 708, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 709, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 710, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 711, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 712, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 713, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 714, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 715, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 716, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 717, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 718, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 719, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 720, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 721, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 722, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 723, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 724, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 725, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 726, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 727, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 728, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 729, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 730, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 731, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 732, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 733, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 734, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 735, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 736, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 737, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 738, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 739, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 740, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 741, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 742, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 743, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 744, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 745, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] } ] }, { "GUID": "749379", "Name": "Deck", "Transform": { "posX": -2.7246, "posY": 1.656641, "posZ": 0.373299658, "rotX": 359.983154, "rotY": 359.989441, "rotZ": 359.919739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "1 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": [ 602, 601, 600 ], "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "be83a3", "Name": "Card", "Transform": { "posX": 0.876002967, "posY": 1.029247, "posZ": -5.88280344, "rotX": 0.0157930646, "rotY": 270.000275, "rotZ": 0.00475618057, "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": 602, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0534e6", "Name": "Card", "Transform": { "posX": -3.66380453, "posY": 1.03113639, "posZ": -6.86434746, "rotX": 0.00677276962, "rotY": 270.0003, "rotZ": 0.00202856446, "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": 601, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be83a3", "Name": "Card", "Transform": { "posX": -3.57760334, "posY": 1.16936362, "posZ": -6.80068, "rotX": -0.00302288472, "rotY": 270.0004, "rotZ": 0.0072340616, "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": 600, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8cfb70", "Name": "Deck", "Transform": { "posX": -2.6886, "posY": 1.65499747, "posZ": -5.048501, "rotX": 359.983154, "rotY": 359.9856, "rotZ": 359.919739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "1 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": [ 605, 604, 603 ], "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "be83a3", "Name": "Card", "Transform": { "posX": 1.69672573, "posY": 1.030596, "posZ": -3.82701659, "rotX": 0.0310797319, "rotY": 270.001648, "rotZ": 0.008361563, "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": 605, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a69e62", "Name": "Card", "Transform": { "posX": 2.007814, "posY": 1.031103, "posZ": -7.65425253, "rotX": 0.008325971, "rotY": 270.0003, "rotZ": 0.0024879016, "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": 604, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be83a3", "Name": "Card", "Transform": { "posX": 2.331319, "posY": 1.169332, "posZ": -7.668506, "rotX": -0.004223937, "rotY": 270.0001, "rotZ": 0.004386844, "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": 603, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e43848", "Name": "Card", "Transform": { "posX": -3.95590019, "posY": 1.65564811, "posZ": -10.4412022, "rotX": 359.919739, "rotY": 269.985474, "rotZ": 0.0168525539, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dificulty", "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": 527, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8d62ae", "Name": "Custom_Tile", "Transform": { "posX": -3.5101, "posY": 1.58191037, "posZ": -15.204402, "rotX": 359.919739, "rotY": 270.000061, "rotZ": 0.0168355647, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "The Dying Star", "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 = 'The Dying Star'\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": "46c729", "Name": "Deck", "Transform": { "posX": -9.2963, "posY": 1.65221262, "posZ": -0.189499855, "rotX": 359.920227, "rotY": 269.999939, "rotZ": 0.0167923979, "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": false, "SidewaysCard": false, "DeckIDs": [ 508, 507, 506, 505, 504, 503, 502, 501, 500 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "ec2e15", "Name": "Card", "Transform": { "posX": -9.56732, "posY": 1.77703035, "posZ": -0.162022084, "rotX": 0.09779772, "rotY": 270.001, "rotZ": 180.308014, "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": 508, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "663165", "Name": "Card", "Transform": { "posX": -9.699058, "posY": 1.82957876, "posZ": -0.291165173, "rotX": 0.3117816, "rotY": 270.004425, "rotZ": 180.474, "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": 507, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "71cd48", "Name": "Card", "Transform": { "posX": -9.497888, "posY": 1.82422173, "posZ": -0.0148924273, "rotX": 359.931976, "rotY": 269.999664, "rotZ": 180.0071, "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": 506, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "59d447", "Name": "Card", "Transform": { "posX": -9.685767, "posY": 1.76849627, "posZ": -0.1060423, "rotX": 359.929352, "rotY": 270.0071, "rotZ": 182.663116, "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": 505, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cceb44", "Name": "Card", "Transform": { "posX": -9.802962, "posY": 1.81790209, "posZ": -0.148775712, "rotX": 359.9368, "rotY": 269.9973, "rotZ": 179.896637, "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": 504, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a52d78", "Name": "Card", "Transform": { "posX": -9.021406, "posY": 1.81768072, "posZ": -0.2657176, "rotX": 359.927216, "rotY": 269.999969, "rotZ": 180.009521, "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": 503, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "664cac", "Name": "Card", "Transform": { "posX": -9.175297, "posY": 1.83184016, "posZ": -0.141577646, "rotX": 359.929138, "rotY": 269.998962, "rotZ": 179.962738, "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": 502, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2a9702", "Name": "Card", "Transform": { "posX": -9.292303, "posY": 1.8136133, "posZ": -0.0371242836, "rotX": 359.936035, "rotY": 270.0059, "rotZ": 179.994247, "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": 501, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "442e88", "Name": "Card", "Transform": { "posX": -9.490518, "posY": 1.66901493, "posZ": -0.127001464, "rotX": 359.9082, "rotY": 270.001465, "rotZ": 179.998886, "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": 500, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "516099", "Name": "Deck", "Transform": { "posX": -13.6326, "posY": 1.69293535, "posZ": -0.0770996958, "rotX": 359.9201, "rotY": 269.989624, "rotZ": 0.0168849, "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": [ 526, 525, 524, 523, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "bc9446", "Name": "Card", "Transform": { "posX": 12.8723879, "posY": 1.03150129, "posZ": -6.79990864, "rotX": 0.009577927, "rotY": 180.012619, "rotZ": 0.00259979488, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "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": 526, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "136467", "Name": "Card", "Transform": { "posX": 12.5612326, "posY": 1.1791873, "posZ": -6.898218, "rotX": 359.988556, "rotY": 179.998672, "rotZ": 0.117477134, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hiden comparment", "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": 525, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "532f32", "Name": "Card", "Transform": { "posX": 12.7412634, "posY": 1.18771636, "posZ": -6.60475874, "rotX": 0.001227179, "rotY": 180.009125, "rotZ": -0.00102616043, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Globe Room", "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": 524, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "df5511", "Name": "Card", "Transform": { "posX": 9.610464, "posY": 1.17401552, "posZ": -5.94310474, "rotX": 0.001559473, "rotY": 179.999969, "rotZ": 0.00019733209, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Basement Landing", "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": 523, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f1d383", "Name": "Card", "Transform": { "posX": 9.169412, "posY": 1.17195082, "posZ": -6.32347441, "rotX": 0.00107955921, "rotY": 180.012985, "rotZ": 359.990936, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "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": 522, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "05e7a1", "Name": "Card", "Transform": { "posX": 9.319623, "posY": 1.17459893, "posZ": -5.83672333, "rotX": -0.0008573743, "rotY": 180.017883, "rotZ": -0.00237043668, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "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": 521, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4778f8", "Name": "Card", "Transform": { "posX": 9.286199, "posY": 1.17967129, "posZ": -6.4101305, "rotX": 0.00138356455, "rotY": 180.008438, "rotZ": -0.004394323, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "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": 520, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4534a2", "Name": "Card", "Transform": { "posX": 9.893779, "posY": 1.18598485, "posZ": -6.110355, "rotX": 0.00186176307, "rotY": 180.010834, "rotZ": 0.00315477652, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Church", "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": 519, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1e6a36", "Name": "Card", "Transform": { "posX": 9.428581, "posY": 1.14348793, "posZ": -6.702193, "rotX": 0.0011658601, "rotY": 180.010071, "rotZ": -0.00107104622, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Franks Cornerstore", "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": 518, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "479529", "Name": "Card", "Transform": { "posX": 9.23116, "posY": 1.15309584, "posZ": -6.637772, "rotX": 0.00228695455, "rotY": 180.00914, "rotZ": -0.00221982482, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Greenstone Park", "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": 517, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b8a689", "Name": "Card", "Transform": { "posX": 9.381087, "posY": 1.16272986, "posZ": -6.10700035, "rotX": -0.000621737563, "rotY": 180.017487, "rotZ": -0.000895477133, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Franklin Household", "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": 516, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5e3f14", "Name": "Card", "Transform": { "posX": 9.149571, "posY": 1.17230833, "posZ": -6.349993, "rotX": -0.001439444, "rotY": 180.018127, "rotZ": -0.0028013757, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "McArthur Household", "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": 515, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5ba62c", "Name": "Card", "Transform": { "posX": 9.717647, "posY": 1.18204248, "posZ": -6.113216, "rotX": -0.000704256352, "rotY": 179.99942, "rotZ": 0.00140989292, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Myers Household", "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": 514, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "816cee", "Name": "Card", "Transform": { "posX": 9.210497, "posY": 1.19166815, "posZ": -5.752472, "rotX": -0.00100379041, "rotY": 180.017746, "rotZ": -0.00264835637, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alley", "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": 513, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a1d25f", "Name": "Card", "Transform": { "posX": 9.452949, "posY": 1.20139706, "posZ": -5.65773726, "rotX": 0.000531935832, "rotY": 179.9894, "rotZ": 0.0009844634, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alley", "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": 512, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e47aad", "Name": "Card", "Transform": { "posX": 9.376215, "posY": 1.21108544, "posZ": -6.276587, "rotX": -0.001741502, "rotY": 180.010818, "rotZ": -0.00110407779, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alley", "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": 511, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cf0d17", "Name": "Card", "Transform": { "posX": 6.91297674, "posY": 1.2207, "posZ": -0.6065362, "rotX": -0.000296128623, "rotY": 180.0325, "rotZ": -0.00179175113, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alley", "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/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "c2a55d", "Name": "Bag", "Transform": { "posX": 8.602303, "posY": 1.28382277, "posZ": -2.239803, "rotX": 0.07996411, "rotY": 89.9987259, "rotZ": 359.9831, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Part 2", "Description": "The Dying Star", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.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, "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,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\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={0,0.3,-2.8}, 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\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", 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--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\":{\"073778\":{\"lock\":false,\"pos\":{\"x\":-9.1476,\"y\":1.6649,\"z\":0.3483},\"rot\":{\"x\":359.9204,\"y\":269.9829,\"z\":0.0169}},\"3e2f9c\":{\"lock\":false,\"pos\":{\"x\":-10.6769,\"y\":1.4126,\"z\":4.2867},\"rot\":{\"x\":359.9831,\"y\":359.9901,\"z\":359.92}},\"4c28a9\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9832,\"y\":359.9856,\"z\":359.9197}},\"4cd3ab\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9981,\"z\":0.0687}},\"4db945\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":0.0169}},\"6200cb\":{\"lock\":false,\"pos\":{\"x\":-2.6872,\"y\":1.6535,\"z\":-5.0419},\"rot\":{\"x\":359.9832,\"y\":-0.0056,\"z\":359.9197}},\"6c8cf1\":{\"lock\":false,\"pos\":{\"x\":-10.8516,\"y\":1.4138,\"z\":7.5199},\"rot\":{\"x\":359.9831,\"y\":0.0001,\"z\":359.92}},\"851506\":{\"lock\":false,\"pos\":{\"x\":-12.9354,\"y\":1.705,\"z\":0.1838},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}},\"a148f2\":{\"lock\":false,\"pos\":{\"x\":-3.4667,\"y\":1.5821,\"z\":-14.2764},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"ba503d\":{\"lock\":false,\"pos\":{\"x\":-10.7099,\"y\":1.4157,\"z\":14.4419},\"rot\":{\"x\":359.9831,\"y\":359.9904,\"z\":359.92}},\"c95716\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9856,\"z\":0.0169}},\"e382bb\":{\"lock\":false,\"pos\":{\"x\":-10.8115,\"y\":1.4147,\"z\":10.8723},\"rot\":{\"x\":359.9831,\"y\":0,\"z\":359.92}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "073778", "Name": "Deck", "Transform": { "posX": -9.1476, "posY": 1.66494143, "posZ": 0.348300159, "rotX": 359.920258, "rotY": 269.982819, "rotZ": 0.0169893, "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": false, "SidewaysCard": false, "DeckIDs": [ 153614, 153613, 153612, 153611, 153610 ], "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "55a0ad", "Name": "Card", "Transform": { "posX": -9.371471, "posY": 1.67121029, "posZ": 2.17446136, "rotX": 358.974731, "rotY": 270.0415, "rotZ": 359.988678, "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": 153614, "SidewaysCard": false, "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "30abe1", "Name": "Card", "Transform": { "posX": -8.607037, "posY": 1.77000856, "posZ": -0.8060038, "rotX": 359.9324, "rotY": 269.991852, "rotZ": 182.419174, "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": 153613, "SidewaysCard": false, "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "42a756", "Name": "Card", "Transform": { "posX": -9.007715, "posY": 1.83149517, "posZ": -0.5017092, "rotX": 359.936432, "rotY": 269.998352, "rotZ": 179.976486, "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": 153612, "SidewaysCard": false, "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "658fcc", "Name": "Card", "Transform": { "posX": -9.144828, "posY": 1.78084147, "posZ": -0.138693631, "rotX": 359.9194, "rotY": 270.0171, "rotZ": 182.693939, "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": 153611, "SidewaysCard": false, "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "68e63e", "Name": "Card", "Transform": { "posX": -8.965834, "posY": 1.6682837, "posZ": -0.5065376, "rotX": 359.908936, "rotY": 270.023682, "rotZ": 180.034286, "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": 153610, "SidewaysCard": false, "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "3e2f9c", "Name": "Bag", "Transform": { "posX": -10.6769, "posY": 1.41261721, "posZ": 4.286701, "rotX": 359.9831, "rotY": 359.990143, "rotZ": 359.92, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Doppelganger", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.7019608, "g": 0.0234856755, "b": 0.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, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "32bcd1", "Name": "Deck", "Transform": { "posX": 8.691902, "posY": 3.099228, "posZ": -0.849248, "rotX": 357.859741, "rotY": 270.014374, "rotZ": 179.094849, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter Doppelganger", "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": [ 747, 757, 756, 755, 754, 753, 752, 751, 750, 749, 748, 746 ], "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "554fdb", "Name": "Card", "Transform": { "posX": 2.981788, "posY": 3.86618161, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 747, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6194a7", "Name": "Card", "Transform": { "posX": -3.57171416, "posY": 3.03284836, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 757, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e3d822", "Name": "Card", "Transform": { "posX": -2.916364, "posY": 3.11618161, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 756, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "858e90", "Name": "Card", "Transform": { "posX": -2.26101375, "posY": 3.199515, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 755, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed290f", "Name": "Card", "Transform": { "posX": -1.60566354, "posY": 3.28284836, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 754, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f21731", "Name": "Card", "Transform": { "posX": -0.9503133, "posY": 3.36618161, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 753, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e34d90", "Name": "Card", "Transform": { "posX": -0.294963121, "posY": 3.449515, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 752, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c20c78", "Name": "Card", "Transform": { "posX": 0.3603871, "posY": 3.53284836, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 751, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6754a5", "Name": "Card", "Transform": { "posX": 1.0157373, "posY": 3.61618161, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 750, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "001386", "Name": "Card", "Transform": { "posX": 1.6710875, "posY": 3.699515, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 749, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c689c7", "Name": "Card", "Transform": { "posX": 2.32643771, "posY": 3.78284836, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 748, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c08261", "Name": "Card", "Transform": { "posX": 3.63713813, "posY": 3.949515, "posZ": -14.37867, "rotX": 5.75057832E-08, "rotY": 180.0, "rotZ": 1.955732E-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, "Hands": true, "CardID": 746, "SidewaysCard": false, "CustomDeck": { "7": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "4c28a9", "Name": "Deck", "Transform": { "posX": -2.7245996, "posY": 1.65664113, "posZ": 0.373300642, "rotX": 359.983154, "rotY": 359.985626, "rotZ": 359.919739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "2 Agenda Deck", "Description": "for part 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": false, "SidewaysCard": true, "DeckIDs": [ 614, 613, 612 ], "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9095b8", "Name": "Card", "Transform": { "posX": -7.63195372, "posY": 1.0257597, "posZ": -3.739854, "rotX": 0.0140659092, "rotY": 269.999939, "rotZ": 0.00425542751, "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": 614, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4670c3", "Name": "Card", "Transform": { "posX": -7.21131, "posY": 1.163633, "posZ": -3.99843764, "rotX": 359.993134, "rotY": 269.999329, "rotZ": 0.0297868084, "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": 613, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be83a3", "Name": "Card", "Transform": { "posX": -7.69465, "posY": 1.18757319, "posZ": -3.83406234, "rotX": -0.00053886394, "rotY": 270.0002, "rotZ": 0.005027478, "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": 612, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "4cd3ab", "Name": "Deck", "Transform": { "posX": 1.69640124, "posY": 1.63675427, "posZ": 14.2788029, "rotX": 359.95517, "rotY": 224.998062, "rotZ": 0.0686539039, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Diary", "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": [ 153909, 153908, 153907, 153906, 153905, 153904, 153903, 153902 ], "CustomDeck": { "1539": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f582e6", "Name": "Card", "Transform": { "posX": -0.6755531, "posY": 1.03156924, "posZ": -2.26924443, "rotX": 0.006424375, "rotY": 179.999847, "rotZ": 0.0019914615, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Diary", "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": 153909, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ddb034", "Name": "Card", "Transform": { "posX": -0.799359858, "posY": 1.16986084, "posZ": -2.117776, "rotX": -0.00320724258, "rotY": 179.999924, "rotZ": 0.00295228, "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": 153908, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fdc42b", "Name": "Card", "Transform": { "posX": -0.342392385, "posY": 1.18745685, "posZ": -2.37649369, "rotX": 0.0006895949, "rotY": 179.960052, "rotZ": 0.0373638272, "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": 153907, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "18aadc", "Name": "Card", "Transform": { "posX": -1.05308843, "posY": 1.17406714, "posZ": -2.24320269, "rotX": 0.00653555, "rotY": 180.013351, "rotZ": 0.0192284379, "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": 153906, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f9900e", "Name": "Card", "Transform": { "posX": -0.8148409, "posY": 1.17203021, "posZ": -1.92041445, "rotX": 0.001007066, "rotY": 179.996475, "rotZ": -0.002381149, "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": 153905, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e56caf", "Name": "Card", "Transform": { "posX": 0.11299786, "posY": 1.174355, "posZ": -2.24189973, "rotX": 359.981171, "rotY": 179.9983, "rotZ": 0.0260003339, "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": 153904, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c9734f", "Name": "Card", "Transform": { "posX": -0.0220587645, "posY": 1.17930758, "posZ": -2.3036437, "rotX": 0.009985382, "rotY": 180.002762, "rotZ": 0.01765782, "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": 153903, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "890e83", "Name": "Card", "Transform": { "posX": -0.334400237, "posY": 1.18583882, "posZ": -2.48729014, "rotX": 0.000902406056, "rotY": 179.99765, "rotZ": 0.0104924943, "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": 153902, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "4db945", "Name": "Card", "Transform": { "posX": -3.95590067, "posY": 1.655648, "posZ": -10.4412041, "rotX": 359.919739, "rotY": 269.9856, "rotZ": 0.0168612469, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dificulty", "Description": "for part 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": 153715, "SidewaysCard": false, "CustomDeck": { "1537": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6200cb", "Name": "Deck", "Transform": { "posX": -2.68719983, "posY": 1.65349472, "posZ": -5.041901, "rotX": 359.983154, "rotY": -0.005572657, "rotZ": 359.919739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "2 Act Deck", "Description": "for part 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": false, "SidewaysCard": true, "DeckIDs": [ 611, 610, 609, 608 ], "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "be83a3", "Name": "Card", "Transform": { "posX": -2.71824551, "posY": 1.03068686, "posZ": -6.233809, "rotX": 0.047552824, "rotY": 270.001038, "rotZ": 0.0136282165, "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": 611, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e1a8c8", "Name": "Card", "Transform": { "posX": -0.4032397, "posY": 1.02594459, "posZ": -8.716595, "rotX": 0.005719329, "rotY": 269.998718, "rotZ": 0.00252902, "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": 610, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "76d37e", "Name": "Card", "Transform": { "posX": 0.07470472, "posY": 1.16487479, "posZ": -8.489016, "rotX": 0.0101693785, "rotY": 270.0036, "rotZ": 0.0126234517, "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": 609, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be83a3", "Name": "Card", "Transform": { "posX": -0.405389249, "posY": 1.18756664, "posZ": -8.252638, "rotX": 0.00216353266, "rotY": 269.999451, "rotZ": 359.9915, "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": 608, "SidewaysCard": true, "CustomDeck": { "6": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "6c8cf1", "Name": "Bag", "Transform": { "posX": -10.8515978, "posY": 1.41381216, "posZ": 7.51990032, "rotX": 359.983124, "rotY": 9.160797E-05, "rotZ": 359.92, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "extra locations", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.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, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9a76f9", "Name": "Deck", "Transform": { "posX": 12.7542944, "posY": 3.102511, "posZ": -4.63646555, "rotX": 1.29863489, "rotY": 270.004639, "rotZ": 0.997719765, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "extra 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": [ 153600, 153601 ], "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4db945", "Name": "Card", "Transform": { "posX": -4.96651554, "posY": 1.03165245, "posZ": -2.02510118, "rotX": 0.00186277949, "rotY": 179.999054, "rotZ": 0.0007099037, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Font of Visions", "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": 153600, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "399a78", "Name": "Card", "Transform": { "posX": -4.71849966, "posY": 1.16998458, "posZ": -2.23245716, "rotX": 0.0191268846, "rotY": 179.9941, "rotZ": 0.0131608937, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vyrd Creche", "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": 153601, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "851506", "Name": "Deck", "Transform": { "posX": -12.9353991, "posY": 1.70503175, "posZ": 0.183799177, "rotX": 359.9201, "rotY": 269.985474, "rotZ": 0.01689925, "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": [ 153830, 153835, 153834, 153833, 153832, 153831, 153829, 153828, 153827, 153826, 153825, 153824, 153823, 153822, 153821, 153820, 153819, 153818, 153817, 153816 ], "CustomDeck": { "1538": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "55c178", "Name": "Card", "Transform": { "posX": 1.30589068, "posY": 1.03132665, "posZ": -2.08339381, "rotX": 0.00406454876, "rotY": 180.000122, "rotZ": 0.00104460365, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black river", "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": 153830, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7190fd", "Name": "Card", "Transform": { "posX": 1.328194, "posY": 1.16945827, "posZ": -2.44078016, "rotX": 0.005419081, "rotY": 179.98201, "rotZ": 0.008217378, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Visionary Perch", "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": 153835, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "db73e3", "Name": "Card", "Transform": { "posX": 1.31534636, "posY": 1.18762314, "posZ": -2.515704, "rotX": -0.00548562733, "rotY": 179.989014, "rotZ": -0.00220765127, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sculpture", "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": 153834, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3bd848", "Name": "Card", "Transform": { "posX": 1.42246842, "posY": 1.17398286, "posZ": -2.08094454, "rotX": 0.00243154913, "rotY": 179.999954, "rotZ": -0.00193031132, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mines", "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": 153833, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9ac375", "Name": "Card", "Transform": { "posX": 1.41975737, "posY": 1.1719768, "posZ": -2.07836223, "rotX": 0.00249676546, "rotY": 180.026672, "rotZ": 0.00412961747, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spiralling Pathways", "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": 153832, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "406fba", "Name": "Card", "Transform": { "posX": 1.12630451, "posY": 1.17469966, "posZ": -2.28316474, "rotX": 0.00125970587, "rotY": 180.0, "rotZ": -0.000632959534, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mind in the Hive", "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": 153831, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b47a93", "Name": "Card", "Transform": { "posX": 1.86072755, "posY": 1.17898345, "posZ": -2.06403947, "rotX": 359.981934, "rotY": 180.0002, "rotZ": 0.0472246781, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cyclopean Bridge", "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": 153829, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f559fe", "Name": "Card", "Transform": { "posX": 1.64683092, "posY": 1.18582547, "posZ": -2.14454651, "rotX": 0.000187715443, "rotY": 180.000015, "rotZ": 0.0118759228, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Breeding Grounds", "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": 153828, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a59517", "Name": "Card", "Transform": { "posX": 1.69248652, "posY": 1.14330328, "posZ": -1.95589674, "rotX": -0.00123784028, "rotY": 180.00087, "rotZ": 0.00603586249, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Trecheraus Archive", "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": 153827, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b95b0c", "Name": "Card", "Transform": { "posX": 1.2683239, "posY": 1.15314209, "posZ": -2.35888362, "rotX": 0.00169382209, "rotY": 179.998474, "rotZ": -0.000307724549, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Barren Islet", "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": 153826, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f368c2", "Name": "Card", "Transform": { "posX": 0.9575851, "posY": 1.16275334, "posZ": -2.102207, "rotX": 0.00167910079, "rotY": 179.991257, "rotZ": 0.00150724291, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wide Open Space", "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": 153825, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "644d5e", "Name": "Card", "Transform": { "posX": 1.09727919, "posY": 1.17239547, "posZ": -2.364494, "rotX": 0.00016756948, "rotY": 180.0003, "rotZ": -0.002740575, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Path of Mirrors", "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": 153824, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "470f51", "Name": "Card", "Transform": { "posX": 1.167325, "posY": 1.18212855, "posZ": -2.105521, "rotX": 0.000929157832, "rotY": 179.9854, "rotZ": -0.000321325264, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "the Mouth of Lunacy", "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": 153823, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b4850c", "Name": "Card", "Transform": { "posX": 1.28698611, "posY": 1.19167614, "posZ": -2.12759471, "rotX": -0.00035365345, "rotY": 180.000992, "rotZ": -0.000829623954, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bone 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": 153822, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "db4a07", "Name": "Card", "Transform": { "posX": 1.5526588, "posY": 1.201423, "posZ": -1.968514, "rotX": 0.002060576, "rotY": 179.999924, "rotZ": 0.002882987, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "the Howling Winds", "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": 153821, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a5c84b", "Name": "Card", "Transform": { "posX": 1.10259223, "posY": 1.2111094, "posZ": -2.24366236, "rotX": 0.000826177362, "rotY": 180.000275, "rotZ": 0.00126016152, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "the Enraptured Face", "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": 153820, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5c6106", "Name": "Card", "Transform": { "posX": 1.574566, "posY": 1.2207377, "posZ": -1.88476622, "rotX": 0.00163414178, "rotY": 180.006668, "rotZ": 0.00291838031, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dark Landscape", "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": 153819, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "987eca", "Name": "Card", "Transform": { "posX": 1.34664047, "posY": 1.23042154, "posZ": -1.99916315, "rotX": 0.00113625883, "rotY": 179.986572, "rotZ": 0.00104033446, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dark Glade", "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": 153818, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cc528c", "Name": "Card", "Transform": { "posX": 1.42690992, "posY": 1.24016333, "posZ": -2.22878528, "rotX": 0.001191595, "rotY": 179.9886, "rotZ": 0.0046961084, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Shard", "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": 153817, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d0c5fa", "Name": "Card", "Transform": { "posX": 1.31712651, "posY": 1.24974072, "posZ": -2.15489078, "rotX": 0.00107555592, "rotY": 180.000229, "rotZ": 0.0009050605, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Desert", "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": 153816, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a148f2", "Name": "Custom_Tile", "Transform": { "posX": -3.46670055, "posY": 1.58212233, "posZ": -14.2764034, "rotX": 359.919739, "rotY": 270.000031, "rotZ": 0.0168378949, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "The Dying Star", "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 = 'The Dying Star'\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": "ba503d", "Name": "Bag", "Transform": { "posX": -10.709897, "posY": 1.41565371, "posZ": 14.4419041, "rotX": 359.9831, "rotY": 359.990479, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dream Journeys", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.190494925, "g": 0.0, "b": 0.7019608 }, "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, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5d69a3", "Name": "Deck", "Transform": { "posX": 14.3534822, "posY": 3.11965275, "posZ": -10.5479546, "rotX": 2.51703882, "rotY": 270.030365, "rotZ": 181.197037, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter Dream Journeys", "Description": "Dream Journeys", "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": [ 118, 117, 115, 116, 114, 113, 112, 111, 109, 110, 108, 107, 106, 105, 104, 103, 102, 101, 100 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.26270819, "posY": 1.24295533, "posZ": -7.33981276, "rotX": -0.0006736604, "rotY": 179.999222, "rotZ": 179.997574, "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": 118, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "edbd65", "Name": "Card", "Transform": { "posX": 3.23010969, "posY": 3.931676, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 117, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f15dba", "Name": "Card", "Transform": { "posX": 2.430759, "posY": 3.82641315, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 115, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4c3999", "Name": "Card", "Transform": { "posX": 2.83043432, "posY": 3.87904429, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 116, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "431ca3", "Name": "Card", "Transform": { "posX": 2.03108358, "posY": 3.7737813, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 114, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "782689", "Name": "Card", "Transform": { "posX": 1.63140821, "posY": 3.72115, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 113, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ce4c5b", "Name": "Card", "Transform": { "posX": 1.23173285, "posY": 3.6685183, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 112, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d3ef55", "Name": "Card", "Transform": { "posX": 0.832057357, "posY": 3.61588645, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 111, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f033ed", "Name": "Card", "Transform": { "posX": 0.0327062532, "posY": 3.51062369, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 109, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bf2242", "Name": "Card", "Transform": { "posX": 0.4323817, "posY": 3.56325483, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 110, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dadfec", "Name": "Card", "Transform": { "posX": -0.366969168, "posY": 3.45799184, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 108, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "90890d", "Name": "Card", "Transform": { "posX": -0.7666446, "posY": 3.40536022, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 107, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c8bb92", "Name": "Card", "Transform": { "posX": -1.1663202, "posY": 3.35272884, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 106, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "446432", "Name": "Card", "Transform": { "posX": -1.56599569, "posY": 3.300097, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 105, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c318b5", "Name": "Card", "Transform": { "posX": -1.96567106, "posY": 3.24746537, "posZ": -14.3788872, "rotX": 0.0, "rotY": 180.0, "rotZ": 0.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, "Hands": true, "CardID": 104, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b5d81", "Name": "Card", "Transform": { "posX": -2.41263318, "posY": 1.23804891, "posZ": -6.96956635, "rotX": 359.4831, "rotY": 180.0078, "rotZ": 359.2544, "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": 103, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "347794", "Name": "Card", "Transform": { "posX": -1.96720183, "posY": 1.35936856, "posZ": -7.080889, "rotX": 359.993958, "rotY": 180.0633, "rotZ": 353.595367, "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": 102, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b641e9", "Name": "Card", "Transform": { "posX": 1.34237313, "posY": 1.03117537, "posZ": -7.051819, "rotX": 0.0249904841, "rotY": 179.997, "rotZ": 0.009927208, "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": 101, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "653499", "Name": "Card", "Transform": { "posX": 1.27085757, "posY": 1.1697, "posZ": -6.88347, "rotX": 359.951965, "rotY": 179.994583, "rotZ": 359.890442, "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": 100, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "c95716", "Name": "Card", "Transform": { "posX": -50.9244, "posY": 1.72662532, "posZ": 8.178398, "rotX": 359.9201, "rotY": 269.9856, "rotZ": 0.0168965757, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dificulty", "Description": "for part 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": 153715, "SidewaysCard": false, "CustomDeck": { "1537": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e382bb", "Name": "Bag", "Transform": { "posX": -10.8114986, "posY": 1.41474319, "posZ": 10.8723011, "rotX": 359.983124, "rotY": -4.183531E-05, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Iridescent", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.7019608, "g": 0.696741641, "b": 0.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, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d6e1f4", "Name": "DeckCustom", "Transform": { "posX": 8.520229, "posY": 3.084072, "posZ": -6.860988, "rotX": 2.26962376, "rotY": 269.993835, "rotZ": 181.95015, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter Iridescent", "Description": "Iridescent", "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": [ 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "074082", "Name": "Card", "Transform": { "posX": -6.70277929, "posY": 1.17521119, "posZ": -2.632899, "rotX": 0.000667684, "rotY": 180.000061, "rotZ": 180.000763, "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": 119, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 120, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 121, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 122, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 123, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 124, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 125, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 126, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 127, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 128, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 129, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "074082", "Name": "Card", "Transform": { "posX": -2.09409654E-06, "posY": 1.04493368, "posZ": 8.31211651E-07, "rotX": 1.451921E-07, "rotY": 179.999924, "rotZ": 180.0001, "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": 130, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] } ] } ] } ] }, { "GUID": "9ae382", "Name": "Bag", "Transform": { "posX": -3.3514998, "posY": 1.40518141, "posZ": 13.8180027, "rotX": 359.983154, "rotY": -5.01171671E-05, "rotZ": 359.919678, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tokens", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.93554014, "g": 0.9096991, "b": 0.881754756 }, "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, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "de5014", "Name": "Custom_Token", "Transform": { "posX": 12.3008661, "posY": 3.54953957, "posZ": 20.4641228, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 0.0168698449, "scaleX": 0.8062451, "scaleY": 1.0, "scaleZ": 0.8062451 }, "Nickname": "Knocked Out", "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359896483/E4514FE5BD4F9C84E6F759040B18A4C80BD5A17E/", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": false } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d43169", "Name": "Custom_Token", "Transform": { "posX": 17.8359566, "posY": 3.5411377, "posZ": 18.1364288, "rotX": 359.920135, "rotY": 270.000153, "rotZ": 180.016876, "scaleX": 0.7375908, "scaleY": 1.0, "scaleZ": 0.7375908 }, "Nickname": "patrol token", "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359896911/D18E11BFEDE67B4E850C6E1DE8BC093A3DD7635A/", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": false } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7069f1", "Name": "Custom_Token", "Transform": { "posX": 18.2413254, "posY": 3.541864, "posZ": 22.5223522, "rotX": 359.920135, "rotY": 270.000519, "rotZ": 180.016876, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "Patrol token", "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359897302/B636316523AB9CBDCA793132B00450C59741CD03/", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": false } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1bdfa5", "Name": "Custom_Tile", "Transform": { "posX": 17.92262, "posY": 3.643355, "posZ": 26.0739479, "rotX": 359.920135, "rotY": 269.996857, "rotZ": 180.016876, "scaleX": 0.901293039, "scaleY": 1.0, "scaleZ": 0.901293039 }, "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359899830/1AFBEE602BBFEC1D37D2D8D65ED1E32C1F515E5E/", "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/778493732359900188/4176483DC0DC9A4BFF6D5CED743A1EF795E77D63/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 0, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "13c6ab", "Name": "Custom_Token", "Transform": { "posX": 14.6103029, "posY": 3.54803562, "posZ": 26.2904644, "rotX": 359.9201, "rotY": 269.996674, "rotZ": 0.0168707184, "scaleX": 0.434757948, "scaleY": 1.0, "scaleZ": 0.434757948 }, "Nickname": "Vigilance token", "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359900944/1A5AC6F7E9ABD70C89A4C2C8D75ECDAE6B1C8E09/", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": false } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e54bfb", "Name": "Custom_Tile", "Transform": { "posX": 17.820467, "posY": 3.64518023, "posZ": 31.7912083, "rotX": 359.9201, "rotY": 270.000427, "rotZ": 180.016876, "scaleX": 0.92564106, "scaleY": 1.0, "scaleZ": 0.92564106 }, "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359899418/49F8DF2DE1A4E835D5593EFBCACA767D4003771E/", "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/778493732359897686/06301A7B4ACB813F7B399C5ED3A987906FEA5E40/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "47eb0e", "Name": "Custom_Tile", "Transform": { "posX": 17.76369, "posY": 3.64455462, "posZ": 29.3972549, "rotX": 359.9201, "rotY": 270.000549, "rotZ": 180.016876, "scaleX": 0.92564106, "scaleY": 1.0, "scaleZ": 0.92564106 }, "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359899418/49F8DF2DE1A4E835D5593EFBCACA767D4003771E/", "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/778493732359898138/CFF09DA209AE9D16249CBEC74636EB2E07E56789/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c71665", "Name": "Custom_Tile", "Transform": { "posX": 14.5989885, "posY": 3.64898062, "posZ": 29.445406, "rotX": 359.9201, "rotY": 270.001465, "rotZ": 180.016876, "scaleX": 0.92564106, "scaleY": 1.0, "scaleZ": 0.92564106 }, "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359899418/49F8DF2DE1A4E835D5593EFBCACA767D4003771E/", "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/778493732359898991/091F51CCB4EF632F6CAF744345FE71F798479C6B/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d29153", "Name": "Custom_Tile", "Transform": { "posX": 14.672719, "posY": 3.6788187, "posZ": 32.0175972, "rotX": 358.635223, "rotY": 270.0591, "rotZ": 175.305511, "scaleX": 0.92564106, "scaleY": 1.0, "scaleZ": 0.92564106 }, "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359899418/49F8DF2DE1A4E835D5593EFBCACA767D4003771E/", "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/778493732359898585/99039B6DECA3F6476B1558406971B6AC8B6A5E57/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.2, "Stackable": false, "Stretch": true } }, "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 } } ] }