{ "GUID": "df62e8", "Name": "Custom_Model_Bag", "Transform": { "posX": 12.2498932, "posY": 1.46560514, "posZ": 3.98637438, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 0.0168726631, "scaleX": 2.21, "scaleY": 0.2, "scaleZ": 2.46 }, "Nickname": "Knightfall", "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/798737729142937041/3253F31B9483C3B5D0A98BA7E479E006FBF8D270/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1.25 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor\r\n objPos.z = objPos.z * globalScaleFactor\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj) end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n", "LuaScriptState": "{\"ml\":{\"0679c6\":{\"lock\":false,\"pos\":{\"x\":-11.8399,\"y\":1.6678,\"z\":0.2602},\"rot\":{\"x\":359.9201,\"y\":269.988,\"z\":0.0169}},\"141409\":{\"lock\":false,\"pos\":{\"x\":-30.2241,\"y\":1.6982,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":180.0169}},\"245b8d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.689,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0169}},\"271ce2\":{\"lock\":false,\"pos\":{\"x\":-4.3628,\"y\":1.5831,\"z\":-15.1267},\"rot\":{\"x\":359.9197,\"y\":270.0001,\"z\":0.0168}},\"2d17c9\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6913,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.0169}},\"3106e6\":{\"lock\":false,\"pos\":{\"x\":1.6965,\"y\":1.6368,\"z\":14.2788},\"rot\":{\"x\":359.9552,\"y\":224.998,\"z\":0.0687}},\"917494\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.664,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"9d4e42\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7397,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9857,\"z\":180.0169}},\"a4e5e9\":{\"lock\":false,\"pos\":{\"x\":-2.6884,\"y\":1.655,\"z\":-5.0486},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"a68851\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6868,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9972,\"z\":180.0169}},\"b21de6\":{\"lock\":false,\"pos\":{\"x\":-13.3172,\"y\":1.6804,\"z\":7.5859},\"rot\":{\"x\":359.9201,\"y\":269.9856,\"z\":180.0169}},\"b8480f\":{\"lock\":false,\"pos\":{\"x\":-3.9559,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":0.0169}},\"bab1d6\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.997,\"z\":180.0169}},\"c9e9ad\":{\"lock\":false,\"pos\":{\"x\":-5.3818,\"y\":1.4082,\"z\":14.423},\"rot\":{\"x\":359.9832,\"y\":-0.0034,\"z\":359.9196}},\"d306b8\":{\"lock\":false,\"pos\":{\"x\":-12.4062,\"y\":1.679,\"z\":12.7949},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":180.0169}},\"da3aed\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9855,\"z\":0.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "3106e6", "Name": "Deck", "Transform": { "posX": 1.69650078, "posY": 1.636754, "posZ": 14.2788019, "rotX": 359.95517, "rotY": 224.997971, "rotZ": 0.06865945, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Set Aside", "Description": "Knightfall", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 154500, 154501, 154502, 154503, 154504, 154505, 154506, 154507 ], "CustomDeck": { "1545": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "939666", "Name": "Card", "Transform": { "posX": 7.47108841, "posY": 1.01347291, "posZ": -7.86444473, "rotX": 2.846744E-08, "rotY": 269.985535, "rotZ": -6.167221E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154500, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "939666", "Name": "Card", "Transform": { "posX": 7.47108841, "posY": 1.01347291, "posZ": -7.86444473, "rotX": 2.846744E-08, "rotY": 269.985535, "rotZ": -6.167221E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154501, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "939666", "Name": "Card", "Transform": { "posX": 7.47108841, "posY": 1.01347291, "posZ": -7.86444473, "rotX": 2.846744E-08, "rotY": 269.985535, "rotZ": -6.167221E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154502, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "939666", "Name": "Card", "Transform": { "posX": 7.47108841, "posY": 1.01347291, "posZ": -7.86444473, "rotX": 2.846744E-08, "rotY": 269.985535, "rotZ": -6.167221E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154503, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "939666", "Name": "Card", "Transform": { "posX": 7.47108841, "posY": 1.01347291, "posZ": -7.86444473, "rotX": 2.846744E-08, "rotY": 269.985535, "rotZ": -6.167221E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154504, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "939666", "Name": "Card", "Transform": { "posX": 7.47108841, "posY": 1.01347291, "posZ": -7.86444473, "rotX": 2.846744E-08, "rotY": 269.985535, "rotZ": -6.167221E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154505, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "939666", "Name": "Card", "Transform": { "posX": 7.47108841, "posY": 1.01347291, "posZ": -7.86444473, "rotX": 2.846744E-08, "rotY": 269.985535, "rotZ": -6.167221E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154506, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "939666", "Name": "Card", "Transform": { "posX": 7.47108841, "posY": 1.01347291, "posZ": -7.86444473, "rotX": 2.846744E-08, "rotY": 269.985535, "rotZ": -6.167221E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154507, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] } ] }, { "GUID": "c9e9ad", "Name": "Bag", "Transform": { "posX": -5.3818, "posY": 1.40820384, "posZ": 14.4230013, "rotX": 359.983154, "rotY": -0.003384004, "rotZ": 359.919647, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Batman Deck", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.891986132, "g": 0.7389318, "b": 0.573419631 }, "LayoutGroupSortIndex": 0, "Value": 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": "7244f1", "Name": "Custom_Token", "Transform": { "posX": 15.8144455, "posY": 3.1478467, "posZ": -3.87409186, "rotX": 358.351, "rotY": 269.948151, "rotZ": 355.884216, "scaleX": 0.47075966, "scaleY": 1.0, "scaleZ": 0.47075966 }, "Nickname": "Batman!", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/778493732359958441/F183E7A5F398BACF3FA961B048C146C72EE7C713/", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": false } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fb89ee", "Name": "Card", "Transform": { "posX": 15.0275927, "posY": 3.00316477, "posZ": -6.55246067, "rotX": 359.714661, "rotY": 269.983978, "rotZ": 359.812836, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bruce Wayne", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 209, "SidewaysCard": false, "CustomDeck": { "2": { "FaceURL": "https://i.imgur.com/sCaPeG9.jpg/", "BackURL": "https://i.imgur.com/VuuIryb.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "64b07c", "Name": "Deck", "Transform": { "posX": 14.66137, "posY": 3.12653828, "posZ": -9.121288, "rotX": 359.830658, "rotY": 269.996552, "rotZ": 5.69763231, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 324, 325 ], "CustomDeck": { "3": { "FaceURL": "https://i.imgur.com/mwKLjIs.jpg/", "BackURL": "https://i.imgur.com/a1krSW3.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "eac151", "Name": "Card", "Transform": { "posX": -7.69942141, "posY": 1.03171194, "posZ": 5.70351458, "rotX": -7.1041286E-05, "rotY": 179.9998, "rotZ": -0.000246967451, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Utility Belt", "Description": "Batman", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 324, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "https://i.imgur.com/mwKLjIs.jpg/", "BackURL": "https://i.imgur.com/a1krSW3.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4eeeb3", "Name": "Card", "Transform": { "posX": -7.487739, "posY": 1.17054713, "posZ": 5.37356043, "rotX": 0.009329178, "rotY": 180.008987, "rotZ": 0.00505922, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Terrible memory", "Description": "Batman", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 325, "SidewaysCard": false, "CustomDeck": { "3": { "FaceURL": "https://i.imgur.com/mwKLjIs.jpg/", "BackURL": "https://i.imgur.com/a1krSW3.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "d306b8", "Name": "Deck", "Transform": { "posX": -12.4062, "posY": 1.67903364, "posZ": 12.7949, "rotX": 359.9201, "rotY": 269.985657, "rotZ": 180.016891, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Toxin", "Description": "Knightfall", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 149207, 149231, 149235, 149232, 149225, 149234, 149233, 149230, 149236, 149224 ], "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "75dbc1", "Name": "Card", "Transform": { "posX": 15.7480907, "posY": 1.16229987, "posZ": 14.6140718, "rotX": -0.00073775294, "rotY": 180.000214, "rotZ": 179.999741, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149207, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "70647e", "Name": "Card", "Transform": { "posX": 8.615725, "posY": 1.4065696, "posZ": 8.9533205, "rotX": -0.001174914, "rotY": 179.972046, "rotZ": 177.013885, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149231, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "38075d", "Name": "Card", "Transform": { "posX": 9.146199, "posY": 1.48491049, "posZ": 8.997354, "rotX": 359.9942, "rotY": 179.968842, "rotZ": 187.9016, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149235, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0d7c1b", "Name": "Card", "Transform": { "posX": 7.899058, "posY": 1.37155509, "posZ": 9.333591, "rotX": 358.769073, "rotY": 180.022842, "rotZ": 177.845932, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149232, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "372d32", "Name": "Card", "Transform": { "posX": 7.99807644, "posY": 1.37407672, "posZ": 8.966524, "rotX": 358.9756, "rotY": 180.017212, "rotZ": 178.069489, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149225, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "710beb", "Name": "Card", "Transform": { "posX": 7.82523155, "posY": 1.366193, "posZ": 8.972555, "rotX": 358.947266, "rotY": 180.019241, "rotZ": 177.767166, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149234, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c0c305", "Name": "Card", "Transform": { "posX": 8.836387, "posY": 1.56173515, "posZ": 8.962085, "rotX": 359.498871, "rotY": 179.999237, "rotZ": 180.366882, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149233, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0997b0", "Name": "Card", "Transform": { "posX": 8.700943, "posY": 1.416803, "posZ": 8.654744, "rotX": 0.0553629845, "rotY": 179.998734, "rotZ": 179.512146, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149230, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "379745", "Name": "Card", "Transform": { "posX": 8.992188, "posY": 1.26970685, "posZ": 8.840597, "rotX": 359.892822, "rotY": 180.000549, "rotZ": 179.537735, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149236, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "022c93", "Name": "Card", "Transform": { "posX": 8.468398, "posY": 1.23334885, "posZ": 8.541715, "rotX": 359.939728, "rotY": 179.997208, "rotZ": 180.026138, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149224, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "9d4e42", "Name": "DeckCustom", "Transform": { "posX": -3.92740083, "posY": 1.73973274, "posZ": 5.7571, "rotX": 359.919739, "rotY": 269.985718, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter Deck", "Description": "Knightfall", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 149240, 149241, 149243, 149252, 149229, 149254, 149249, 149251, 149244, 149250, 149227, 149246, 149256, 149247, 149253, 149242, 149239, 149226, 149245, 149237, 149255, 149248, 149228, 149238 ], "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149240, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149241, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149243, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149252, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149229, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149254, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149249, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149251, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149244, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149250, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149227, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149246, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149256, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149247, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149253, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149242, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149239, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149226, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149245, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149237, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149255, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149248, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149228, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 2.23126335E-08, "posY": 1.24493062, "posZ": -2.520262E-07, "rotX": -1.48562648E-07, "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": 149238, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] } ] }, { "GUID": "917494", "Name": "Deck", "Transform": { "posX": -2.7246, "posY": 1.66397715, "posZ": 0.373300523, "rotX": 359.919739, "rotY": 269.985474, "rotZ": 0.0168550853, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda", "Description": "Knightfall", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 154312, 154311 ], "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7d7342", "Name": "Card", "Transform": { "posX": -5.21325541, "posY": 1.23166823, "posZ": 7.43926525, "rotX": -0.00230238936, "rotY": 180.000473, "rotZ": -0.000456916052, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154312, "SidewaysCard": false, "CustomDeck": { "1134": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "183383", "Name": "Card", "Transform": { "posX": -5.10804367, "posY": 1.37048781, "posZ": 7.19369459, "rotX": 359.989868, "rotY": 180.000366, "rotZ": 0.0009526819, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154311, "SidewaysCard": false, "CustomDeck": { "1134": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a4e5e9", "Name": "Deck", "Transform": { "posX": -2.68839955, "posY": 1.65499711, "posZ": -5.04860067, "rotX": 359.919739, "rotY": 269.985443, "rotZ": 0.0168552883, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act", "Description": "Knightfall", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 154410, 154409, 154408 ], "CustomDeck": { "1544": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7d7342", "Name": "Card", "Transform": { "posX": 1.228178, "posY": 1.23170233, "posZ": 7.27512074, "rotX": -0.0006685873, "rotY": 180.0004, "rotZ": -0.00019892423, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154410, "SidewaysCard": false, "CustomDeck": { "1134": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eb0cc3", "Name": "Card", "Transform": { "posX": 1.22817147, "posY": 1.3812114, "posZ": 7.27513647, "rotX": 359.9931, "rotY": 180.000458, "rotZ": -0.0017523577, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154409, "SidewaysCard": false, "CustomDeck": { "1134": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7d7342", "Name": "Card", "Transform": { "posX": 1.22817791, "posY": 1.39859641, "posZ": 7.2751236, "rotX": -0.000781342853, "rotY": 180.000381, "rotZ": -0.000222820279, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154408, "SidewaysCard": false, "CustomDeck": { "1134": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b8480f", "Name": "Card", "Transform": { "posX": -3.95590043, "posY": 1.655648, "posZ": -10.4412012, "rotX": 359.919739, "rotY": 269.985535, "rotZ": 0.01685282, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 149313, "SidewaysCard": false, "CustomDeck": { "1493": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "271ce2", "Name": "Custom_Tile", "Transform": { "posX": -4.3628006, "posY": 1.58312762, "posZ": -15.1267014, "rotX": 359.919739, "rotY": 270.000122, "rotZ": 0.0168359317, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "Knightfall", "Description": "click to set chaos token difficulty", "GMNotes": "", "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'Knightfall'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b21de6", "Name": "Deck", "Transform": { "posX": -13.3171988, "posY": 1.68039334, "posZ": 7.58589935, "rotX": 359.9201, "rotY": 269.985535, "rotZ": 180.016891, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locations", "Description": "Knightfall", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 149211, 149210, 149209, 149208 ], "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 9.3377285, "posY": 1.3832289, "posZ": 7.95453835, "rotX": -0.0005858764, "rotY": 180.0, "rotZ": 179.997955, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149211, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 9.502267, "posY": 1.39697826, "posZ": 7.69766665, "rotX": -0.00125227508, "rotY": 180.002, "rotZ": 179.998978, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149210, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e6cb8", "Name": "Card", "Transform": { "posX": 9.952809, "posY": 1.432157, "posZ": 7.372876, "rotX": -0.0055431826, "rotY": 179.99527, "rotZ": 177.191, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149209, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "063ef8", "Name": "Card", "Transform": { "posX": 9.513436, "posY": 1.234423, "posZ": 7.59385, "rotX": -0.005263216, "rotY": 180.016327, "rotZ": 179.984177, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149208, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "0679c6", "Name": "Deck", "Transform": { "posX": -11.8399, "posY": 1.6678375, "posZ": 0.260200024, "rotX": 359.9201, "rotY": 269.987946, "rotZ": 0.0168845057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Instructions", "Description": "Knightfall", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 149217, 149215, 149216, 149214 ], "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "7656fa", "Name": "Card", "Transform": { "posX": 17.9038143, "posY": 1.03133559, "posZ": 0.391445935, "rotX": 359.9856, "rotY": 180.000259, "rotZ": -0.005329719, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149217, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c14553", "Name": "Card", "Transform": { "posX": 13.064106, "posY": 1.23198354, "posZ": -1.80206954, "rotX": 0.00889232848, "rotY": 180.007263, "rotZ": 359.9915, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 149215, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d7ee7c", "Name": "Card", "Transform": { "posX": -33.0467567, "posY": 1.52356279, "posZ": -67.84718, "rotX": 0.0155543918, "rotY": 269.99942, "rotZ": 0.0106164888, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 149216, "SidewaysCard": false, "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bffd20", "Name": "Card", "Transform": { "posX": -32.9317856, "posY": 1.50994432, "posZ": -67.616394, "rotX": 0.0200911555, "rotY": 270.000366, "rotZ": 0.0148652848, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 149214, "SidewaysCard": false, "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "bab1d6", "Name": "Card", "Transform": { "posX": -17.1199, "posY": 1.67990041, "posZ": -0.03000077, "rotX": 359.9201, "rotY": 269.996948, "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": 149221, "SidewaysCard": false, "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2d17c9", "Name": "Card", "Transform": { "posX": -23.6765, "posY": 1.6912812, "posZ": 7.569999, "rotX": 359.9201, "rotY": 269.99585, "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": 149223, "SidewaysCard": false, "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "245b8d", "Name": "Card", "Transform": { "posX": -23.6765, "posY": 1.68904316, "posZ": -0.0300004315, "rotX": 359.9201, "rotY": 269.9964, "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": 149218, "SidewaysCard": false, "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a68851", "Name": "Card", "Transform": { "posX": -23.6765, "posY": 1.68678463, "posZ": -7.70000029, "rotX": 359.9201, "rotY": 269.997131, "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": 149220, "SidewaysCard": false, "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "141409", "Name": "Card", "Transform": { "posX": -30.2241, "posY": 1.6981734, "posZ": -0.0300003849, "rotX": 359.9201, "rotY": 269.996277, "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": 149222, "SidewaysCard": false, "CustomDeck": { "1492": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "da3aed", "Name": "Card", "Transform": { "posX": -50.9244, "posY": 1.72662532, "posZ": 8.178401, "rotX": 359.920135, "rotY": 269.9855, "rotZ": 0.0168880522, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 149313, "SidewaysCard": false, "CustomDeck": { "1493": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "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 } } ] }