{ "GUID": "e7d9f8", "Name": "Custom_Model_Bag", "Transform": { "posX": 12.2497921, "posY": 1.46560562, "posZ": 3.986404, "rotX": 359.920135, "rotY": 270.0, "rotZ": 0.0168742184, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "Happy's Funhouse", "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/798737729142976303/C24C7169FD11E5D151DD2F754D5B9A5563D5DABB/", "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\":{\"13c965\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7504,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":269.9855,\"z\":180.0168}},\"1aa87a\":{\"lock\":false,\"pos\":{\"x\":-30.2245,\"y\":1.704,\"z\":7.5705},\"rot\":{\"x\":359.9201,\"y\":269.9915,\"z\":180.0169}},\"1c6049\":{\"lock\":false,\"pos\":{\"x\":-2.7315,\"y\":1.6551,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":269.9742,\"z\":0.0169}},\"1e99b2\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.6556,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9852,\"z\":0.0169}},\"3296c9\":{\"lock\":false,\"pos\":{\"x\":-2.689,\"y\":1.6535,\"z\":-5.0428},\"rot\":{\"x\":359.9197,\"y\":270.0282,\"z\":0.0168}},\"4e82c5\":{\"lock\":false,\"pos\":{\"x\":-36.7735,\"y\":1.7131,\"z\":7.5705},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":180.0169}},\"9b0cf5\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6799,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9857,\"z\":180.0169}},\"a45247\":{\"lock\":false,\"pos\":{\"x\":1.696,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":45,\"z\":0}},\"ab12bb\":{\"lock\":false,\"pos\":{\"x\":-50.9244,\"y\":1.7266,\"z\":8.1784},\"rot\":{\"x\":359.9201,\"y\":269.9852,\"z\":0.0169}},\"bdd422\":{\"lock\":false,\"pos\":{\"x\":-9.2986,\"y\":1.667,\"z\":0.0118},\"rot\":{\"x\":359.9202,\"y\":269.9846,\"z\":0.017}},\"c5008a\":{\"lock\":false,\"pos\":{\"x\":-3.5702,\"y\":1.5821,\"z\":-14.9068},\"rot\":{\"x\":359.9197,\"y\":270.0005,\"z\":0.0168}},\"fadb67\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6948,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "a45247", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69670081, "posY": 1.558316, "posZ": 14.2787027, "rotX": 359.955139, "rotY": 224.998, "rotZ": 0.06867172, "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": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "68a1f8", "Name": "Card", "Transform": { "posX": 13.0696993, "posY": 3.591219, "posZ": 2.80266762, "rotX": 359.9323, "rotY": 269.9998, "rotZ": 0.0143176205, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": 270100, "SidewaysCard": false, "CustomDeck": { "2701": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825556714/51998D15A0EF272358C74ED69AF1C2260FB32B4F/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1dddb9", "Name": "Card", "Transform": { "posX": 13.867506, "posY": 3.589995, "posZ": 2.20106888, "rotX": 359.916962, "rotY": 269.998383, "rotZ": 0.0175531749, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 270017, "SidewaysCard": false, "CustomDeck": { "2700": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "13c965", "Name": "DeckCustom", "Transform": { "posX": -3.92760015, "posY": 1.750392, "posZ": 5.757102, "rotX": 359.919739, "rotY": 269.985474, "rotZ": 180.016846, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter Deck", "Description": "Happy's Funhouse", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": [ 154001, 154002, 154003, 154004, 154005, 154006, 154007, 154008, 154009, 154010, 154011, 154012, 154013, 154014, 154015, 154016, 154017, 154018, 154019, 154020, 154021, 154022, 154023, 154024, 154025, 154026 ], "CustomDeck": { "1540": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825556714/51998D15A0EF272358C74ED69AF1C2260FB32B4F/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b5fe2f", "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": 154001, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154002, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154003, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154004, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154005, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154006, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154007, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154008, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154009, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154010, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154011, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154012, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154013, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154014, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154015, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154016, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154017, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154018, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154019, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154020, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154021, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154022, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154023, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154024, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154025, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] }, { "GUID": "b5fe2f", "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": 154026, "SidewaysCard": false, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [] } ] }, { "GUID": "1c6049", "Name": "Deck", "Transform": { "posX": -2.73150015, "posY": 1.65514791, "posZ": 0.373298973, "rotX": 359.919739, "rotY": 269.974243, "rotZ": 0.0168736316, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda", "Description": "Happy's Funhouse", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 153707, 153706, 153705, 153704 ], "CustomDeck": { "1537": { "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": -3.26724648, "posY": 1.23161888, "posZ": 8.57264, "rotX": -0.00465311669, "rotY": 180.000336, "rotZ": -0.0007952861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153707, "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": "a1c0b1", "Name": "Card", "Transform": { "posX": -3.24269962, "posY": 1.37643671, "posZ": 8.446169, "rotX": 0.00235895137, "rotY": 180.000519, "rotZ": -0.00356961763, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153706, "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": -3.79702878, "posY": 1.39407432, "posZ": 8.649096, "rotX": 0.0002758359, "rotY": 180.0007, "rotZ": -0.00256992481, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153705, "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": -3.31679249, "posY": 1.38041031, "posZ": 8.8138, "rotX": 6.06716776E-06, "rotY": 180.000519, "rotZ": -0.000798148743, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153704, "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": "3296c9", "Name": "Deck", "Transform": { "posX": -2.68900013, "posY": 1.65349686, "posZ": -5.042802, "rotX": 359.919739, "rotY": 270.0282, "rotZ": 0.0167980064, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act", "Description": "Happy's Funhouse", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 153803, 153802, 153801, 153800 ], "CustomDeck": { "1538": { "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": 2.8392837, "posY": 1.23164678, "posZ": 11.1393566, "rotX": -0.00347465184, "rotY": 180.000534, "rotZ": -0.000743432669, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153803, "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": "7f8143", "Name": "Card", "Transform": { "posX": 2.5813477, "posY": 1.37645555, "posZ": 11.2142544, "rotX": 0.000812233251, "rotY": 180.000641, "rotZ": 359.991241, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153802, "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": "e5fd3c", "Name": "Card", "Transform": { "posX": 2.57334137, "posY": 1.39415574, "posZ": 10.9466591, "rotX": -0.0008211257, "rotY": 180.000061, "rotZ": -0.000329672039, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153801, "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": 2.46786761, "posY": 1.38040578, "posZ": 10.9959927, "rotX": 0.000758922368, "rotY": 180.000626, "rotZ": -0.0007883478, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153800, "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": "1e99b2", "Name": "Card", "Transform": { "posX": -3.9560008, "posY": 1.65564823, "posZ": -10.4412031, "rotX": 359.919739, "rotY": 269.985168, "rotZ": 0.0168620478, "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": 153903, "SidewaysCard": false, "CustomDeck": { "1539": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c5008a", "Name": "Custom_Tile", "Transform": { "posX": -3.570201, "posY": 1.582082, "posZ": -14.9068, "rotX": 359.919739, "rotY": 270.000519, "rotZ": 0.0168372691, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "Happy's Funhouse", "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 = 'Happys Funhouse'\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": "bdd422", "Name": "Deck", "Transform": { "posX": -9.298597, "posY": 1.66704965, "posZ": 0.0117995562, "rotX": 359.920227, "rotY": 269.984558, "rotZ": 0.01699373, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Instructions", "Description": "Happy's Funhouse", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 153620, 153619, 153618, 153602, 153601, 153600 ], "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "dfbd0c", "Name": "Card", "Transform": { "posX": 17.4376011, "posY": 1.02964532, "posZ": 5.42971325, "rotX": 359.9891, "rotY": 180.0002, "rotZ": -0.004932539, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153620, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "323e17", "Name": "Card", "Transform": { "posX": 12.5546656, "posY": 1.23136067, "posZ": 0.8710348, "rotX": 359.993164, "rotY": 180.000214, "rotZ": -0.00341983582, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153619, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9e6b74", "Name": "Card", "Transform": { "posX": 8.137494, "posY": 1.23162949, "posZ": 0.8432793, "rotX": -0.00474672625, "rotY": 180.049454, "rotZ": -0.002445997, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153618, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "657352", "Name": "Card", "Transform": { "posX": -2.511689, "posY": 1.39675081, "posZ": 5.43458366, "rotX": 0.00208228454, "rotY": 179.998962, "rotZ": 180.003372, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 153602, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "43d78e", "Name": "Card", "Transform": { "posX": -9.497341, "posY": 1.77080476, "posZ": -3.09508967, "rotX": 359.9279, "rotY": 270.004547, "rotZ": 182.329422, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 153601, "SidewaysCard": false, "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "98055d", "Name": "Card", "Transform": { "posX": -9.57119, "posY": 1.6685667, "posZ": -2.93256664, "rotX": 359.911926, "rotY": 270.0197, "rotZ": 180.015427, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 153600, "SidewaysCard": false, "CustomDeck": { "1536": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "9b0cf5", "Name": "Card", "Transform": { "posX": -17.12, "posY": 1.67990065, "posZ": -0.0299994443, "rotX": 359.9201, "rotY": 269.985657, "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": 154304, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fadb67", "Name": "Deck", "Transform": { "posX": -23.6763, "posY": 1.69483376, "posZ": 7.570001, "rotX": 359.9201, "rotY": 270.000061, "rotZ": 180.016861, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locations", "Description": "Happy's Funhouse", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": [ 154308, 154307, 154306, 154305 ], "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "194f89", "Name": "Card", "Transform": { "posX": 10.7036066, "posY": 1.68676686, "posZ": 2.365189, "rotX": 359.6303, "rotY": 179.981415, "rotZ": 178.661987, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154308, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fc0f85", "Name": "Card", "Transform": { "posX": 11.197031, "posY": 1.55443442, "posZ": 2.13408065, "rotX": 359.661163, "rotY": 179.997253, "rotZ": 178.6604, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154307, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "551772", "Name": "Card", "Transform": { "posX": 11.7509, "posY": 1.40976083, "posZ": 2.67443728, "rotX": 359.604156, "rotY": 180.009964, "rotZ": 178.678741, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154306, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "92a944", "Name": "Card", "Transform": { "posX": 11.897294, "posY": 1.28428686, "posZ": 2.39171839, "rotX": 359.970764, "rotY": 180.010773, "rotZ": 179.964813, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "Hands": true, "CardID": 154305, "SidewaysCard": false, "CustomDeck": { "1132": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "1aa87a", "Name": "Deck", "Transform": { "posX": -30.2245, "posY": 1.703965, "posZ": 7.570501, "rotX": 359.9201, "rotY": 269.991455, "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": false, "SidewaysCard": false, "DeckIDs": [ 154309, 154310, 154311, 154312 ], "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "2cab54", "Name": "Card", "Transform": { "posX": -30.2224541, "posY": 1.80719554, "posZ": 7.569843, "rotX": 358.211578, "rotY": 269.991364, "rotZ": 180.014923, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 154309, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c42cf4", "Name": "Card", "Transform": { "posX": -30.2220078, "posY": 1.81998682, "posZ": 7.56980276, "rotX": 358.1897, "rotY": 269.989532, "rotZ": 180.015121, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 154310, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "67f858", "Name": "Card", "Transform": { "posX": -30.2222538, "posY": 1.80275667, "posZ": 7.569802, "rotX": 358.1914, "rotY": 269.988, "rotZ": 180.01474, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 154311, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1332c7", "Name": "Card", "Transform": { "posX": -30.2243252, "posY": 1.70037079, "posZ": 7.57018661, "rotX": 359.9206, "rotY": 269.9942, "rotZ": 180.017273, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 154312, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "4e82c5", "Name": "Deck", "Transform": { "posX": -36.7735, "posY": 1.7130971, "posZ": 7.570501, "rotX": 359.9201, "rotY": 269.992981, "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": false, "SidewaysCard": false, "DeckIDs": [ 154313, 154314, 154315, 154316 ], "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "6b161b", "Name": "Card", "Transform": { "posX": -36.7714043, "posY": 1.8161093, "posZ": 7.569843, "rotX": 358.205658, "rotY": 269.9914, "rotZ": 180.014908, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 154313, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fd8a48", "Name": "Card", "Transform": { "posX": -36.7714043, "posY": 1.82968819, "posZ": 7.56984329, "rotX": 358.203125, "rotY": 269.991333, "rotZ": 180.014938, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 154314, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bf7942", "Name": "Card", "Transform": { "posX": -36.77121, "posY": 1.81228554, "posZ": 7.56980276, "rotX": 358.202362, "rotY": 269.988037, "rotZ": 180.014771, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 154315, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2612cd", "Name": "Card", "Transform": { "posX": -36.77327, "posY": 1.70950282, "posZ": 7.570185, "rotX": 359.9206, "rotY": 269.9955, "rotZ": 180.017288, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "Description": "", "GMNotes": "", "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 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": 154316, "SidewaysCard": false, "CustomDeck": { "1543": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "ab12bb", "Name": "Card", "Transform": { "posX": -50.9244, "posY": 1.72662532, "posZ": 8.178398, "rotX": 359.920135, "rotY": 269.985229, "rotZ": 0.0168971121, "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": 153903, "SidewaysCard": false, "CustomDeck": { "1539": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/", "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 } } ] }