{ "GUID": "2f1101", "Name": "Custom_Model_Bag", "Transform": { "posX": 15.0352545, "posY": 1.4814992, "posZ": -12.8112144, "rotX": 2.20768811E-07, "rotY": 270.004883, "rotZ": -2.64313343E-07, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "The Strange Case of Dr. Jekyll and Mr. Hyde", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "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/1845919769156839538/7ED48DF559525AF388EDAABCDEED4EE9D25E872A/", "NormalURL": "", "ColliderURL": "", "Convex": true, "MaterialIndex": 3, "TypeIndex": 6, "CustomShader": { "SpecularColor": { "r": 1.0, "g": 1.0, "b": 1.0 }, "SpecularIntensity": 0.0, "SpecularSharpness": 2.0, "FresnelStrength": 0.0 }, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction 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 combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[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 moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\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 moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\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.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\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\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(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n 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=500, width=500,\r\n color=color,\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(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, 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, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == 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 theList[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 if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[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 moveList = {}\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\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\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 updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\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 moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\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\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\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 memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\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={0,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=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,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, smooth=false\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 yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\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\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\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\":{\"024508\":{\"lock\":false,\"pos\":{\"x\":-28.8626,\"y\":1.653,\"z\":-9.1556},\"rot\":{\"x\":359.92,\"y\":270.0022,\"z\":181.0828}},\"078f2c\":{\"lock\":false,\"pos\":{\"x\":-23.6763,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":0.0173,\"y\":179.6544,\"z\":0.0798}},\"269309\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.635,\"z\":-7.7001},\"rot\":{\"x\":359.92,\"y\":269.9929,\"z\":180.0166}},\"3227a4\":{\"lock\":false,\"pos\":{\"x\":-26.8567,\"y\":1.6167,\"z\":-7.6324},\"rot\":{\"x\":359.9201,\"y\":270.0099,\"z\":0.0169}},\"32b4d2\":{\"lock\":false,\"pos\":{\"x\":-36.7727,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":0.0169,\"y\":179.9977,\"z\":0.0793}},\"383831\":{\"lock\":false,\"pos\":{\"x\":-26.8033,\"y\":1.6188,\"z\":-0.1282},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"3d5164\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0168}},\"4b8bb9\":{\"lock\":false,\"pos\":{\"x\":-0.0159,\"y\":1.6265,\"z\":-16.7635},\"rot\":{\"x\":359.9197,\"y\":270.0023,\"z\":0.0168}},\"4cdfa9\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"53fe8a\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0169,\"y\":179.9868,\"z\":0.0803}},\"543b4a\":{\"lock\":false,\"pos\":{\"x\":-30.2239,\"y\":1.6533,\"z\":-0.0299},\"rot\":{\"x\":359.9205,\"y\":269.9981,\"z\":179.1735}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-33.1594,\"y\":1.6265,\"z\":-4.1167},\"rot\":{\"x\":359.9201,\"y\":270.0099,\"z\":0.0168}},\"600618\":{\"lock\":false,\"pos\":{\"x\":-9.2628,\"y\":1.6093,\"z\":4.5256},\"rot\":{\"x\":359.9217,\"y\":270.0335,\"z\":0.0169}},\"6dc5d4\":{\"lock\":false,\"pos\":{\"x\":-30.2238,\"y\":1.6247,\"z\":3.8614},\"rot\":{\"x\":0.0169,\"y\":179.9879,\"z\":0.0799}},\"6ff6ed\":{\"lock\":false,\"pos\":{\"x\":-36.7729,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0165,\"y\":180.2679,\"z\":0.08}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.0638,\"y\":1.6275,\"z\":-0.1187},\"rot\":{\"x\":359.9201,\"y\":270.0089,\"z\":0.0169}},\"75fef9\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0007,\"z\":180.0168}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.7036,\"y\":1.5583,\"z\":14.2866},\"rot\":{\"x\":359.9555,\"y\":224.7286,\"z\":0.0689}},\"7c7d59\":{\"lock\":false,\"pos\":{\"x\":-9.1864,\"y\":1.6078,\"z\":-0.3787},\"rot\":{\"x\":359.9208,\"y\":269.9886,\"z\":0.0173}},\"86aaf9\":{\"lock\":false,\"pos\":{\"x\":-33.3449,\"y\":1.6302,\"z\":7.631},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0169}},\"8b1dc6\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.599,\"z\":0.3734},\"rot\":{\"x\":0.0168,\"y\":180.0033,\"z\":0.0803}},\"8cf73d\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.7636,\"z\":5.7573},\"rot\":{\"x\":359.9197,\"y\":269.9713,\"z\":180.0169}},\"8f9081\":{\"lock\":false,\"pos\":{\"x\":-9.1522,\"y\":1.6063,\"z\":-5.0856},\"rot\":{\"x\":359.9218,\"y\":270.0312,\"z\":0.0168}},\"98a0d1\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":180.0168}},\"a4727b\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.0301},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"a68940\":{\"lock\":false,\"pos\":{\"x\":-33.3986,\"y\":1.6291,\"z\":3.615},\"rot\":{\"x\":359.9555,\"y\":224.9258,\"z\":0.0684}},\"b18436\":{\"lock\":false,\"pos\":{\"x\":-35.1992,\"y\":1.696,\"z\":-1.7658},\"rot\":{\"x\":358.925,\"y\":270.0078,\"z\":178.6654}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.6978,\"y\":1.5824,\"z\":-14.341},\"rot\":{\"x\":359.9197,\"y\":269.9741,\"z\":0.0169}},\"bee2e6\":{\"lock\":false,\"pos\":{\"x\":-33.2319,\"y\":1.6255,\"z\":-7.6765},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"c02930\":{\"lock\":false,\"pos\":{\"x\":-3.9561,\"y\":1.5975,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":270.0294,\"z\":0.0168}},\"c6ea29\":{\"lock\":false,\"pos\":{\"x\":-30.224,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180.0216,\"z\":0.0799}},\"d0abad\":{\"lock\":false,\"pos\":{\"x\":-26.6604,\"y\":1.6174,\"z\":-4.1256},\"rot\":{\"x\":359.9554,\"y\":224.9934,\"z\":0.0684}},\"da0979\":{\"lock\":false,\"pos\":{\"x\":-27.8043,\"y\":1.6494,\"z\":-1.8588},\"rot\":{\"x\":359.92,\"y\":270.0262,\"z\":0.8627}},\"e4fcbc\":{\"lock\":false,\"pos\":{\"x\":-27.9885,\"y\":1.6546,\"z\":6.6294},\"rot\":{\"x\":359.2249,\"y\":269.9977,\"z\":180.0169}},\"ec96e5\":{\"lock\":false,\"pos\":{\"x\":-9.2495,\"y\":1.6086,\"z\":2.0614},\"rot\":{\"x\":359.9217,\"y\":270.0346,\"z\":0.0169}},\"f1f60e\":{\"lock\":false,\"pos\":{\"x\":-21.0557,\"y\":1.6397,\"z\":-1.6467},\"rot\":{\"x\":359.3288,\"y\":270.0027,\"z\":180.0169}},\"f6f6c2\":{\"lock\":false,\"pos\":{\"x\":-9.1373,\"y\":1.607,\"z\":-2.6686},\"rot\":{\"x\":359.9218,\"y\":270.0311,\"z\":0.0168}},\"fd77b1\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6281,\"z\":-0.0299},\"rot\":{\"x\":359.9201,\"y\":270.0011,\"z\":180.0165}},\"ff1ffa\":{\"lock\":false,\"pos\":{\"x\":-35.2578,\"y\":1.6569,\"z\":-9.6213},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":180.8269}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "024508", "Name": "Card", "Transform": { "posX": -28.8626671, "posY": 1.553957, "posZ": -9.15559, "rotX": -7.096994E-05, "rotY": 270.002136, "rotZ": 181.0662, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Drugstore", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"bf7af288-ba7f-4019-9e29-53e0ff5c44af\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"CrossAlt\",\"connections\":\"SquareAlt|DoubleSlashAlt|TriangleAlt|DiamondAlt|CircleAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"CrossAlt\",\"connections\":\"SquareAlt|DoubleSlashAlt|TriangleAlt|DiamondAlt|CircleAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267309, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503703929/0531A0107BF768AF7C6513CA09BC25F92E0F917D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "269309", "Name": "Card", "Transform": { "posX": -30.22434, "posY": 1.53361094, "posZ": -7.700089, "rotX": -4.067728E-05, "rotY": 269.99295, "rotZ": 179.999619, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Drugstore", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"583c207a-f00b-40b8-9048-eb732ee91a9c\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"CrossAlt\",\"connections\":\"SquareAlt|DoubleSlashAlt|TriangleAlt|DiamondAlt|CircleAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"CrossAlt\",\"connections\":\"SquareAlt|DoubleSlashAlt|TriangleAlt|DiamondAlt|CircleAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267308, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503703929/0531A0107BF768AF7C6513CA09BC25F92E0F917D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3d5164", "Name": "Card", "Transform": { "posX": -36.7732658, "posY": 1.53360486, "posZ": 7.57001448, "rotX": -3.7979877E-08, "rotY": 270.000549, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abandoned Factory", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"49dfbb40-3275-4a7f-99b3-c38bdd962131\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"HourglassAlt\",\"connections\":\"HeartAlt|DiamondAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"HourglassAlt\",\"connections\":\"HeartAlt|DiamondAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267112, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4cdfa9", "Name": "Card", "Transform": { "posX": -23.676651, "posY": 1.53360486, "posZ": -7.699991, "rotX": -8.00127253E-09, "rotY": 270.000122, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Trainyard", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"02f687f3-f417-43f5-a983-4271515b26a2\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"DoubleSlashAlt\",\"connections\":\"CircleAlt|CrossAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"DoubleSlashAlt\",\"connections\":\"CircleAlt|CrossAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267100, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "53fe8a", "Name": "Deck", "Transform": { "posX": -2.68865085, "posY": 1.61837292, "posZ": -5.04849052, "rotX": -3.881794E-08, "rotY": 179.986816, "rotZ": 2.58036863E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": true, "DeckIDs": [ 267000, 267001, 267002 ], "CustomDeck": { "2670": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303742/2CD0214B5025430FE008533B509253109B279786/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303952/89740A1342E77C81E5D663E1F6B61F08EC6F68B0/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9676df", "Name": "Card", "Transform": { "posX": -5.208849, "posY": 1.49091458, "posZ": -38.06032, "rotX": 0.01930615, "rotY": 179.975616, "rotZ": 0.06320818, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 3 - Taste of Your Own Medicine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"543c2c19-3ae4-4dc0-b7ff-0d21a909858b\",\"type\":\"Act\",\"class\":\"Mythos\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267000, "SidewaysCard": true, "CustomDeck": { "2670": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303742/2CD0214B5025430FE008533B509253109B279786/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303952/89740A1342E77C81E5D663E1F6B61F08EC6F68B0/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "594639", "Name": "Card", "Transform": { "posX": -4.85624743, "posY": 1.52608192, "posZ": -38.144886, "rotX": 0.09270294, "rotY": 180.0071, "rotZ": 0.0163675286, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 2 - Essential Materials", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9765d68b-597c-48c8-b873-a8344b6659d9\",\"type\":\"Act\",\"class\":\"Mythos\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267001, "SidewaysCard": true, "CustomDeck": { "2670": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303742/2CD0214B5025430FE008533B509253109B279786/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303952/89740A1342E77C81E5D663E1F6B61F08EC6F68B0/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "aca489", "Name": "Card", "Transform": { "posX": -5.380008, "posY": 1.56746316, "posZ": -37.80103, "rotX": 0.01719786, "rotY": 180.0, "rotZ": 0.07955617, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1 - The Madman's Notebook", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9b94755e-41a2-4675-8027-1fce91095a0b\",\"type\":\"Act\",\"class\":\"Mythos\",\"clueThresholdPerInvestigator\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267002, "SidewaysCard": true, "CustomDeck": { "2670": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303742/2CD0214B5025430FE008533B509253109B279786/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303952/89740A1342E77C81E5D663E1F6B61F08EC6F68B0/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "543b4a", "Name": "Card", "Transform": { "posX": -30.2242947, "posY": 1.53360975, "posZ": -0.0297475625, "rotX": 2.75616621E-05, "rotY": 269.993225, "rotZ": 179.9994, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Northside Plaza", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b2038031-73b2-4e7d-9b96-2a39b27964d6\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"SquareAlt\",\"connections\":\"CircleAlt|CrossAlt|TriangleAlt|DiamondAlt|HeartAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"count\":0}],\"victory\":1},\"locationBack\":{\"icons\":\"SquareAlt\",\"connections\":\"CircleAlt|CrossAlt|TriangleAlt|DiamondAlt|HeartAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267103, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "600618", "Name": "Card", "Transform": { "posX": -9.262901, "posY": 1.56593764, "posZ": 4.52576351, "rotX": 1.20901692, "rotY": 270.0329, "rotZ": 0.000649706344, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guide 1 (Intro)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"211fa14c-3f2f-40f5-981a-2f258cc8ca38\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267119, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "75fef9", "Name": "Card", "Transform": { "posX": -36.7733574, "posY": 1.53360641, "posZ": -7.69999266, "rotX": -1.0944108E-05, "rotY": 270.000732, "rotZ": 179.9999, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Imports Office", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d7d49fe3-bc1c-4797-9287-d9d9cfd90be4\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"TriangleAlt\",\"connections\":\"SquareAlt|CrossAlt|DiamondAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"TriangleAlt\",\"connections\":\"SquareAlt|CrossAlt|DiamondAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267304, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503703929/0531A0107BF768AF7C6513CA09BC25F92E0F917D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7a167a", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.70363688, "posY": 1.55803657, "posZ": 14.2865963, "rotX": -6.270278E-07, "rotY": 224.728592, "rotZ": 1.33946151E-06, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "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 }, "Bag": { "Order": 0 }, "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": "fcae6d", "Name": "CardCustom", "Transform": { "posX": 1.69642127, "posY": 3.67030787, "posZ": 14.2788363, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.0582096279, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fundamental Formula", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"71822f78-5d77-4c75-a334-868df0b2f7ea\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Science\",\"wildIcons\":2,\"cost\":1}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard", "Asset" ], "LayoutGroupSortIndex": 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": 266500, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1845919769156843959/78328379C7426AEB269D60D8CABC37BEECCE9403/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "87e6a3", "Name": "CardCustom", "Transform": { "posX": 3.69088912, "posY": 3.34035277, "posZ": -50.20236, "rotX": 0.000451699627, "rotY": 270.007965, "rotZ": 358.256, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Your Other Half", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"51a80521-d9ba-441a-a866-e82cdb8eb444\",\"type\":\"Investigator\",\"traits\":\"Lunatic\",\"agilityIcons\":4,\"combatIcons\":4,\"intellectIcons\":4,\"willpowerIcons\":4,\"id\":\"Z8467\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Investigator", "PlayerCard" ], "LayoutGroupSortIndex": 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": 267800, "SidewaysCard": false, "CustomDeck": { "2678": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1768249797469902089/CF559B2E97F7D4D8D5E694DBE633750B61EDA3E8/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1768249797469895813/8CA9EB03C8678547781E5D15403C264DA9587847/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "534991", "Name": "CardCustom", "Transform": { "posX": 29.60233, "posY": 8.500653, "posZ": -28.0992622, "rotX": 359.955444, "rotY": 224.998138, "rotZ": 0.06841188, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Duplicitous Drug", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a541334b-e5a6-42fb-bf79-a49c6790feb2\",\"type\":\"Asset\",\"uses\":[{\"count\":3,\"token\":\"resource\",\"type\":\"Doses\"}],\"class\":\"Neutral\",\"traits\":\"Item. Science\",\"wildIcons\":2,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard", "Asset" ], "LayoutGroupSortIndex": 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": 267800, "SidewaysCard": false, "CustomDeck": { "2678": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1768249797469907139/0056520F2D41B677E22A8483CE5764BF946EF340/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bfe77f", "Name": "Card", "Transform": { "posX": 14.560956, "posY": 2.33961082, "posZ": -60.37434, "rotX": 359.9201, "rotY": 270.03363, "rotZ": 0.01682607, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Adapted Formula", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c4526a6e-9922-4fa6-a7a2-5882396e0ce1\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267113, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7c7d59", "Name": "Card", "Transform": { "posX": -9.186505, "posY": 1.56678259, "posZ": -0.3785615, "rotX": 1.24082649, "rotY": 269.988373, "rotZ": -0.000243062284, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guide 3 (Story and Setup)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"92d27359-4b32-4aef-85bd-2b72759094b6\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267317, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503703929/0531A0107BF768AF7C6513CA09BC25F92E0F917D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b1dc6", "Name": "Card", "Transform": { "posX": -2.72472262, "posY": 1.59660506, "posZ": 0.37340492, "rotX": -3.360238E-08, "rotY": 180.0033, "rotZ": 3.894017E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 1 - The Duality of Man", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f73634b8-0b02-4d4a-a5ef-752ac3c86f15\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267003, "SidewaysCard": true, "CustomDeck": { "2670": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303742/2CD0214B5025430FE008533B509253109B279786/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553303952/89740A1342E77C81E5D663E1F6B61F08EC6F68B0/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8cf73d", "Name": "Deck", "Transform": { "posX": -3.92815328, "posY": 1.75798, "posZ": 5.757355, "rotX": 1.33621185E-07, "rotY": 269.971375, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 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": [ 274500, 274501, 274502, 274603, 274604, 274505, 274506, 274507, 274508, 274509, 274510, 274511, 274512, 274513, 274514, 274515, 274516, 274517, 274518, 274519, 274520, 274521, 274522, 274523, 274524, 274525, 274626, 274627, 274629, 274628, 274530, 274531 ], "CustomDeck": { "2745": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2746": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503706232/00E0A8A91526A665DAE4FF3B37311B2A7B67F1E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "24ff89", "Name": "Card", "Transform": { "posX": -12.7016878, "posY": 1.67842507, "posZ": -48.02544, "rotX": 0.014714282, "rotY": 269.999817, "rotZ": 179.778442, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Surging Flesh", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6f20de64-bb4b-495f-a514-131682d5306e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274500, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1c7b5d", "Name": "Card", "Transform": { "posX": -12.3978491, "posY": 1.67292941, "posZ": -48.3286743, "rotX": 0.0124922963, "rotY": 270.0003, "rotZ": 179.577576, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Surging Flesh", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6f20de64-bb4b-495f-a514-131682d5306e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274501, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b1d772", "Name": "Card", "Transform": { "posX": -12.6039934, "posY": 1.6576792, "posZ": -47.9983444, "rotX": 0.0121936956, "rotY": 270.000031, "rotZ": 179.879776, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Surging Flesh", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6f20de64-bb4b-495f-a514-131682d5306e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274502, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8f0746", "Name": "Card", "Transform": { "posX": 9.25252151, "posY": 2.35992742, "posZ": -65.78196, "rotX": 5.34142127E-05, "rotY": 270.003723, "rotZ": 358.639435, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Supply and Demand", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8a70b416-76e5-491e-917a-17e895f68710\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274603, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503706232/00E0A8A91526A665DAE4FF3B37311B2A7B67F1E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c08066", "Name": "Card", "Transform": { "posX": 8.431595, "posY": 2.33403373, "posZ": -62.87646, "rotX": -3.310279E-05, "rotY": 270.000427, "rotZ": -6.815217E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Supply and Demand", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8a70b416-76e5-491e-917a-17e895f68710\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274604, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503706232/00E0A8A91526A665DAE4FF3B37311B2A7B67F1E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "791412", "Name": "Card", "Transform": { "posX": -12.561142, "posY": 1.62901747, "posZ": -47.8150024, "rotX": 0.0121288188, "rotY": 270.000031, "rotZ": 179.879623, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Servant of Yog-Sothoth", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c9e75704-d12b-4e3a-b97b-d5dfbb1153c6\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Sorcerer\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274505, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "08405b", "Name": "Card", "Transform": { "posX": -12.7380047, "posY": 1.63834763, "posZ": -47.7058678, "rotX": 0.00713914866, "rotY": 269.999878, "rotZ": 178.795456, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Servant of Yog-Sothoth", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c9e75704-d12b-4e3a-b97b-d5dfbb1153c6\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Sorcerer\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274506, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "57d8f8", "Name": "Card", "Transform": { "posX": -12.4186382, "posY": 1.62894261, "posZ": -48.0577278, "rotX": 0.006510024, "rotY": 269.999939, "rotZ": 179.191589, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Servant of Yog-Sothoth", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c9e75704-d12b-4e3a-b97b-d5dfbb1153c6\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Sorcerer\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274507, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "56ff2c", "Name": "Card", "Transform": { "posX": -12.6734324, "posY": 1.5906682, "posZ": -48.0695343, "rotX": 0.0115712313, "rotY": 270.01593, "rotZ": 180.103271, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Profane Sculptor", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5621b900-897c-4469-b529-56590e261666\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Sorcerer\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274508, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7a0b56", "Name": "Card", "Transform": { "posX": -12.4193783, "posY": 1.60625517, "posZ": -48.22917, "rotX": 0.012539614, "rotY": 270.000183, "rotZ": 180.872177, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Profane Sculptor", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5621b900-897c-4469-b529-56590e261666\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Sorcerer\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274509, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3b315a", "Name": "Card", "Transform": { "posX": -12.742836, "posY": 1.59338522, "posZ": -48.3837242, "rotX": 0.0124958847, "rotY": 270.000336, "rotZ": 179.230545, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Misshapen Beast", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4f9710b2-9ac6-4b4c-9578-896308120b68\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Monster. Abomination\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274510, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1f2345", "Name": "Card", "Transform": { "posX": -12.67809, "posY": 1.56215489, "posZ": -47.87792, "rotX": 0.0142233558, "rotY": 270.0019, "rotZ": 179.841843, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Misshapen Beast", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4f9710b2-9ac6-4b4c-9578-896308120b68\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Monster. Abomination\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274511, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0cd9d6", "Name": "Card", "Transform": { "posX": -12.4224949, "posY": 1.57858062, "posZ": -48.411, "rotX": 0.0124920961, "rotY": 270.000336, "rotZ": 179.049957, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mark of the Gate", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d7bcfc2d-18f1-447d-a87a-cfd12a46f2d6\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274512, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b859dc", "Name": "Card", "Transform": { "posX": -12.6783819, "posY": 1.55097973, "posZ": -48.0151558, "rotX": 0.01306176, "rotY": 270.000031, "rotZ": 179.956909, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mark of the Gate", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d7bcfc2d-18f1-447d-a87a-cfd12a46f2d6\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274513, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6b6602", "Name": "Card", "Transform": { "posX": -12.483779, "posY": 1.56261575, "posZ": -47.8628731, "rotX": 0.0125094382, "rotY": 269.999817, "rotZ": 178.81842, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mark of the Gate", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d7bcfc2d-18f1-447d-a87a-cfd12a46f2d6\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274514, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "245e0f", "Name": "Card", "Transform": { "posX": -12.3421936, "posY": 1.53160846, "posZ": -48.10068, "rotX": 0.0122384569, "rotY": 270.000031, "rotZ": 179.991135, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fleshy Creation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"790ad48a-3a11-4562-8d73-cbad6af46abf\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Abomination\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274515, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "79fbe7", "Name": "Card", "Transform": { "posX": -12.6505575, "posY": 1.52618265, "posZ": -48.5164642, "rotX": 0.0124929762, "rotY": 270.000275, "rotZ": 179.689926, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fleshy Creation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"790ad48a-3a11-4562-8d73-cbad6af46abf\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Abomination\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274516, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bcb267", "Name": "Card", "Transform": { "posX": -12.4071646, "posY": 1.53049326, "posZ": -47.7699356, "rotX": 0.0125162154, "rotY": 269.999817, "rotZ": 178.792328, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fleshy Creation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"790ad48a-3a11-4562-8d73-cbad6af46abf\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Abomination\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274517, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cab218", "Name": "Card", "Transform": { "posX": -12.5617056, "posY": 1.52435434, "posZ": -47.9717979, "rotX": 0.0125086382, "rotY": 269.999817, "rotZ": 178.90213, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Festering Evil", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"fb6d2388-65ac-4b6e-965f-b2c841f4a7e2\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274518, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7c5946", "Name": "Card", "Transform": { "posX": -12.3586845, "posY": 1.49417043, "posZ": -48.06985, "rotX": 0.0119950967, "rotY": 270.0, "rotZ": 179.897171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Festering Evil", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"fb6d2388-65ac-4b6e-965f-b2c841f4a7e2\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274519, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "43c990", "Name": "Card", "Transform": { "posX": -12.3333492, "posY": 1.50143325, "posZ": -47.68814, "rotX": 0.0125074107, "rotY": 269.999817, "rotZ": 178.70639, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Enthralling Interference", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40fa256-4e10-40b8-a7b6-af028eabfffe\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274520, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2c1ec6", "Name": "Card", "Transform": { "posX": -12.5158386, "posY": 1.4747535, "posZ": -47.8126, "rotX": 0.0119531518, "rotY": 270.0, "rotZ": 179.896988, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Enthralling Interference", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40fa256-4e10-40b8-a7b6-af028eabfffe\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274521, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6fb0d0", "Name": "Card", "Transform": { "posX": -12.7855015, "posY": 1.48120213, "posZ": -48.0715866, "rotX": 0.0125050629, "rotY": 269.999756, "rotZ": 180.8058, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Enthralling Interference", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40fa256-4e10-40b8-a7b6-af028eabfffe\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274522, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3f6c5a", "Name": "Card", "Transform": { "posX": -12.7160435, "posY": 1.4571625, "posZ": -48.0389061, "rotX": 0.0110987378, "rotY": 270.000061, "rotZ": 179.779739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Creeping Growth", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3b4d087d-6bf8-474a-8e02-980c8b0ced3f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274523, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8d0a75", "Name": "Card", "Transform": { "posX": -12.6157379, "posY": 1.44526982, "posZ": -47.9619026, "rotX": 0.0119531043, "rotY": 270.000031, "rotZ": 179.928162, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Creeping Growth", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3b4d087d-6bf8-474a-8e02-980c8b0ced3f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274524, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4e8ae1", "Name": "Card", "Transform": { "posX": -12.4796705, "posY": 1.4466511, "posZ": -48.1464272, "rotX": 0.0124841454, "rotY": 270.000336, "rotZ": 179.3442, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Creeping Growth", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3b4d087d-6bf8-474a-8e02-980c8b0ced3f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274525, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "db75f0", "Name": "Card", "Transform": { "posX": -8.284897, "posY": 3.027843, "posZ": -59.717083, "rotX": 0.02080867, "rotY": 270.000519, "rotZ": 0.0167713966, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Chemical Spill", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c8582cc6-7fb5-43b1-854e-39866f5ea4fa\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274626, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503706232/00E0A8A91526A665DAE4FF3B37311B2A7B67F1E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f5d121", "Name": "Card", "Transform": { "posX": -8.808979, "posY": 3.02779531, "posZ": -59.3767662, "rotX": 0.0208086465, "rotY": 270.000458, "rotZ": 0.01677129, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Chemical Spill", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c8582cc6-7fb5-43b1-854e-39866f5ea4fa\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274627, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503706232/00E0A8A91526A665DAE4FF3B37311B2A7B67F1E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "828489", "Name": "Card", "Transform": { "posX": -11.4881372, "posY": 3.0285852, "posZ": -55.31878, "rotX": 0.02077232, "rotY": 270.004272, "rotZ": 0.0168004129, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brutish Cry", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ef07d093-9597-4ba6-a550-f0080e6d42bb\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274629, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503706232/00E0A8A91526A665DAE4FF3B37311B2A7B67F1E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "374218", "Name": "Card", "Transform": { "posX": -10.5895643, "posY": 3.02886, "posZ": -55.0352135, "rotX": 0.0212103929, "rotY": 270.0009, "rotZ": 0.0178126283, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Brutish Cry", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ef07d093-9597-4ba6-a550-f0080e6d42bb\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274628, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503706232/00E0A8A91526A665DAE4FF3B37311B2A7B67F1E5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4cb4d0", "Name": "Card", "Transform": { "posX": -12.8136654, "posY": 1.363558, "posZ": -48.0771751, "rotX": 0.0167021714, "rotY": 270.0, "rotZ": 179.898254, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Aggressive Mutation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"67c7f79f-3084-448b-b868-461ebed35cf8\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274530, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "55ee18", "Name": "Card", "Transform": { "posX": -12.6192379, "posY": 1.32074249, "posZ": -48.09496, "rotX": 0.0210061427, "rotY": 269.999756, "rotZ": 180.018173, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Aggressive Mutation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"67c7f79f-3084-448b-b868-461ebed35cf8\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 274531, "SidewaysCard": false, "CustomDeck": { "2672": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553316852/6178997CE9A98943F1251C49188A167D2DE378B0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 8, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8f9081", "Name": "Card", "Transform": { "posX": -9.152297, "posY": 1.56717312, "posZ": -5.085513, "rotX": 1.25561035, "rotY": 270.030975, "rotZ": 0.000766606, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guide 5 (Resolution 2)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ccb4f7c0-3f90-4e1e-bdda-59a6ce3c154a\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267115, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "98a0d1", "Name": "Card", "Transform": { "posX": -30.2243481, "posY": 1.53360581, "posZ": 7.570013, "rotX": 1.27388125E-06, "rotY": 269.999634, "rotZ": 179.999969, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Chemical Firm", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"65ecb46b-3e8c-4bf5-acb6-12bef258d0d2\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"HeartAlt\",\"connections\":\"SquareAlt|HourglassAlt|DiamondAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"HeartAlt\",\"connections\":\"SquareAlt|HourglassAlt|DiamondAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267111, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a4727b", "Name": "Card", "Transform": { "posX": -36.7732468, "posY": 1.53360975, "posZ": -0.03019699, "rotX": 9.182006E-05, "rotY": 269.998566, "rotZ": 179.999908, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Etchers' Shop", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1cbbcc30-a6fe-40eb-999e-16f2b21f9d8e\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"DiamondAlt\",\"connections\":\"SquareAlt|CrossAlt|TriangleAlt|HourglassAlt|HeartAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"DiamondAlt\",\"connections\":\"SquareAlt|CrossAlt|TriangleAlt|HourglassAlt|HeartAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267107, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b18436", "Name": "Card", "Transform": { "posX": -35.2000427, "posY": 1.55070388, "posZ": -1.76652312, "rotX": -0.000397058117, "rotY": 269.9986, "rotZ": 180.895233, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Etchers' Shop", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0b4c4c4e-aafb-46d2-a4ed-fd847fed276c\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"DiamondAlt\",\"connections\":\"SquareAlt|CrossAlt|TriangleAlt|HourglassAlt|HeartAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"DiamondAlt\",\"connections\":\"SquareAlt|CrossAlt|TriangleAlt|HourglassAlt|HeartAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267106, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bbb70a", "Name": "Custom_Tile", "Transform": { "posX": -3.697799, "posY": 1.58300042, "posZ": -14.3410034, "rotX": -4.4210978E-07, "rotY": 269.97406, "rotZ": 4.637086E-07, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "The Strange Case of Dr. Jekyll and Mr. Hyde", "Description": "click to set chaos token difficulty", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'Sleepy Hollow'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\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\r\n", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c02930", "Name": "Card", "Transform": { "posX": -3.956121, "posY": 1.59660506, "posZ": -10.4413977, "rotX": -3.46638416E-07, "rotY": 270.029358, "rotZ": 3.804388E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario", "Description": "Dr. Jekyll and Mr. Hyde", "GMNotes": "{\"TtsZoopGuid\":\"02322dfb-f549-478b-b1bd-2efb14f58541\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267120, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "da0979", "Name": "Card", "Transform": { "posX": -27.8045273, "posY": 1.54974258, "posZ": -1.85866785, "rotX": -0.000163417615, "rotY": 270.0197, "rotZ": 0.8461335, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Henry Jekyll / Edward Hyde", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d36e516d-8363-429f-9cec-f1922311ad5b\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Medic\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 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": 267114, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e4fcbc", "Name": "Card", "Transform": { "posX": -27.9885674, "posY": 1.55218267, "posZ": 6.629416, "rotX": 359.304779, "rotY": 269.997925, "rotZ": 180.000015, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Chemical Firm", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ca3979e1-04f9-47e9-942e-0c7ce0b5f19a\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"HeartAlt\",\"connections\":\"SquareAlt|HourglassAlt|DiamondAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"HeartAlt\",\"connections\":\"SquareAlt|HourglassAlt|DiamondAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267110, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ec96e5", "Name": "Card", "Transform": { "posX": -9.249598, "posY": 1.56608057, "posZ": 2.06155062, "rotX": 1.21443927, "rotY": 270.0341, "rotZ": 0.000681197562, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guide 2 (Chaos Bag and Rules)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"47812689-81ae-4b4b-9a97-76547754e82d\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267118, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f1f60e", "Name": "Card", "Transform": { "posX": -21.05577, "posY": 1.54940641, "posZ": -1.64668512, "rotX": 359.408661, "rotY": 270.00293, "rotZ": 180.000076, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tannery", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e4f16685-de8f-461f-a97f-0520ccb81a02\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"CircleAlt\",\"connections\":\"SquareAlt|DoubleSlashAlt|CrossAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"CircleAlt\",\"connections\":\"SquareAlt|DoubleSlashAlt|CrossAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267101, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f6f6c2", "Name": "Card", "Transform": { "posX": -9.137408, "posY": 1.56735039, "posZ": -2.66847539, "rotX": 1.262109, "rotY": 270.0312, "rotZ": 0.000678380951, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Guide 4 (Locations and Resolution 1)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"085ed06e-35c3-49aa-9c9f-e82ae9a42a97\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267116, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fd77b1", "Name": "Card", "Transform": { "posX": -23.6766548, "posY": 1.53360987, "posZ": -0.0298848, "rotX": -3.17384765E-05, "rotY": 270.001282, "rotZ": 179.9997, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tannery", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ce353beb-1cda-453e-9d5b-14c4759c11ff\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"CircleAlt\",\"connections\":\"SquareAlt|DoubleSlashAlt|CrossAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"CircleAlt\",\"connections\":\"SquareAlt|DoubleSlashAlt|CrossAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267102, "SidewaysCard": false, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314332/7AF72A4AA1B6290C377B2612020F902B86E16050/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ff1ffa", "Name": "Card", "Transform": { "posX": -35.2578735, "posY": 1.54907572, "posZ": -9.621287, "rotX": -3.58584948E-05, "rotY": 269.999542, "rotZ": 180.810471, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Imports Office", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b53e6dd2-55d6-4071-8788-482a3b3ef64c\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Northside\",\"locationFront\":{\"icons\":\"TriangleAlt\",\"connections\":\"SquareAlt|CrossAlt|DiamondAlt\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"TriangleAlt\",\"connections\":\"SquareAlt|CrossAlt|DiamondAlt\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Location", "ScenarioCard" ], "LayoutGroupSortIndex": 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": 267305, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870695908503703929/0531A0107BF768AF7C6513CA09BC25F92E0F917D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1844794502553314859/BA98B1175611A8697FD0EA1AAF5A833371EE182F/", "NumWidth": 7, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }