{ "GUID": "ac164e", "Name": "Custom_Model_Bag", "Transform": { "posX": 12.2498283, "posY": 1.4656055, "posZ": 3.9864, "rotX": 359.920135, "rotY": 269.999969, "rotZ": 0.0168744717, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "Delta Green Convergence", "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/798737729142900469/BDA1068C5A88459AE805540FE05B8092C4F8F392/", "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\":{\"0c01a1\":{\"lock\":false,\"pos\":{\"x\":-11.6774,\"y\":1.4086,\"z\":-14.0775},\"rot\":{\"x\":359.9832,\"y\":359.994,\"z\":359.92}},\"17807e\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6314,\"z\":11.46},\"rot\":{\"x\":359.9201,\"y\":269.9978,\"z\":180.0168}},\"1a3caf\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9996,\"z\":0.0168}},\"261874\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6144,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9753,\"z\":0.0169}},\"4a7540\":{\"lock\":false,\"pos\":{\"x\":-3.9273,\"y\":1.7925,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":180.0168}},\"520889\":{\"lock\":false,\"pos\":{\"x\":-3.8323,\"y\":1.5826,\"z\":-14.4151},\"rot\":{\"x\":359.9197,\"y\":270.0049,\"z\":0.0168}},\"64b00f\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6223,\"z\":11.4595},\"rot\":{\"x\":359.9201,\"y\":269.9901,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.3296,\"y\":1.6132,\"z\":11.468},\"rot\":{\"x\":359.9201,\"y\":269.9948,\"z\":0.0169}},\"789378\":{\"lock\":false,\"pos\":{\"x\":-1.9242,\"y\":1.4772,\"z\":-23.8097},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0169}},\"8a689d\":{\"lock\":false,\"pos\":{\"x\":-17.1197,\"y\":1.6503,\"z\":-0.0295},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"9dab73\":{\"lock\":false,\"pos\":{\"x\":-2.7245,\"y\":1.6159,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9865,\"z\":0.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"ab39b9\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6234,\"z\":15.1897},\"rot\":{\"x\":359.9201,\"y\":269.988,\"z\":0.0169}},\"d2cb13\":{\"lock\":false,\"pos\":{\"x\":-12.0254,\"y\":1.614,\"z\":7.5293},\"rot\":{\"x\":359.9201,\"y\":269.995,\"z\":0.0168}},\"da2cbd\":{\"lock\":false,\"pos\":{\"x\":-17.1196,\"y\":1.6155,\"z\":-11.5093},\"rot\":{\"x\":359.9201,\"y\":270.0104,\"z\":0.0168}},\"ddc104\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.6336,\"z\":-5.0485},\"rot\":{\"x\":359.9197,\"y\":269.9859,\"z\":0.0169}},\"fe4e96\":{\"lock\":false,\"pos\":{\"x\":-12.0018,\"y\":1.7668,\"z\":11.1085},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0168}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "0c01a1", "Name": "Bag", "Transform": { "posX": -11.6773977, "posY": 1.40856719, "posZ": -14.0775, "rotX": 359.983154, "rotY": 359.994019, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Investigators (Full)", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.9163763, "g": 0.844534934, "b": 0.844534934 }, "LayoutGroupSortIndex": 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": "e07f79", "Name": "Deck", "Transform": { "posX": -6.7684145, "posY": 3.38589931, "posZ": 83.4419556, "rotX": 2.51215744, "rotY": 270.0693, "rotZ": 1.14031339, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "FBI Credentials", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": [ 6803, 6803, 6803, 6803, 6803 ], "CustomDeck": { "68": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "555fd0", "Name": "Card", "Transform": { "posX": -16.76662, "posY": 1.33572841, "posZ": 69.12852, "rotX": 0.02079716, "rotY": 270.035645, "rotZ": 0.016785847, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "FBI Credentials", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6803, "SidewaysCard": false, "CustomDeck": { "68": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2e87bf", "Name": "Card", "Transform": { "posX": -16.12506, "posY": 1.33519924, "posZ": 66.52461, "rotX": 0.020815758, "rotY": 269.974274, "rotZ": 0.0167646986, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "FBI Credentials", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6803, "SidewaysCard": false, "CustomDeck": { "68": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d48f9a", "Name": "Card", "Transform": { "posX": -15.8185091, "posY": 1.33452952, "posZ": 63.8565636, "rotX": 0.0208252147, "rotY": 269.938782, "rotZ": 0.0167524666, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "FBI Credentials", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6803, "SidewaysCard": false, "CustomDeck": { "68": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3ba63e", "Name": "Card", "Transform": { "posX": -19.8283634, "posY": 1.33366573, "posZ": 65.88029, "rotX": 0.0208092947, "rotY": 269.9932, "rotZ": 0.0167706963, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "FBI Credentials", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6803, "SidewaysCard": false, "CustomDeck": { "68": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f80c71", "Name": "Card", "Transform": { "posX": -19.3114223, "posY": 1.33308268, "posZ": 63.2469635, "rotX": 0.0208112281, "rotY": 269.991547, "rotZ": 0.0167679079, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "FBI Credentials", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6803, "SidewaysCard": false, "CustomDeck": { "68": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8f0e4d", "Name": "Bag", "Transform": { "posX": 23.64772, "posY": 3.15815234, "posZ": 47.9617233, "rotX": 359.767944, "rotY": 359.9856, "rotZ": 0.0150644341, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mia Takamura", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.1919998, "g": 0.701, "b": 0.167999774 }, "LayoutGroupSortIndex": 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": "0a3e7c", "Name": "Card", "Transform": { "posX": -17.9783344, "posY": 3.40178871, "posZ": 81.60005, "rotX": 0.6802456, "rotY": 269.988159, "rotZ": 1.28277087, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Bride", "Description": "Harbinger of Vengeance", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6307, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d1005d", "Name": "Card", "Transform": { "posX": -17.896904, "posY": 3.37054825, "posZ": 82.1724, "rotX": 0.110450417, "rotY": 270.015717, "rotZ": 355.802979, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Haunted By Vengeance", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6304, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f64ead", "Name": "Card", "Transform": { "posX": 30.6705532, "posY": 2.58290768, "posZ": 41.55053, "rotX": 0.0208099, "rotY": 269.995178, "rotZ": 0.0167706218, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 103, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788759248/A9A298491F67F5DBBC04B1307F55D495C94B593C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788761020/831136F6BEC64C1F898EA8EF47B10EA59A380BE6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "498a00", "Name": "Card", "Transform": { "posX": -17.74783, "posY": 3.394201, "posZ": 81.5760956, "rotX": 358.427155, "rotY": 269.914764, "rotZ": 3.5609405, "scaleX": 0.693170249, "scaleY": 1.0, "scaleZ": 0.693170249 }, "Nickname": "Mia Takamura", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6104, "SidewaysCard": false, "CustomDeck": { "61": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334410250512/3A26A0D3A77D481FF486E5FB4D4567DF9E21F78F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/963108334410252567/19A3994FF8F6C9235A1A29C080FA9003D424B969/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "060381", "Name": "Bag", "Transform": { "posX": 23.7435741, "posY": 3.15402555, "posZ": 48.14247, "rotX": 0.9900025, "rotY": 359.9602, "rotZ": 359.335083, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martin Fuller", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.627, "g": 0.1249998, "b": 0.941 }, "LayoutGroupSortIndex": 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": "bda031", "Name": "Card", "Transform": { "posX": -14.2448139, "posY": 3.31039119, "posZ": 85.48382, "rotX": 0.0209856462, "rotY": 269.999329, "rotZ": 0.016547814, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Between", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6301, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "af067a", "Name": "Card", "Transform": { "posX": -14.4365139, "posY": 3.30918479, "posZ": 81.5981, "rotX": 0.0209056158, "rotY": 269.993744, "rotZ": 0.0166527983, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Holographic Universe", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6308, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0d7398", "Name": "Card", "Transform": { "posX": 30.5149956, "posY": 2.58290577, "posZ": 40.506424, "rotX": 0.0208097156, "rotY": 269.995148, "rotZ": 0.0167699866, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 101, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788759248/A9A298491F67F5DBBC04B1307F55D495C94B593C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788761020/831136F6BEC64C1F898EA8EF47B10EA59A380BE6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "597c69", "Name": "Card", "Transform": { "posX": -17.8556557, "posY": 3.30701041, "posZ": 78.4128342, "rotX": 0.0208089445, "rotY": 269.999969, "rotZ": 0.0167786237, "scaleX": 0.693170249, "scaleY": 1.0, "scaleZ": 0.693170249 }, "Nickname": "Martin Fuller", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6102, "SidewaysCard": false, "CustomDeck": { "61": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334410250512/3A26A0D3A77D481FF486E5FB4D4567DF9E21F78F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/963108334410252567/19A3994FF8F6C9235A1A29C080FA9003D424B969/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "19a84b", "Name": "Bag", "Transform": { "posX": 24.1417923, "posY": 3.123774, "posZ": 48.3831139, "rotX": 1.63152635, "rotY": 359.9866, "rotZ": 357.88974, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Phil Duke", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.856, "g": 0.09999979, "b": 0.0939997658 }, "LayoutGroupSortIndex": 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": "57a01b", "Name": "Card", "Transform": { "posX": -15.9820013, "posY": 3.38694477, "posZ": 78.6173859, "rotX": 2.23649478, "rotY": 269.932373, "rotZ": 358.721436, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "St Christopher's Pendant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6305, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "86aecd", "Name": "Card", "Transform": { "posX": -19.7382374, "posY": 3.30887485, "posZ": 78.7438354, "rotX": 0.0208196137, "rotY": 269.9624, "rotZ": 0.0167594235, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Survivor's Guilt", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6306, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "76d8e1", "Name": "Card", "Transform": { "posX": 30.9104519, "posY": 2.58290839, "posZ": 41.9205246, "rotX": 0.0208097864, "rotY": 269.995148, "rotZ": 0.0167696457, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 104, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788759248/A9A298491F67F5DBBC04B1307F55D495C94B593C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788761020/831136F6BEC64C1F898EA8EF47B10EA59A380BE6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74db2c", "Name": "Card", "Transform": { "posX": -20.68218, "posY": 3.309674, "posZ": 82.64597, "rotX": 0.0208189636, "rotY": 269.966156, "rotZ": 0.01675645, "scaleX": 0.693170249, "scaleY": 1.0, "scaleZ": 0.693170249 }, "Nickname": "Phil Duke", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6101, "SidewaysCard": false, "CustomDeck": { "61": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334410250512/3A26A0D3A77D481FF486E5FB4D4567DF9E21F78F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/963108334410252567/19A3994FF8F6C9235A1A29C080FA9003D424B969/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "cfd80b", "Name": "Bag", "Transform": { "posX": 24.2250214, "posY": 3.12612367, "posZ": 48.09586, "rotX": 0.4745946, "rotY": -0.0009305543, "rotZ": 357.437225, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Maxine Benson", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.9559999, "g": 0.391999751, "b": 0.112999775 }, "LayoutGroupSortIndex": 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": "cb5f8b", "Name": "Card", "Transform": { "posX": -13.6249895, "posY": 3.398403, "posZ": 76.2557755, "rotX": 1.46088052, "rotY": 269.979858, "rotZ": 358.9707, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Company Connections", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6302, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "83c027", "Name": "Card", "Transform": { "posX": -18.4969978, "posY": 3.30911231, "posZ": 76.88215, "rotX": 0.02080767, "rotY": 270.002747, "rotZ": 0.0167753249, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vengeful Assassin", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6309, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6e601f", "Name": "Card", "Transform": { "posX": 31.3609753, "posY": 2.582908, "posZ": 39.36572, "rotX": 0.0208104849, "rotY": 269.995148, "rotZ": 0.0167691018, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 102, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788759248/A9A298491F67F5DBBC04B1307F55D495C94B593C/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788761020/831136F6BEC64C1F898EA8EF47B10EA59A380BE6/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "03052d", "Name": "Card", "Transform": { "posX": -17.04095, "posY": 3.31052423, "posZ": 79.89802, "rotX": 0.0208071619, "rotY": 270.002533, "rotZ": 0.0167766288, "scaleX": 0.693170249, "scaleY": 1.0, "scaleZ": 0.693170249 }, "Nickname": "Maxine Benson", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6100, "SidewaysCard": false, "CustomDeck": { "61": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/963108334410250512/3A26A0D3A77D481FF486E5FB4D4567DF9E21F78F/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/963108334410252567/19A3994FF8F6C9235A1A29C080FA9003D424B969/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "d472ae", "Name": "Bag", "Transform": { "posX": 23.9602814, "posY": 3.14389133, "posZ": 48.1013374, "rotX": 0.6516616, "rotY": 0.0129410764, "rotZ": 358.090057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dave Harrison", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.11799977, "g": 0.53, "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": "039291", "Name": "Card", "Transform": { "posX": 6.45659828, "posY": 3.3173964, "posZ": 71.47114, "rotX": 0.0208061934, "rotY": 270.004639, "rotZ": 0.0167768933, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Harrison's MP5", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6303, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b67ef8", "Name": "Card", "Transform": { "posX": 7.17395, "posY": 3.318967, "posZ": 75.94489, "rotX": 0.0208029468, "rotY": 270.015717, "rotZ": 0.0167844724, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Anger Issues", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 6300, "SidewaysCard": false, "CustomDeck": { "63": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "acefbf", "Name": "Card", "Transform": { "posX": 31.0471973, "posY": 2.582908, "posZ": 40.9792671, "rotX": 0.0208098441, "rotY": 269.995148, "rotZ": 0.01676907, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 200, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/973245240934250642/1544450C9797EF24BEC21F67DBCDFD4BB40E0989/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/973245240934251782/CBF336735F027D37D8CD0C548C243D2E55F66B98/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "359a15", "Name": "Card", "Transform": { "posX": 17.9907684, "posY": 3.32319522, "posZ": 76.97105, "rotX": 0.020810375, "rotY": 269.982635, "rotZ": 0.016779162, "scaleX": 0.693170249, "scaleY": 1.0, "scaleZ": 0.693170249 }, "Nickname": "Dave Harrison", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 200, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/973245240934253846/7437E84E7B1DD0ECD31820654710E80D2E1B2A8A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/973245240934255231/6F32D3D1652830F37ECFDB6986108D6C84C3F11D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "17807e", "Name": "Card", "Transform": { "posX": -23.6765976, "posY": 1.6314435, "posZ": 11.460001, "rotX": 359.9201, "rotY": 269.9978, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Merle's Shut-Eye Motel", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10805, "SidewaysCard": false, "CustomDeck": { "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1a3caf", "Name": "Card", "Transform": { "posX": -3.95590019, "posY": 1.59753931, "posZ": -10.4412022, "rotX": 359.919739, "rotY": 269.999542, "rotZ": 0.016837839, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario Card", "Description": "Delta Green Convergence", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 201, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "261874", "Name": "Card", "Transform": { "posX": -17.1201, "posY": 1.61444223, "posZ": -15.2800016, "rotX": 359.9201, "rotY": 269.97525, "rotZ": 0.0168741215, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Spivey Home", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10809, "SidewaysCard": false, "CustomDeck": { "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4a7540", "Name": "Deck", "Transform": { "posX": -3.9273, "posY": 1.7925185, "posZ": 5.75710058, "rotX": 359.919739, "rotY": 270.0006, "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": [ 10641, 10640, 10642, 822, 823, 10621, 10620, 818, 817, 10614, 10612, 10613, 801, 800, 809, 810, 821, 820, 819, 807, 808, 814, 813, 816, 815, 804, 802, 803, 805, 806, 10628, 10629, 10623, 10622, 10633, 10634, 10635, 10630 ], "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 }, "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "3d1999", "Name": "Card", "Transform": { "posX": -15.3349743, "posY": 1.67886448, "posZ": 14.4911022, "rotX": 359.9201, "rotY": 269.999878, "rotZ": 0.01686742, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "UFO Crazy", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10641, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "532718", "Name": "Card", "Transform": { "posX": -15.7658119, "posY": 1.67802227, "posZ": 9.590662, "rotX": 359.9201, "rotY": 269.983917, "rotZ": 0.01689191, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "UFO Crazy", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10640, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2bacc8", "Name": "Card", "Transform": { "posX": -15.7914181, "posY": 1.67711425, "posZ": 6.38579035, "rotX": 359.9201, "rotY": 269.999329, "rotZ": 0.0168691445, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "UFO Crazy", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10642, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7bd85f", "Name": "Card", "Transform": { "posX": -15.5335464, "posY": 1.675611, "posZ": 2.50171781, "rotX": 359.9201, "rotY": 269.999847, "rotZ": 0.0168712027, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alien Intel", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 822, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "465e99", "Name": "Card", "Transform": { "posX": -15.1286535, "posY": 1.67382741, "posZ": -1.63794076, "rotX": 359.9201, "rotY": 269.999817, "rotZ": 0.01686754, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alien Intel", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 823, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5446ef", "Name": "Card", "Transform": { "posX": -15.1319084, "posY": 1.67192841, "posZ": -8.102413, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168683343, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lights in the Sky", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10621, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8168a2", "Name": "Card", "Transform": { "posX": -14.9311724, "posY": 1.67254686, "posZ": -5.05163145, "rotX": 359.9201, "rotY": 269.9997, "rotZ": 0.0168715138, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Lights in the Sky", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10620, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3971f0", "Name": "Card", "Transform": { "posX": -15.8183813, "posY": 1.6741, "posZ": -3.72590518, "rotX": 359.915619, "rotY": 269.99823, "rotZ": 0.0156099908, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "U.A.P.", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 818, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "552d87", "Name": "Card", "Transform": { "posX": -15.7589407, "posY": 1.81439745, "posZ": -3.38888025, "rotX": 359.91983, "rotY": 270.000824, "rotZ": 359.9757, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "U.A.P.", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 817, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "857e76", "Name": "Card", "Transform": { "posX": -34.64205, "posY": 1.70293522, "posZ": 4.80645132, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 0.0168719925, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Drive By", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10614, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f8cf94", "Name": "Card", "Transform": { "posX": -34.642086, "posY": 1.70576453, "posZ": 14.4149475, "rotX": 359.9201, "rotY": 269.9993, "rotZ": 0.01686999, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Drive By", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10612, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ae8fc1", "Name": "Card", "Transform": { "posX": -34.6314735, "posY": 1.70436311, "posZ": 9.705807, "rotX": 359.9201, "rotY": 270.0055, "rotZ": 0.016869152, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Drive By", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10613, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "45bf23", "Name": "Card", "Transform": { "posX": -34.6421432, "posY": 1.7000885, "posZ": -4.86118746, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168692619, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Animal Mutilation", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 801, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ff6d58", "Name": "Card", "Transform": { "posX": -34.64224, "posY": 1.7015754, "posZ": 0.18779923, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168717857, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Animal Mutilation", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 800, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1e2ad4", "Name": "Card", "Transform": { "posX": -34.642292, "posY": 1.69864142, "posZ": -9.775974, "rotX": 359.9201, "rotY": 269.999817, "rotZ": 0.0168695413, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Missing Time", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 809, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f6e2f7", "Name": "Card", "Transform": { "posX": -34.64232, "posY": 1.69724846, "posZ": -14.5070686, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168688688, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Missing Time", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 810, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "061be3", "Name": "Card", "Transform": { "posX": -41.7114372, "posY": 1.70994389, "posZ": -4.86893749, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168697853, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abducted", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 821, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d20785", "Name": "Card", "Transform": { "posX": -41.7115, "posY": 1.70849669, "posZ": -9.783747, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 0.01686853, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abducted", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 820, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "477aa0", "Name": "Card", "Transform": { "posX": -41.71161, "posY": 1.70710385, "posZ": -14.5148258, "rotX": 359.9201, "rotY": 270.000183, "rotZ": 0.01686621, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abducted", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 819, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "25595d", "Name": "Card", "Transform": { "posX": -27.5964336, "posY": 1.69175124, "posZ": 0.190390438, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 0.0168722458, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "I Want To Believe", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 807, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2604d8", "Name": "Card", "Transform": { "posX": -27.59634, "posY": 1.69026458, "posZ": -4.858596, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 0.0168696679, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "I Want To Believe", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 808, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d295f3", "Name": "Card", "Transform": { "posX": -27.5962486, "posY": 1.69311106, "posZ": 4.809045, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 0.0168698821, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Stakeout", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 814, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a379b5", "Name": "Card", "Transform": { "posX": -27.59634, "posY": 1.69455409, "posZ": 9.709441, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 0.0168683343, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Stakeout", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 813, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4be693", "Name": "Card", "Transform": { "posX": -27.5964622, "posY": 1.83333278, "posZ": 0.190408424, "rotX": 359.918823, "rotY": 269.999329, "rotZ": 0.01641672, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Truth is Out There", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 816, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4b5d39", "Name": "Card", "Transform": { "posX": -27.596489, "posY": 1.840477, "posZ": 0.19041352, "rotX": 359.9191, "rotY": 269.993927, "rotZ": 0.0165893547, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Truth is Out There", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 815, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "80049b", "Name": "Card", "Transform": { "posX": -20.5134335, "posY": 1.68038774, "posZ": -4.85904026, "rotX": 359.9201, "rotY": 269.997284, "rotZ": 0.0168719888, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Helicopter", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 804, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ef00c9", "Name": "Card", "Transform": { "posX": -20.5134182, "posY": 1.67894042, "posZ": -9.773861, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 0.0168695953, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Helicopter", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 802, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "00fe22", "Name": "Card", "Transform": { "posX": -20.5135231, "posY": 1.67754745, "posZ": -14.5049381, "rotX": 359.9201, "rotY": 269.999329, "rotZ": 0.0168699548, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Helicopter", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 803, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5f629b", "Name": "Card", "Transform": { "posX": -20.513258, "posY": 1.68323421, "posZ": 4.80858564, "rotX": 359.9201, "rotY": 269.9993, "rotZ": 0.016870819, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Disinfo Campaign", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 805, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b33d4b", "Name": "Card", "Transform": { "posX": -20.5134449, "posY": 1.68187439, "posZ": 0.18993254, "rotX": 359.9201, "rotY": 269.999268, "rotZ": 0.0168702062, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Disinfo Campaign", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 806, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "beb1d7", "Name": "Card", "Transform": { "posX": -20.5133133, "posY": 1.68606353, "posZ": 14.41708, "rotX": 359.9201, "rotY": 269.9993, "rotZ": 0.01687003, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Penomen-X Documentary Team", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10628, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7e5e3f", "Name": "Card", "Transform": { "posX": -20.5133514, "posY": 1.68467724, "posZ": 9.708982, "rotX": 359.9201, "rotY": 269.999329, "rotZ": 0.01687019, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Penomen-X Documentary Team", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10629, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4a6641", "Name": "Card", "Transform": { "posX": -14.9038992, "posY": 1.669992, "posZ": -13.5988588, "rotX": 359.9201, "rotY": 269.999664, "rotZ": 0.016868785, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Men in Black", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10623, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f54d82", "Name": "Card", "Transform": { "posX": -15.0350885, "posY": 1.670871, "posZ": -11.2351656, "rotX": 359.9201, "rotY": 269.999664, "rotZ": 0.0168702956, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Men in Black", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10622, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3902e3", "Name": "Card", "Transform": { "posX": -15.3485241, "posY": 1.67473209, "posZ": 0.3930838, "rotX": 359.9201, "rotY": 270.0, "rotZ": 0.0168698113, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Street Gang", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10633, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "faa975", "Name": "Card", "Transform": { "posX": -15.3486414, "posY": 1.67334592, "posZ": -4.31499529, "rotX": 359.9201, "rotY": 269.999481, "rotZ": 0.0168703515, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Street Gang", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10634, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "63fe91", "Name": "Card", "Transform": { "posX": -15.3485441, "posY": 1.67190278, "posZ": -9.215389, "rotX": 359.9201, "rotY": 269.997437, "rotZ": 0.0168710519, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Street Gang", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10635, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fa4f85", "Name": "Card", "Transform": { "posX": -15.1931505, "posY": 1.82086754, "posZ": 4.76073, "rotX": 359.91452, "rotY": 269.991455, "rotZ": 0.011857044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sheriff Dan Oakley", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10630, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "520889", "Name": "Custom_Tile", "Transform": { "posX": -3.8323, "posY": 1.58259368, "posZ": -14.415103, "rotX": 359.919739, "rotY": 270.004944, "rotZ": 0.0168308057, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "Delta Geen Convergence", "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 = 'Delta Green'\r\n\r\nfunction onLoad() \r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "64b00f", "Name": "Card", "Transform": { "posX": -17.1198978, "posY": 1.62230051, "posZ": 11.4595, "rotX": 359.9201, "rotY": 269.9901, "rotZ": 0.01685339, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Merle's Shut-Eye Motel", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10701, "SidewaysCard": false, "CustomDeck": { "107": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7234af", "Name": "Custom_Tile", "Transform": { "posX": -20.3296, "posY": 1.613174, "posZ": 11.468, "rotX": 359.9201, "rotY": 269.9948, "rotZ": 0.0168760121, "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": "789378", "Name": "Custom_PDF", "Transform": { "posX": -1.92424762, "posY": 1.4771812, "posZ": -23.8097134, "rotX": 359.9201, "rotY": 270.017, "rotZ": 0.0168487523, "scaleX": 2.30053759, "scaleY": 1.0, "scaleZ": 2.30053759 }, "Nickname": "Campaign Guide", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomPDF": { "PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1626320456297942788/5786E0D6DAF04882E68ABB7DDF0B66057474FED3/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8a689d", "Name": "Deck", "Transform": { "posX": -17.1197, "posY": 1.65031958, "posZ": -0.0295003429, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.0168418847, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": [ 10703, 10807, 10800, 10801, 10806 ], "CustomDeck": { "107": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "65e544", "Name": "Card", "Transform": { "posX": -17.1199512, "posY": 1.67923129, "posZ": 7.569982, "rotX": 359.915222, "rotY": 269.993683, "rotZ": 0.0145743433, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Main Street", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10703, "SidewaysCard": false, "CustomDeck": { "107": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d5e7e2", "Name": "Card", "Transform": { "posX": -17.1199169, "posY": 1.67814159, "posZ": 3.85997677, "rotX": 359.915375, "rotY": 269.994751, "rotZ": 0.014645, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Main Street", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10807, "SidewaysCard": false, "CustomDeck": { "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "965fe9", "Name": "Card", "Transform": { "posX": -17.119936, "posY": 1.67699826, "posZ": -0.0300189983, "rotX": 359.9155, "rotY": 269.993774, "rotZ": 0.0147087825, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Main Street", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10800, "SidewaysCard": false, "CustomDeck": { "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "939239", "Name": "Card", "Transform": { "posX": -17.1199684, "posY": 1.67591751, "posZ": -3.830226, "rotX": 359.9206, "rotY": 269.996277, "rotZ": 0.0164781176, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Main Street", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10801, "SidewaysCard": false, "CustomDeck": { "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ecbc1b", "Name": "Card", "Transform": { "posX": -17.1181, "posY": 1.77916133, "posZ": -3.829811, "rotX": 358.214478, "rotY": 270.006561, "rotZ": 0.0135171022, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Main Street", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10806, "SidewaysCard": false, "CustomDeck": { "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "9dab73", "Name": "Deck", "Transform": { "posX": -2.7245, "posY": 1.615946, "posZ": 0.3732995, "rotX": 359.919739, "rotY": 269.9865, "rotZ": 0.0168561377, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "Agenda Deck", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 269901, 269900 ], "CustomDeck": { "2699": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635582511/01B0280DDCB130E2752705E00109A28EA76255E1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/961984061635583361/32EC0ADBA41B630009E014D3370F9B0F0069B497/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "72eba2", "Name": "Card", "Transform": { "posX": 26.502327, "posY": 1.34727585, "posZ": 55.27795, "rotX": 0.0131278457, "rotY": 270.2021, "rotZ": 0.0155735072, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "Time Is Running Out", "Description": "Agenda 2", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 269901, "SidewaysCard": false, "CustomDeck": { "2699": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635582511/01B0280DDCB130E2752705E00109A28EA76255E1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/961984061635583361/32EC0ADBA41B630009E014D3370F9B0F0069B497/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6e31e5", "Name": "Card", "Transform": { "posX": 26.2229137, "posY": 1.49218106, "posZ": 55.09183, "rotX": 0.02472322, "rotY": 269.992676, "rotZ": 0.0163567439, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "A Hidden Land", "Description": "Agenda 1", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 269900, "SidewaysCard": false, "CustomDeck": { "2699": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635582511/01B0280DDCB130E2752705E00109A28EA76255E1/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/961984061635583361/32EC0ADBA41B630009E014D3370F9B0F0069B497/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a45247", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.6960007, "posY": 1.5583173, "posZ": 14.2787018, "rotX": 359.955139, "rotY": 224.998047, "rotZ": 0.0686742961, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "Delta Green Convergence", "GMNotes": "", "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "63ffae", "Name": "Deck", "Transform": { "posX": 32.8801041, "posY": 3.40058184, "posZ": 55.130455, "rotX": 0.0009198677, "rotY": 269.997864, "rotZ": 0.0169954486, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Assets", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": [ 901, 902, 269801 ], "CustomDeck": { "9": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635587388/47D4970B5F7AF40657A71B2069BD042A0F302810/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 }, "2698": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "656e55", "Name": "Card", "Transform": { "posX": -20.5133953, "posY": 1.68606365, "posZ": 14.4170961, "rotX": 359.9201, "rotY": 269.997681, "rotZ": 0.01687058, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "County Medical Examiner", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 901, "SidewaysCard": false, "CustomDeck": { "9": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635587388/47D4970B5F7AF40657A71B2069BD042A0F302810/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ad37ea", "Name": "Card", "Transform": { "posX": -20.5134315, "posY": 1.68467736, "posZ": 9.709, "rotX": 359.9201, "rotY": 269.997864, "rotZ": 0.0168706086, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Detection Solution", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 902, "SidewaysCard": false, "CustomDeck": { "9": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635587388/47D4970B5F7AF40657A71B2069BD042A0F302810/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ef035f", "Name": "Card", "Transform": { "posX": -20.51334, "posY": 1.68323421, "posZ": 4.808602, "rotX": 359.9201, "rotY": 269.9978, "rotZ": 0.0168719534, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agent James Derringer", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 269801, "SidewaysCard": false, "CustomDeck": { "2698": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "310b6c", "Name": "Deck", "Transform": { "posX": 32.88019, "posY": 3.30327654, "posZ": 45.52196, "rotX": 359.9201, "rotY": 269.999878, "rotZ": 0.0168693513, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crop Circles", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": [ 202, 204, 203, 205 ], "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d2cb13", "Name": "Card", "Transform": { "posX": -42.02887, "posY": 1.85965574, "posZ": 1.98899424, "rotX": 359.9357, "rotY": 270.015747, "rotZ": 180.042633, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crop Circle", "Description": "Anomalous.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 202, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "56ea2a", "Name": "Card", "Transform": { "posX": -41.67698, "posY": 1.85511339, "posZ": 2.02000332, "rotX": 359.930664, "rotY": 269.996918, "rotZ": 179.994843, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crop Circle", "Description": "Prosaic.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 204, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "beeffb", "Name": "Card", "Transform": { "posX": -41.72264, "posY": 1.87318051, "posZ": 2.43101788, "rotX": 359.9325, "rotY": 269.9964, "rotZ": 179.984451, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crop Circle", "Description": "Anomalous.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 203, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9ee13a", "Name": "Card", "Transform": { "posX": -41.7113037, "posY": 1.86094713, "posZ": 4.798704, "rotX": 359.919037, "rotY": 269.9994, "rotZ": 0.0165354684, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crop Circle", "Description": "Prosaic.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 205, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "f0c29e", "Name": "Deck", "Transform": { "posX": 32.88, "posY": 3.30274749, "posZ": 40.90331, "rotX": 359.9201, "rotY": 270.000031, "rotZ": 0.0168693233, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locations", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 208, 209, 10700, 201, 207 ], "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "107": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "e6565b", "Name": "Card", "Transform": { "posX": -34.6416931, "posY": 1.705764, "posZ": 14.4148655, "rotX": 359.9201, "rotY": 269.999969, "rotZ": 0.0168707762, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Owens Farm", "Description": "Groversville. Out-of-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 208, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "69d892", "Name": "Card", "Transform": { "posX": -34.6416359, "posY": 1.70437753, "posZ": 9.706744, "rotX": 359.9201, "rotY": 269.999939, "rotZ": 0.016869558, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Reservoir", "Description": "Groversville. Out-of-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 209, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4e9ea8", "Name": "Card", "Transform": { "posX": -41.711216, "posY": 1.71561968, "posZ": 14.4071531, "rotX": 359.9201, "rotY": 269.999878, "rotZ": 0.0168675147, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abandoned Barn", "Description": "Outskirts.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10700, "SidewaysCard": false, "CustomDeck": { "107": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f98b3a", "Name": "Card", "Transform": { "posX": -41.7114067, "posY": 1.71423364, "posZ": 9.699092, "rotX": 359.9201, "rotY": 269.997437, "rotZ": 0.0168728661, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Allison Farm", "Description": "Groversville. Out-of-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 201, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "aa0922", "Name": "Card", "Transform": { "posX": -41.71133, "posY": 1.71561337, "posZ": 4.79869843, "rotX": 359.9201, "rotY": 270.0, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gum Farm", "Description": "Groversville. Out-of-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 207, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "d2c1dc", "Name": "Deck", "Transform": { "posX": 33.34141, "posY": 3.38084388, "posZ": 34.3861732, "rotX": 0.0208074711, "rotY": 269.995117, "rotZ": 0.0167726111, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Enemies", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": [ 10617, 10616, 10615, 811, 271602, 10625, 812, 10624 ], "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 }, "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 }, "2716": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "663eeb", "Name": "Card", "Transform": { "posX": -27.5964241, "posY": 1.69455421, "posZ": 9.70946, "rotX": 359.9201, "rotY": 269.997833, "rotZ": 0.0168704651, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grey", "Description": "Monster. EBE. Non-terrestrial.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10617, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c89395", "Name": "Card", "Transform": { "posX": -27.5963326, "posY": 1.69311118, "posZ": 4.80906248, "rotX": 359.9201, "rotY": 269.997925, "rotZ": 0.01687237, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grey", "Description": "Monster. EBE. Non-terrestrial.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10616, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fa4f85", "Name": "Card", "Transform": { "posX": -27.5965176, "posY": 1.69175136, "posZ": 0.190408215, "rotX": 359.9201, "rotY": 269.997864, "rotZ": 0.01687367, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grey", "Description": "Monster. EBE. Non-terrestrial.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10615, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9084f4", "Name": "Card", "Transform": { "posX": -27.5963955, "posY": 1.84273267, "posZ": 9.709464, "rotX": 359.919067, "rotY": 269.997345, "rotZ": 0.016543299, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "NRO Delta Team", "Description": "Human. 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, "HideWhenFaceDown": true, "Hands": true, "CardID": 811, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7cf87e", "Name": "Card", "Transform": { "posX": -27.5963116, "posY": 1.84116161, "posZ": 9.709427, "rotX": 359.9514, "rotY": 270.0006, "rotZ": 0.0136950864, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Protomatter Mass", "Description": "Monster. Abomination.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 271602, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "150332", "Name": "Card", "Transform": { "posX": -27.5961514, "posY": 1.98146629, "posZ": 9.709452, "rotX": 359.671875, "rotY": 269.9983, "rotZ": -0.00383381313, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mi-Go Warrior", "Description": "Monster. Mi-Go. Non-terrestrial.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10625, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d295f3", "Name": "Card", "Transform": { "posX": -27.595726, "posY": 2.123966, "posZ": 9.709393, "rotX": 359.58844, "rotY": 270.002228, "rotZ": 359.977, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spawn of Ubbo-Sathla", "Description": "Monster. Abomination. Non-terrestrial.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 812, "SidewaysCard": false, "CustomDeck": { "8": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f1b190", "Name": "Card", "Transform": { "posX": -27.59634, "posY": 2.055473, "posZ": 4.80906343, "rotX": 359.9201, "rotY": 269.9978, "rotZ": 0.01687392, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mi-Go Scientist", "Description": "Monster. Mi-Go. Non-terrestrial.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10624, "SidewaysCard": false, "CustomDeck": { "106": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "989196", "Name": "Card", "Transform": { "posX": 15.7070923, "posY": 3.39894128, "posZ": 46.7607079, "rotX": 0.02372548, "rotY": 269.998627, "rotZ": 180.030136, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Protomatter Mass", "Description": "Working Together", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 269802, "SidewaysCard": false, "CustomDeck": { "2698": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0addaa", "Name": "Card", "Transform": { "posX": 15.7498035, "posY": 3.33849216, "posZ": 49.6848335, "rotX": 0.0562324226, "rotY": 269.989258, "rotZ": 176.603775, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Minor Protomatter Spawn", "Description": "Monster. Abomination.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 269804, "SidewaysCard": false, "CustomDeck": { "2698": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "363f15", "Name": "Card", "Transform": { "posX": 0.311898649, "posY": 3.72773051, "posZ": 14.1501217, "rotX": 0.0347724445, "rotY": 270.0001, "rotZ": 0.1331041, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Merle's Shut-Eye Motel", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10702, "SidewaysCard": false, "CustomDeck": { "107": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "ab39b9", "Name": "Card", "Transform": { "posX": -17.1200981, "posY": 1.623397, "posZ": 15.1897011, "rotX": 359.9201, "rotY": 269.988068, "rotZ": 0.0168564785, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Merle's Country Bunker", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10802, "SidewaysCard": false, "CustomDeck": { "108": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d2cb13", "Name": "Card", "Transform": { "posX": -12.0254011, "posY": 1.61404145, "posZ": 7.52929974, "rotX": 359.9201, "rotY": 269.995, "rotZ": 0.0168466419, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Green Box", "Description": "Green Box. Out of Town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 271606, "SidewaysCard": false, "CustomDeck": { "2716": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "da2cbd", "Name": "Card", "Transform": { "posX": -17.1196, "posY": 1.61554968, "posZ": -11.5093012, "rotX": 359.9201, "rotY": 270.010376, "rotZ": 0.0168251041, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Town Hall", "Description": "Groversville. In-town.", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 10704, "SidewaysCard": false, "CustomDeck": { "107": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ddc104", "Name": "Deck", "Transform": { "posX": -2.6884, "posY": 1.63355863, "posZ": -5.048501, "rotX": 359.919739, "rotY": 269.9859, "rotZ": 0.0168577563, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "Act Deck", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 270001, 270000, 270002, 270102, 270101, 270100 ], "CustomDeck": { "2700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293038799/63628E346E6B7EFC0A62E2E17C4082638DD9F7D2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293041173/B0E9589FD6DDC02EE52001DF592D3EF0DF95E113/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "2701": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/961984061635565544/EC17E1B79CACA87B8DE9319BCC2CA9C9C27DAF21/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5341f9", "Name": "Card", "Transform": { "posX": 23.4226646, "posY": 1.34486723, "posZ": 52.38848, "rotX": 359.9829, "rotY": 269.985657, "rotZ": 0.01027575, "scaleX": 0.7, "scaleY": 1.0, "scaleZ": 0.7 }, "Nickname": "Aftermath", "Description": "Act 5", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270001, "SidewaysCard": false, "CustomDeck": { "2700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293038799/63628E346E6B7EFC0A62E2E17C4082638DD9F7D2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293041173/B0E9589FD6DDC02EE52001DF592D3EF0DF95E113/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8f6b8b", "Name": "Card", "Transform": { "posX": 11.793931, "posY": 1.34053051, "posZ": 50.3102837, "rotX": 0.0272007789, "rotY": 269.985046, "rotZ": 0.0173420329, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Enemy Revealed", "Description": "Act 4", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 270000, "SidewaysCard": false, "CustomDeck": { "2700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293038799/63628E346E6B7EFC0A62E2E17C4082638DD9F7D2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293041173/B0E9589FD6DDC02EE52001DF592D3EF0DF95E113/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cebce0", "Name": "Card", "Transform": { "posX": 15.4768953, "posY": 1.34179306, "posZ": 50.37059, "rotX": 0.0133059938, "rotY": 269.986847, "rotZ": 0.0148368366, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "A Negotiated Solution", "Description": "Act 4", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 270002, "SidewaysCard": false, "CustomDeck": { "2700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293038799/63628E346E6B7EFC0A62E2E17C4082638DD9F7D2/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/959733696293041173/B0E9589FD6DDC02EE52001DF592D3EF0DF95E113/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "acd3c7", "Name": "Card", "Transform": { "posX": 19.13799, "posY": 1.34318316, "posZ": 50.14636, "rotX": 0.0184510015, "rotY": 269.9856, "rotZ": 0.0157244466, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Closing In...", "Description": "Act 3", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 270102, "SidewaysCard": false, "CustomDeck": { "2701": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/961984061635565544/EC17E1B79CACA87B8DE9319BCC2CA9C9C27DAF21/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "339aa2", "Name": "Card", "Transform": { "posX": 23.17097, "posY": 1.34457612, "posZ": 50.02812, "rotX": 0.0175164212, "rotY": 269.985229, "rotZ": 0.0162343867, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "\"The Ufo Guy\"", "Description": "Act 2", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 270101, "SidewaysCard": false, "CustomDeck": { "2701": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/961984061635565544/EC17E1B79CACA87B8DE9319BCC2CA9C9C27DAF21/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8e86a6", "Name": "Card", "Transform": { "posX": 23.1777458, "posY": 1.48960149, "posZ": 49.74514, "rotX": 0.01293693, "rotY": 269.9856, "rotZ": 0.0243718829, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Groversville", "Description": "Act 1", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 270100, "SidewaysCard": false, "CustomDeck": { "2701": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/961984061635565544/EC17E1B79CACA87B8DE9319BCC2CA9C9C27DAF21/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "fe4e96", "Name": "Deck", "Transform": { "posX": -12.0018, "posY": 1.76680744, "posZ": 11.1085005, "rotX": 359.9201, "rotY": 270.000427, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Green Box 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": [ 270218, 270300, 270306, 270305, 270304, 270229, 270217, 270200, 270303, 270208, 270221, 270227, 270202, 270211, 270203, 270215, 270214, 270207, 270205, 270302, 270222, 270209, 270219, 270220, 270307, 270226, 270212, 270210, 270204, 270201 ], "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 }, "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "18c788", "Name": "Card", "Transform": { "posX": -41.71144, "posY": 1.709944, "posZ": -4.86893749, "rotX": 359.9201, "rotY": 269.996948, "rotZ": 0.01687264, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Re-Animated Corpse", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270218, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e4d543", "Name": "Card", "Transform": { "posX": -27.5965977, "posY": 1.68742442, "posZ": -14.5044594, "rotX": 359.9201, "rotY": 269.99707, "rotZ": 0.0168754514, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Unaussprechlichen Kulten", "Description": "The Black Book", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270300, "SidewaysCard": false, "CustomDeck": { "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "33703c", "Name": "Card", "Transform": { "posX": -20.5134258, "posY": 1.68038762, "posZ": -4.859041, "rotX": 359.9201, "rotY": 269.9985, "rotZ": 0.0168723576, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Summoning Stone", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270306, "SidewaysCard": false, "CustomDeck": { "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5d5cc4", "Name": "Card", "Transform": { "posX": -41.7115, "posY": 1.70849681, "posZ": -9.783747, "rotX": 359.9201, "rotY": 269.99707, "rotZ": 0.0168732069, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Schrödinger's Parrot", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270305, "SidewaysCard": false, "CustomDeck": { "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9ab0cf", "Name": "Card", "Transform": { "posX": -20.5135231, "posY": 1.68187439, "posZ": 0.189949483, "rotX": 359.9201, "rotY": 269.996277, "rotZ": 0.016874345, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Orb of Restoration", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270304, "SidewaysCard": false, "CustomDeck": { "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "46feba", "Name": "Card", "Transform": { "posX": -20.51343, "posY": 1.68467724, "posZ": 9.709, "rotX": 359.9201, "rotY": 269.9973, "rotZ": 0.0168708619, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wrack", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270229, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c92bf8", "Name": "Card", "Transform": { "posX": -34.64227, "posY": 1.69864142, "posZ": -9.775983, "rotX": 359.9201, "rotY": 269.996643, "rotZ": 0.0168737676, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Quicksilver Pendant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270217, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "02deff", "Name": "Card", "Transform": { "posX": -27.5963287, "posY": 1.69311106, "posZ": 4.809062, "rotX": 359.9201, "rotY": 269.9672, "rotZ": 0.0169144385, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Alien Autopsy Prop", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270200, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cad344", "Name": "Card", "Transform": { "posX": -41.7114258, "posY": 1.71423364, "posZ": 9.699097, "rotX": 359.9201, "rotY": 269.996918, "rotZ": 0.016873857, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grey Goo", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270303, "SidewaysCard": false, "CustomDeck": { "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3d3bb3", "Name": "Card", "Transform": { "posX": -27.5964, "posY": 1.69594049, "posZ": 14.4175625, "rotX": 359.9201, "rotY": 269.975037, "rotZ": 0.0169016775, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Deck of Cards", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270208, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "00b35e", "Name": "Card", "Transform": { "posX": -15.4988136, "posY": 1.67337823, "posZ": -4.91625452, "rotX": 359.9201, "rotY": 270.02298, "rotZ": 0.0168391764, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Replica Pistol", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270221, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b24d2b", "Name": "Card", "Transform": { "posX": -15.1425552, "posY": 1.6715337, "posZ": -9.492915, "rotX": 359.9201, "rotY": 269.996826, "rotZ": 0.0168734565, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tinfoil Hat", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270227, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a9650a", "Name": "Card", "Transform": { "posX": -41.71133, "posY": 1.71279061, "posZ": 4.79870033, "rotX": 359.9201, "rotY": 270.034119, "rotZ": 0.0168200489, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Booby Trap", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270202, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "70a6d9", "Name": "Card", "Transform": { "posX": -34.6424, "posY": 1.6972487, "posZ": -14.5070524, "rotX": 359.9201, "rotY": 270.003876, "rotZ": 0.01686408, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frozen History", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270211, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "487797", "Name": "Card", "Transform": { "posX": -27.59642, "posY": 1.69026458, "posZ": -4.858579, "rotX": 359.9201, "rotY": 269.9963, "rotZ": 0.0168732833, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bubble Wrap", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270203, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1dddc2", "Name": "Card", "Transform": { "posX": -34.64213, "posY": 1.70293534, "posZ": 4.806469, "rotX": 359.9201, "rotY": 269.9928, "rotZ": 0.0168768317, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mandela Stone", "Description": "Memories of a different reality", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270215, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "05f16e", "Name": "Card", "Transform": { "posX": -34.6422157, "posY": 1.70437825, "posZ": 9.70687, "rotX": 359.9201, "rotY": 269.990173, "rotZ": 0.0168849677, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Herne's Rememberance", "Description": "The Hunter", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270214, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7d4797", "Name": "Card", "Transform": { "posX": -34.6422234, "posY": 1.70008874, "posZ": -4.86117125, "rotX": 359.9201, "rotY": 270.001556, "rotZ": 0.0168670584, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Crystal Skull", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270207, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3a1f1e", "Name": "Card", "Transform": { "posX": -34.64232, "posY": 1.70157552, "posZ": 0.187816158, "rotX": 359.9201, "rotY": 269.996918, "rotZ": 0.01687204, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Chainsaw", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270205, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9c16e9", "Name": "Card", "Transform": { "posX": -20.5133972, "posY": 1.68606365, "posZ": 14.417099, "rotX": 359.9201, "rotY": 269.996948, "rotZ": 0.0168748628, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Claymore Mine", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270302, "SidewaysCard": false, "CustomDeck": { "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c5498f", "Name": "Card", "Transform": { "posX": -20.5134983, "posY": 1.67894053, "posZ": -9.773846, "rotX": 359.9201, "rotY": 270.023132, "rotZ": 0.016836917, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sacrificial Dagger", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270222, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "476928", "Name": "Card", "Transform": { "posX": -27.596487, "posY": 1.68881738, "posZ": -9.77338, "rotX": 359.9201, "rotY": 269.986877, "rotZ": 0.0168863945, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Elixir", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270209, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "62c52d", "Name": "Card", "Transform": { "posX": -41.711525, "posY": 1.71143091, "posZ": 0.180046827, "rotX": 359.9201, "rotY": 269.997, "rotZ": 0.01687131, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Re-Animated Remnant", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270219, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "febccf", "Name": "Card", "Transform": { "posX": -20.5133381, "posY": 1.68323421, "posZ": 4.808603, "rotX": 359.9201, "rotY": 269.991241, "rotZ": 0.016881058, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Red Sign of Shudde M'ell", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270220, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eef239", "Name": "Card", "Transform": { "posX": -14.98941, "posY": 1.66989374, "posZ": -14.3376207, "rotX": 359.9201, "rotY": 269.996918, "rotZ": 0.0168723632, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Surveillance Drone", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270307, "SidewaysCard": false, "CustomDeck": { "2703": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7c4c04", "Name": "Card", "Transform": { "posX": -20.5136051, "posY": 1.67754745, "posZ": -14.5049191, "rotX": 359.9201, "rotY": 269.984833, "rotZ": 0.0168907288, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "\"The Formula\"", "Description": "Life Beyond Death", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270226, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "12924b", "Name": "Card", "Transform": { "posX": -34.64217, "posY": 1.70576477, "posZ": 14.4149675, "rotX": 359.9201, "rotY": 269.995422, "rotZ": 0.01687581, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grenade Launcher", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270212, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d4a801", "Name": "Card", "Transform": { "posX": -41.71139, "posY": 1.71561992, "posZ": 14.4071941, "rotX": 359.9201, "rotY": 269.982117, "rotZ": 0.0168942511, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Eyeballs in a Jar", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270210, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b25a8e", "Name": "Card", "Transform": { "posX": -27.59642, "posY": 1.69455421, "posZ": 9.709458, "rotX": 359.9201, "rotY": 270.023834, "rotZ": 0.0168353468, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Burner Phone", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270204, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cd3957", "Name": "Card", "Transform": { "posX": 4.31294775, "posY": 1.6593461, "posZ": 67.4870148, "rotX": 0.0204928089, "rotY": 270.000671, "rotZ": 0.0162836015, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Band of Phasing", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270201, "SidewaysCard": false, "CustomDeck": { "2702": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }