{ "GUID": "68380c", "Name": "Custom_Model_Bag", "Transform": { "posX": 12.2498274, "posY": 1.46560574, "posZ": 3.98640084, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.0168745779, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "In Blackest Pits", "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/1016065907889320438/3DC5DD89D5DB56BE6EFDAC4A96E8063765576EA1/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "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* 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 + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\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=400, width=400,\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", "LuaScriptState": "{\"ml\":{\"1ae977\":{\"lock\":false,\"pos\":{\"x\":-33.4282,\"y\":1.6258,\"z\":-7.7062},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"268bd8\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6937,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"35c492\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6042,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9977,\"z\":0.0799}},\"4011a5\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9961,\"z\":180.0169}},\"505e6c\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.5583,\"z\":14.2788},\"rot\":{\"x\":359.9551,\"y\":224.998,\"z\":0.0687}},\"5bb7d0\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":180.0169}},\"5d070a\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6203,\"z\":-11.51},\"rot\":{\"x\":359.9832,\"y\":0.0096,\"z\":359.9201}},\"6645cd\":{\"lock\":false,\"pos\":{\"x\":-23.6764,\"y\":1.6134,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9981,\"z\":0.0799}},\"668f68\":{\"lock\":false,\"pos\":{\"x\":-26.9665,\"y\":1.6168,\"z\":-7.7199},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"6f1efa\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.705,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6065,\"z\":3.8598},\"rot\":{\"x\":0.0169,\"y\":179.9981,\"z\":0.0799}},\"759ab6\":{\"lock\":false,\"pos\":{\"x\":-20.2426,\"y\":1.6075,\"z\":-7.7066},\"rot\":{\"x\":0.0799,\"y\":90.0007,\"z\":359.9831}},\"7b91a3\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}},\"8944d1\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7237,\"z\":5.7573},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":180.0168}},\"98b72e\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6585,\"z\":-10.4431},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}},\"a4612b\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6821,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9962,\"z\":180.0169}},\"b04a1a\":{\"lock\":false,\"pos\":{\"x\":-20.2608,\"y\":1.6098,\"z\":0.0434},\"rot\":{\"x\":0.0799,\"y\":90.0006,\"z\":359.9831}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.8027,\"y\":1.5824,\"z\":-14.9354},\"rot\":{\"x\":359.9197,\"y\":270.031,\"z\":0.0168}},\"cce0e0\":{\"lock\":false,\"pos\":{\"x\":-12.0115,\"y\":1.671,\"z\":7.4502},\"rot\":{\"x\":359.9201,\"y\":270.0065,\"z\":0.0169}},\"d26316\":{\"lock\":false,\"pos\":{\"x\":-26.8215,\"y\":1.6154,\"z\":-11.8145},\"rot\":{\"x\":0.045,\"y\":45.3509,\"z\":359.9319}},\"dbbfa0\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6959,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9789,\"z\":180.0169}},\"def2f5\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.664,\"z\":0.3734},\"rot\":{\"x\":359.9197,\"y\":270.001,\"z\":180.0168}},\"e9d947\":{\"lock\":false,\"pos\":{\"x\":-2.6895,\"y\":1.3987,\"z\":-5.0483},\"rot\":{\"x\":359.9832,\"y\":0.0002,\"z\":359.9197}},\"ff4d6f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6776,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.996,\"z\":180.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "f8c00e", "Name": "Custom_PDF", "Transform": { "posX": 12.250577, "posY": 1.93446577, "posZ": 13.4375763, "rotX": 359.921021, "rotY": 270.0034, "rotZ": 359.982361, "scaleX": 3.31565976, "scaleY": 1.0, "scaleZ": 3.31565976 }, "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/788633557746033014/E2E2119AB5765CAE1D41F0C81EBD62AA3AF8330F/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1ae977", "Name": "Custom_Tile", "Transform": { "posX": -33.4282, "posY": 1.62584472, "posZ": -7.706201, "rotX": 0.07989463, "rotY": 90.0006561, "rotZ": 359.9831, "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": "268bd8", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.69368327, "posZ": -15.2800026, "rotX": 359.9201, "rotY": 269.996, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "35c492", "Name": "Custom_Tile", "Transform": { "posX": -17.1198978, "posY": 1.60424507, "posZ": -3.83000016, "rotX": 0.01687521, "rotY": 179.99765, "rotZ": 0.07994527, "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": "4011a5", "Name": "Card", "Transform": { "posX": -17.1199, "posY": 1.67990053, "posZ": -0.0299997646, "rotX": 359.9201, "rotY": 269.996033, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "505e6c", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69650078, "posY": 1.558317, "posZ": 14.2788029, "rotX": 359.955139, "rotY": 224.997986, "rotZ": 0.0686712041, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-Aside", "Description": "", "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": "https://paste.ee/r/ylQzQ", "DiffuseURL": "http://i.imgur.com/yVhOLYs.jpg", "NormalURL": "http://i.imgur.com/f1ogHo6.jpg", "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": "fc05f7", "Name": "Deck", "Transform": { "posX": 22.0388336, "posY": 3.50420761, "posZ": -28.9088249, "rotX": 359.920135, "rotY": 270.000061, "rotZ": 0.01687656, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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, "SidewaysCard": false, "DeckIDs": [ 507, 506, 505, 504, 503, 502, 501, 500 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": 7.804749, "posY": 1.19525766, "posZ": 1.19081986, "rotX": 0.0190201085, "rotY": 180.059357, "rotZ": 179.9849, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 507, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": 7.613367, "posY": 1.18889737, "posZ": 1.48828042, "rotX": -0.00227429043, "rotY": 179.999588, "rotZ": 179.997, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 506, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": 7.75397539, "posY": 1.18394363, "posZ": 1.15980935, "rotX": 359.984, "rotY": 180.019684, "rotZ": 180.002548, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 505, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": 7.76012754, "posY": 1.18130159, "posZ": 1.01706719, "rotX": 0.0007330392, "rotY": 180.001526, "rotZ": 180.0017, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 504, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": 7.746368, "posY": 1.18331409, "posZ": 0.997205734, "rotX": -0.00248008082, "rotY": 179.9957, "rotZ": 180.0014, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 503, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": 7.534797, "posY": 1.19688416, "posZ": 1.36689758, "rotX": -0.005576195, "rotY": 180.002136, "rotZ": 179.993225, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 502, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3104e0", "Name": "Card", "Transform": { "posX": 7.67076731, "posY": 1.17945158, "posZ": 0.757262, "rotX": 0.00526241073, "rotY": 179.998566, "rotZ": 180.018173, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 501, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": 15.6323833, "posY": 1.64991593, "posZ": -0.5181488, "rotX": 359.917847, "rotY": 270.000122, "rotZ": 0.0162788741, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 500, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -7.85147142, "posY": 3.08655977, "posZ": 5.116166, "rotX": -5.94977755E-05, "rotY": 300.0033, "rotZ": 1.13206152E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 529, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "5bb7d0", "Name": "Card", "Transform": { "posX": -23.6765, "posY": 1.68678463, "posZ": -7.700001, "rotX": 359.9201, "rotY": 269.9953, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5d070a", "Name": "Custom_Tile", "Transform": { "posX": -30.2242, "posY": 1.620257, "posZ": -11.51, "rotX": 359.983154, "rotY": 0.009635047, "rotZ": 359.920044, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/vppt2my.png", "ImageSecondaryURL": "https://i.imgur.com/vppt2my.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "States": { "2": { "GUID": "44b0c5", "Name": "Custom_Tile", "Transform": { "posX": -39.7933121, "posY": 1.63758957, "posZ": 2.038383, "rotX": 359.9201, "rotY": 269.9961, "rotZ": 0.0168742146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/HyfE8m8.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, "3": { "GUID": "5b38c6", "Name": "Custom_Tile", "Transform": { "posX": -38.8217163, "posY": 1.99356019, "posZ": 0.4159239, "rotX": 359.9201, "rotY": 272.9828, "rotZ": 0.01687373, "scaleX": 0.8, "scaleY": 1.0, "scaleZ": 0.8 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.6045295, "g": 0.6045295, "b": 0.6045295 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "https://i.imgur.com/dHKBLoD.png", "ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } } }, { "GUID": "6645cd", "Name": "Custom_Tile", "Transform": { "posX": -23.6764, "posY": 1.61338782, "posZ": -3.83, "rotX": 0.0168743562, "rotY": 179.9981, "rotZ": 0.07993914, "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": "668f68", "Name": "Custom_Tile", "Transform": { "posX": -26.9665, "posY": 1.61683023, "posZ": -7.71990156, "rotX": 0.0798944, "rotY": 90.0005646, "rotZ": 359.9831, "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": "6f1efa", "Name": "Card", "Transform": { "posX": -36.7733, "posY": 1.70504737, "posZ": -7.70000124, "rotX": 359.9201, "rotY": 269.996033, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7234af", "Name": "Custom_Tile", "Transform": { "posX": -17.1199, "posY": 1.60650945, "posZ": 3.85979986, "rotX": 0.0168743338, "rotY": 179.9981, "rotZ": 0.0799395, "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": "759ab6", "Name": "Custom_Tile", "Transform": { "posX": -20.2426, "posY": 1.60745811, "posZ": -7.70660162, "rotX": 0.07989453, "rotY": 90.00068, "rotZ": 359.9831, "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": "7b91a3", "Name": "Card", "Transform": { "posX": -23.6765, "posY": 1.68904328, "posZ": -0.02999958, "rotX": 359.9201, "rotY": 269.995972, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8944d1", "Name": "DeckCustom", "Transform": { "posX": -3.92750025, "posY": 1.72374463, "posZ": 5.757302, "rotX": 359.919739, "rotY": 270.000549, "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": [ 511, 512, 522, 527, 518, 517, 510, 508, 515, 509, 513, 528, 520, 516, 525, 521, 523, 526, 519, 514, 524 ], "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 511, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 512, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 522, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 527, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 518, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 517, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 510, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": 6.57608032, "posY": 1.28832209, "posZ": 4.489351, "rotX": 2.73051628E-05, "rotY": 119.793419, "rotZ": 179.999954, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 508, "SidewaysCard": false, "CustomDeck": { "5": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 515, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 509, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 513, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 528, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 520, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 516, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 525, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 521, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 523, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 526, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 519, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 514, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "40fdf1", "Name": "Card", "Transform": { "posX": -3.16072146E-07, "posY": 1.04493046, "posZ": 1.48063577E-07, "rotX": -2.98125588E-06, "rotY": 180.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 524, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] } ] }, { "GUID": "98b72e", "Name": "CardCustom", "Transform": { "posX": -3.95590067, "posY": 1.65847039, "posZ": -10.4431009, "rotX": 359.919739, "rotY": 269.999542, "rotZ": 180.01683, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 400, "SidewaysCard": false, "CustomDeck": { "4": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745913505/FF66027BC405E15FD168B273A1ACB4BEBCA5081D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745913993/F237F6CA5C4DED8942959421282367428BAA949E/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a4612b", "Name": "Card", "Transform": { "posX": -17.12, "posY": 1.68213856, "posZ": 7.57, "rotX": 359.9201, "rotY": 269.996155, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b04a1a", "Name": "Custom_Tile", "Transform": { "posX": -20.2608, "posY": 1.60976565, "posZ": 0.0433999635, "rotX": 0.07989453, "rotY": 90.00054, "rotZ": 359.9831, "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": "bbb70a", "Name": "Custom_Tile", "Transform": { "posX": -3.80270028, "posY": 1.58239937, "posZ": -14.9354038, "rotX": 359.919739, "rotY": 270.031036, "rotZ": 0.0167942345, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "The Initiation", "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": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'The Initiation'\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\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cce0e0", "Name": "Deck", "Transform": { "posX": -12.0114975, "posY": 1.67102468, "posZ": 7.4502, "rotX": 359.9201, "rotY": 270.006439, "rotZ": 0.016867321, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Roles", "Description": "Select one and add to your deck", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 304, 303, 302, 301, 300 ], "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "213b85", "Name": "Card", "Transform": { "posX": 3.39631653, "posY": 1.03164709, "posZ": 0.212218851, "rotX": 0.0006539054, "rotY": 180.0, "rotZ": -0.004412694, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 304, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ba65dc", "Name": "Card", "Transform": { "posX": 6.480454, "posY": 1.03160429, "posZ": -0.699747443, "rotX": 359.993774, "rotY": 180.000015, "rotZ": 0.00319826882, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 303, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c25a58", "Name": "Card", "Transform": { "posX": 10.1751261, "posY": 1.03165567, "posZ": 0.138327822, "rotX": 0.000605026959, "rotY": 180.0, "rotZ": -0.00389001821, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 302, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "969a34", "Name": "Card", "Transform": { "posX": 9.829711, "posY": 1.03169692, "posZ": 4.012135, "rotX": -0.000740984629, "rotY": 180.000061, "rotZ": -0.000317312224, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 301, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7ac3bf", "Name": "Card", "Transform": { "posX": 12.0186758, "posY": 1.69882274, "posZ": -1.76365435, "rotX": 359.919037, "rotY": 270.016052, "rotZ": 0.899788737, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 300, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "d26316", "Name": "Custom_Tile", "Transform": { "posX": -26.8215, "posY": 1.61542249, "posZ": -11.8145, "rotX": 0.0449836031, "rotY": 45.35085, "rotZ": 359.9319, "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": "dbbfa0", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.69591522, "posZ": -7.7, "rotX": 359.9201, "rotY": 269.9789, "rotZ": 180.016891, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "def2f5", "Name": "Deck", "Transform": { "posX": -2.72480035, "posY": 1.66398108, "posZ": 0.37340045, "rotX": 359.919739, "rotY": 270.000977, "rotZ": 180.01683, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "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": [ 116, 115, 117 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "ac4cc5", "Name": "Card", "Transform": { "posX": -33.4083138, "posY": 1.86669087, "posZ": 4.084464, "rotX": 0.0110821165, "rotY": 179.961578, "rotZ": 180.064056, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 116, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f26c3", "Name": "Card", "Transform": { "posX": -6.76561737, "posY": 1.17323577, "posZ": 0.05978197, "rotX": 359.992, "rotY": 179.985016, "rotZ": 180.012253, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 115, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f05a1e", "Name": "Card", "Transform": { "posX": -7.02985859, "posY": 1.034526, "posZ": -0.09515581, "rotX": 0.000172732922, "rotY": 179.9965, "rotZ": 180.000443, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 117, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "e9d947", "Name": "Bag", "Transform": { "posX": -2.68949986, "posY": 1.39871049, "posZ": -5.04830027, "rotX": 359.983154, "rotY": 0.000172333268, "rotZ": 359.919678, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Individual Act Decks", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "346fee", "Name": "Deck", "Transform": { "posX": -2.68853927, "posY": 3.73802185, "posZ": -5.04848671, "rotX": 359.937225, "rotY": 270.016479, "rotZ": 179.967026, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "The Invoker", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 107, 106, 108 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "97283e", "Name": "Card", "Transform": { "posX": 9.699033, "posY": 1.70329058, "posZ": -7.122725, "rotX": 359.9234, "rotY": 270.004333, "rotZ": 180.0174, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 107, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f26c3", "Name": "Card", "Transform": { "posX": -45.92875, "posY": 1.86696458, "posZ": 5.832898, "rotX": 359.929138, "rotY": 270.002258, "rotZ": 180.013916, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 106, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b4842b", "Name": "Card", "Transform": { "posX": -45.9200325, "posY": 1.721707, "posZ": 5.80781841, "rotX": 359.916443, "rotY": 269.991028, "rotZ": 180.017563, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 108, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7a6c52", "Name": "Deck", "Transform": { "posX": -2.68853927, "posY": 3.73803329, "posZ": -5.04848671, "rotX": 359.9372, "rotY": 270.000031, "rotZ": 179.967087, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "The Occultist", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 110, 111, 109 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1f45cc", "Name": "Card", "Transform": { "posX": -43.3662338, "posY": 1.9080348, "posZ": 3.86030531, "rotX": 1.03257775, "rotY": 270.03418, "rotZ": 180.0119, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 110, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f92796", "Name": "Card", "Transform": { "posX": -43.3700142, "posY": 1.86742187, "posZ": 3.859974, "rotX": 359.934357, "rotY": 270.003876, "rotZ": 180.020737, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 111, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f26c3", "Name": "Card", "Transform": { "posX": -43.3699379, "posY": 1.71758449, "posZ": 3.86000872, "rotX": 359.920776, "rotY": 270.0022, "rotZ": 180.019714, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 109, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "55073d", "Name": "Deck", "Transform": { "posX": -2.68833017, "posY": 3.73858619, "posZ": -5.048411, "rotX": 3.33870935, "rotY": 270.026123, "rotZ": 179.963226, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "The Envoy", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 102, 101, 100 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "d5b4ac", "Name": "Card", "Transform": { "posX": -43.37031, "posY": 1.945004, "posZ": 15.1900692, "rotX": 358.036652, "rotY": 269.992065, "rotZ": 180.017166, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e49d46", "Name": "Card", "Transform": { "posX": -43.3678665, "posY": 1.96913946, "posZ": 15.18969, "rotX": 357.155365, "rotY": 269.9976, "rotZ": 180.011749, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f26c3", "Name": "Card", "Transform": { "posX": -43.3696938, "posY": 1.80382121, "posZ": 15.1901751, "rotX": 356.206024, "rotY": 269.936035, "rotZ": 180.011459, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 100, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "90bcc2", "Name": "Deck", "Transform": { "posX": -2.68853927, "posY": 3.738022, "posZ": -5.04848671, "rotX": 359.937164, "rotY": 269.968567, "rotZ": 179.967117, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "The Expendable", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 105, 104, 103 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "5b64dc", "Name": "Card", "Transform": { "posX": -43.36999, "posY": 1.887156, "posZ": 11.4600086, "rotX": 359.921967, "rotY": 269.991821, "rotZ": 180.018311, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 105, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e3bc15", "Name": "Card", "Transform": { "posX": -43.3700066, "posY": 1.86958683, "posZ": 11.4599886, "rotX": 359.934174, "rotY": 269.9907, "rotZ": 180.026169, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f26c3", "Name": "Card", "Transform": { "posX": -43.3700027, "posY": 1.719836, "posZ": 11.4600086, "rotX": 359.9206, "rotY": 269.9713, "rotZ": 180.01918, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "fd76f0", "Name": "Deck", "Transform": { "posX": -2.68853927, "posY": 3.73802185, "posZ": -5.048486, "rotX": 359.9372, "rotY": 269.999969, "rotZ": 179.967041, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "The Offering", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 112, 114, 113 ], "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6f26c3", "Name": "Card", "Transform": { "posX": -45.66184, "posY": 1.91127837, "posZ": 1.21113586, "rotX": 358.5527, "rotY": 269.996948, "rotZ": 180.005737, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 112, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74523c", "Name": "Card", "Transform": { "posX": -45.730175, "posY": 1.898241, "posZ": 0.7805057, "rotX": 359.953583, "rotY": 270.0315, "rotZ": 178.87674, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 114, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4cbd54", "Name": "Card", "Transform": { "posX": -45.5491, "posY": 1.71968949, "posZ": 0.62215966, "rotX": 359.922577, "rotY": 269.7454, "rotZ": 180.015778, "scaleX": 0.783099234, "scaleY": 1.0, "scaleZ": 0.783099234 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 113, "SidewaysCard": false, "CustomDeck": { "1": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "ff4d6f", "Name": "Card", "Transform": { "posX": -17.12, "posY": 1.67764223, "posZ": -7.70000172, "rotX": 359.9201, "rotY": 269.995972, "rotZ": 180.016876, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 206, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }