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

12368 lines
458 KiB
JSON

{
"GUID": "754057",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 0.2697886,
"posY": 1.48960686,
"posZ": 28.7769718,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.0168745518,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Winter Winds",
"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/798737729142974098/BF07864708BDE2804C0495637DDD55E85CC883EA/",
"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\":{\"11429d\":{\"lock\":false,\"pos\":{\"x\":9.5267,\"y\":1.2845,\"z\":4.5868},\"rot\":{\"x\":0.0799,\"y\":89.9987,\"z\":359.9831}},\"8077a1\":{\"lock\":false,\"pos\":{\"x\":9.1666,\"y\":1.2836,\"z\":-0.8205},\"rot\":{\"x\":0.0799,\"y\":89.9944,\"z\":359.9831}},\"d54710\":{\"lock\":false,\"pos\":{\"x\":-4.0215,\"y\":1.5826,\"z\":-15.2289},\"rot\":{\"x\":359.9197,\"y\":269.9984,\"z\":0.0168}},\"ddd10b\":{\"lock\":false,\"pos\":{\"x\":8.3252,\"y\":1.283,\"z\":-6.4267},\"rot\":{\"x\":0.0799,\"y\":89.996,\"z\":359.9831}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "11429d",
"Name": "Bag",
"Transform": {
"posX": 9.526739,
"posY": 1.28454447,
"posZ": 4.58676338,
"rotX": 0.07993512,
"rotY": 89.9986954,
"rotZ": 359.9831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frozen Tracks",
"Description": "Winter Winds",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.8710802,
"g": 0.835354,
"b": 0.79671973
},
"LayoutGroupSortIndex": 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\":{\"1d9d5a\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.0136,\"z\":0.0169}},\"3d7392\":{\"lock\":false,\"pos\":{\"x\":-2.6959,\"y\":1.6623,\"z\":-5.0447},\"rot\":{\"x\":359.9197,\"y\":270.084,\"z\":0.0167}},\"6712b5\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7824,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":180.0168}},\"77b535\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6566,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0035,\"z\":0.0168}},\"78e6a9\":{\"lock\":false,\"pos\":{\"x\":1.7044,\"y\":1.3982,\"z\":14.2786},\"rot\":{\"x\":359.9551,\"y\":224.9978,\"z\":0.0687}},\"818319\":{\"lock\":false,\"pos\":{\"x\":-10.3245,\"y\":1.5966,\"z\":2.3096},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":0.0169}},\"8a34fc\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6816,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.977,\"z\":0.0169}},\"a8dd66\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6726,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0169}},\"ba0135\":{\"lock\":false,\"pos\":{\"x\":-3.9561,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0136,\"z\":0.0168}},\"e49f42\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6759,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":0.0169}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "78e6a9",
"Name": "Bag",
"Transform": {
"posX": 1.70440781,
"posY": 1.39823532,
"posZ": 14.2786,
"rotX": 359.9551,
"rotY": 224.997833,
"rotZ": 0.06872297,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Set Aside",
"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,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3a674c",
"Name": "Card",
"Transform": {
"posX": -1.99272346,
"posY": 3.05215526,
"posZ": -17.7473125,
"rotX": 1.75986719,
"rotY": 269.9273,
"rotZ": 357.1774,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jewel of the Winter Wind",
"Description": "Item. Amulet.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 100707,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ede709",
"Name": "Card",
"Transform": {
"posX": -1.3968879,
"posY": 3.0923326,
"posZ": -18.5392075,
"rotX": 0.67485255,
"rotY": 270.02002,
"rotZ": 2.2891202,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Experienced Passenger",
"Description": "Human. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13620,
"SidewaysCard": false,
"CustomDeck": {
"136": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77acb9",
"Name": "Card",
"Transform": {
"posX": -46.7328529,
"posY": 3.39261842,
"posZ": -62.3470726,
"rotX": 0.6546613,
"rotY": 270.034821,
"rotZ": 3.15415025,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Ritualist",
"Description": "Elite. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 13619,
"SidewaysCard": false,
"CustomDeck": {
"136": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6712b5",
"Name": "Deck",
"Transform": {
"posX": -3.927403,
"posY": 1.7823683,
"posZ": 5.75713634,
"rotX": 359.919739,
"rotY": 269.999756,
"rotZ": 180.016815,
"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": [
13200,
13201,
13202,
13203,
13204,
13205,
13206,
13207,
13208,
13209,
13214,
13216,
13215,
13217,
13218,
13210,
13211,
13212,
13213,
12121,
12121,
12122,
12122,
3623,
3623,
3623,
3624,
3625,
3625,
12120,
12120,
12120
],
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ede709",
"Name": "Card",
"Transform": {
"posX": 10.5102282,
"posY": 1.03161407,
"posZ": -8.345625,
"rotX": -0.00459306734,
"rotY": 270.0224,
"rotZ": -0.00108964532,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Between the Cars",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13200,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2af598",
"Name": "Card",
"Transform": {
"posX": 10.6710434,
"posY": 1.17629206,
"posZ": -8.65471649,
"rotX": -0.00251994538,
"rotY": 270.023865,
"rotZ": 0.0271634627,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Between the Cars",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13201,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f00d6",
"Name": "Card",
"Transform": {
"posX": 13.5386314,
"posY": 1.11534238,
"posZ": -10.4424658,
"rotX": 357.5384,
"rotY": 269.935455,
"rotZ": 0.8682976,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unnatural Rockslide",
"Description": "Hazard. Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13202,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b67891",
"Name": "Card",
"Transform": {
"posX": 13.8642406,
"posY": 1.25968623,
"posZ": -10.6329069,
"rotX": 358.107941,
"rotY": 269.972473,
"rotZ": 0.8715951,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unnatual Rockslide",
"Description": "Hazard. Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13203,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7d0f81",
"Name": "Card",
"Transform": {
"posX": 13.11952,
"posY": 1.03164434,
"posZ": -14.5551844,
"rotX": -0.003655519,
"rotY": 270.0122,
"rotZ": -0.00153372448,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Icy Track",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13204,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b4717",
"Name": "Card",
"Transform": {
"posX": 13.1586466,
"posY": 1.17643011,
"posZ": -14.3632669,
"rotX": 0.00120737357,
"rotY": 270.012329,
"rotZ": 359.977631,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Icy Track",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13205,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d398b",
"Name": "Card",
"Transform": {
"posX": 9.486512,
"posY": 1.03149593,
"posZ": -17.6714325,
"rotX": 359.9888,
"rotY": 269.9869,
"rotZ": 0.0140888374,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pushed Off",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13206,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea910e",
"Name": "Card",
"Transform": {
"posX": 14.9503279,
"posY": 1.03147757,
"posZ": -17.91679,
"rotX": 359.987823,
"rotY": 270.0121,
"rotZ": -0.004966685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pushed Off",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13207,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b7ff58",
"Name": "Card",
"Transform": {
"posX": 11.7398243,
"posY": 1.03148031,
"posZ": -17.9151783,
"rotX": 359.987274,
"rotY": 270.011719,
"rotZ": -0.005430118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Onto the Roof",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13208,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "865465",
"Name": "Card",
"Transform": {
"posX": 16.1587811,
"posY": 1.031698,
"posZ": -19.7836514,
"rotX": -0.0007825692,
"rotY": 270.0121,
"rotZ": -0.000225154043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Onto the Roof",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13209,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "34b911",
"Name": "Card",
"Transform": {
"posX": 10.8538427,
"posY": 1.0331341,
"posZ": -27.8758125,
"rotX": 0.0053248,
"rotY": 269.984741,
"rotZ": -0.00275616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Passenger",
"Description": "Human.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13214,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e37988",
"Name": "Card",
"Transform": {
"posX": 12.225584,
"posY": 1.22484493,
"posZ": -27.119236,
"rotX": 359.843079,
"rotY": 269.984283,
"rotZ": 359.8763,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Passenger",
"Description": "Human.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13216,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "210f98",
"Name": "Card",
"Transform": {
"posX": 11.819416,
"posY": 1.08059108,
"posZ": -27.58278,
"rotX": 359.840759,
"rotY": 269.984436,
"rotZ": 359.8702,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Passenger",
"Description": "Human.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13215,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0feb6",
"Name": "Card",
"Transform": {
"posX": 13.57659,
"posY": 1.03162467,
"posZ": -17.0790081,
"rotX": -0.00422712043,
"rotY": 269.985474,
"rotZ": -0.0013482389,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Observant Passenger",
"Description": "Human.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13217,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f74e7f",
"Name": "Card",
"Transform": {
"posX": 13.0900087,
"posY": 1.176565,
"posZ": -17.3480682,
"rotX": 359.9929,
"rotY": 269.985718,
"rotZ": 0.0132343015,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Observant Passenger",
"Description": "Human.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13218,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5c374",
"Name": "Card",
"Transform": {
"posX": 27.8899879,
"posY": 1.03153634,
"posZ": -19.3154221,
"rotX": 359.993439,
"rotY": 269.9513,
"rotZ": 0.0352736861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gaze of the North",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13210,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "13fae6",
"Name": "Card",
"Transform": {
"posX": 27.4055729,
"posY": 1.17635763,
"posZ": -19.4227448,
"rotX": 0.00151416427,
"rotY": 269.9581,
"rotZ": 0.101358652,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Biting Breath",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13211,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c65380",
"Name": "Card",
"Transform": {
"posX": 27.883564,
"posY": 1.19393671,
"posZ": -19.0361481,
"rotX": -0.0027201646,
"rotY": 269.962,
"rotZ": 359.9457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Icy Veins",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13212,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "82c594",
"Name": "Card",
"Transform": {
"posX": 27.87265,
"posY": 1.18043482,
"posZ": -19.3434925,
"rotX": -0.000755445159,
"rotY": 269.995728,
"rotZ": 0.0009828494,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shifting Aurora",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13213,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb311c",
"Name": "Card",
"Transform": {
"posX": -1.71423316,
"posY": 1.03169024,
"posZ": -12.9443426,
"rotX": -0.00174733356,
"rotY": 270.034454,
"rotZ": -0.0011755788,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crypt Chill",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12121,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b78c3b",
"Name": "Card",
"Transform": {
"posX": -1.52981949,
"posY": 1.17628717,
"posZ": -12.4871578,
"rotX": 359.9812,
"rotY": 269.999481,
"rotZ": 359.976318,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crypt Chill",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12121,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "356046",
"Name": "Card",
"Transform": {
"posX": -1.42470074,
"posY": 1.03167713,
"posZ": -15.8986273,
"rotX": -0.00186766614,
"rotY": 270.0325,
"rotZ": -0.0007538253,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obscuring Fog",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12122,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03a265",
"Name": "Card",
"Transform": {
"posX": -1.54464078,
"posY": 1.17053676,
"posZ": -16.0112114,
"rotX": 359.985138,
"rotY": 269.971527,
"rotZ": 0.00247924146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obscuring Fog",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12122,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c70e63",
"Name": "Card",
"Transform": {
"posX": 9.324065,
"posY": 1.19862,
"posZ": -3.09369588,
"rotX": 359.486053,
"rotY": 270.0154,
"rotZ": 179.301117,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4072d7",
"Name": "Card",
"Transform": {
"posX": 8.92055,
"posY": 1.18172359,
"posZ": -3.263212,
"rotX": 359.947266,
"rotY": 270.010468,
"rotZ": 179.834869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c70e63",
"Name": "Card",
"Transform": {
"posX": 8.955755,
"posY": 1.03432441,
"posZ": -3.18170285,
"rotX": 359.989838,
"rotY": 270.009247,
"rotZ": 180.004013,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "159f90",
"Name": "Card",
"Transform": {
"posX": 2.3881433,
"posY": 1.19410753,
"posZ": -2.42233348,
"rotX": 359.993927,
"rotY": 269.9705,
"rotZ": 359.9545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wizard of the Order",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3624,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f5b7b",
"Name": "Card",
"Transform": {
"posX": 2.497438,
"posY": 1.03164768,
"posZ": -2.41275716,
"rotX": -0.0026828805,
"rotY": 269.9992,
"rotZ": 0.00774262333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Chanting",
"Description": "Hex.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3625,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df668b",
"Name": "Card",
"Transform": {
"posX": 2.78830338,
"posY": 1.17654562,
"posZ": -2.26493549,
"rotX": -0.00101514475,
"rotY": 270.018677,
"rotZ": 0.0129767042,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Chanting",
"Description": "Hex.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3625,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0f4c0",
"Name": "Card",
"Transform": {
"posX": 2.00385523,
"posY": 1.031655,
"posZ": -23.845438,
"rotX": -0.004642595,
"rotY": 269.95694,
"rotZ": -0.00403306354,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Evils",
"Description": "Omen.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12120,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1921c5",
"Name": "Card",
"Transform": {
"posX": 1.77903724,
"posY": 1.03169167,
"posZ": -21.72116,
"rotX": -0.00220041536,
"rotY": 270.005157,
"rotZ": 0.0003692792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Evils",
"Description": "Omen.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12120,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61e841",
"Name": "Card",
"Transform": {
"posX": 2.05545044,
"posY": 1.24616587,
"posZ": -21.5521545,
"rotX": 359.950653,
"rotY": 269.977722,
"rotZ": 354.750183,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ancient Evils",
"Description": "Omen.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12120,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "77b535",
"Name": "Deck",
"Transform": {
"posX": -2.72479558,
"posY": 1.65664136,
"posZ": 0.3733128,
"rotX": 359.919739,
"rotY": 270.0035,
"rotZ": 0.0168337766,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"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": [
13104,
13103,
13102
],
"CustomDeck": {
"131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "872638",
"Name": "Card",
"Transform": {
"posX": 9.432172,
"posY": 1.03097165,
"posZ": -15.8618374,
"rotX": 359.949371,
"rotY": 269.999573,
"rotZ": 359.9908,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Call the Winter Winds",
"Description": "Agenda 3",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13104,
"SidewaysCard": false,
"CustomDeck": {
"131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a10cd6",
"Name": "Card",
"Transform": {
"posX": 8.746051,
"posY": 1.03167546,
"posZ": -21.2014046,
"rotX": -0.00285951328,
"rotY": 269.999268,
"rotZ": -0.000505713164,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Hostile Takeover",
"Description": "Agenda 2",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13103,
"SidewaysCard": false,
"CustomDeck": {
"131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "02c421",
"Name": "Card",
"Transform": {
"posX": 8.523183,
"posY": 1.17670381,
"posZ": -21.2167778,
"rotX": 359.989471,
"rotY": 269.9988,
"rotZ": -0.00275202934,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "A Killer on the Train",
"Description": "Agenda 1",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13102,
"SidewaysCard": false,
"CustomDeck": {
"131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3d7392",
"Name": "Deck",
"Transform": {
"posX": -2.69587,
"posY": 1.662345,
"posZ": -5.044671,
"rotX": 359.9197,
"rotY": 270.084045,
"rotZ": 0.0167315286,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"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": [
13101,
13100
],
"CustomDeck": {
"131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ec9779",
"Name": "Card",
"Transform": {
"posX": -2.45919681,
"posY": 1.03164971,
"posZ": -13.74549,
"rotX": -0.00441831537,
"rotY": 270.000122,
"rotZ": -0.000904154556,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Recovering the Jewel",
"Description": "Act 2",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13101,
"SidewaysCard": false,
"CustomDeck": {
"131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "02c421",
"Name": "Card",
"Transform": {
"posX": -2.46324134,
"posY": 1.17644262,
"posZ": -13.3719826,
"rotX": 359.991333,
"rotY": 269.997864,
"rotZ": -0.000340094557,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Question the Passengers",
"Description": "Act 1",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13100,
"SidewaysCard": false,
"CustomDeck": {
"131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ba0135",
"Name": "Card",
"Transform": {
"posX": -3.956137,
"posY": 1.65564847,
"posZ": -10.4411831,
"rotX": 359.919739,
"rotY": 270.0136,
"rotZ": 0.0168235935,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frozen Tracks",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 100708,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "818319",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.3245306,
"posY": 1.59657729,
"posZ": 2.3096478,
"rotX": 359.9201,
"rotY": 270.000122,
"rotZ": 0.0168715287,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Setup",
"Description": "Resolution on the Back",
"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/2433509329553648759/3A9CAC3C075207DB7E98FC97E2071D422617F7DC/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553649397/2372332174FD0D014E279A593FF3C37B8393C8C3/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 0,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8a34fc",
"Name": "Card",
"Transform": {
"posX": -17.120079,
"posY": 1.68155956,
"posZ": 15.1900072,
"rotX": 359.9201,
"rotY": 269.976959,
"rotZ": 0.0169106238,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Train Car (Cargo Car)",
"Description": "Train.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 100706,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e49f42",
"Name": "Deck",
"Transform": {
"posX": -17.1200275,
"posY": 1.67594552,
"posZ": -0.02999484,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168835651,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Train Car",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": [
100701,
100702,
100703,
100704,
100705
],
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7a8e01",
"Name": "Card",
"Transform": {
"posX": 10.9742126,
"posY": 1.03134382,
"posZ": -13.8671932,
"rotX": -0.004650283,
"rotY": 269.9567,
"rotZ": 0.03180685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Train Car",
"Description": "Train.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 100701,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "25c2a5",
"Name": "Card",
"Transform": {
"posX": 10.7582169,
"posY": 1.17647219,
"posZ": -14.0163946,
"rotX": 0.0015382,
"rotY": 270.0136,
"rotZ": 0.11083582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Train Car",
"Description": "Train.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 100702,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77ce56",
"Name": "Card",
"Transform": {
"posX": 10.855052,
"posY": 1.19415355,
"posZ": -13.7370682,
"rotX": -0.000714877562,
"rotY": 270.000366,
"rotZ": -0.00139965129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Train Car",
"Description": "Train.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 100703,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6b8a2",
"Name": "Card",
"Transform": {
"posX": 11.0029573,
"posY": 1.18039513,
"posZ": -14.0247822,
"rotX": 0.0003343859,
"rotY": 270.007874,
"rotZ": 0.002412254,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Train Car",
"Description": "Train.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 100704,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "93893d",
"Name": "Card",
"Transform": {
"posX": 0.15554221,
"posY": 1.17841291,
"posZ": -17.2429752,
"rotX": -0.0006533707,
"rotY": 269.992859,
"rotZ": -0.00436514057,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Train Car",
"Description": "Train.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 100705,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a8dd66",
"Name": "Card",
"Transform": {
"posX": -17.1201477,
"posY": 1.67258751,
"posZ": -15.2799959,
"rotX": 359.9201,
"rotY": 270.000366,
"rotZ": 0.0168772228,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Engine",
"Description": "Train.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 100700,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d9d5a",
"Name": "Card",
"Transform": {
"posX": -50.9243851,
"posY": 1.72662532,
"posZ": 8.178431,
"rotX": 359.9201,
"rotY": 270.013641,
"rotZ": 0.0168574732,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frozen Tracks",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 100708,
"SidewaysCard": false,
"CustomDeck": {
"1007": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8077a1",
"Name": "Bag",
"Transform": {
"posX": 9.166584,
"posY": 1.2836194,
"posZ": -0.8205363,
"rotX": 0.0799213052,
"rotY": 89.9943542,
"rotZ": 359.9831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stranded in the Urals",
"Description": "Winter Winds",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.8850174,
"g": 0.8398302,
"b": 0.790965
},
"LayoutGroupSortIndex": 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\":{\"10a86b\":{\"lock\":false,\"pos\":{\"x\":-10.975,\"y\":1.5973,\"z\":1.6777},\"rot\":{\"x\":359.9201,\"y\":269.9915,\"z\":0.0169}},\"78e6a9\":{\"lock\":false,\"pos\":{\"x\":1.7123,\"y\":1.3982,\"z\":14.2795},\"rot\":{\"x\":359.9551,\"y\":224.995,\"z\":0.0687}},\"7a7819\":{\"lock\":false,\"pos\":{\"x\":-3.7391,\"y\":1.6639,\"z\":-4.6163},\"rot\":{\"x\":359.9197,\"y\":270.0114,\"z\":0.0168}},\"c2daa0\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.023,\"z\":0.0168}},\"c4b865\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.023,\"z\":0.0168}},\"cdb1f6\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6771,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9873,\"z\":0.0169}},\"d0fe7b\":{\"lock\":false,\"pos\":{\"x\":-3.9278,\"y\":1.7131,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0013,\"z\":180.0168}},\"f4149c\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0512,\"z\":0.0168}},\"f957fa\":{\"lock\":false,\"pos\":{\"x\":-11.5779,\"y\":1.6783,\"z\":7.1616},\"rot\":{\"x\":359.9201,\"y\":269.9909,\"z\":0.0169}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "78e6a9",
"Name": "Bag",
"Transform": {
"posX": 1.71226311,
"posY": 1.39822388,
"posZ": 14.279501,
"rotX": 359.955139,
"rotY": 224.994965,
"rotZ": 0.06872208,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Set Aside",
"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,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e786f6",
"Name": "Deck",
"Transform": {
"posX": 16.2611752,
"posY": 3.04755926,
"posZ": -11.5840378,
"rotX": 2.60780072,
"rotY": 269.9864,
"rotZ": 359.710052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beast-Scarred",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
14804,
14805,
14806,
14807
],
"CustomDeck": {
"148": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "6fa3f0",
"Name": "Card",
"Transform": {
"posX": 10.8678341,
"posY": 1.03159249,
"posZ": -23.8553867,
"rotX": 359.993378,
"rotY": 269.998474,
"rotZ": -0.002072115,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beast-Scarred",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14804,
"SidewaysCard": false,
"CustomDeck": {
"148": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8a6e1e",
"Name": "Card",
"Transform": {
"posX": 10.3832235,
"posY": 1.17636013,
"posZ": -23.6382179,
"rotX": 0.003643,
"rotY": 269.998169,
"rotZ": 359.98642,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beast-Scarred",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14805,
"SidewaysCard": false,
"CustomDeck": {
"148": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8fb5c5",
"Name": "Card",
"Transform": {
"posX": 10.9598055,
"posY": 1.19408429,
"posZ": -23.7319851,
"rotX": 0.0006138074,
"rotY": 270.0099,
"rotZ": -0.00274992036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beast-Scarred",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14806,
"SidewaysCard": false,
"CustomDeck": {
"148": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2849a0",
"Name": "Card",
"Transform": {
"posX": 10.9514856,
"posY": 1.19564819,
"posZ": -23.1519432,
"rotX": 359.43335,
"rotY": 270.031464,
"rotZ": 359.993439,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beast-Scarred",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14807,
"SidewaysCard": false,
"CustomDeck": {
"148": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d6b469",
"Name": "Card",
"Transform": {
"posX": 17.5116653,
"posY": 3.09721518,
"posZ": -11.7993078,
"rotX": 359.496124,
"rotY": 269.9724,
"rotZ": 1.698531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Predator",
"Description": "Beast. Monster. Elite.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17503,
"SidewaysCard": false,
"CustomDeck": {
"175": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d31305",
"Name": "Deck",
"Transform": {
"posX": 16.9008961,
"posY": 3.082304,
"posZ": -11.3442392,
"rotX": 1.99262917,
"rotY": 269.9393,
"rotZ": 177.652969,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck (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,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
19517,
19516,
19515,
19502,
19501,
17518,
17520,
17521,
17519,
17522,
17523
],
"CustomDeck": {
"195": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"175": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "637fcb",
"Name": "Card",
"Transform": {
"posX": 0.142472938,
"posY": 1.18124032,
"posZ": -5.576077,
"rotX": 0.000385577965,
"rotY": 270.000031,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Forest",
"Description": "Darkness.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 19517,
"SidewaysCard": false,
"CustomDeck": {
"195": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "18ef99",
"Name": "Card",
"Transform": {
"posX": 0.369125634,
"posY": 1.36190581,
"posZ": -5.58128548,
"rotX": 0.0310099125,
"rotY": 270.050964,
"rotZ": 168.132156,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Forest",
"Description": "Darkness.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 19516,
"SidewaysCard": false,
"CustomDeck": {
"195": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0c28e3",
"Name": "Card",
"Transform": {
"posX": 0.543026268,
"posY": 1.03159833,
"posZ": -5.64573431,
"rotX": 359.993927,
"rotY": 270.000244,
"rotZ": -0.00299406517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Forest",
"Description": "Darkness.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 19515,
"SidewaysCard": false,
"CustomDeck": {
"195": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d2f2d",
"Name": "Card",
"Transform": {
"posX": 3.08491755,
"posY": 1.0317024,
"posZ": -3.138727,
"rotX": -0.000734186848,
"rotY": 269.993225,
"rotZ": -0.0004571173,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hungry Wolves",
"Description": "Beast. Hunger.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 19502,
"SidewaysCard": false,
"CustomDeck": {
"195": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb0c1a",
"Name": "Card",
"Transform": {
"posX": 3.254808,
"posY": 1.170506,
"posZ": -3.20962143,
"rotX": 359.988129,
"rotY": 269.9997,
"rotZ": -0.0008809489,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hungry Wolves",
"Description": "Beast. Hunger.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 19501,
"SidewaysCard": false,
"CustomDeck": {
"195": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "084294",
"Name": "Card",
"Transform": {
"posX": -1.34963989,
"posY": 1.18888879,
"posZ": -11.2352085,
"rotX": -0.000925045635,
"rotY": 270.000061,
"rotZ": 180.005188,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Signs of the Beast",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17518,
"SidewaysCard": false,
"CustomDeck": {
"175": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e77752",
"Name": "Card",
"Transform": {
"posX": -0.9055802,
"posY": 1.14766085,
"posZ": -10.7649784,
"rotX": -0.001829637,
"rotY": 270.005585,
"rotZ": 182.099579,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Signs of the Beast",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17520,
"SidewaysCard": false,
"CustomDeck": {
"175": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6e9c8",
"Name": "Card",
"Transform": {
"posX": -1.11455131,
"posY": 1.18134487,
"posZ": -11.3881416,
"rotX": 0.00182387978,
"rotY": 269.986847,
"rotZ": 180.016418,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunting the Prey",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17521,
"SidewaysCard": false,
"CustomDeck": {
"175": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a73db5",
"Name": "Card",
"Transform": {
"posX": -0.8308225,
"posY": 1.24001122,
"posZ": -11.0067472,
"rotX": 0.005495741,
"rotY": 270.013275,
"rotZ": 176.961838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunting the Prey",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17519,
"SidewaysCard": false,
"CustomDeck": {
"175": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e22c1",
"Name": "Card",
"Transform": {
"posX": -1.17240143,
"posY": 1.19703341,
"posZ": -10.9641867,
"rotX": -0.00072705315,
"rotY": 269.999939,
"rotZ": 179.997757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unnerving Roar",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17522,
"SidewaysCard": false,
"CustomDeck": {
"175": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0cb77c",
"Name": "Card",
"Transform": {
"posX": -0.6752495,
"posY": 1.14079976,
"posZ": -11.1923189,
"rotX": -0.0006155708,
"rotY": 270.0224,
"rotZ": 182.004333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unnerving Roar",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17523,
"SidewaysCard": false,
"CustomDeck": {
"175": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "65dc35",
"Name": "Card",
"Transform": {
"posX": 16.6054478,
"posY": 3.05367351,
"posZ": -12.1138792,
"rotX": 2.06798315,
"rotY": 270.069855,
"rotZ": 2.393525,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Awakened Bear",
"Description": "Beast.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16100,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb056a",
"Name": "Deck",
"Transform": {
"posX": 17.09929,
"posY": 3.04834175,
"posZ": -10.8763924,
"rotX": 0.73957175,
"rotY": 269.975433,
"rotZ": 356.412445,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Story Asset",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
14500,
14501,
14502,
14503
],
"CustomDeck": {
"145": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e191a3",
"Name": "Card",
"Transform": {
"posX": 8.560706,
"posY": 1.03167164,
"posZ": -22.635746,
"rotX": -0.0023084248,
"rotY": 270.000244,
"rotZ": -0.00111155782,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Winter Gear",
"Description": "Item.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14500,
"SidewaysCard": false,
"CustomDeck": {
"145": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a3f87",
"Name": "Card",
"Transform": {
"posX": 8.5700655,
"posY": 1.17673635,
"posZ": -22.5560188,
"rotX": -0.00568715157,
"rotY": 269.999817,
"rotZ": 359.975769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rations",
"Description": "Item.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14501,
"SidewaysCard": false,
"CustomDeck": {
"145": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "805002",
"Name": "Card",
"Transform": {
"posX": 8.476665,
"posY": 1.19412315,
"posZ": -22.341959,
"rotX": 0.0002528971,
"rotY": 270.055359,
"rotZ": 359.958862,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ural Map",
"Description": "Item.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14502,
"SidewaysCard": false,
"CustomDeck": {
"145": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a75981",
"Name": "Card",
"Transform": {
"posX": 8.684938,
"posY": 1.18039775,
"posZ": -22.5359135,
"rotX": 359.982941,
"rotY": 269.946472,
"rotZ": 359.970917,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Emergency Flares",
"Description": "Item.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14503,
"SidewaysCard": false,
"CustomDeck": {
"145": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "840896",
"Name": "Card",
"Transform": {
"posX": 1.44725049,
"posY": 3.05783725,
"posZ": -25.71609,
"rotX": 1.57806945,
"rotY": 270.065979,
"rotZ": 3.09587169,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13310,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb97ce",
"Name": "Deck",
"Transform": {
"posX": 1.97830665,
"posY": 3.102295,
"posZ": -25.09972,
"rotX": 3.11626029,
"rotY": 270.021118,
"rotZ": 359.2461,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deep Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
13309,
13308,
13304
],
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "457e6e",
"Name": "Card",
"Transform": {
"posX": 12.8014393,
"posY": 1.03161585,
"posZ": -3.96207976,
"rotX": -0.00467104651,
"rotY": 269.982819,
"rotZ": -0.00157286471,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deep Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13309,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2fbb95",
"Name": "Card",
"Transform": {
"posX": 12.8027363,
"posY": 1.1762774,
"posZ": -4.384776,
"rotX": 359.989532,
"rotY": 269.982727,
"rotZ": 0.00607593963,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deep Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13308,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4bef38",
"Name": "Card",
"Transform": {
"posX": -2.22256923,
"posY": 1.30816424,
"posZ": -21.9080219,
"rotX": 2.33912182,
"rotY": 270.00946,
"rotZ": 0.08732495,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deep Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13304,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "12ec4b",
"Name": "Deck",
"Transform": {
"posX": 2.43829226,
"posY": 3.087233,
"posZ": -25.21223,
"rotX": 357.944855,
"rotY": 269.983582,
"rotZ": 0.4686706,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowy Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
13307,
13306,
13303
],
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "033d6f",
"Name": "Card",
"Transform": {
"posX": 7.057056,
"posY": 1.03164685,
"posZ": 0.4595139,
"rotX": -0.00307783531,
"rotY": 269.982758,
"rotZ": -0.00088763173,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowy Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13307,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df9686",
"Name": "Card",
"Transform": {
"posX": 6.48448753,
"posY": 1.08151174,
"posZ": 0.460016549,
"rotX": 0.003244599,
"rotY": 269.98233,
"rotZ": 0.00121619739,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowy Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13306,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "68f877",
"Name": "Card",
"Transform": {
"posX": 5.36599064,
"posY": 1.14372265,
"posZ": 0.173698068,
"rotX": 0.0123283612,
"rotY": 269.980316,
"rotZ": 0.005671118,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowy Woods",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13303,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "5ff6b5",
"Name": "Card",
"Transform": {
"posX": 2.17346358,
"posY": 3.07265115,
"posZ": -24.6990662,
"rotX": 359.399719,
"rotY": 270.031464,
"rotZ": 356.4238,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vantage Point",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13305,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d0fe7b",
"Name": "Deck",
"Transform": {
"posX": -3.92776561,
"posY": 1.71308637,
"posZ": 5.757146,
"rotX": 359.919739,
"rotY": 270.001282,
"rotZ": 180.016815,
"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": [
16104,
16105,
16106,
16107,
16108,
16109,
16110,
16111,
17112,
17113,
17114,
20110,
20111,
20112,
20113,
12121,
12121,
12122,
12122
],
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"171": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0f6f90",
"Name": "Card",
"Transform": {
"posX": 3.31877637,
"posY": 1.170931,
"posZ": -2.80736852,
"rotX": 1.88060212,
"rotY": 269.990631,
"rotZ": 181.301331,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lost Bearings",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16104,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4e761c",
"Name": "Card",
"Transform": {
"posX": 3.80756855,
"posY": 1.19534349,
"posZ": -2.770593,
"rotX": -0.0008723996,
"rotY": 270.000153,
"rotZ": 179.99675,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lost Bearings",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16105,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8db8e9",
"Name": "Card",
"Transform": {
"posX": 3.36811614,
"posY": 1.137907,
"posZ": -2.99176455,
"rotX": 0.00306611462,
"rotY": 270.0142,
"rotZ": 182.602234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Exhaustion",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16106,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "816ecd",
"Name": "Card",
"Transform": {
"posX": 3.948201,
"posY": 1.18398631,
"posZ": -2.76795959,
"rotX": -0.00115697633,
"rotY": 270.000183,
"rotZ": 179.993729,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Exhaustion",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16107,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d3d7ec",
"Name": "Card",
"Transform": {
"posX": 3.46770239,
"posY": 1.18130016,
"posZ": -2.85143256,
"rotX": -0.0008013963,
"rotY": 270.0,
"rotZ": 180.000671,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Going Hungry",
"Description": "Hunger.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16108,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8d413",
"Name": "Card",
"Transform": {
"posX": 3.15679526,
"posY": 1.17644334,
"posZ": -2.859901,
"rotX": 0.00360350683,
"rotY": 269.996216,
"rotZ": -0.00308331614,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Going Hungry",
"Description": "Hunger.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16109,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2bfb6d",
"Name": "Card",
"Transform": {
"posX": -1.2571435,
"posY": 1.10455477,
"posZ": -9.77021,
"rotX": 357.939423,
"rotY": 269.9389,
"rotZ": 0.8729092,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Slippery Slope",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16110,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92ae12",
"Name": "Card",
"Transform": {
"posX": -1.17690992,
"posY": 1.250278,
"posZ": -10.1210718,
"rotX": 358.256317,
"rotY": 269.917419,
"rotZ": 0.9120789,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Slippery Slope",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 16111,
"SidewaysCard": false,
"CustomDeck": {
"161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9966fb",
"Name": "Card",
"Transform": {
"posX": -1.55678785,
"posY": 1.03160584,
"posZ": -13.5061932,
"rotX": -0.004945269,
"rotY": 269.999664,
"rotZ": -0.00220492133,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowblind",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17112,
"SidewaysCard": false,
"CustomDeck": {
"171": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ae5e15",
"Name": "Card",
"Transform": {
"posX": -1.86784482,
"posY": 1.17642951,
"posZ": -13.3554935,
"rotX": 0.004352986,
"rotY": 269.99942,
"rotZ": 359.990051,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowblind",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17113,
"SidewaysCard": false,
"CustomDeck": {
"171": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ffc740",
"Name": "Card",
"Transform": {
"posX": -1.56902337,
"posY": 1.19408131,
"posZ": -13.8108921,
"rotX": -0.0018281854,
"rotY": 269.998627,
"rotZ": 0.002176097,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowblind",
"Description": "Environment.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 17114,
"SidewaysCard": false,
"CustomDeck": {
"171": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 6,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5c374",
"Name": "Card",
"Transform": {
"posX": 27.8899879,
"posY": 1.03153634,
"posZ": -19.3154221,
"rotX": 359.993439,
"rotY": 269.9513,
"rotZ": 0.0352736861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gaze of the North",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20110,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "13fae6",
"Name": "Card",
"Transform": {
"posX": 27.4055729,
"posY": 1.17635763,
"posZ": -19.4227448,
"rotX": 0.00151416427,
"rotY": 269.9581,
"rotZ": 0.101358652,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Biting Breath",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20111,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c65380",
"Name": "Card",
"Transform": {
"posX": 27.883564,
"posY": 1.19393671,
"posZ": -19.0361481,
"rotX": -0.0027201646,
"rotY": 269.962,
"rotZ": 359.9457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Icy Veins",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20112,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "82c594",
"Name": "Card",
"Transform": {
"posX": 27.87265,
"posY": 1.18043482,
"posZ": -19.3434925,
"rotX": -0.000755445159,
"rotY": 269.995728,
"rotZ": 0.0009828494,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shifting Aurora",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20113,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb311c",
"Name": "Card",
"Transform": {
"posX": 0.996816456,
"posY": 1.03160727,
"posZ": -2.49671364,
"rotX": -0.00516256876,
"rotY": 269.999329,
"rotZ": -0.00193821313,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crypt Chill",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12121,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b78c3b",
"Name": "Card",
"Transform": {
"posX": 1.0079695,
"posY": 1.1762253,
"posZ": -2.91417956,
"rotX": 359.987457,
"rotY": 269.997742,
"rotZ": 0.0291438177,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crypt Chill",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12121,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "356046",
"Name": "Card",
"Transform": {
"posX": 1.36280608,
"posY": 1.19408226,
"posZ": -2.558201,
"rotX": -0.000472621556,
"rotY": 269.998444,
"rotZ": -1.85840636E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obscuring Fog",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12122,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03a265",
"Name": "Card",
"Transform": {
"posX": 1.214485,
"posY": 1.18039763,
"posZ": -2.73391581,
"rotX": -0.000302326545,
"rotY": 269.99884,
"rotZ": 0.00337873376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obscuring Fog",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12122,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f4149c",
"Name": "Deck",
"Transform": {
"posX": -2.72469378,
"posY": 1.66397738,
"posZ": 0.373308361,
"rotX": 359.919739,
"rotY": 270.0512,
"rotZ": 0.0167672429,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"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": [
14303,
14302
],
"CustomDeck": {
"143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "97ea68",
"Name": "Card",
"Transform": {
"posX": 15.5700941,
"posY": 1.03161561,
"posZ": -17.0584278,
"rotX": 359.993347,
"rotY": 270.009735,
"rotZ": -0.00104816933,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Stalked in the Night",
"Description": "Agenda 2",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14303,
"SidewaysCard": false,
"CustomDeck": {
"143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "395c3f",
"Name": "Card",
"Transform": {
"posX": 15.4115505,
"posY": 1.17647612,
"posZ": -17.1725388,
"rotX": 0.00331569114,
"rotY": 270.010071,
"rotZ": -0.00236508786,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Setting Sun",
"Description": "Agenda 1",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14302,
"SidewaysCard": false,
"CustomDeck": {
"143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7a7819",
"Name": "Deck",
"Transform": {
"posX": -3.739089,
"posY": 1.663932,
"posZ": -4.61630726,
"rotX": 359.919739,
"rotY": 270.0114,
"rotZ": 0.0168227386,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"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": [
14301,
14300
],
"CustomDeck": {
"143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "9d879c",
"Name": "Card",
"Transform": {
"posX": 18.6079922,
"posY": 1.03165579,
"posZ": -17.45364,
"rotX": -0.00462674024,
"rotY": 270.009644,
"rotZ": -0.00100867753,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "A Light In The Darkness",
"Description": "Act 2",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14301,
"SidewaysCard": false,
"CustomDeck": {
"143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8a6ee",
"Name": "Card",
"Transform": {
"posX": 18.3147564,
"posY": 1.17656446,
"posZ": -17.0900688,
"rotX": 359.990784,
"rotY": 270.009766,
"rotZ": 359.984772,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Regrouping",
"Description": "Act 1",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 14300,
"SidewaysCard": false,
"CustomDeck": {
"143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c2daa0",
"Name": "Card",
"Transform": {
"posX": -3.95599413,
"posY": 1.65564823,
"posZ": -10.4411783,
"rotX": 359.919739,
"rotY": 270.023,
"rotZ": 0.01680918,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stranded in the Urals",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 13311,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f957fa",
"Name": "Deck",
"Transform": {
"posX": -11.5778551,
"posY": 1.6783433,
"posZ": 7.161643,
"rotX": 359.9201,
"rotY": 269.990936,
"rotZ": 0.0168906059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Starting Location",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": [
13300,
13301
],
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c2daa0",
"Name": "Card",
"Transform": {
"posX": 8.733206,
"posY": 1.02949262,
"posZ": -5.3596344,
"rotX": 359.994019,
"rotY": 270.000122,
"rotZ": -0.0021448487,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deep Drift",
"Description": "disaster.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13300,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "de4860",
"Name": "Card",
"Transform": {
"posX": 8.374131,
"posY": 1.174321,
"posZ": -5.43522,
"rotX": 0.003296154,
"rotY": 270.021179,
"rotZ": -0.003413726,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overhanging Car",
"Description": "Disaster.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 13301,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "10a86b",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.97498,
"posY": 1.59729815,
"posZ": 1.677695,
"rotX": 359.9201,
"rotY": 269.991516,
"rotZ": 0.0168828554,
"scaleX": 1.99470782,
"scaleY": 1.0,
"scaleZ": 1.99470782
},
"Nickname": "Setup",
"Description": "Resolution on the Back",
"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/2433509660050677004/8CA9F44318273191FF95EE19B6E0B8CAE6F6FF8F/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050677424/477B94124DDE9E4EB02ADA1D4BE2D7A9AFB3ADA8/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 0,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdb1f6",
"Name": "Card",
"Transform": {
"posX": -17.1199322,
"posY": 1.67707741,
"posZ": -0.0300097764,
"rotX": 359.9201,
"rotY": 269.9873,
"rotZ": 0.0168960281,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rail-Side Ridge",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 13302,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c4b865",
"Name": "Card",
"Transform": {
"posX": -50.9243851,
"posY": 1.72662532,
"posZ": 8.17843151,
"rotX": 359.9201,
"rotY": 270.023,
"rotZ": 0.0168456472,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stranded in the Urals",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 13311,
"SidewaysCard": false,
"CustomDeck": {
"133": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ddd10b",
"Name": "Bag",
"Transform": {
"posX": 8.325157,
"posY": 1.28301024,
"posZ": -6.426722,
"rotX": 0.07993753,
"rotY": 89.99597,
"rotZ": 359.9831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Village",
"Description": "Winter Winds",
"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,
"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\":{\"00466a\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.684,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0233,\"z\":0.0168}},\"0163c6\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6976,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9936,\"z\":0.0169}},\"020079\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6248,\"z\":3.86},\"rot\":{\"x\":359.9831,\"y\":0.0004,\"z\":359.92}},\"0edbea\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.7045,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":270.0014,\"z\":0.0169}},\"139394\":{\"lock\":false,\"pos\":{\"x\":-3.9584,\"y\":1.6557,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.018,\"z\":0.0168}},\"2757d7\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":359.9831,\"y\":0.0003,\"z\":359.92}},\"2d7592\":{\"lock\":false,\"pos\":{\"x\":-11.4453,\"y\":1.6719,\"z\":13.0483},\"rot\":{\"x\":359.9201,\"y\":269.9947,\"z\":0.0169}},\"3e28fa\":{\"lock\":false,\"pos\":{\"x\":-2.7263,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0089,\"z\":0.0168}},\"4ba650\":{\"lock\":false,\"pos\":{\"x\":-11.525,\"y\":1.6802,\"z\":9.115},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":180.0169}},\"526f54\":{\"lock\":false,\"pos\":{\"x\":-33.7313,\"y\":1.6274,\"z\":-3.9543},\"rot\":{\"x\":359.9317,\"y\":315.1167,\"z\":359.9553}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.0091,\"y\":1.6191,\"z\":-0.1634},\"rot\":{\"x\":359.9201,\"y\":269.9944,\"z\":0.0169}},\"756064\":{\"lock\":false,\"pos\":{\"x\":-27.4634,\"y\":1.621,\"z\":4.0402},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0684}},\"78e6a9\":{\"lock\":false,\"pos\":{\"x\":1.706,\"y\":1.3982,\"z\":14.2787},\"rot\":{\"x\":359.9551,\"y\":224.9973,\"z\":0.0687}},\"82021c\":{\"lock\":false,\"pos\":{\"x\":-2.6885,\"y\":1.6543,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9929,\"z\":0.0168}},\"855857\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0307,\"z\":359.92}},\"8b3862\":{\"lock\":false,\"pos\":{\"x\":-33.3959,\"y\":1.6281,\"z\":0.0204},\"rot\":{\"x\":359.9201,\"y\":269.9944,\"z\":0.0169}},\"8c90b0\":{\"lock\":false,\"pos\":{\"x\":-27.3038,\"y\":1.6218,\"z\":7.4263},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"942089\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6862,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9793,\"z\":0.0169}},\"9a893a\":{\"lock\":false,\"pos\":{\"x\":-3.9328,\"y\":1.6918,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270.0016,\"z\":180.0168}},\"ad8016\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6885,\"z\":7.5699},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0169}},\"e6b081\":{\"lock\":false,\"pos\":{\"x\":-11.917,\"y\":1.599,\"z\":3.083},\"rot\":{\"x\":359.9201,\"y\":269.9984,\"z\":0.0169}},\"e9566b\":{\"lock\":false,\"pos\":{\"x\":-27.6083,\"y\":1.6188,\"z\":-3.9237},\"rot\":{\"x\":0.0684,\"y\":135,\"z\":0.0446}},\"ea3065\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":270.018,\"z\":0.0169}},\"fcf95c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6954,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9987,\"z\":0.0169}},\"fd47fa\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6931,\"z\":-7.7001},\"rot\":{\"x\":359.9201,\"y\":269.994,\"z\":0.0169}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "78e6a9",
"Name": "Bag",
"Transform": {
"posX": 1.705986,
"posY": 1.3982327,
"posZ": 14.278676,
"rotX": 359.9551,
"rotY": 224.997253,
"rotZ": 0.06871383,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Set Aside",
"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,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7c2ffc",
"Name": "Deck",
"Transform": {
"posX": 4.3801055,
"posY": 3.07982588,
"posZ": 1.67077851,
"rotX": 2.24276066,
"rotY": 270.059631,
"rotZ": 182.002487,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Cult",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
3623,
3623,
3623,
3624,
3625,
3625
],
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c70e63",
"Name": "Card",
"Transform": {
"posX": 9.324065,
"posY": 1.19862,
"posZ": -3.09369588,
"rotX": 359.486053,
"rotY": 270.0154,
"rotZ": 179.301117,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4072d7",
"Name": "Card",
"Transform": {
"posX": 8.92055,
"posY": 1.18172359,
"posZ": -3.263212,
"rotX": 359.947266,
"rotY": 270.010468,
"rotZ": 179.834869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c70e63",
"Name": "Card",
"Transform": {
"posX": 8.955755,
"posY": 1.03432441,
"posZ": -3.18170285,
"rotX": 359.989838,
"rotY": 270.009247,
"rotZ": 180.004013,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Acolyte",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3623,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "159f90",
"Name": "Card",
"Transform": {
"posX": 2.3881433,
"posY": 1.19410753,
"posZ": -2.42233348,
"rotX": 359.993927,
"rotY": 269.9705,
"rotZ": 359.9545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wizard of the Order",
"Description": "Humanoid. Cultist.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3624,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f5b7b",
"Name": "Card",
"Transform": {
"posX": 2.497438,
"posY": 1.03164768,
"posZ": -2.41275716,
"rotX": -0.0026828805,
"rotY": 269.9992,
"rotZ": 0.00774262333,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Chanting",
"Description": "Hex.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3625,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df668b",
"Name": "Card",
"Transform": {
"posX": 2.78830338,
"posY": 1.17654562,
"posZ": -2.26493549,
"rotX": -0.00101514475,
"rotY": 270.018677,
"rotZ": 0.0129767042,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mysterious Chanting",
"Description": "Hex.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 3625,
"SidewaysCard": false,
"CustomDeck": {
"36": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "74d3d2",
"Name": "Deck",
"Transform": {
"posX": 5.400322,
"posY": 3.086827,
"posZ": 2.19826412,
"rotX": 358.2667,
"rotY": 270.050354,
"rotZ": 177.711441,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gaze of the North",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
20710,
20711,
20712,
20713
],
"CustomDeck": {
"207": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d5c374",
"Name": "Card",
"Transform": {
"posX": 27.8899879,
"posY": 1.03153634,
"posZ": -19.3154221,
"rotX": 359.993439,
"rotY": 269.9513,
"rotZ": 0.0352736861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gaze of the North",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20710,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "13fae6",
"Name": "Card",
"Transform": {
"posX": 27.4055729,
"posY": 1.17635763,
"posZ": -19.4227448,
"rotX": 0.00151416427,
"rotY": 269.9581,
"rotZ": 0.101358652,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Biting Breath",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20711,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c65380",
"Name": "Card",
"Transform": {
"posX": 27.883564,
"posY": 1.19393671,
"posZ": -19.0361481,
"rotX": -0.0027201646,
"rotY": 269.962,
"rotZ": 359.9457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Icy Veins",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20712,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "82c594",
"Name": "Card",
"Transform": {
"posX": 27.87265,
"posY": 1.18043482,
"posZ": -19.3434925,
"rotX": -0.000755445159,
"rotY": 269.995728,
"rotZ": 0.0009828494,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shifting Aurora",
"Description": "Ritual.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20713,
"SidewaysCard": false,
"CustomDeck": {
"132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 3,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ab8878",
"Name": "Deck",
"Transform": {
"posX": 4.51188231,
"posY": 3.075771,
"posZ": 1.53828263,
"rotX": 1.73450959,
"rotY": 270.066772,
"rotZ": 182.849548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blizzard",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
20609,
20610,
20611,
20612,
20613
],
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.82902074,
"posY": 1.18127382,
"posZ": -18.0053158,
"rotX": -7.11963E-05,
"rotY": 269.999939,
"rotZ": 179.9965,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heavy Snowfall",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20609,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91f700",
"Name": "Card",
"Transform": {
"posX": 3.73612666,
"posY": 1.18341124,
"posZ": -17.8844872,
"rotX": 359.9784,
"rotY": 270.095642,
"rotZ": 179.957138,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heavy Snowfall",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20610,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.88160944,
"posY": 1.19701087,
"posZ": -17.9620724,
"rotX": -0.00124569749,
"rotY": 270.000519,
"rotZ": 179.986328,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heavy Snowfall",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20611,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b0ecce",
"Name": "Card",
"Transform": {
"posX": 3.22448587,
"posY": 1.1299063,
"posZ": -17.9984112,
"rotX": 0.00333814835,
"rotY": 269.98056,
"rotZ": 177.397369,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowed In",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20612,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.57538271,
"posY": 1.034705,
"posZ": -17.9978428,
"rotX": 0.00487888046,
"rotY": 269.991,
"rotZ": 180.009247,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snowed In",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20613,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 4.68567276,
"posY": 3.082253,
"posZ": 1.66411829,
"rotX": 1.45392108,
"rotY": 270.027344,
"rotZ": 2.52301288,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gnoph-Keh",
"Description": "Beast. Monster. Elite.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20600,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "10d474",
"Name": "Deck",
"Transform": {
"posX": 5.3951807,
"posY": 3.08850217,
"posZ": 1.98903644,
"rotX": 358.058075,
"rotY": 270.027679,
"rotZ": 359.511658,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Village Outskirts",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
20809,
20807,
20808
],
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c799c9",
"Name": "Card",
"Transform": {
"posX": 9.925958,
"posY": 1.03118742,
"posZ": -2.53591323,
"rotX": 359.976074,
"rotY": 270.00058,
"rotZ": 359.9925,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Village Outskirts",
"Description": "Outskirts. Interior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20809,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fac701",
"Name": "Card",
"Transform": {
"posX": 9.944654,
"posY": 1.031514,
"posZ": 0.2518699,
"rotX": 359.990753,
"rotY": 270.023254,
"rotZ": -0.00300862943,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Village Outskirts",
"Description": "Outskirts. Interior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20807,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "47ca73",
"Name": "Card",
"Transform": {
"posX": 9.809435,
"posY": 1.16975141,
"posZ": -0.171851173,
"rotX": 0.00737426151,
"rotY": 269.9795,
"rotZ": 0.01583234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Village Outskirts",
"Description": "Outskirts. Interior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20808,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "2844b0",
"Name": "Deck",
"Transform": {
"posX": 5.299407,
"posY": 3.09188652,
"posZ": 1.82868588,
"rotX": 358.467957,
"rotY": 269.973816,
"rotZ": 1.18266952,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Destoryed Structure",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
20810,
20811,
20812
],
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c55947",
"Name": "Card",
"Transform": {
"posX": 9.791113,
"posY": 1.03124845,
"posZ": -1.59141767,
"rotX": 359.977478,
"rotY": 270.000916,
"rotZ": 359.9916,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Destroyed Structure",
"Description": "Exterior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20810,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "11c986",
"Name": "Card",
"Transform": {
"posX": 7.67890644,
"posY": 1.03158474,
"posZ": 1.320048,
"rotX": 359.9942,
"rotY": 269.994629,
"rotZ": -0.00183945592,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Destroyed Structure",
"Description": "Exterior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20811,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "990beb",
"Name": "Card",
"Transform": {
"posX": 7.73339224,
"posY": 1.17619538,
"posZ": 0.947600245,
"rotX": -0.00115357828,
"rotY": 270.02002,
"rotZ": 0.0357025228,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Destroyed Structure",
"Description": "Exterior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20812,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "9a893a",
"Name": "Deck",
"Transform": {
"posX": -3.932813,
"posY": 1.6917752,
"posZ": 5.757158,
"rotX": 359.919739,
"rotY": 270.0016,
"rotZ": 180.01683,
"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": [
20601,
20602,
20603,
20604,
20605,
20606,
20607,
20608,
12121,
12121,
12122,
12122,
12113,
12113,
12113
],
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ad9d2b",
"Name": "Card",
"Transform": {
"posX": 3.74654245,
"posY": 1.19527173,
"posZ": -18.505003,
"rotX": 0.000534614548,
"rotY": 269.999878,
"rotZ": 179.997559,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunting in the Snow",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20601,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.2142,
"posY": 1.15219,
"posZ": -18.30764,
"rotX": 0.004557871,
"rotY": 270.0252,
"rotZ": 182.536575,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunting in the Snow",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20602,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.76053143,
"posY": 1.20307779,
"posZ": -18.2390366,
"rotX": 0.721530735,
"rotY": 269.9934,
"rotZ": 179.977173,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunting in the Snow",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20603,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.80402613,
"posY": 1.18125665,
"posZ": -18.1829529,
"rotX": 0.000570632867,
"rotY": 269.999847,
"rotZ": 179.99469,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rising Suspisions",
"Description": "Madness.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20604,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.4020555,
"posY": 1.18354332,
"posZ": -18.6242867,
"rotX": -0.0005844531,
"rotY": 270.000183,
"rotZ": 179.962189,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rising Suspisions",
"Description": "Madness.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20605,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.62124252,
"posY": 1.19817853,
"posZ": -18.2754688,
"rotX": 359.990173,
"rotY": 269.9947,
"rotZ": 179.892776,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Movements",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20606,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e8741",
"Name": "Card",
"Transform": {
"posX": 3.94027257,
"posY": 1.178297,
"posZ": -18.3648014,
"rotX": 0.008848391,
"rotY": 270.006836,
"rotZ": 180.107468,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unexpected Movements",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20607,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 3.91960454,
"posY": 1.03429043,
"posZ": -18.52981,
"rotX": 359.987244,
"rotY": 270.001953,
"rotZ": 180.003662,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Design",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20608,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb311c",
"Name": "Card",
"Transform": {
"posX": -1.71423316,
"posY": 1.03169024,
"posZ": -12.9443426,
"rotX": -0.00174733356,
"rotY": 270.034454,
"rotZ": -0.0011755788,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crypt Chill",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12121,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b78c3b",
"Name": "Card",
"Transform": {
"posX": -1.52981949,
"posY": 1.17628717,
"posZ": -12.4871578,
"rotX": 359.9812,
"rotY": 269.999481,
"rotZ": 359.976318,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crypt Chill",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12121,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "356046",
"Name": "Card",
"Transform": {
"posX": -1.42470074,
"posY": 1.03167713,
"posZ": -15.8986273,
"rotX": -0.00186766614,
"rotY": 270.0325,
"rotZ": -0.0007538253,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obscuring Fog",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12122,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "03a265",
"Name": "Card",
"Transform": {
"posX": -1.54464078,
"posY": 1.17053676,
"posZ": -16.0112114,
"rotX": 359.985138,
"rotY": 269.971527,
"rotZ": 0.00247924146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Obscuring Fog",
"Description": "Hazard.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12122,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7381cd",
"Name": "Card",
"Transform": {
"posX": -5.168816,
"posY": 1.0316999,
"posZ": 8.366819,
"rotX": -0.0007705624,
"rotY": 269.999969,
"rotZ": -0.000388128974,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swarm of Rats",
"Description": "Creature.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12113,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bbc9d1",
"Name": "Card",
"Transform": {
"posX": -5.082863,
"posY": 1.17674422,
"posZ": 8.217518,
"rotX": 359.99115,
"rotY": 270.000366,
"rotZ": 0.00112278154,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swarm of Rats",
"Description": "Creature.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12113,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "56e5db",
"Name": "Card",
"Transform": {
"posX": -5.16888762,
"posY": 1.194109,
"posZ": 8.11904049,
"rotX": -0.00128748291,
"rotY": 270.0002,
"rotZ": -0.00139563438,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swarm of Rats",
"Description": "Creature.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 12113,
"SidewaysCard": false,
"CustomDeck": {
"121": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3e28fa",
"Name": "Deck",
"Transform": {
"posX": -2.726264,
"posY": 1.65514064,
"posZ": 0.3733261,
"rotX": 359.919739,
"rotY": 270.008881,
"rotZ": 0.01682624,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"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": [
20108,
20107,
20106,
20105
],
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "88343d",
"Name": "Card",
"Transform": {
"posX": -0.8360257,
"posY": 1.03157878,
"posZ": -17.7681236,
"rotX": 359.991241,
"rotY": 269.973663,
"rotZ": -0.00152278622,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "From Beneath",
"Description": "Agenda 4",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20108,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5824fb",
"Name": "Card",
"Transform": {
"posX": -1.22497964,
"posY": 1.17642951,
"posZ": -18.01837,
"rotX": 0.004908347,
"rotY": 270.001434,
"rotZ": 0.00103986345,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Driven By Rage",
"Description": "Agenda 3",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20107,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "360185",
"Name": "Card",
"Transform": {
"posX": -1.17433274,
"posY": 1.19422591,
"posZ": -17.8954372,
"rotX": 359.9884,
"rotY": 269.968384,
"rotZ": 0.00513902958,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Hunted Once More",
"Description": "Agenda 2",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20106,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5638b",
"Name": "Card",
"Transform": {
"posX": -0.844349146,
"posY": 1.18045187,
"posZ": -17.36532,
"rotX": -0.0006865625,
"rotY": 269.973816,
"rotZ": -0.00186603365,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Hidden in Plain Sight",
"Description": "Agenda 1",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20105,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "82021c",
"Name": "Deck",
"Transform": {
"posX": -2.68848944,
"posY": 1.65432513,
"posZ": -5.0485425,
"rotX": 359.919739,
"rotY": 269.9929,
"rotZ": 0.0168486219,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"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": [
20104,
20103,
20102,
20101,
20100
],
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "88343d",
"Name": "Card",
"Transform": {
"posX": -4.76710939,
"posY": 1.03159714,
"posZ": -17.2317677,
"rotX": 359.991882,
"rotY": 269.973938,
"rotZ": -0.001687052,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Finding the Entrance",
"Description": "Act 3",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20104,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aea7ff",
"Name": "Card",
"Transform": {
"posX": -4.788034,
"posY": 1.17008173,
"posZ": -17.1056156,
"rotX": 0.00477022631,
"rotY": 269.973175,
"rotZ": -0.00324421143,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Finding the Entrance",
"Description": "Act 3",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20103,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88343d",
"Name": "Card",
"Transform": {
"posX": -4.65762043,
"posY": 1.1941576,
"posZ": -17.2117481,
"rotX": -0.00134176738,
"rotY": 269.9741,
"rotZ": 0.0003050564,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Finding the Entrance",
"Description": "Act 3",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20102,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a53a5b",
"Name": "Card",
"Transform": {
"posX": -4.767083,
"posY": 1.18044651,
"posZ": -17.1220436,
"rotX": -0.00105519465,
"rotY": 269.9736,
"rotZ": 0.000909131137,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Who Can You Trust?",
"Description": "Act 2",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20101,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88343d",
"Name": "Card",
"Transform": {
"posX": -5.047994,
"posY": 1.17852926,
"posZ": -17.2386837,
"rotX": -0.00124192552,
"rotY": 270.0139,
"rotZ": 359.97934,
"scaleX": 0.7152412,
"scaleY": 1.0,
"scaleZ": 0.7152412
},
"Nickname": "Gathered Together",
"Description": "Act 1",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20100,
"SidewaysCard": false,
"CustomDeck": {
"201": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/",
"NumWidth": 3,
"NumHeight": 3,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "139394",
"Name": "Card",
"Transform": {
"posX": -3.95835352,
"posY": 1.65565145,
"posZ": -10.4411783,
"rotX": 359.919739,
"rotY": 270.017975,
"rotZ": 0.01681631,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Village",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20813,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d7592",
"Name": "Deck",
"Transform": {
"posX": -11.4453392,
"posY": 1.67188358,
"posZ": 13.0483475,
"rotX": 359.9201,
"rotY": 269.99472,
"rotZ": 0.0168840289,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Passenger",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": [
20204,
20203,
20202,
20201,
20200
],
"CustomDeck": {
"202": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "9b2c6d",
"Name": "Card",
"Transform": {
"posX": -0.6509223,
"posY": 1.03173876,
"posZ": -22.8700123,
"rotX": 0.00124677015,
"rotY": 269.98114,
"rotZ": 0.0131853083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Darya Kabluov",
"Description": "Passenger. Ally.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20204,
"SidewaysCard": false,
"CustomDeck": {
"202": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "687bc6",
"Name": "Card",
"Transform": {
"posX": -0.6874235,
"posY": 1.19111049,
"posZ": -22.6164188,
"rotX": 0.00188625278,
"rotY": 270.001953,
"rotZ": 0.7888479,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Artyom Durov",
"Description": "Passenger. Ally.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20203,
"SidewaysCard": false,
"CustomDeck": {
"202": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b2c6d",
"Name": "Card",
"Transform": {
"posX": -1.15610969,
"posY": 1.19405663,
"posZ": -22.6019421,
"rotX": 0.0009187842,
"rotY": 269.9998,
"rotZ": -0.00291927415,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Boris Galkin",
"Description": "Passenger. Ally.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20202,
"SidewaysCard": false,
"CustomDeck": {
"202": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a089b1",
"Name": "Card",
"Transform": {
"posX": -1.22653329,
"posY": 1.18045545,
"posZ": -22.9020958,
"rotX": -0.00105078984,
"rotY": 269.9998,
"rotZ": -0.0004673542,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anastasiya Petrov",
"Description": "Passenger. Ally.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20201,
"SidewaysCard": false,
"CustomDeck": {
"202": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b2c6d",
"Name": "Card",
"Transform": {
"posX": -0.6530962,
"posY": 1.17841458,
"posZ": -23.0867538,
"rotX": -0.00116954488,
"rotY": 270.000061,
"rotZ": 0.003048486,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vladimir Ulman",
"Description": "Passenger. Ally.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20200,
"SidewaysCard": false,
"CustomDeck": {
"202": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/",
"NumWidth": 3,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "4ba650",
"Name": "Deck",
"Transform": {
"posX": -11.5250435,
"posY": 1.68017423,
"posZ": 9.115015,
"rotX": 359.9201,
"rotY": 269.9994,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Motivations",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": [
20614,
20615,
20616,
20617,
20618
],
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 6.843341,
"posY": 1.18096423,
"posZ": -23.6237965,
"rotX": 0.000429528183,
"rotY": 270.026245,
"rotZ": 180.057251,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Loyalty",
"Description": "Motivation.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20614,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab6851",
"Name": "Card",
"Transform": {
"posX": 6.42323065,
"posY": 1.14765191,
"posZ": -23.0886173,
"rotX": 0.00313591072,
"rotY": 270.0179,
"rotZ": 182.1205,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Loyalty",
"Description": "Motivation.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20615,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f8bec",
"Name": "Card",
"Transform": {
"posX": 6.879832,
"posY": 1.031673,
"posZ": -23.20675,
"rotX": -0.00222213473,
"rotY": 270.0002,
"rotZ": -0.00101234217,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Hostility",
"Description": "Motivation.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20616,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ddd1a5",
"Name": "Card",
"Transform": {
"posX": 7.283403,
"posY": 1.176451,
"posZ": -23.17347,
"rotX": -0.004002673,
"rotY": 270.0004,
"rotZ": 359.9931,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Hostility",
"Description": "Motivation.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20617,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c19c46",
"Name": "Card",
"Transform": {
"posX": 6.2795763,
"posY": 1.19413424,
"posZ": -23.31235,
"rotX": -0.0009929821,
"rotY": 270.000854,
"rotZ": -0.0002697376,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Machinations",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"Hands": true,
"CardID": 20618,
"SidewaysCard": false,
"CustomDeck": {
"206": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/",
"NumWidth": 5,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e6b081",
"Name": "Custom_Tile",
"Transform": {
"posX": -11.91696,
"posY": 1.59902549,
"posZ": 3.08297467,
"rotX": 359.9201,
"rotY": 269.9984,
"rotZ": 0.016874427,
"scaleX": 1.99723673,
"scaleY": 1.0,
"scaleZ": 1.99723673
},
"Nickname": "Setup",
"Description": "Resolution in the Back",
"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/2433509660059478802/752454D0A46B8FAE67B20D64F7887A2BF9555159/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059479211/13C8E85EBAABA1C4E00056D80967FB6004F47A1F/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 0,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad8016",
"Name": "Card",
"Transform": {
"posX": -23.6765461,
"posY": 1.68845832,
"posZ": 7.569865,
"rotX": 359.9201,
"rotY": 269.999847,
"rotZ": 0.0168765858,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Village Road",
"Description": "Exterior. Road.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20805,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "942089",
"Name": "Card",
"Transform": {
"posX": -23.6765671,
"posY": 1.68622041,
"posZ": -0.03000543,
"rotX": 359.9201,
"rotY": 269.979279,
"rotZ": 0.01690513,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Decrepit Building",
"Description": "Interior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20801,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2757d7",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.67655,
"posY": 1.61338806,
"posZ": -3.82998776,
"rotX": 359.983124,
"rotY": 0.000294395257,
"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": "00466a",
"Name": "Card",
"Transform": {
"posX": -23.6766014,
"posY": 1.683962,
"posZ": -7.70002031,
"rotX": 359.9201,
"rotY": 270.0233,
"rotZ": 0.0168438423,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Village Road",
"Description": "Exterior. Road.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20804,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8c90b0",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.3037548,
"posY": 1.62176025,
"posZ": 7.4262557,
"rotX": 359.9201,
"rotY": 269.994324,
"rotZ": 0.016916547,
"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": "756064",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.4634457,
"posY": 1.62098587,
"posZ": 4.04015541,
"rotX": 359.955444,
"rotY": 225.000031,
"rotZ": 0.06840549,
"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": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.0091228,
"posY": 1.61911476,
"posZ": -0.163350329,
"rotX": 359.9201,
"rotY": 269.9944,
"rotZ": 0.0169178862,
"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": "e9566b",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.6083336,
"posY": 1.618843,
"posZ": -3.92374539,
"rotX": 0.06843238,
"rotY": 135.000015,
"rotZ": 0.04456394,
"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": "0163c6",
"Name": "Card",
"Transform": {
"posX": -30.2241917,
"posY": 1.69758856,
"posZ": 7.56997776,
"rotX": 359.9201,
"rotY": 269.9936,
"rotZ": 0.01688515,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Decrepit Building",
"Description": "Interior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20802,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "020079",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.22427,
"posY": 1.6247828,
"posZ": 3.86001468,
"rotX": 359.983124,
"rotY": 0.000407458981,
"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": "fcf95c",
"Name": "Card",
"Transform": {
"posX": -30.2242832,
"posY": 1.69535077,
"posZ": -0.0300161261,
"rotX": 359.9201,
"rotY": 269.998657,
"rotZ": 0.0168779455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Town Square",
"Description": "Exterior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20800,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "855857",
"Name": "Custom_Tile",
"Transform": {
"posX": -30.2242661,
"posY": 1.62251842,
"posZ": -3.82998657,
"rotX": 359.9832,
"rotY": 0.0307132434,
"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": "fd47fa",
"Name": "Card",
"Transform": {
"posX": -30.2242413,
"posY": 1.69309223,
"posZ": -7.70006561,
"rotX": 359.9201,
"rotY": 269.994049,
"rotZ": 0.0168844312,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Decrepit Building",
"Description": "Interior.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20803,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b3862",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.3959427,
"posY": 1.62807477,
"posZ": 0.0203911,
"rotX": 359.9201,
"rotY": 269.994354,
"rotZ": 0.0169086829,
"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": "526f54",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.7312546,
"posY": 1.62737215,
"posZ": -3.95432067,
"rotX": 359.931671,
"rotY": 315.1167,
"rotZ": 359.9553,
"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": "0edbea",
"Name": "Card",
"Transform": {
"posX": -36.7731171,
"posY": 1.70448279,
"posZ": -0.030094821,
"rotX": 359.9201,
"rotY": 270.001434,
"rotZ": 0.0168741569,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Village Road",
"Description": "Exterior. Road.",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20806,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea3065",
"Name": "Card",
"Transform": {
"posX": -50.9243851,
"posY": 1.72662532,
"posZ": 8.17843151,
"rotX": 359.9201,
"rotY": 270.017975,
"rotZ": 0.0168533511,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Forgotten Village",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 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": 20813,
"SidewaysCard": false,
"CustomDeck": {
"208": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d54710",
"Name": "Custom_Tile",
"Transform": {
"posX": -4.02145338,
"posY": 1.58261955,
"posZ": -15.2289486,
"rotX": 359.919739,
"rotY": 269.998352,
"rotZ": 0.0168408863,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "Winter Winds",
"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 = 'Winter Winds'\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
}
}
]
}