SCED/content/curated/en/campaign_north_country_cycle.json
2023-06-26 10:13:37 +02:00

13413 lines
467 KiB
JSON

{
"GUID": "aaceca",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 0.269919932,
"posY": 1.48960674,
"posZ": 28.776989,
"rotX": 359.920135,
"rotY": 270.000031,
"rotZ": 0.0168728661,
"scaleX": 2.21,
"scaleY": 0.2,
"scaleZ": 2.46
},
"Nickname": "North Country Cycle",
"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/798737729142942211/3504BAF688D57DC30E7E1E2009A0FD4951D3BA58/",
"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\":{\"147dea\":{\"lock\":false,\"pos\":{\"x\":9.4431,\"y\":1.2854,\"z\":7.085},\"rot\":{\"x\":0.0799,\"y\":89.9987,\"z\":359.9831}},\"7f9f0d\":{\"lock\":false,\"pos\":{\"x\":9.3077,\"y\":1.2837,\"z\":0.2819},\"rot\":{\"x\":0.0799,\"y\":89.9984,\"z\":359.9831}},\"df5156\":{\"lock\":false,\"pos\":{\"x\":9.2722,\"y\":1.2819,\"z\":-6.0997},\"rot\":{\"x\":0.0799,\"y\":89.9909,\"z\":359.9831}},\"ea0896\":{\"lock\":false,\"pos\":{\"x\":-3.3332,\"y\":1.5816,\"z\":-15.257},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "147dea",
"Name": "Bag",
"Transform": {
"posX": 9.443103,
"posY": 1.28539693,
"posZ": 7.08500051,
"rotX": 0.07997002,
"rotY": 89.9986954,
"rotZ": 359.9831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Part 1",
"Description": "North Country Cycle",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.435539871,
"g": 0.409656584,
"b": 0.381666452
},
"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\":{\"087128\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9955,\"z\":0.0799}},\"0d7742\":{\"lock\":false,\"pos\":{\"x\":-3.9555,\"y\":1.6557,\"z\":-10.4316},\"rot\":{\"x\":359.9197,\"y\":270.0036,\"z\":0.0168}},\"2d4c2b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6179,\"z\":11.46},\"rot\":{\"x\":0.0169,\"y\":179.9954,\"z\":0.0799}},\"4066d9\":{\"lock\":false,\"pos\":{\"x\":-20.0611,\"y\":1.6128,\"z\":11.1353},\"rot\":{\"x\":359.9556,\"y\":224.8917,\"z\":0.0685}},\"4875a0\":{\"lock\":false,\"pos\":{\"x\":-18.9809,\"y\":1.6781,\"z\":-15.0786},\"rot\":{\"x\":359.9204,\"y\":270.0449,\"z\":180.0171}},\"6af68f\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6111,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9954,\"z\":0.0799}},\"6ca432\":{\"lock\":false,\"pos\":{\"x\":-20.2002,\"y\":1.6063,\"z\":-11.4403},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"711660\":{\"lock\":false,\"pos\":{\"x\":-17.1142,\"y\":1.7976,\"z\":-15.2786},\"rot\":{\"x\":355.4229,\"y\":270.0488,\"z\":180.0205}},\"71801c\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6623,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9832,\"z\":0.0169}},\"718835\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6157,\"z\":3.86},\"rot\":{\"x\":0.0169,\"y\":179.9954,\"z\":0.0799}},\"89295c\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}},\"94329c\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9604,\"z\":0.0169}},\"afbae6\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7611,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0192,\"z\":180.0168}},\"b14575\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0036,\"z\":0.0169}},\"b238b0\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6844,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9956,\"z\":180.0171}},\"b60f07\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":180.0169}},\"bd8df8\":{\"lock\":false,\"pos\":{\"x\":-13.2068,\"y\":1.6705,\"z\":2.7927},\"rot\":{\"x\":359.9201,\"y\":269.9949,\"z\":0.0169}},\"cd26a2\":{\"lock\":false,\"pos\":{\"x\":-18.5006,\"y\":1.7343,\"z\":14.8658},\"rot\":{\"x\":359.9212,\"y\":269.9879,\"z\":180.0177}},\"f7e2c9\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.6619,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":180.0686}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "087128",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6765,
"posY": 1.61334491,
"posZ": -3.83000016,
"rotX": 0.0168455876,
"rotY": 179.995483,
"rotZ": 0.07993863,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "0d7742",
"Name": "Card",
"Transform": {
"posX": -3.95551729,
"posY": 1.59754157,
"posZ": -10.4315977,
"rotX": 359.919739,
"rotY": 270.0036,
"rotZ": 0.0168330558,
"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": 215,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d4c2b",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6765,
"posY": 1.6178385,
"posZ": 11.4600019,
"rotX": 0.0168455057,
"rotY": 179.995438,
"rotZ": 0.07993528,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4066d9",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.0611,
"posY": 1.61270165,
"posZ": 11.1353016,
"rotX": 359.955536,
"rotY": 224.891525,
"rotZ": 0.06846597,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4875a0",
"Name": "Card",
"Transform": {
"posX": -18.98091,
"posY": 1.61709189,
"posZ": -15.0785971,
"rotX": 359.9201,
"rotY": 270.044617,
"rotZ": 180.017136,
"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": 218,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6af68f",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6765,
"posY": 1.6110878,
"posZ": -11.5100012,
"rotX": 0.0168456342,
"rotY": 179.995422,
"rotZ": 0.07993865,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "6ca432",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.2002,
"posY": 1.6062609,
"posZ": -11.4403019,
"rotX": 0.06840817,
"rotY": 135.0,
"rotZ": 0.0445863232,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "711660",
"Name": "Card",
"Transform": {
"posX": -17.1208725,
"posY": 1.63668954,
"posZ": -15.2785072,
"rotX": 359.09082,
"rotY": 270.054321,
"rotZ": 180.021225,
"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": 219,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "71801c",
"Name": "Deck",
"Transform": {
"posX": -2.688624,
"posY": 1.61430275,
"posZ": -5.048496,
"rotX": 359.919739,
"rotY": 269.983246,
"rotZ": 0.0168605037,
"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": [
115606,
115605
],
"CustomDeck": {
"1156": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "78171e",
"Name": "Card",
"Transform": {
"posX": -2.33816671,
"posY": 1.03171325,
"posZ": -1.18097329,
"rotX": -5.3668864E-06,
"rotY": 179.999985,
"rotZ": -1.81576183E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 115606,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "292aaa",
"Name": "Card",
"Transform": {
"posX": -2.366716,
"posY": 1.17063475,
"posZ": -1.35794246,
"rotX": -0.002537766,
"rotY": 179.999908,
"rotZ": -0.0009498952,
"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": 115605,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "718835",
"Name": "Card",
"Transform": {
"posX": -23.6765213,
"posY": 1.62806654,
"posZ": -0.0299953,
"rotX": 359.9201,
"rotY": 269.99585,
"rotZ": 180.01683,
"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": 217,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6764984,
"posY": 1.61560488,
"posZ": 3.86,
"rotX": 0.0168455616,
"rotY": 179.9955,
"rotZ": 0.079946205,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "89295c",
"Name": "Card",
"Transform": {
"posX": -23.6765213,
"posY": 1.62581241,
"posZ": -7.69999647,
"rotX": 359.9201,
"rotY": 269.9964,
"rotZ": 180.01683,
"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": 216,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "94329c",
"Name": "Deck",
"Transform": {
"posX": -2.72482419,
"posY": 1.61594653,
"posZ": 0.373304933,
"rotX": 359.919769,
"rotY": 269.960358,
"rotZ": 0.01689258,
"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": [
115508,
115507
],
"CustomDeck": {
"1155": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "cf3614",
"Name": "Card",
"Transform": {
"posX": 5.92712927,
"posY": 1.03171325,
"posZ": 0.153432816,
"rotX": 9.7534226E-08,
"rotY": 180.007431,
"rotZ": 2.059673E-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": 115508,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "292aaa",
"Name": "Card",
"Transform": {
"posX": 6.00190258,
"posY": 1.176843,
"posZ": 0.269486785,
"rotX": -0.00324497954,
"rotY": 180.007462,
"rotZ": -0.0001391422,
"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": 115507,
"SidewaysCard": false,
"CustomDeck": {
"4": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "afbae6",
"Name": "DeckCustom",
"Transform": {
"posX": -3.92793369,
"posY": 1.749193,
"posZ": 5.757263,
"rotX": 359.919739,
"rotY": 270.0194,
"rotZ": 180.0168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
510,
509,
508,
507,
506,
505,
504,
503,
502,
501,
500,
511,
512,
513,
514,
515,
516,
517,
518,
519,
521,
521,
522,
523,
524,
525,
526,
527,
528
],
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.11541247,
"posY": 1.7511636,
"posZ": 16.94236,
"rotX": 359.919739,
"rotY": 270.019318,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 510,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.11291671,
"posY": 1.741648,
"posZ": 17.3365822,
"rotX": 359.919739,
"rotY": 270.0193,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 509,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.030907,
"posY": 1.73192763,
"posZ": 17.4133549,
"rotX": 359.919739,
"rotY": 270.0193,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 508,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -1.9163475,
"posY": 1.72212744,
"posZ": 17.3744431,
"rotX": 359.919739,
"rotY": 270.0193,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 507,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -1.87840307,
"posY": 1.71224368,
"posZ": 16.6851234,
"rotX": 359.919739,
"rotY": 270.019257,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 506,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.42305088,
"posY": 1.70347381,
"posZ": 17.0094223,
"rotX": 359.919739,
"rotY": 270.019226,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 505,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -1.839134,
"posY": 1.69297624,
"posZ": 16.83379,
"rotX": 359.919739,
"rotY": 270.019226,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 504,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -1.692887,
"posY": 1.68331409,
"posZ": 17.4151554,
"rotX": 359.919739,
"rotY": 270.019226,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 503,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.22590637,
"posY": 1.674281,
"posZ": 16.8993912,
"rotX": 359.919739,
"rotY": 270.019165,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 502,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d7c20",
"Name": "Card",
"Transform": {
"posX": -1.75457525,
"posY": 1.63983011,
"posZ": 17.2973957,
"rotX": 359.919739,
"rotY": 270.019165,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 501,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.02982926,
"posY": 1.60292518,
"posZ": 17.0686779,
"rotX": 359.919739,
"rotY": 270.019135,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 500,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 511,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 512,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 513,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 514,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 515,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 516,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 517,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 518,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 519,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "f9e4f1",
"Name": "Card",
"Transform": {
"posX": -9.027111,
"posY": 3.48090029,
"posZ": 1.49222875,
"rotX": 0.0,
"rotY": 270.0,
"rotZ": 179.968842,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 521,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -8.71377,
"posY": 3.48050618,
"posZ": 0.767473757,
"rotX": 359.919739,
"rotY": 270.019318,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 521,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 522,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 523,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 524,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 525,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -9.5722065,
"posY": 3.48007941,
"posZ": -1.58891988,
"rotX": 359.919739,
"rotY": 270.0194,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 526,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 527,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 6.195751E-08,
"posY": 1.04493034,
"posZ": 1.40848442E-07,
"rotX": -2.56517474E-09,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 528,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
}
]
},
{
"GUID": "b14575",
"Name": "Card",
"Transform": {
"posX": -50.9244156,
"posY": 1.65035439,
"posZ": 8.178404,
"rotX": 359.9201,
"rotY": 270.0036,
"rotZ": 0.0168684088,
"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": 215,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b238b0",
"Name": "Card",
"Transform": {
"posX": -17.1200943,
"posY": 1.62339342,
"posZ": 15.1899738,
"rotX": 359.920135,
"rotY": 269.995453,
"rotZ": 180.01709,
"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": 222,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b60f07",
"Name": "Card",
"Transform": {
"posX": -23.6765213,
"posY": 1.63030016,
"posZ": 7.57000542,
"rotX": 359.9201,
"rotY": 269.996948,
"rotZ": 180.01683,
"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": 220,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bd8df8",
"Name": "Deck",
"Transform": {
"posX": -13.2068148,
"posY": 1.64087868,
"posZ": 2.79270315,
"rotX": 359.9201,
"rotY": 269.994873,
"rotZ": 0.0168495346,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "instructions",
"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": [
228,
227,
226,
225
],
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 4.75747,
"posY": 1.031547,
"posZ": 4.225077,
"rotX": -4.93925654E-07,
"rotY": 179.999863,
"rotZ": -1.79904E-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": 228,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b69778",
"Name": "Card",
"Transform": {
"posX": 4.581632,
"posY": 1.17665088,
"posZ": 4.02917051,
"rotX": 0.00407082634,
"rotY": 179.999908,
"rotZ": -0.00236436678,
"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": 227,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8cc9ad",
"Name": "Card",
"Transform": {
"posX": -12.9974813,
"posY": 1.81334579,
"posZ": -0.720715761,
"rotX": 359.9728,
"rotY": 270.004578,
"rotZ": 180.01973,
"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": 226,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa733d",
"Name": "Card",
"Transform": {
"posX": -12.86368,
"posY": 1.673608,
"posZ": -0.7965269,
"rotX": 359.9214,
"rotY": 269.9949,
"rotZ": 180.025528,
"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": 225,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "cd26a2",
"Name": "Card",
"Transform": {
"posX": -18.5006943,
"posY": 1.67334247,
"posZ": 14.86577,
"rotX": 359.9213,
"rotY": 269.987671,
"rotZ": 180.017776,
"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": 223,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7e2c9",
"Name": "Deck",
"Transform": {
"posX": 1.69636154,
"posY": 1.61865389,
"posZ": 14.2788134,
"rotX": 359.95517,
"rotY": 224.998,
"rotZ": 180.068649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Set Aside",
"Description": "part 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": false,
"SidewaysCard": false,
"DeckIDs": [
520,
221,
224
],
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 1.69650245,
"posY": 1.668474,
"posZ": 14.2788191,
"rotX": 359.980225,
"rotY": 224.99794,
"rotZ": 180.058334,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheriff Harper",
"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": 520,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8dc0cc",
"Name": "Card",
"Transform": {
"posX": 12.3215218,
"posY": 1.50550485,
"posZ": 15.0796375,
"rotX": 0.102033846,
"rotY": 180.002609,
"rotZ": 180.757736,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blocked Road",
"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": 221,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d0aa7b",
"Name": "Card",
"Transform": {
"posX": 12.2320385,
"posY": 1.3706193,
"posZ": 14.72225,
"rotX": 0.081200175,
"rotY": 180.009735,
"rotZ": 180.596985,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dense Forest",
"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": 224,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "7f9f0d",
"Name": "Bag",
"Transform": {
"posX": 9.307702,
"posY": 1.28358257,
"posZ": 0.281899124,
"rotX": 0.07996551,
"rotY": 89.99839,
"rotZ": 359.9831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Part 2",
"Description": "North Country Cycle",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.759582,
"g": 0.720799267,
"b": 0.67885983
},
"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\":{\"17aa19\":{\"lock\":false,\"pos\":{\"x\":-11.9634,\"y\":1.644,\"z\":2.7802},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":0.0169}},\"1cc5ab\":{\"lock\":false,\"pos\":{\"x\":-26.7462,\"y\":1.6187,\"z\":-0.0819},\"rot\":{\"x\":0.0799,\"y\":90.0001,\"z\":359.9831}},\"2119d3\":{\"lock\":false,\"pos\":{\"x\":-11.5241,\"y\":1.6802,\"z\":13.6405},\"rot\":{\"x\":359.9201,\"y\":269.981,\"z\":180.0169}},\"2f7a8d\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":180.0168}},\"374846\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0059,\"z\":359.92}},\"3c18b1\":{\"lock\":false,\"pos\":{\"x\":-2.6871,\"y\":1.6191,\"z\":-5.0463},\"rot\":{\"x\":359.9197,\"y\":269.9698,\"z\":0.0169}},\"40482a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":180.0168}},\"4230c1\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9965,\"z\":180.0168}},\"453607\":{\"lock\":false,\"pos\":{\"x\":-26.7745,\"y\":1.6198,\"z\":3.4345},\"rot\":{\"x\":359.9316,\"y\":315.0002,\"z\":359.9554}},\"464914\":{\"lock\":false,\"pos\":{\"x\":-3.6943,\"y\":1.66,\"z\":14.7594},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":180.0168}},\"552ae9\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0059,\"z\":359.9201}},\"66e655\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9863,\"z\":180.0168}},\"6ceb58\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0057,\"z\":359.92}},\"713671\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9854,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6065,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0059,\"z\":359.92}},\"77e04b\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6247,\"z\":3.86},\"rot\":{\"x\":359.9832,\"y\":0.0059,\"z\":359.9201}},\"7bc8af\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6167,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":180.0168}},\"8fb673\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7444,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":180.0168}},\"9a31a2\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.599,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":0.0169}},\"aa51bd\":{\"lock\":false,\"pos\":{\"x\":-20.4906,\"y\":1.61,\"z\":-0.2397},\"rot\":{\"x\":0.0799,\"y\":90.0001,\"z\":359.9831}},\"b3fc0c\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6212,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9959,\"z\":180.0168}},\"b7b0af\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6187,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"c11875\":{\"lock\":false,\"pos\":{\"x\":-27.044,\"y\":1.6213,\"z\":7.421},\"rot\":{\"x\":0.0799,\"y\":90.0003,\"z\":359.9831}},\"d46ad3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0168}},\"e5f61a\":{\"lock\":false,\"pos\":{\"x\":-27.0874,\"y\":1.6182,\"z\":-3.4055},\"rot\":{\"x\":0.0446,\"y\":44.9999,\"z\":359.9316}},\"e9bc3d\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":180.0168}},\"ed1fa4\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":180.0168}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2119d3",
"Name": "Deck",
"Transform": {
"posX": -11.5241022,
"posY": 1.68023276,
"posZ": 13.640501,
"rotX": 359.9201,
"rotY": 269.981,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blazing Fire",
"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": [
240,
239,
238,
237,
236,
235,
234,
233,
232,
231,
230,
229
],
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 10.39006,
"posY": 1.3815583,
"posZ": 9.184577,
"rotX": 0.00167876051,
"rotY": 180.000122,
"rotZ": 180.004425,
"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": 240,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 9.868575,
"posY": 1.37199545,
"posZ": 9.214971,
"rotX": -0.004177704,
"rotY": 180.015671,
"rotZ": 180.002319,
"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": 239,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 9.929019,
"posY": 1.36233473,
"posZ": 9.026286,
"rotX": 0.0004784768,
"rotY": 180.0,
"rotZ": 179.999756,
"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": 238,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 10.1170282,
"posY": 1.35273576,
"posZ": 9.536929,
"rotX": -0.00117259566,
"rotY": 180.001556,
"rotZ": 179.998825,
"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": 237,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 9.791147,
"posY": 1.39527762,
"posZ": 9.072151,
"rotX": -0.0008143136,
"rotY": 180.001022,
"rotZ": 179.99881,
"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": 236,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 9.660435,
"posY": 1.38894916,
"posZ": 9.079194,
"rotX": -0.00118212146,
"rotY": 179.99939,
"rotZ": 179.99942,
"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": 235,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 9.693756,
"posY": 1.38395512,
"posZ": 9.119738,
"rotX": -0.001008902,
"rotY": 180.0,
"rotZ": 179.999084,
"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": 234,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 9.915482,
"posY": 1.38122094,
"posZ": 9.069277,
"rotX": 0.00084782,
"rotY": 180.0,
"rotZ": 180.003052,
"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": 233,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 9.771015,
"posY": 1.3832202,
"posZ": 9.372115,
"rotX": 0.000290726341,
"rotY": 179.999924,
"rotZ": 179.9983,
"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": 232,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 10.155447,
"posY": 1.39696527,
"posZ": 9.578582,
"rotX": -0.00153690728,
"rotY": 180.001389,
"rotZ": 179.9992,
"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": 231,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5dda44",
"Name": "Card",
"Transform": {
"posX": 9.867986,
"posY": 1.37926793,
"posZ": 9.155708,
"rotX": 0.00243738852,
"rotY": 179.9999,
"rotZ": 180.006683,
"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": 230,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 9.887541,
"posY": 1.23444033,
"posZ": 9.319097,
"rotX": -0.00473229168,
"rotY": 179.999985,
"rotZ": 180.001709,
"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": 229,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "464914",
"Name": "Deck",
"Transform": {
"posX": -3.69430017,
"posY": 1.66004419,
"posZ": 14.7594023,
"rotX": 359.919739,
"rotY": 270.000061,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wrotham Sheriff",
"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": [
520,
526,
526,
526,
521,
521,
521,
521,
521,
521
],
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4c150c",
"Name": "Card",
"Transform": {
"posX": -4.72407055,
"posY": 1.73864222,
"posZ": 14.0903339,
"rotX": 359.9358,
"rotY": 269.999878,
"rotZ": 180.013519,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheriff Harper",
"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": 520,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c50b94",
"Name": "Card",
"Transform": {
"posX": -5.851337,
"posY": 1.68882191,
"posZ": 11.1220884,
"rotX": 359.9214,
"rotY": 270.0194,
"rotZ": 180.01889,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 526,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c9eafc",
"Name": "Card",
"Transform": {
"posX": -5.87019825,
"posY": 1.66211152,
"posZ": 11.1037922,
"rotX": 359.9175,
"rotY": 270.0194,
"rotZ": 180.017761,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 526,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -5.926788,
"posY": 1.60661817,
"posZ": 11.1032152,
"rotX": 359.919861,
"rotY": 270.019379,
"rotZ": 180.017654,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 526,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5b38e",
"Name": "Card",
"Transform": {
"posX": -5.014695,
"posY": 1.70418978,
"posZ": 14.567132,
"rotX": 359.918945,
"rotY": 270.018982,
"rotZ": 180.019165,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 521,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -5.0146203,
"posY": 1.70943415,
"posZ": 14.5671387,
"rotX": 359.9195,
"rotY": 270.019318,
"rotZ": 180.018112,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 521,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "04b6a4",
"Name": "Card",
"Transform": {
"posX": -5.014662,
"posY": 1.70496154,
"posZ": 14.5671473,
"rotX": 359.919617,
"rotY": 270.019318,
"rotZ": 180.01738,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 521,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "119404",
"Name": "Card",
"Transform": {
"posX": -5.014687,
"posY": 1.67386842,
"posZ": 14.5671349,
"rotX": 359.918945,
"rotY": 270.019,
"rotZ": 180.0172,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 521,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc25f0",
"Name": "Card",
"Transform": {
"posX": -5.01457739,
"posY": 1.64094758,
"posZ": 14.56713,
"rotX": 0.190768629,
"rotY": 270.019836,
"rotZ": 180.206161,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 521,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -5.01469564,
"posY": 1.6055491,
"posZ": 14.567111,
"rotX": 359.9277,
"rotY": 270.019257,
"rotZ": 180.07103,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 521,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b7b0af",
"Name": "Deck",
"Transform": {
"posX": 1.6965,
"posY": 1.61865377,
"posZ": 14.2788019,
"rotX": 359.95517,
"rotY": 224.998047,
"rotZ": 0.06865455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "set aside",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
257,
256,
529
],
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
},
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 8.134368,
"posY": 1.23170269,
"posZ": 7.265611,
"rotX": -0.0006563498,
"rotY": 179.999969,
"rotZ": -0.00038243,
"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": 257,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b54e44",
"Name": "Card",
"Transform": {
"posX": 8.134358,
"posY": 1.38121414,
"posZ": 7.26562834,
"rotX": 359.9932,
"rotY": 180.000015,
"rotZ": -0.00340041076,
"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": 256,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 1.6964339,
"posY": 1.70870543,
"posZ": 14.2788334,
"rotX": 358.4862,
"rotY": 224.995178,
"rotZ": -0.00546958158,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Landon Hullet",
"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": 529,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8fb673",
"Name": "Deck",
"Transform": {
"posX": -3.9275,
"posY": 1.74437833,
"posZ": 5.757101,
"rotX": 359.919739,
"rotY": 269.9856,
"rotZ": 180.016846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
500,
501,
502,
503,
504,
505,
506,
507,
508,
509,
510,
544,
545,
546,
543,
542,
541,
540,
539,
538,
537,
536,
535,
534,
533,
531,
532,
530
],
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -3.927688,
"posY": 2.066495,
"posZ": 5.757142,
"rotX": 359.920471,
"rotY": 270.0039,
"rotZ": 187.917236,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 500,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d7c20",
"Name": "Card",
"Transform": {
"posX": -3.92762756,
"posY": 1.90645373,
"posZ": 5.757129,
"rotX": 359.931915,
"rotY": 270.0047,
"rotZ": 180.014267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 501,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -3.92762685,
"posY": 1.89670074,
"posZ": 5.757129,
"rotX": 359.932526,
"rotY": 270.003967,
"rotZ": 180.014145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 502,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d0ca71",
"Name": "Card",
"Transform": {
"posX": -3.9276278,
"posY": 1.88724625,
"posZ": 5.757129,
"rotX": 359.932526,
"rotY": 270.003967,
"rotZ": 180.014145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 503,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -3.9276278,
"posY": 1.87760115,
"posZ": 5.757129,
"rotX": 359.932526,
"rotY": 270.003967,
"rotZ": 180.014145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 504,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc4a57",
"Name": "Card",
"Transform": {
"posX": -3.927628,
"posY": 1.86802518,
"posZ": 5.75712967,
"rotX": 359.932526,
"rotY": 270.003937,
"rotZ": 180.014145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 505,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -3.92762756,
"posY": 1.85832727,
"posZ": 5.757129,
"rotX": 359.931824,
"rotY": 270.0048,
"rotZ": 180.0143,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 506,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2bb1d7",
"Name": "Card",
"Transform": {
"posX": -3.9276278,
"posY": 1.84875143,
"posZ": 5.75712967,
"rotX": 359.931061,
"rotY": 270.005676,
"rotZ": 180.014465,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 507,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -3.92762756,
"posY": 1.839063,
"posZ": 5.757129,
"rotX": 359.932526,
"rotY": 270.0039,
"rotZ": 180.014145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 508,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a78c9",
"Name": "Card",
"Transform": {
"posX": -3.927628,
"posY": 1.8295058,
"posZ": 5.75712967,
"rotX": 359.932526,
"rotY": 270.0039,
"rotZ": 180.014145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 509,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -3.9276278,
"posY": 1.81985784,
"posZ": 5.757129,
"rotX": 359.931824,
"rotY": 270.00473,
"rotZ": 180.0143,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 510,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "626d66",
"Name": "Card",
"Transform": {
"posX": -5.334668,
"posY": 1.56151319,
"posZ": 14.8109837,
"rotX": 359.94632,
"rotY": 180.019028,
"rotZ": 180.22905,
"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": 544,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "284c5d",
"Name": "Card",
"Transform": {
"posX": -5.756528,
"posY": 1.41818213,
"posZ": 14.7242556,
"rotX": 359.914642,
"rotY": 180.024933,
"rotZ": 180.1891,
"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": 545,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2cb2b",
"Name": "Card",
"Transform": {
"posX": -3.15521359,
"posY": 1.96285236,
"posZ": -8.749511,
"rotX": 359.968719,
"rotY": 180.103043,
"rotZ": 7.56986046,
"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": 546,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc433e",
"Name": "Card",
"Transform": {
"posX": -1.87923038,
"posY": 2.17903471,
"posZ": -8.745985,
"rotX": 359.9568,
"rotY": 180.05011,
"rotZ": 8.48520851,
"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": 543,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "315b46",
"Name": "Card",
"Transform": {
"posX": -1.451996,
"posY": 2.242952,
"posZ": -8.747933,
"rotX": 359.9678,
"rotY": 179.962509,
"rotZ": 8.312758,
"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": 542,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d069e",
"Name": "Card",
"Transform": {
"posX": -1.027974,
"posY": 2.30360961,
"posZ": -8.749328,
"rotX": 359.975922,
"rotY": 179.9392,
"rotZ": 8.574896,
"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": 541,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5aad6",
"Name": "Card",
"Transform": {
"posX": -0.6067863,
"posY": 2.359042,
"posZ": -8.750089,
"rotX": 359.981964,
"rotY": 180.031525,
"rotZ": 9.128715,
"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/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d263e5",
"Name": "Card",
"Transform": {
"posX": -0.1787383,
"posY": 2.41919112,
"posZ": -8.747935,
"rotX": 359.99115,
"rotY": 179.9458,
"rotZ": 9.177095,
"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/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "86476d",
"Name": "Card",
"Transform": {
"posX": 0.242415711,
"posY": 2.47108459,
"posZ": -8.749481,
"rotX": 359.994019,
"rotY": 180.048813,
"rotZ": 9.323917,
"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/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e574c3",
"Name": "Card",
"Transform": {
"posX": 0.6663741,
"posY": 2.525657,
"posZ": -8.747237,
"rotX": 0.000440767733,
"rotY": 180.0432,
"rotZ": 9.397491,
"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/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e367b5",
"Name": "Card",
"Transform": {
"posX": 1.09381366,
"posY": 2.58372426,
"posZ": -8.749472,
"rotX": 0.0108685018,
"rotY": 179.942856,
"rotZ": 9.300444,
"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": 536,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "412b34",
"Name": "Card",
"Transform": {
"posX": 1.51764607,
"posY": 2.63877988,
"posZ": -8.747139,
"rotX": 0.0202184357,
"rotY": 179.94017,
"rotZ": 9.288716,
"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": 535,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "770eda",
"Name": "Card",
"Transform": {
"posX": 1.9420898,
"posY": 2.69786048,
"posZ": -8.748785,
"rotX": 0.0211291648,
"rotY": 179.947189,
"rotZ": 8.952664,
"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": 534,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb4050",
"Name": "Card",
"Transform": {
"posX": 2.36405015,
"posY": 2.759971,
"posZ": -8.750544,
"rotX": 0.0208454169,
"rotY": 180.0428,
"rotZ": 8.07784,
"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": 533,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9d3401",
"Name": "Card",
"Transform": {
"posX": 3.21545362,
"posY": 2.893705,
"posZ": -8.7472105,
"rotX": 0.040510796,
"rotY": 179.942108,
"rotZ": 7.964395,
"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": 531,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "784fca",
"Name": "Card",
"Transform": {
"posX": -7.87558,
"posY": 3.47890759,
"posZ": 3.22463822,
"rotX": 359.919739,
"rotY": 269.985718,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 532,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "259dd2",
"Name": "Card",
"Transform": {
"posX": 3.6387403,
"posY": 2.967511,
"posZ": -8.749185,
"rotX": 0.04168485,
"rotY": 179.956665,
"rotZ": 7.46605062,
"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": 530,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "9a31a2",
"Name": "Card",
"Transform": {
"posX": -2.72469974,
"posY": 1.59899259,
"posZ": 0.373299837,
"rotX": 359.919739,
"rotY": 269.9856,
"rotZ": 0.0168565679,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 154312,
"SidewaysCard": false,
"CustomDeck": {
"1543": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3c18b1",
"Name": "Deck",
"Transform": {
"posX": -2.6871,
"posY": 1.61911523,
"posZ": -5.046302,
"rotX": 359.919739,
"rotY": 269.969818,
"rotZ": 0.0168790836,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
154410,
154411,
154409
],
"CustomDeck": {
"1544": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8c2126",
"Name": "Card",
"Transform": {
"posX": 3.82716131,
"posY": 1.23167467,
"posZ": 13.4038849,
"rotX": -0.00175621989,
"rotY": 180.00032,
"rotZ": -0.000320589519,
"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": 154410,
"SidewaysCard": false,
"CustomDeck": {
"1132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5121a9",
"Name": "Card",
"Transform": {
"posX": 4.057638,
"posY": 1.37673283,
"posZ": 13.15317,
"rotX": 359.992584,
"rotY": 179.999786,
"rotZ": 0.00242072274,
"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": 154411,
"SidewaysCard": false,
"CustomDeck": {
"1132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "292aaa",
"Name": "Card",
"Transform": {
"posX": 3.46067739,
"posY": 1.39408946,
"posZ": 13.9831905,
"rotX": -0.001104348,
"rotY": 180.000046,
"rotZ": -0.00136663567,
"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": 154409,
"SidewaysCard": false,
"CustomDeck": {
"1132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": -3.9560008,
"posY": 1.59753942,
"posZ": -10.4412012,
"rotX": 359.919739,
"rotY": 269.9854,
"rotZ": 0.01685774,
"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": 241,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17aa19",
"Name": "Deck",
"Transform": {
"posX": -11.963398,
"posY": 1.64395523,
"posZ": 2.7802,
"rotX": 359.9201,
"rotY": 269.985748,
"rotZ": 0.0168617312,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "instructions",
"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": [
255,
254,
253,
252,
251
],
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "713671",
"Name": "Card",
"Transform": {
"posX": 0.785712957,
"posY": 1.03167987,
"posZ": 4.303699,
"rotX": 5.870743E-06,
"rotY": 180.0,
"rotZ": 4.492557E-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": 255,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4ab48",
"Name": "Card",
"Transform": {
"posX": 0.7917372,
"posY": 1.17679727,
"posZ": 4.10874748,
"rotX": -0.00191475567,
"rotY": 179.999878,
"rotZ": -0.00109299086,
"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": 254,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d76441",
"Name": "Card",
"Transform": {
"posX": 8.499819,
"posY": 1.396986,
"posZ": 2.76170135,
"rotX": -0.00118989369,
"rotY": 180.010056,
"rotZ": 180.000351,
"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": 253,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ce5873",
"Name": "Card",
"Transform": {
"posX": -11.7504835,
"posY": 1.80105686,
"posZ": -1.314632,
"rotX": 0.396799117,
"rotY": 270.036835,
"rotZ": 181.434982,
"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": 252,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f97ef",
"Name": "Card",
"Transform": {
"posX": -11.6164951,
"posY": 1.67187858,
"posZ": -0.904481649,
"rotX": 359.919952,
"rotY": 270.009277,
"rotZ": 180.013718,
"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": 251,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b3fc0c",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.62115753,
"posZ": 7.57000065,
"rotX": 359.9201,
"rotY": 269.9959,
"rotZ": 180.01683,
"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": 243,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -17.12,
"posY": 1.60646248,
"posZ": 3.86000013,
"rotX": 359.983154,
"rotY": 0.005902751,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "2f7a8d",
"Name": "Card",
"Transform": {
"posX": -17.1199,
"posY": 1.61892378,
"posZ": -0.0299999882,
"rotX": 359.9201,
"rotY": 269.997162,
"rotZ": 180.01683,
"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": 242,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ceb58",
"Name": "Custom_Tile",
"Transform": {
"posX": -17.1198978,
"posY": 1.60420227,
"posZ": -3.83000016,
"rotX": 359.983154,
"rotY": 0.00571973855,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "7bc8af",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.61666977,
"posZ": -7.70000029,
"rotX": 359.9201,
"rotY": 269.996948,
"rotZ": 180.01683,
"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": 244,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa51bd",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.4906,
"posY": 1.60995758,
"posZ": -0.239700064,
"rotX": 0.07989441,
"rotY": 90.00005,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "d46ad3",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.62806654,
"posZ": -0.0299997628,
"rotX": 359.9201,
"rotY": 269.9958,
"rotZ": 180.01683,
"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": 247,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1cc5ab",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.7461662,
"posY": 1.61872733,
"posZ": -0.0819147,
"rotX": 0.0798943,
"rotY": 90.00007,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "e9bc3d",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.6371969,
"posZ": -0.0299998429,
"rotX": 359.9201,
"rotY": 269.9972,
"rotZ": 180.01683,
"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": 249,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "374846",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2242,
"posY": 1.62247539,
"posZ": -3.82999945,
"rotX": 359.983154,
"rotY": 0.00590829737,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "e5f61a",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.0874,
"posY": 1.618226,
"posZ": -3.4055,
"rotX": 0.04458871,
"rotY": 44.9999352,
"rotZ": 359.9316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "552ae9",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6764,
"posY": 1.61334491,
"posZ": -3.82999969,
"rotX": 359.983154,
"rotY": 0.00589241926,
"rotZ": 359.920074,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4230c1",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.62581241,
"posZ": -7.70000029,
"rotX": 359.9201,
"rotY": 269.99646,
"rotZ": 180.01683,
"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": 246,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66e655",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.63494289,
"posZ": -7.7,
"rotX": 359.9201,
"rotY": 269.986267,
"rotZ": 180.016846,
"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": 250,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77e04b",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2242,
"posY": 1.62473536,
"posZ": 3.86000037,
"rotX": 359.983154,
"rotY": 0.00586444,
"rotZ": 359.920074,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "453607",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.7745,
"posY": 1.61979985,
"posZ": 3.43450022,
"rotX": 359.93158,
"rotY": 315.000183,
"rotZ": 359.9554,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "c11875",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.044,
"posY": 1.62134719,
"posZ": 7.42099857,
"rotX": 0.0798943043,
"rotY": 90.0003052,
"rotZ": 359.983124,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"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": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "ed1fa4",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.6394304,
"posZ": 7.57000065,
"rotX": 359.9201,
"rotY": 269.996277,
"rotZ": 180.01683,
"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": 248,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "40482a",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.63030016,
"posZ": 7.57000065,
"rotX": 359.9201,
"rotY": 269.99707,
"rotZ": 180.01683,
"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": 245,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "df5156",
"Name": "Bag",
"Transform": {
"posX": 9.272202,
"posY": 1.28175271,
"posZ": -6.0997014,
"rotX": 0.07996521,
"rotY": 89.9907761,
"rotZ": 359.9831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Part 3",
"Description": "North Country Cycle",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.9756097,
"g": 0.974793136,
"b": 0.973910034
},
"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\":{\"2afe31\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9856,\"z\":0.0169}},\"35f5a8\":{\"lock\":false,\"pos\":{\"x\":-12.002,\"y\":1.6408,\"z\":8.2252},\"rot\":{\"x\":359.9201,\"y\":269.9859,\"z\":180.0168}},\"4e1347\":{\"lock\":false,\"pos\":{\"x\":-23.676,\"y\":1.6281,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":269.9966,\"z\":180.0168}},\"53eed4\":{\"lock\":false,\"pos\":{\"x\":-11.5286,\"y\":1.6659,\"z\":13.9432},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":180.0168}},\"72cb29\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7251,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":180.0168}},\"7378a3\":{\"lock\":false,\"pos\":{\"x\":-3.9558,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":0.0168}},\"a4069d\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6138,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.9981,\"z\":0.0687}},\"ae5aa8\":{\"lock\":false,\"pos\":{\"x\":-12.0755,\"y\":1.6489,\"z\":2.8225},\"rot\":{\"x\":359.9201,\"y\":269.971,\"z\":0.0169}},\"c21348\":{\"lock\":false,\"pos\":{\"x\":-2.6908,\"y\":1.6143,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9836,\"z\":0.0169}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2afe31",
"Name": "Deck",
"Transform": {
"posX": -2.72459984,
"posY": 1.61594629,
"posZ": 0.373299927,
"rotX": 359.919739,
"rotY": 269.9856,
"rotZ": 0.0168568324,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
154301,
154300
],
"CustomDeck": {
"1543": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "462a52",
"Name": "Card",
"Transform": {
"posX": 6.54311132,
"posY": 1.23169518,
"posZ": 7.557492,
"rotX": -0.00103841873,
"rotY": 180.000763,
"rotZ": -0.000284642,
"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": 154301,
"SidewaysCard": false,
"CustomDeck": {
"1132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc7bcd",
"Name": "Card",
"Transform": {
"posX": 6.470104,
"posY": 1.3767451,
"posZ": 7.455783,
"rotX": 359.992279,
"rotY": 180.000122,
"rotZ": -0.00304891169,
"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": 154300,
"SidewaysCard": false,
"CustomDeck": {
"1132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "35f5a8",
"Name": "Deck",
"Transform": {
"posX": -12.002,
"posY": 1.64079535,
"posZ": 8.2252,
"rotX": 359.9201,
"rotY": 269.98587,
"rotZ": 180.016846,
"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": [
301,
312,
313,
314
],
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "79c9a9",
"Name": "Card",
"Transform": {
"posX": -1.10803866,
"posY": 2.009021,
"posZ": -6.99296236,
"rotX": 359.904022,
"rotY": 180.030518,
"rotZ": 8.529671,
"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": 301,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a659ab",
"Name": "Card",
"Transform": {
"posX": 2.8666625,
"posY": 2.600215,
"posZ": -6.99415159,
"rotX": 359.960266,
"rotY": 179.911957,
"rotZ": 11.3179436,
"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": 312,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "65eb43",
"Name": "Card",
"Transform": {
"posX": 3.224556,
"posY": 2.6425643,
"posZ": -6.99160957,
"rotX": 359.904541,
"rotY": 180.019821,
"rotZ": 10.99232,
"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": 313,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5211eb",
"Name": "Card",
"Transform": {
"posX": 3.58588386,
"posY": 2.694796,
"posZ": -6.99357128,
"rotX": 359.864929,
"rotY": 180.029572,
"rotZ": 10.4701138,
"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": 314,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "4e1347",
"Name": "Card",
"Transform": {
"posX": -23.676,
"posY": 1.62806582,
"posZ": -0.0301998053,
"rotX": 359.9201,
"rotY": 269.996552,
"rotZ": 180.01683,
"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": 302,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53eed4",
"Name": "Deck",
"Transform": {
"posX": -11.5285988,
"posY": 1.66588593,
"posZ": 13.9432039,
"rotX": 359.9201,
"rotY": 269.985779,
"rotZ": 180.016846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gloomy Woods",
"Description": "part 3",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
303,
304,
305,
306,
307,
308,
309,
310,
311
],
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5db699",
"Name": "Card",
"Transform": {
"posX": 1.553294,
"posY": 1.33810079,
"posZ": 8.966513,
"rotX": 0.129702032,
"rotY": 180.001083,
"rotZ": 180.324127,
"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": 303,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ce2c1c",
"Name": "Card",
"Transform": {
"posX": 1.78759944,
"posY": 1.39525163,
"posZ": 9.25456,
"rotX": -0.00118623453,
"rotY": 180.001816,
"rotZ": 180.000259,
"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": 304,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "012dd2",
"Name": "Card",
"Transform": {
"posX": 1.38220906,
"posY": 1.38885367,
"posZ": 9.232146,
"rotX": 0.000105993218,
"rotY": 180.000244,
"rotZ": 179.999313,
"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": 305,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "115cd4",
"Name": "Card",
"Transform": {
"posX": 1.37594223,
"posY": 1.38395739,
"posZ": 8.938095,
"rotX": -0.00092232076,
"rotY": 180.000656,
"rotZ": 179.999466,
"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": 306,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b0c04",
"Name": "Card",
"Transform": {
"posX": 1.69799244,
"posY": 1.38121355,
"posZ": 8.804302,
"rotX": 0.0007465526,
"rotY": 180.000214,
"rotZ": 180.001892,
"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": 307,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e5a157",
"Name": "Card",
"Transform": {
"posX": 2.287692,
"posY": 1.38298142,
"posZ": 8.745588,
"rotX": 0.0213467516,
"rotY": 180.000229,
"rotZ": 180.027008,
"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": 308,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e19885",
"Name": "Card",
"Transform": {
"posX": 1.20484376,
"posY": 1.3969692,
"posZ": 8.943096,
"rotX": -0.001121251,
"rotY": 180.000427,
"rotZ": 179.9985,
"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": 309,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f0e41c",
"Name": "Card",
"Transform": {
"posX": 1.30584884,
"posY": 1.37291789,
"posZ": 9.10981,
"rotX": 0.000823988637,
"rotY": 179.9945,
"rotZ": 179.987152,
"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": 310,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72ad85",
"Name": "Card",
"Transform": {
"posX": 1.43420017,
"posY": 1.23441875,
"posZ": 9.062325,
"rotX": -0.005708908,
"rotY": 179.996033,
"rotZ": 180.002,
"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": 311,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "72cb29",
"Name": "DeckCustom",
"Transform": {
"posX": -3.92753053,
"posY": 1.79733288,
"posZ": 5.757108,
"rotX": 359.919739,
"rotY": 269.985474,
"rotZ": 180.016846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter deck",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
507,
340,
505,
323,
329,
500,
330,
326,
343,
331,
532,
342,
325,
341,
337,
529,
509,
339,
324,
332,
336,
333,
502,
344,
510,
327,
322,
328,
532,
506,
338,
334,
503,
345,
504,
335,
501,
508,
532
],
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -1.9163475,
"posY": 1.72212744,
"posZ": 17.3744431,
"rotX": 359.919739,
"rotY": 270.0193,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 507,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 340,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.42305088,
"posY": 1.70347381,
"posZ": 17.0094223,
"rotX": 359.919739,
"rotY": 270.019226,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 505,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 323,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 329,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.02982926,
"posY": 1.60292518,
"posZ": 17.0686779,
"rotX": 359.919739,
"rotY": 270.019135,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 500,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 330,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 326,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 343,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 331,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "784fca",
"Name": "Card",
"Transform": {
"posX": 2.92246461,
"posY": 1.49622059,
"posZ": 20.877346,
"rotX": 359.9311,
"rotY": 269.985626,
"rotZ": 180.08287,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 532,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 342,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 325,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 341,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 337,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": 3.10469484,
"posY": 1.58166182,
"posZ": 20.9830189,
"rotX": 0.00516272569,
"rotY": 186.8471,
"rotZ": 0.0675378442,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Landon Hullet",
"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": 529,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.11291671,
"posY": 1.741648,
"posZ": 17.3365822,
"rotX": 359.919739,
"rotY": 270.0193,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 509,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 339,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 324,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 332,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 336,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 333,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.22590637,
"posY": 1.674281,
"posZ": 16.8993912,
"rotX": 359.919739,
"rotY": 270.019165,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 502,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 344,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.11541247,
"posY": 1.7511636,
"posZ": 16.94236,
"rotX": 359.919739,
"rotY": 270.019318,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 510,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 327,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 322,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 328,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "d7711b",
"Name": "Card",
"Transform": {
"posX": 2.8770833,
"posY": 1.58068419,
"posZ": 20.8699036,
"rotX": 359.9168,
"rotY": 269.9856,
"rotZ": 180.0184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 532,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -1.87840307,
"posY": 1.71224368,
"posZ": 16.6851234,
"rotX": 359.919739,
"rotY": 270.019257,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 506,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 338,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 334,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -1.692887,
"posY": 1.68331409,
"posZ": 17.4151554,
"rotX": 359.919739,
"rotY": 270.019226,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 503,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 345,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -1.839134,
"posY": 1.69297624,
"posZ": 16.83379,
"rotX": 359.919739,
"rotY": 270.019226,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 504,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 1.29084583E-08,
"posY": 1.04493046,
"posZ": 1.70842213E-07,
"rotX": -4.28986368E-06,
"rotY": 180.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 335,
"SidewaysCard": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": []
},
{
"GUID": "5d7c20",
"Name": "Card",
"Transform": {
"posX": -1.75457525,
"posY": 1.63983011,
"posZ": 17.2973957,
"rotX": 359.919739,
"rotY": 270.019165,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 501,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92a42c",
"Name": "Card",
"Transform": {
"posX": -2.030907,
"posY": 1.73192763,
"posZ": 17.4133549,
"rotX": 359.919739,
"rotY": 270.0193,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 508,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea3e4f",
"Name": "Card",
"Transform": {
"posX": 2.89975882,
"posY": 1.53856444,
"posZ": 20.87366,
"rotX": 359.4025,
"rotY": 269.9848,
"rotZ": 180.159317,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 532,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7378a3",
"Name": "Card",
"Transform": {
"posX": -3.95580029,
"posY": 1.59753919,
"posZ": -10.4412022,
"rotX": 359.919739,
"rotY": 270.0,
"rotZ": 0.0168372523,
"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": 300,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a4069d",
"Name": "Deck",
"Transform": {
"posX": 1.69650042,
"posY": 1.61383963,
"posZ": 14.2788019,
"rotX": 359.95517,
"rotY": 224.9981,
"rotZ": 0.0686545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Set aside",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
321,
346
],
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 12.4615593,
"posY": 1.23171341,
"posZ": 11.2190609,
"rotX": -4.827699E-06,
"rotY": 180.000092,
"rotZ": -3.32870059E-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": 321,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d9d642",
"Name": "Card",
"Transform": {
"posX": 12.237771,
"posY": 1.37793911,
"posZ": 11.3251934,
"rotX": -3.94501149E-06,
"rotY": 180.0,
"rotZ": -2.745455E-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": 346,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ae5aa8",
"Name": "Deck",
"Transform": {
"posX": -12.0755,
"posY": 1.64893806,
"posZ": 2.82249951,
"rotX": 359.9201,
"rotY": 269.970947,
"rotZ": 0.0168827269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "instructions",
"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": [
320,
319,
317,
318,
316,
315
],
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "cf2458",
"Name": "Card",
"Transform": {
"posX": 2.15212,
"posY": 1.03130817,
"posZ": 3.33501387,
"rotX": 2.78310586E-06,
"rotY": 180.0,
"rotZ": 1.73403475E-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": 320,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ca085",
"Name": "Card",
"Transform": {
"posX": 2.187102,
"posY": 1.17641807,
"posZ": 3.10731149,
"rotX": -0.00165436487,
"rotY": 180.000015,
"rotZ": 0.00203203177,
"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": 319,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a3cbc",
"Name": "Card",
"Transform": {
"posX": 1.9843111,
"posY": 1.19416618,
"posZ": 3.2209723,
"rotX": -0.000156457216,
"rotY": 180.000427,
"rotZ": -0.0008733306,
"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": 317,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a21282",
"Name": "Card",
"Transform": {
"posX": 8.749523,
"posY": 1.39694238,
"posZ": 2.465317,
"rotX": 0.0005046268,
"rotY": 180.000168,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 318,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "789887",
"Name": "Card",
"Transform": {
"posX": -12.1722517,
"posY": 1.81907213,
"posZ": -0.534185767,
"rotX": 359.9537,
"rotY": 270.012146,
"rotZ": 179.866272,
"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": 316,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b5fd5f",
"Name": "Card",
"Transform": {
"posX": -12.0404339,
"posY": 1.672457,
"posZ": -0.738268852,
"rotX": 359.921417,
"rotY": 269.9862,
"rotZ": 180.02504,
"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": 315,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c21348",
"Name": "Deck",
"Transform": {
"posX": -2.6908,
"posY": 1.61430573,
"posZ": -5.048501,
"rotX": 359.919739,
"rotY": 269.983643,
"rotZ": 0.0168596432,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
154402,
154513
],
"CustomDeck": {
"1544": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
},
"1545": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "fc7bcd",
"Name": "Card",
"Transform": {
"posX": 11.4517956,
"posY": 1.231689,
"posZ": 5.77704048,
"rotX": -0.000268990378,
"rotY": 180.000092,
"rotZ": -0.000181627373,
"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": 154402,
"SidewaysCard": false,
"CustomDeck": {
"1132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9f7e06",
"Name": "Card",
"Transform": {
"posX": 11.2191944,
"posY": 1.37667871,
"posZ": 6.102022,
"rotX": 359.989868,
"rotY": 180.002274,
"rotZ": -0.00236663129,
"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": 154513,
"SidewaysCard": false,
"CustomDeck": {
"1137": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "ea0896",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.33320045,
"posY": 1.58164716,
"posZ": -15.2570009,
"rotX": 359.919739,
"rotY": 270.000031,
"rotZ": 0.0168377664,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "Core Difficulty",
"Description": "click to set chaos token difficulty",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
"ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "name = 'Core Set'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend",
"LuaScriptState": "",
"XmlUI": ""
}
],
"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
}
}
]
}