{ "GUID": "d02940", "Name": "Custom_Model_Bag", "Transform": { "posX": 12.25, "posY": 1.481499, "posZ": -36.014, "rotX": -2.41807481E-08, "rotY": 270.0045, "rotZ": 3.95005735E-08, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "The Meddling of Meowlathotep", "Description": "Barkham Horror", "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/2038486699957629839/74B187339172F55B05CD212F214F5D31B117FDF0/", "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\":{\"041012\":{\"lock\":false,\"pos\":{\"x\":12.2521696090698,\"y\":1.4815628528595,\"z\":11.9863443374634},\"rot\":{\"x\":359.920135498047,\"y\":269.999877929688,\"z\":0.016872700303793}},\"0646bf\":{\"lock\":false,\"pos\":{\"x\":-3.92764782905579,\"y\":1.74437856674194,\"z\":5.75713777542114},\"rot\":{\"x\":359.919738769531,\"y\":270.000030517578,\"z\":180.016815185547}},\"070a78\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.49000000953674,\"z\":-0.0799999982118607},\"rot\":{\"x\":359.920013427734,\"y\":270.000183105469,\"z\":0.0168723799288273}},\"0bd409\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.48540902137756,\"z\":-16.0799999237061},\"rot\":{\"x\":359.920135498047,\"y\":270.000305175781,\"z\":0.0168718285858631}},\"0c97f0\":{\"lock\":false,\"pos\":{\"x\":12.2700033187866,\"y\":1.48269641399384,\"z\":15.9200010299683},\"rot\":{\"x\":0.0168714057654142,\"y\":179.999954223633,\"z\":0.0798774659633636}},\"1943ff\":{\"lock\":false,\"pos\":{\"x\":9.85000038146973,\"y\":1.4813586473465,\"z\":-0.0800003558397293},\"rot\":{\"x\":359.920135498047,\"y\":269.999877929688,\"z\":0.0168734267354012}},\"208ebc\":{\"lock\":false,\"pos\":{\"x\":-2.72466015815735,\"y\":1.6159462928772,\"z\":0.373313426971436},\"rot\":{\"x\":0.0168960373848677,\"y\":179.956954956055,\"z\":0.0802430883049965}},\"31ee5d\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.49000000953674,\"z\":7.92000007629395},\"rot\":{\"x\":359.920013427734,\"y\":270.000061035156,\"z\":0.0168756786733866}},\"3549e7\":{\"lock\":false,\"pos\":{\"x\":9.85000038146973,\"y\":1.48371434211731,\"z\":7.91999912261963},\"rot\":{\"x\":359.920135498047,\"y\":269.999633789063,\"z\":0.0168764851987362}},\"357610\":{\"lock\":false,\"pos\":{\"x\":12.2501697540283,\"y\":1.48392140865326,\"z\":19.986349105835},\"rot\":{\"x\":359.920135498047,\"y\":269.999816894531,\"z\":0.0168732907623053}},\"36b4eb\":{\"lock\":false,\"pos\":{\"x\":0.270093679428101,\"y\":1.48960697650909,\"z\":28.7769813537598},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.0168721694499254}},\"41fdc3\":{\"lock\":false,\"pos\":{\"x\":-23.6764469146729,\"y\":1.62806642055511,\"z\":-0.0300174467265606},\"rot\":{\"x\":359.920104980469,\"y\":269.999694824219,\"z\":0.0168400760740042}},\"44bc00\":{\"lock\":false,\"pos\":{\"x\":12.2500715255737,\"y\":1.47921013832092,\"z\":3.98633503913879},\"rot\":{\"x\":359.920135498047,\"y\":269.999969482422,\"z\":0.016873637214303}},\"458f2b\":{\"lock\":false,\"pos\":{\"x\":-17.1200523376465,\"y\":1.61444211006165,\"z\":-15.2800216674805},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168397892266512}},\"499088\":{\"lock\":false,\"pos\":{\"x\":-23.6764068603516,\"y\":1.61334455013275,\"z\":-3.83002400398254},\"rot\":{\"x\":0.0168244950473309,\"y\":180.010559082031,\"z\":0.0799428075551987}},\"54092b\":{\"lock\":false,\"pos\":{\"x\":-13.9964084625244,\"y\":1.65554821491241,\"z\":-0.180126652121544},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016830444336}},\"56fc9d\":{\"lock\":false,\"pos\":{\"x\":-30.2241821289063,\"y\":1.63943040370941,\"z\":7.56998538970947},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168400164693594}},\"5b38c6\":{\"lock\":false,\"pos\":{\"x\":-20.2732715606689,\"y\":1.60632228851318,\"z\":-11.5783996582031},\"rot\":{\"x\":359.983154296875,\"y\":0.000181010706000961,\"z\":359.920104980469}},\"61c4c5\":{\"lock\":false,\"pos\":{\"x\":12.2505617141724,\"y\":1.47214221954346,\"z\":-20.013671875},\"rot\":{\"x\":359.920135498047,\"y\":269.999633789063,\"z\":0.0168726444244385}},\"641694\":{\"lock\":false,\"pos\":{\"x\":-20.0815486907959,\"y\":1.60840344429016,\"z\":-3.58654117584229},\"rot\":{\"x\":0.0684084892272949,\"y\":134.999557495117,\"z\":0.0445842370390892}},\"673295\":{\"lock\":false,\"pos\":{\"x\":12.2765111923218,\"y\":1.48033154010773,\"z\":7.92000293731689},\"rot\":{\"x\":0.016871377825737,\"y\":179.999938964844,\"z\":0.0798773169517517}},\"6b02f8\":{\"lock\":false,\"pos\":{\"x\":-33.4782867431641,\"y\":1.62927162647247,\"z\":3.85553073883057},\"rot\":{\"x\":359.983154296875,\"y\":5.7329405535711E-05,\"z\":359.920104980469}},\"6ba06e\":{\"lock\":false,\"pos\":{\"x\":-26.7825469970703,\"y\":1.61883640289307,\"z\":0.117903299629688},\"rot\":{\"x\":0.0798944383859634,\"y\":90.0002212524414,\"z\":359.983123779297}},\"6be8b0\":{\"lock\":false,\"pos\":{\"x\":-23.6764068603516,\"y\":1.61108767986298,\"z\":-11.5100345611572},\"rot\":{\"x\":0.0168246645480394,\"y\":180.010467529297,\"z\":0.0799442157149315}},\"6c5b9f\":{\"lock\":false,\"pos\":{\"x\":9.85000324249268,\"y\":1.47664725780487,\"z\":-16.0800075531006},\"rot\":{\"x\":359.920135498047,\"y\":270.010437011719,\"z\":0.016860157251358}},\"6dec76\":{\"lock\":false,\"pos\":{\"x\":-36.7731170654297,\"y\":1.64632892608643,\"z\":-0.0300179943442345},\"rot\":{\"x\":359.920104980469,\"y\":269.999755859375,\"z\":0.0168399456888437}},\"6f663b\":{\"lock\":false,\"pos\":{\"x\":-30.2242317199707,\"y\":1.63494277000427,\"z\":-7.70002508163452},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168399829417467}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7731666564941,\"y\":1.63386726379395,\"z\":3.86005425453186},\"rot\":{\"x\":0.0168241951614618,\"y\":180.010726928711,\"z\":0.0799423828721046}},\"72c444\":{\"lock\":false,\"pos\":{\"x\":12.2745180130005,\"y\":1.47326719760895,\"z\":-16.0800037384033},\"rot\":{\"x\":0.016871377825737,\"y\":179.999755859375,\"z\":0.0798778459429741}},\"823edd\":{\"lock\":false,\"pos\":{\"x\":9.85000324249268,\"y\":1.47900295257568,\"z\":-8.08000183105469},\"rot\":{\"x\":359.920135498047,\"y\":269.999755859375,\"z\":0.0168739389628172}},\"87f6b9\":{\"lock\":false,\"pos\":{\"x\":12.2501745223999,\"y\":1.47449851036072,\"z\":-12.0136671066284},\"rot\":{\"x\":359.920135498047,\"y\":269.999816894531,\"z\":0.0168728269636631}},\"8b87b3\":{\"lock\":false,\"pos\":{\"x\":-36.7731437683105,\"y\":1.64856255054474,\"z\":7.56998252868652},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168400462716818}},\"937515\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.49558484554291,\"z\":15.9200000762939},\"rot\":{\"x\":359.920013427734,\"y\":269.999816894531,\"z\":0.0168741084635258}},\"94dde3\":{\"lock\":false,\"pos\":{\"x\":12.2740049362183,\"y\":1.4756236076355,\"z\":-8.07999992370605},\"rot\":{\"x\":0.016871327534318,\"y\":180.000061035156,\"z\":0.0798767656087875}},\"952924\":{\"lock\":false,\"pos\":{\"x\":12.2496747970581,\"y\":1.47685492038727,\"z\":-4.01367044448853},\"rot\":{\"x\":359.920135498047,\"y\":269.999938964844,\"z\":0.0168727152049541}},\"97c745\":{\"lock\":false,\"pos\":{\"x\":-26.9488582611084,\"y\":1.61791956424713,\"z\":-3.79106402397156},\"rot\":{\"x\":359.983154296875,\"y\":359.992767333984,\"z\":359.920104980469}},\"98de77\":{\"lock\":false,\"pos\":{\"x\":-23.6765613555908,\"y\":1.62358474731445,\"z\":-15.2800130844116},\"rot\":{\"x\":359.920104980469,\"y\":269.999633789063,\"z\":0.0168402101844549}},\"9991d4\":{\"lock\":false,\"pos\":{\"x\":-2.68847703933716,\"y\":1.61430239677429,\"z\":-5.04854536056519},\"rot\":{\"x\":0.0168096069246531,\"y\":180.018661499023,\"z\":0.0802613347768784}},\"a3b604\":{\"lock\":false,\"pos\":{\"x\":-20.2402076721191,\"y\":1.60508036613464,\"z\":-15.6466379165649},\"rot\":{\"x\":0.0798944383859634,\"y\":90.0002670288086,\"z\":359.983123779297}},\"a3b9ce\":{\"lock\":false,\"pos\":{\"x\":-30.2241268157959,\"y\":1.62473499774933,\"z\":3.85997748374939},\"rot\":{\"x\":0.0168243143707514,\"y\":180.010665893555,\"z\":0.0799384042620659}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"a6049c\":{\"lock\":false,\"pos\":{\"x\":12.2744064331055,\"y\":1.47797882556915,\"z\":-0.0799992084503174},\"rot\":{\"x\":0.0168714188039303,\"y\":180.000045776367,\"z\":0.0798778161406517}},\"aa4b2c\":{\"lock\":false,\"pos\":{\"x\":-20.4563217163086,\"y\":1.60770308971405,\"z\":-7.748703956604},\"rot\":{\"x\":0.0798945873975754,\"y\":89.9999389648438,\"z\":359.983123779297}},\"ab992b\":{\"lock\":false,\"pos\":{\"x\":-27.0462245941162,\"y\":1.61578059196472,\"z\":-11.5305461883545},\"rot\":{\"x\":0.0684082359075546,\"y\":134.999618530273,\"z\":0.0445832647383213}},\"b73127\":{\"lock\":false,\"pos\":{\"x\":-26.6622619628906,\"y\":1.61645436286926,\"z\":-7.41628074645996},\"rot\":{\"x\":0.0798943638801575,\"y\":90.0001525878906,\"z\":359.983123779297}},\"b89737\":{\"lock\":false,\"pos\":{\"x\":-30.2241230010986,\"y\":1.62247490882874,\"z\":-3.83002114295959},\"rot\":{\"x\":0.0168243553489447,\"y\":180.010681152344,\"z\":0.0799569264054298}},\"c16b4e\":{\"lock\":false,\"pos\":{\"x\":-17.1199989318848,\"y\":1.61666977405548,\"z\":-7.70001983642578},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168399959802628}},\"c94046\":{\"lock\":false,\"pos\":{\"x\":-33.4688339233398,\"y\":1.6303539276123,\"z\":7.58308696746826},\"rot\":{\"x\":0.0798943936824799,\"y\":89.9999771118164,\"z\":359.983123779297}},\"ceb7d4\":{\"lock\":false,\"pos\":{\"x\":-26.8105792999268,\"y\":1.62001419067383,\"z\":3.99276566505432},\"rot\":{\"x\":0.0684082061052322,\"y\":134.999557495117,\"z\":0.0445845611393452}},\"d0163a\":{\"lock\":false,\"pos\":{\"x\":-33.4151954650879,\"y\":1.62686562538147,\"z\":-4.03124570846558},\"rot\":{\"x\":0.0684084370732307,\"y\":134.999435424805,\"z\":0.0445839650928974}},\"d41278\":{\"lock\":false,\"pos\":{\"x\":-3.95589399337769,\"y\":1.59753930568695,\"z\":-10.4411849975586},\"rot\":{\"x\":359.919738769531,\"y\":269.999816894531,\"z\":0.0168373994529247}},\"e61348\":{\"lock\":false,\"pos\":{\"x\":-23.6765117645264,\"y\":1.62581241130829,\"z\":-7.70001935958862},\"rot\":{\"x\":359.920104980469,\"y\":269.999725341797,\"z\":0.0168399699032307}},\"e87867\":{\"lock\":false,\"pos\":{\"x\":-30.2241630554199,\"y\":1.6371967792511,\"z\":-0.0300170239061117},\"rot\":{\"x\":359.920104980469,\"y\":269.999877929688,\"z\":0.0168398097157478}},\"eab8ff\":{\"lock\":false,\"pos\":{\"x\":9.84999656677246,\"y\":1.48607003688812,\"z\":15.9200029373169},\"rot\":{\"x\":359.920135498047,\"y\":269.999481201172,\"z\":0.0168752484023571}},\"eef566\":{\"lock\":false,\"pos\":{\"x\":-33.4450149536133,\"y\":1.62811577320099,\"z\":0.0806871131062508},\"rot\":{\"x\":0.0798944979906082,\"y\":90.0002212524414,\"z\":359.983123779297}},\"efb4dd\":{\"lock\":false,\"pos\":{\"x\":15.1499996185303,\"y\":1.49000000953674,\"z\":-8.07999992370605},\"rot\":{\"x\":359.920013427734,\"y\":270.000183105469,\"z\":0.0168743338435888}},\"efb516\":{\"lock\":false,\"pos\":{\"x\":-17.1198806762695,\"y\":1.60194492340088,\"z\":-11.5100326538086},\"rot\":{\"x\":0.0168239641934633,\"y\":180.011001586914,\"z\":0.0799526497721672}},\"f5db25\":{\"lock\":false,\"pos\":{\"x\":-3.6761999130249,\"y\":1.58233964443207,\"z\":-14.5353908538818},\"rot\":{\"x\":359.919738769531,\"y\":269.999816894531,\"z\":0.016838077455759}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "041012", "Name": "Card", "Transform": { "posX": 12.25217, "posY": 1.49508727, "posZ": 11.9863462, "rotX": 0.000141561075, "rotY": 269.999817, "rotZ": -0.00106399518, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dog Monocle", "Description": "", "GMNotes": "{\n \"id\": \"80017\",\n \"type\": \"Asset\",\n \"class\": \"Seeker\",\n \"cost\": 2,\n \"traits\": \"Item. Tool. Classy.\",\n \"intellectIcons\": 1\n}", "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": true, "Hands": true, "CardID": 537611, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0646bf", "Name": "Deck", "Transform": { "posX": -3.92787433, "posY": 1.73872375, "posZ": 5.75718737, "rotX": 2.04655151E-07, "rotY": 270.0001, "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": false, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 538534, 538524, 538525, 538526, 538536, 538532, 538534, 538524, 538532, 538531, 538529, 538527, 538530, 538524, 538528, 538530, 538533, 538533, 538525, 538528, 538532, 538531, 538531, 538527, 538529, 538535, 538536, 538535 ], "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "4512a4", "Name": "Card", "Transform": { "posX": 16.2127476, "posY": 1.475315, "posZ": 9.51947, "rotX": 359.920135, "rotY": 269.999878, "rotZ": 0.0168730076, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Stubborn Cat", "Description": "Hazard.", "GMNotes": "{\n \"id\": \"80055\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\"\n}", "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": 538534, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "593523", "Name": "Card", "Transform": { "posX": 15.2499514, "posY": 1.47659254, "posZ": 9.299698, "rotX": 359.920135, "rotY": 269.9997, "rotZ": 0.01687297, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Estranged Cat", "Description": "Creature.", "GMNotes": "{\n \"id\": \"80045\",\n \"type\": \"Enemy\",\n \"traits\": \"Creature.\"\n}", "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": 538524, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d5e580", "Name": "Card", "Transform": { "posX": 12.4638176, "posY": 1.54068828, "posZ": 7.441152, "rotX": 359.9202, "rotY": 269.99353, "rotZ": 0.87857914, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rodent-Killer", "Description": "Humanoid. Cultist.", "GMNotes": "{\n \"id\": \"80046\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Cultist.\"\n}", "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": 538525, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4aec61", "Name": "Card", "Transform": { "posX": 15.9162912, "posY": 1.79808772, "posZ": 6.103409, "rotX": 359.951843, "rotY": 270.000244, "rotZ": 180.3035, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Order Cultist", "Description": "Humanoid, sort of? Cultist, definitely.", "GMNotes": "{\n \"id\": \"80047\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid, sort of? Cultist, definitely.\"\n}", "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": 538526, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a5455b", "Name": "Card", "Transform": { "posX": 16.5782356, "posY": 1.47493565, "posZ": 9.961658, "rotX": 359.920135, "rotY": 269.999146, "rotZ": 0.01687318, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gaze of the Ceiling Cat", "Description": "Terror.", "GMNotes": "{\n \"id\": \"80057\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\"\n}", "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": 538536, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "640243", "Name": "Card", "Transform": { "posX": 16.4688568, "posY": 1.545158, "posZ": 8.81801, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.01687413, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scratching Paws", "Description": "Hazard.", "GMNotes": "{\n \"id\": \"80053\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\"\n}", "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": 538532, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "173b96", "Name": "Card", "Transform": { "posX": 16.4323025, "posY": 1.51837575, "posZ": 9.536949, "rotX": 359.920135, "rotY": 269.999878, "rotZ": 0.01687268, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Stubborn Cat", "Description": "Hazard.", "GMNotes": "{\n \"id\": \"80055\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\"\n}", "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": 538534, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "593523", "Name": "Card", "Transform": { "posX": 15.3526049, "posY": 1.54707313, "posZ": 8.89351749, "rotX": 359.920135, "rotY": 269.9997, "rotZ": 0.0168733634, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Estranged Cat", "Description": "Creature.", "GMNotes": "{\n \"id\": \"80045\",\n \"type\": \"Enemy\",\n \"traits\": \"Creature.\"\n}", "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": 538524, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "640243", "Name": "Card", "Transform": { "posX": 16.2803135, "posY": 1.47490871, "posZ": 8.459558, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.0168753881, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scratching Paws", "Description": "Hazard.", "GMNotes": "{\n \"id\": \"80053\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\"\n}", "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": 538532, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d2376d", "Name": "Card", "Transform": { "posX": 16.128027, "posY": 1.5455935, "posZ": 8.667925, "rotX": 359.920135, "rotY": 269.999573, "rotZ": 0.0168728437, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cats in the Mist", "Description": "Terror.", "GMNotes": "{\n \"id\": \"80052\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\"\n}", "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": 538531, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "188deb", "Name": "Card", "Transform": { "posX": 14.7277861, "posY": 1.47730052, "posZ": 9.23175, "rotX": 359.920135, "rotY": 269.9998, "rotZ": 0.0168728139, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hunted by Byakats", "Description": "Scheme.", "GMNotes": "{\n \"id\": \"80050\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\"\n}", "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": 538529, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c44211", "Name": "Card", "Transform": { "posX": 16.0556355, "posY": 1.506772, "posZ": 8.84411049, "rotX": 359.9361, "rotY": 269.999939, "rotZ": 0.0134851523, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Servant of Dog-Sothoth", "Description": "Monster. Catbomination.", "GMNotes": "{\n \"id\": \"80048\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Catbomination.\"\n}", "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": 538527, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "75690e", "Name": "Card", "Transform": { "posX": 15.4820871, "posY": 1.51971459, "posZ": 8.858445, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.0168731529, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "On Your Tail", "Description": "Scheme.", "GMNotes": "{\n \"id\": \"80051\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\"\n}", "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": 538530, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "58750b", "Name": "Card", "Transform": { "posX": 15.3525667, "posY": 1.519947, "posZ": 8.893525, "rotX": 359.920135, "rotY": 269.9997, "rotZ": 0.01687317, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Estranged Cat", "Description": "Creature.", "GMNotes": "{\n \"id\": \"80045\",\n \"type\": \"Enemy\",\n \"traits\": \"Creature.\"\n}", "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": 538524, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d2a05a", "Name": "Card", "Transform": { "posX": 15.5982676, "posY": 1.47597075, "posZ": 8.837103, "rotX": 359.920135, "rotY": 269.999847, "rotZ": 0.0168742668, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "SQUIRREL!", "Description": "Squirrel!", "GMNotes": "{\n \"id\": \"80049\",\n \"type\": \"Treachery\",\n \"traits\": \"Squirrel!\"\n}", "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": 538528, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "12dd89", "Name": "Card", "Transform": { "posX": 15.2882566, "posY": 1.47638464, "posZ": 8.775076, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.0168734882, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "On Your Tail", "Description": "Scheme.", "GMNotes": "{\n \"id\": \"80051\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\"\n}", "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": 538530, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "906d54", "Name": "Card", "Transform": { "posX": 15.5291986, "posY": 1.476279, "posZ": 9.557188, "rotX": 359.920135, "rotY": 269.999664, "rotZ": 0.0168738849, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Meowsks of Meowlathotep", "Description": "Power.", "GMNotes": "{\n \"id\": \"80054\",\n \"type\": \"Treachery\",\n \"traits\": \"Power.\"\n}", "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": 538533, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0fa302", "Name": "Card", "Transform": { "posX": 15.4493685, "posY": 1.53896976, "posZ": 9.816203, "rotX": 359.918823, "rotY": 269.99884, "rotZ": 1.01162326, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Meowsks of Meowlathotep", "Description": "Power.", "GMNotes": "{\n \"id\": \"80054\",\n \"type\": \"Treachery\",\n \"traits\": \"Power.\"\n}", "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": 538533, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9ae188", "Name": "Card", "Transform": { "posX": 12.4523687, "posY": 1.496397, "posZ": 7.43958139, "rotX": 359.9202, "rotY": 269.99353, "rotZ": 0.8785791, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rodent-Killer", "Description": "Humanoid. Cultist.", "GMNotes": "{\n \"id\": \"80046\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Cultist.\"\n}", "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": 538525, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "085963", "Name": "Card", "Transform": { "posX": 15.225914, "posY": 1.520093, "posZ": 9.211927, "rotX": 359.920135, "rotY": 269.999817, "rotZ": 0.0168740619, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "SQUIRREL!", "Description": "Squirrel!", "GMNotes": "{\n \"id\": \"80049\",\n \"type\": \"Treachery\",\n \"traits\": \"Squirrel!\"\n}", "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": 538528, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "683523", "Name": "Card", "Transform": { "posX": 16.4688187, "posY": 1.51803184, "posZ": 8.818018, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.0168751348, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scratching Paws", "Description": "Hazard.", "GMNotes": "{\n \"id\": \"80053\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\"\n}", "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": 538532, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f02d56", "Name": "Card", "Transform": { "posX": 16.1279888, "posY": 1.51846743, "posZ": 8.667933, "rotX": 359.920135, "rotY": 269.999573, "rotZ": 0.0168732665, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cats in the Mist", "Description": "Terror.", "GMNotes": "{\n \"id\": \"80052\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\"\n}", "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": 538531, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d2376d", "Name": "Card", "Transform": { "posX": 16.2530823, "posY": 1.47493184, "posZ": 8.408966, "rotX": 359.920135, "rotY": 269.999634, "rotZ": 0.0168731, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cats in the Mist", "Description": "Terror.", "GMNotes": "{\n \"id\": \"80052\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\"\n}", "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": 538531, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cd29bc", "Name": "Card", "Transform": { "posX": 16.320446, "posY": 1.47494972, "posZ": 8.788771, "rotX": 359.920135, "rotY": 269.9998, "rotZ": 0.016872827, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Servant of Dog-Sothoth", "Description": "Monster. Catbomination.", "GMNotes": "{\n \"id\": \"80048\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Catbomination.\"\n}", "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": 538527, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "041647", "Name": "Card", "Transform": { "posX": 14.6384945, "posY": 1.51900017, "posZ": 9.461267, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.0168731529, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hunted by Byakats", "Description": "Scheme.", "GMNotes": "{\n \"id\": \"80050\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\"\n}", "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": 538529, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6843a4", "Name": "Card", "Transform": { "posX": 16.3402081, "posY": 1.51841569, "posZ": 9.344428, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.01687559, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mischief and Chaos", "Description": "Scheme.", "GMNotes": "{\n \"id\": \"80056\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\"\n}", "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": 538535, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "66c016", "Name": "Card", "Transform": { "posX": 16.68238, "posY": 1.51634276, "posZ": 10.1112, "rotX": 359.920135, "rotY": 269.9991, "rotZ": 0.0168736, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gaze of the Ceiling Cat", "Description": "Terror.", "GMNotes": "{\n \"id\": \"80057\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\"\n}", "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": 538536, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "170575", "Name": "Card", "Transform": { "posX": 16.278307, "posY": 1.47515655, "posZ": 9.291479, "rotX": 359.920135, "rotY": 269.999756, "rotZ": 0.0168754589, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Mischief and Chaos", "Description": "Scheme.", "GMNotes": "{\n \"id\": \"80056\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\"\n}", "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": 538535, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "070a78", "Name": "Deck", "Transform": { "posX": 15.1499882, "posY": 1.51205766, "posZ": -0.0799977556, "rotX": -1.51018787E-06, "rotY": 270.000153, "rotZ": 1.19544291E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "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": [ 537605, 537604 ], "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "99800f", "Name": "Card", "Transform": { "posX": 15.937418, "posY": 1.4728533, "posZ": -0.14389053, "rotX": 359.920135, "rotY": 270.000153, "rotZ": 0.01687217, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Dogcatchers", "Description": "Weakness", "GMNotes": "{\n \"id\": \"80009\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid.\"\n}", "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": 537605, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed4256", "Name": "Card", "Transform": { "posX": 16.2317638, "posY": 1.51399493, "posZ": 0.0367458239, "rotX": 359.920135, "rotY": 270.000061, "rotZ": 0.0168725774, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Take the Wheel", "Description": "", "GMNotes": "{\n \"id\": \"80008\",\n \"type\": \"Event\",\n \"traits\": \"What? No. Stop, That\\u0027s bad. Bad dog.\",\n \"combatIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "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": 537604, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "0bd409", "Name": "Deck", "Transform": { "posX": 15.1499939, "posY": 1.51205766, "posZ": -16.08, "rotX": 5.11675431E-08, "rotY": 270.000244, "rotZ": 7.20539333E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "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": [ 537609, 537608 ], "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "197242", "Name": "Card", "Transform": { "posX": 15.9446363, "posY": 1.46845531, "posZ": -15.0453625, "rotX": 359.920135, "rotY": 270.000336, "rotZ": 0.0168739613, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Out of Doggie Treats", "Description": "Weakness", "GMNotes": "{\n \"id\": \"80015\",\n \"type\": \"Treachery\",\n \"traits\": \"Blunder.\"\n}", "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": 537609, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "448d3a", "Name": "Card", "Transform": { "posX": 16.128437, "posY": 1.49981213, "posZ": -14.769701, "rotX": 359.9201, "rotY": 269.999817, "rotZ": 0.01682643, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Friendly Human", "Description": "I Guess His Name is \"Pete?\"", "GMNotes": "{\n \"id\": \"80014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Ally.\",\n \"uses\": [\n {\n \"count\": 5,\n \"type\": \"Resource\",\n \"token\": \"resource\"\n }\n ]\n}", "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": true, "Hands": true, "CardID": 537608, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "0c97f0", "Name": "Card", "Transform": { "posX": 12.2699995, "posY": 1.49511838, "posZ": 15.9200039, "rotX": -0.000118150034, "rotY": 180.000031, "rotZ": 0.000828758464, "scaleX": 1.15, "scaleY": 1.0, "scaleZ": 1.15 }, "Nickname": "Bark Harrigan", "Description": "The Dog of War", "GMNotes": "{\n \"id\": \"80001\",\n \"type\": \"Investigator\",\n \"class\": \"Guardian\",\n \"traits\": \"Veteran\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 2,\n \"combatIcons\": 5,\n \"agilityIcons\": 2\n}", "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": false, "Hands": true, "CardID": 538300, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1943ff", "Name": "CardCustom", "Transform": { "posX": 9.850001, "posY": 1.49510384, "posZ": -0.08000058, "rotX": -1.81027951E-06, "rotY": 269.999817, "rotZ": 1.15679427E-06, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "\"Skids\" O'Drool", "Description": "", "GMNotes": "{\n \"id\": \"80007-m\",\n \"type\": \"Minicard\"\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Minicard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": false, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266500, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297416623/C105E79E8FE67FCCE4ABADEB110F8C5E2A239447/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297416775/01D74E1F211ED12B6AB97E2C171FBF4BAD269E94/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "208ebc", "Name": "Deck", "Transform": { "posX": -2.72470641, "posY": 1.61355889, "posZ": 0.37332353, "rotX": -5.35973967E-08, "rotY": 179.95697, "rotZ": 1.33170872E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 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": true, "DeckIDs": [ 538307, 538306 ], "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "2dc786", "Name": "Card", "Transform": { "posX": 0.0719906762, "posY": 1.59374118, "posZ": -4.16648, "rotX": 0.0122809839, "rotY": 183.2345, "rotZ": 0.08107709, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Meowlathotep's Scheme", "Description": "Agenda 2", "GMNotes": "{\n \"id\": \"80024\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 8\n}", "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": 538307, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "35a3cd", "Name": "Card", "Transform": { "posX": 0.09467082, "posY": 1.63600564, "posZ": -4.269393, "rotX": 0.015922308, "rotY": 180.002579, "rotZ": 0.0804202259, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Of Cats and Dogs", "Description": "Agenda 1", "GMNotes": "{\n \"id\": \"80023\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 4\n}", "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": 538306, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "31ee5d", "Name": "Deck", "Transform": { "posX": 15.1499882, "posY": 1.51205766, "posZ": 7.920003, "rotX": 2.53350257E-10, "rotY": 270.000031, "rotZ": 3.16059868E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "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": [ 537603, 537602 ], "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "bc4a74", "Name": "Card", "Transform": { "posX": 15.7847195, "posY": 1.475488, "posZ": 8.0802145, "rotX": 359.920135, "rotY": 270.0, "rotZ": 0.01687402, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Foul Odor", "Description": "Weakness", "GMNotes": "{\n \"id\": \"80006\",\n \"type\": \"Treachery\",\n \"traits\": \"Madness.\"\n}", "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": 537603, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7031aa", "Name": "Card", "Transform": { "posX": 15.8887768, "posY": 1.50694323, "posZ": 8.303365, "rotX": 359.920135, "rotY": 270.000061, "rotZ": 0.0168491043, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Feline Discombobulator", "Description": "It Discombobulates Felines", "GMNotes": "{\n \"id\": \"80005\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Item. Science.\",\n \"intellectIcons\": 1,\n \"agilityIcons\": 1,\n \"wildIcons\": 1\n}", "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": true, "Hands": true, "CardID": 537602, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "3549e7", "Name": "CardCustom", "Transform": { "posX": 9.84999752, "posY": 1.49510384, "posZ": 7.9199996, "rotX": 1.35608889E-06, "rotY": 269.999573, "rotZ": 3.39442749E-07, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Kate Winthpup", "Description": "", "GMNotes": "{\n \"id\": \"80004-m\",\n \"type\": \"Minicard\"\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Minicard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": false, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266400, "SidewaysCard": false, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297416065/D6E80F5A27085251DBDA0BC5DADACC3A45110101/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297416208/2178189EC4327D27ECC17AAB215436AA86507AF4/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "357610", "Name": "Card", "Transform": { "posX": 12.2501669, "posY": 1.49509418, "posZ": 19.986351, "rotX": 0.0001549353, "rotY": 269.9998, "rotZ": -0.0007279035, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Spiked Collar", "Description": "", "GMNotes": "{\n \"id\": \"80016\",\n \"type\": \"Asset\",\n \"class\": \"Guardian\",\n \"cost\": 3,\n \"traits\": \"Item. Armor.\",\n \"combatIcons\": 1\n}", "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": true, "Hands": true, "CardID": 537610, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "36b4eb", "Name": "Custom_PDF", "Transform": { "posX": 0.2702019, "posY": 1.58100045, "posZ": 28.7769585, "rotX": 7.900326E-09, "rotY": 269.999969, "rotZ": -3.48087141E-08, "scaleX": 3.0, "scaleY": 1.0, "scaleZ": 3.0 }, "Nickname": "Campaign Guide", "Description": "The Meddling of Meowlathotep", "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, "CustomPDF": { "PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1626320456297582485/FD9DDA786EDAE5BAAA4D4F8474E89E5C9B328317/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "41fdc3", "Name": "Card", "Transform": { "posX": -23.6764984, "posY": 1.53360486, "posZ": -0.030010283, "rotX": 2.39260167E-09, "rotY": 269.9996, "rotZ": 7.50934759E-10, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tailside", "Description": "Barkham. Central.", "GMNotes": "{\n \"id\": \"80028\",\n \"type\": \"Location\",\n \"traits\": \"Barkham. Central.\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Triangle|Diamond|Square|Plus|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Triangle|Diamond|Square|Plus|Tee\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538411, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "44bc00", "Name": "Card", "Transform": { "posX": 12.2500753, "posY": 1.49510062, "posZ": 3.98633528, "rotX": 1.02841386E-05, "rotY": 269.999939, "rotZ": -0.000188866135, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hired Dogs", "Description": "", "GMNotes": "{\n \"id\": \"80018\",\n \"type\": \"Asset\",\n \"class\": \"Rogue\",\n \"cost\": 3,\n \"traits\": \"Ally. Creature. Fellow Dogs.\",\n \"intellectIcons\": 1,\n \"combatIcons\": 1\n}", "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": true, "Hands": true, "CardID": 537612, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "458f2b", "Name": "Card", "Transform": { "posX": -17.1201019, "posY": 1.53360486, "posZ": -15.2800179, "rotX": 5.80798378E-08, "rotY": 269.999878, "rotZ": -2.70320925E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Velma's Doghouse", "Description": "Barkham.", "GMNotes": "{\n \"id\": \"80036\",\n \"type\": \"Location\",\n \"traits\": \"Barkham.\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Triangle|Diamond|Clover\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Tilde\",\n \"connections\": \"Triangle|Diamond|Clover\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538419, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "54092b", "Name": "Deck", "Transform": { "posX": -13.9965162, "posY": 1.57462883, "posZ": -0.180099115, "rotX": 3.078461E-08, "rotY": 270.000122, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Meowsks", "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": [ 538518, 538520, 538519, 538517, 538521, 538522, 538523 ], "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "ce69cd", "Name": "Card", "Transform": { "posX": 9.214254, "posY": 1.48677492, "posZ": 15.3036976, "rotX": 359.920135, "rotY": 269.9538, "rotZ": 0.0169376042, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cat of Tindalos", "Description": "Extradimensional Cat", "GMNotes": "{\n \"id\": \"80039\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Meowsk. Elite.\",\n \"victory\": 1\n}", "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": 538518, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "64feac", "Name": "Card", "Transform": { "posX": 9.403451, "posY": 1.55860543, "posZ": 15.5998535, "rotX": 359.932373, "rotY": 270.003052, "rotZ": 0.5721982, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Mewling Hunger", "Description": "Capricious Twins", "GMNotes": "{\n \"id\": \"80041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Meowsk. Elite.\",\n \"victory\": 1\n}", "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": 538520, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f4cd65", "Name": "Card", "Transform": { "posX": 9.975287, "posY": 1.50692475, "posZ": 16.7364483, "rotX": 359.9203, "rotY": 269.999939, "rotZ": 358.929382, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Dweller in the Deep", "Description": "Don't Ask How", "GMNotes": "{\n \"id\": \"80040\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Meowsk. Elite.\",\n \"victory\": 1\n}", "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": 538519, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "aef204", "Name": "Card", "Transform": { "posX": 9.078951, "posY": 1.486318, "posZ": 13.1115875, "rotX": 359.920135, "rotY": 269.999817, "rotZ": 0.0168754384, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Hisser in the Dark", "Description": "The Cat That Came Back", "GMNotes": "{\n \"id\": \"80038\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Meowsk. Elite.\",\n \"victory\": 1\n}", "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": 538517, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e86d3b", "Name": "Card", "Transform": { "posX": 10.0315723, "posY": 1.546113, "posZ": 14.1787777, "rotX": 359.9348, "rotY": 269.995361, "rotZ": 1.75676239, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "GHOST CAT!", "Description": "Cat That is Also a Ghost", "GMNotes": "{\n \"id\": \"80042\",\n \"type\": \"Enemy\",\n \"traits\": \"Creature. Meowsk. Elite.\",\n \"victory\": 1\n}", "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": 538521, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "53c2ec", "Name": "Card", "Transform": { "posX": 10.185051, "posY": 1.62485778, "posZ": 14.3955078, "rotX": 359.9442, "rotY": 269.999573, "rotZ": 0.38008976, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Cat Riding on a Byakat", "Description": "It's Exactly What it Sounds Like", "GMNotes": "{\n \"id\": \"80043\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Meowsk. Elite.\",\n \"victory\": 1\n}", "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": 538522, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "94906b", "Name": "Card", "Transform": { "posX": 9.706633, "posY": 1.617644, "posZ": 14.15004, "rotX": 359.94397, "rotY": 269.998657, "rotZ": 1.407383, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pouncer in the Night", "Description": "Nocturnal Hunting Cat", "GMNotes": "{\n \"id\": \"80044\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Meowsk. Elite.\",\n \"victory\": 1\n}", "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": 538523, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "56fc9d", "Name": "Card", "Transform": { "posX": -30.2242279, "posY": 1.53360486, "posZ": 7.56999731, "rotX": -4.99396E-07, "rotY": 269.9997, "rotZ": 7.474892E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Muttskatonic University", "Description": "Barkham.", "GMNotes": "{\n \"id\": \"80033\",\n \"type\": \"Location\",\n \"traits\": \"Barkham.\",\n \"locationFront\": {\n \"icons\": \"Square\",\n \"connections\": \"Hourglass|Star|Plus|Heart\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Square\",\n \"connections\": \"Hourglass|Star|Plus|Heart\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538416, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "61c4c5", "Name": "Card", "Transform": { "posX": 12.2505741, "posY": 1.49498117, "posZ": -20.0136757, "rotX": 0.001181489, "rotY": 269.999573, "rotZ": 359.9919, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hair of the Dog", "Description": "", "GMNotes": "{\n \"id\": \"80021\",\n \"type\": \"Skill\",\n \"class\": \"Neutral\",\n \"traits\": \"Illicit.\",\n \"wildIcons\": 4\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "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": 537615, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "673295", "Name": "Card", "Transform": { "posX": 12.2765121, "posY": 1.495117, "posZ": 7.920003, "rotX": -9.77536256E-05, "rotY": 179.999969, "rotZ": 0.000737681461, "scaleX": 1.15, "scaleY": 1.0, "scaleZ": 1.15 }, "Nickname": "Kate Winthpup", "Description": "The Laboratory Labrador", "GMNotes": "{\n \"id\": \"80004\",\n \"type\": \"Investigator\",\n \"class\": \"Seeker\",\n \"traits\": \"Scholar. Pup.\",\n \"willpowerIcons\": 3,\n \"intellectIcons\": 4,\n \"combatIcons\": 1,\n \"agilityIcons\": 4\n}", "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": false, "Hands": true, "CardID": 538301, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6c5b9f", "Name": "CardCustom", "Transform": { "posX": 9.850011, "posY": 1.49510384, "posZ": -16.08001, "rotX": -1.22026654E-06, "rotY": 270.010376, "rotZ": -4.170023E-08, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Duke", "Description": "", "GMNotes": "{\n \"id\": \"80013-m\",\n \"type\": \"Minicard\"\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Minicard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": false, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266700, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297417896/1A29A45D1C5D089DB429F2A8FE10EFA912BB3B30/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297418037/4D5A108EA151DCE8910B962591DA6B256B2C2003/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6dec76", "Name": "Card", "Transform": { "posX": -36.7731743, "posY": 1.53360486, "posZ": -0.03000409, "rotX": -8.172515E-09, "rotY": 269.999725, "rotZ": -4.187997E-09, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Boneyard", "Description": "", "GMNotes": "{\n \"id\": \"80032\",\n \"type\": \"Location\",\n \"traits\": \"Barkham.\",\n \"locationFront\": {\n \"icons\": \"Star\",\n \"connections\": \"Square|Plus|Tee|Heart\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Star\",\n \"connections\": \"Square|Plus|Tee|Heart\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538415, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6f663b", "Name": "Card", "Transform": { "posX": -30.2242947, "posY": 1.53360486, "posZ": -7.70002, "rotX": 1.54282276E-08, "rotY": 269.9997, "rotZ": 2.76770447E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Slobbertown", "Description": "Barkham. Central.", "GMNotes": "{\n \"id\": \"80030\",\n \"type\": \"Location\",\n \"traits\": \"Barkham. Central.\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Triangle|Clover|Hourglass|Star|Plus\"\n },\n \"locationBack\": {\n \"icons\": \"Tee\",\n \"connections\": \"Triangle|Clover|Hourglass|Star|Plus\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538413, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "72c444", "Name": "Card", "Transform": { "posX": 12.2745295, "posY": 1.49511874, "posZ": -16.0800056, "rotX": -0.00011455606, "rotY": 179.999756, "rotZ": 0.0008351127, "scaleX": 1.15, "scaleY": 1.0, "scaleZ": 1.15 }, "Nickname": "Duke", "Description": "The Good Boy", "GMNotes": "{\n \"id\": \"80013\",\n \"type\": \"Investigator\",\n \"class\": \"Survivor\",\n \"traits\": \"Drifter.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 4,\n \"combatIcons\": 4,\n \"agilityIcons\": 2\n}", "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": false, "Hands": true, "CardID": 538304, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "823edd", "Name": "CardCustom", "Transform": { "posX": 9.850007, "posY": 1.49510384, "posZ": -8.080003, "rotX": 4.57440819E-07, "rotY": 269.999725, "rotZ": 9.24228061E-07, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Jacqueline Canine", "Description": "", "GMNotes": "{\n \"id\": \"80010-m\",\n \"type\": \"Minicard\"\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Minicard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": false, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266600, "SidewaysCard": false, "CustomDeck": { "2666": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297417266/EB7D69CDFB4B40C56890C7B787992CA531786A8D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297417563/86B887FDCC331D93213F3465D22477E66C11C169/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "87f6b9", "Name": "Card", "Transform": { "posX": 12.250185, "posY": 1.49508286, "posZ": -12.01367, "rotX": 0.000184971286, "rotY": 269.999756, "rotZ": -0.00136067846, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Shoe", "Description": "", "GMNotes": "{\n \"id\": \"80020\",\n \"type\": \"Asset\",\n \"class\": \"Survivor\",\n \"cost\": 1,\n \"traits\": \"Item. Footwear, but not really.\",\n \"willpowerIcons\": 1\n}", "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": true, "Hands": true, "CardID": 537614, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8b87b3", "Name": "Card", "Transform": { "posX": -36.7731972, "posY": 1.53360486, "posZ": 7.569994, "rotX": -1.83882758E-08, "rotY": 269.999634, "rotZ": 6.10018436E-09, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "St. Mary's Animal Hospital", "Description": "Barkham.", "GMNotes": "{\n \"id\": \"80035\",\n \"type\": \"Location\",\n \"traits\": \"Barkham.\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Square|Star|Plus\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Heart\",\n \"connections\": \"Square|Star|Plus\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538418, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "937515", "Name": "Deck", "Transform": { "posX": 15.1499805, "posY": 1.51205766, "posZ": 15.9200039, "rotX": -9.839258E-07, "rotY": 269.999756, "rotZ": -2.10751338E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "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": [ 537601, 537600 ], "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "29bafb", "Name": "Card", "Transform": { "posX": 16.11447, "posY": 1.47629988, "posZ": 12.3989725, "rotX": 359.920135, "rotY": 269.999939, "rotZ": 0.0168736614, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "More Bark Than Bite", "Description": "Weakness", "GMNotes": "{\n \"id\": \"80003\",\n \"type\": \"Treachery\",\n \"traits\": \"Flaw.\"\n}", "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": 537601, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "deea7a", "Name": "Card", "Transform": { "posX": 16.15583, "posY": 1.50774717, "posZ": 12.3576326, "rotX": 359.920135, "rotY": 270.000122, "rotZ": 0.0168947745, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Catling Gun", "Description": "", "GMNotes": "{\n \"id\": \"80002\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 5,\n \"traits\": \"Item. Weapon. Firearm.\",\n \"willpowerIcons\": 1,\n \"combatIcons\": 1,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 12,\n \"type\": \"Ammo\",\n \"token\": \"resource\"\n }\n ]\n}", "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": true, "Hands": true, "CardID": 537600, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "94dde3", "Name": "Card", "Transform": { "posX": 12.2740145, "posY": 1.49511385, "posZ": -8.080003, "rotX": -7.56567242E-05, "rotY": 180.000031, "rotZ": 0.0005582919, "scaleX": 1.15, "scaleY": 1.0, "scaleZ": 1.15 }, "Nickname": "Jacqueline Canine", "Description": "The Paw Reader", "GMNotes": "{\n \"id\": \"80010\",\n \"type\": \"Investigator\",\n \"class\": \"Mystic\",\n \"traits\": \"Clairvoyant.\",\n \"willpowerIcons\": 5,\n \"intellectIcons\": 3,\n \"combatIcons\": 2,\n \"agilityIcons\": 2\n}", "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": false, "Hands": true, "CardID": 538303, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "952924", "Name": "Card", "Transform": { "posX": 12.2496767, "posY": 1.4950794, "posZ": -4.0136714, "rotX": 0.000215484048, "rotY": 269.999756, "rotZ": -0.00159586745, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Howl of Clyhf'ford", "Description": "", "GMNotes": "{\n \"id\": \"80019\",\n \"type\": \"Event\",\n \"class\": \"Mystic\",\n \"cost\": 5,\n \"traits\": \"Spell.\",\n \"willpowerIcons\": 1,\n \"agilityIcons\": 1\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "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": 537613, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "98de77", "Name": "Card", "Transform": { "posX": -23.67661, "posY": 1.53360486, "posZ": -15.2800064, "rotX": 6.460241E-09, "rotY": 269.999634, "rotZ": 4.700715E-10, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Barkham City Pound", "Description": "Barkham.", "GMNotes": "{\n \"id\": \"80034\",\n \"type\": \"Location\",\n \"traits\": \"Barkham.\",\n \"locationFront\": {\n \"icons\": \"Clover\",\n \"connections\": \"Triangle|Diamond|Tee|Tilde\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Clover\",\n \"connections\": \"Triangle|Diamond|Tee|Tilde\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538417, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9991d4", "Name": "Deck", "Transform": { "posX": -2.688521, "posY": 1.61355889, "posZ": -5.04853725, "rotX": -1.52398144E-07, "rotY": 180.018677, "rotZ": 4.09070751E-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": true, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 538309, 538308 ], "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "87f443", "Name": "Card", "Transform": { "posX": 2.073631, "posY": 1.59076977, "posZ": -4.737377, "rotX": 0.0188458189, "rotY": 178.5612, "rotZ": 0.079806976, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Cat and the Mouse", "Description": "Act 2", "GMNotes": "{\n \"id\": \"80026\",\n \"type\": \"Act\"\n}", "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": 538309, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "69fb83", "Name": "Card", "Transform": { "posX": 2.05724144, "posY": 1.62218869, "posZ": -4.86171532, "rotX": 0.0168645252, "rotY": 180.000046, "rotZ": 0.08031195, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Nine Lives", "Description": "Act 1", "GMNotes": "{\n \"id\": \"80025\",\n \"type\": \"Act\"\n}", "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": 538308, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7a167a", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69, "posY": 1.56, "posZ": 14.24, "rotX": 0, "rotY": 225, "rotZ": 0, "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.0, "g": 0.0, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/2038485431565955058/F72FECE5488594A28292C06997A2E28A8B8961C5/", "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": "4afd7f", "Name": "Card", "Transform": { "posX": 1.696503, "posY": 3.66318917, "posZ": 14.2788181, "rotX": 359.94812, "rotY": 224.998062, "rotZ": 0.05831184, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Meowlathotep", "Description": "Meowsenger of the Outer Gods", "GMNotes": "{\n \"id\": \"80037\",\n \"type\": \"Enemy\",\n \"traits\": \"Ancient One. Elite.\",\n \"victory\": 3\n}", "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": 538516, "SidewaysCard": false, "CustomDeck": { "5385": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/sRsWiSG.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a6049c", "Name": "Card", "Transform": { "posX": 12.274415, "posY": 1.49511564, "posZ": -0.07999642, "rotX": -9.14607663E-05, "rotY": 180.000015, "rotZ": 0.0006627407, "scaleX": 1.15, "scaleY": 1.0, "scaleZ": 1.15 }, "Nickname": "\"Skids\" O'Drool", "Description": "The Pound Escapee", "GMNotes": "{\n \"id\": \"80007\",\n \"type\": \"Investigator\",\n \"class\": \"Rogue\",\n \"traits\": \"Criminal.\",\n \"willpowerIcons\": 2,\n \"intellectIcons\": 3,\n \"combatIcons\": 3,\n \"agilityIcons\": 4\n}", "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": false, "Hands": true, "CardID": 538302, "SidewaysCard": true, "CustomDeck": { "5383": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c16b4e", "Name": "Card", "Transform": { "posX": -17.1200542, "posY": 1.53360486, "posZ": -7.70001459, "rotX": 2.16529763E-08, "rotY": 269.999756, "rotZ": 3.97623374E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Barkham Asylum", "Description": "Barkham.", "GMNotes": "{\n \"id\": \"80031\",\n \"type\": \"Location\",\n \"traits\": \"Barkham.\",\n \"locationFront\": {\n \"icons\": \"Diamond\",\n \"connections\": \"Triangle|Clover|Hourglass|Tilde\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Diamond\",\n \"connections\": \"Triangle|Clover|Hourglass|Tilde\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538414, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d41278", "Name": "Card", "Transform": { "posX": -3.9559145, "posY": 1.59660506, "posZ": -10.4411831, "rotX": -4.483437E-07, "rotY": 269.999756, "rotZ": 4.349988E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario", "Description": "The Meddling of Meowlathotep", "GMNotes": "{\"type\":\"ScenarioReference\",\"class\":\"Mythos\",\"tokens\":{\"back\":{\"Cultist\":{\"description\":\"-2. Place 1 doom on the nearest enemy.\",\"modifier\":-2},\"Elder Thing\":{\"description\":\"-7. Woof.\",\"modifier\":-7},\"Skull\":{\"description\":\"-X. X is the number of Meowsk enemies in play, in the victory display, and attached to Meowlathotep.\",\"modifier\":-999},\"Tablet\":{\"description\":\"-2. Place 1 of your clues on your location.\",\"modifier\":-2}},\"front\":{\"Cultist\":{\"description\":\"-2. If you fail, place 1 doom on the nearest enemy.\",\"modifier\":-2},\"Elder Thing\":{\"description\":\"-5. Woof.\",\"modifier\":-5},\"Skull\":{\"description\":\"-X. X is half the number of Meowsk enemies in play, in the victory display, and attached to Meowlathotep, rounded up.\",\"modifier\":-999},\"Tablet\":{\"description\":\"-2. If you fail, place 1 of your clues on your location.\",\"modifier\":-2}}}}}", "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": true, "CardID": 538405, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e61348", "Name": "Card", "Transform": { "posX": -23.67653, "posY": 1.53360486, "posZ": -7.70001936, "rotX": -1.22984488E-07, "rotY": 269.999756, "rotZ": 2.21524772E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Beasttown", "Description": "", "GMNotes": "{\n \"id\": \"80027\",\n \"type\": \"Location\",\n \"traits\": \"Barkham. Central.\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Diamond|Clover|Hourglass|Plus|Tee|Tilde\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Diamond|Clover|Hourglass|Plus|Tee|Tilde\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538410, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e87867", "Name": "Card", "Transform": { "posX": -30.224226, "posY": 1.53360486, "posZ": -0.0300053954, "rotX": 3.756095E-09, "rotY": 269.999878, "rotZ": 4.134077E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Snoutside", "Description": "Barkham. Central.", "GMNotes": "{\n \"id\": \"80029\",\n \"type\": \"Location\",\n \"traits\": \"Barkham. Central.\",\n \"locationFront\": {\n \"icons\": \"Plus\",\n \"connections\": \"Triangle|Square|Hourglass|Star|Tee|Heart\"\n },\n \"locationBack\": {\n \"icons\": \"Plus\",\n \"connections\": \"Triangle|Square|Hourglass|Star|Tee|Heart\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}", "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": 538412, "SidewaysCard": false, "CustomDeck": { "5384": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425383/1525B71690E98FAD7B4740D7DB1DA5722C094D3A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297425566/B77EE34309147A71D3711BB06B0EA17E4152EB00/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eab8ff", "Name": "CardCustom", "Transform": { "posX": 9.849991, "posY": 1.49510384, "posZ": 15.9200039, "rotX": 8.00604937E-07, "rotY": 269.999451, "rotZ": 1.97513714E-07, "scaleX": 0.6, "scaleY": 1.0, "scaleZ": 0.6 }, "Nickname": "Bark Harrigan", "Description": "", "GMNotes": "{\n \"id\": \"80001-m\",\n \"type\": \"Minicard\"\n}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Minicard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": false, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 538600, "SidewaysCard": false, "CustomDeck": { "5386": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297398338/55DA378B7A85123B0DBECF6E612DE294ECFD2D94/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297415428/68FFE0FA245C2F1A72ADEC8EBBA0128B2109E03F/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "efb4dd", "Name": "Deck", "Transform": { "posX": 15.1499882, "posY": 1.51205766, "posZ": -8.079998, "rotX": -1.627526E-06, "rotY": 270.000153, "rotZ": 1.1756007E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "", "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": [ 537607, 537606 ], "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1e6cae", "Name": "Card", "Transform": { "posX": 15.8583241, "posY": 1.47067189, "posZ": -7.926416, "rotX": 359.920135, "rotY": 270.000122, "rotZ": 0.0168734919, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "No Sense of Space or Time", "Description": "Weakness", "GMNotes": "{\n \"id\": \"80012\",\n \"type\": \"Treachery\",\n \"traits\": \"Flaw.\"\n}", "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": 537607, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bbf1af", "Name": "Card", "Transform": { "posX": 15.7711954, "posY": 1.50236475, "posZ": -7.66155148, "rotX": 359.920135, "rotY": 269.9999, "rotZ": 0.0168895219, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Chew Toy of Nightmares", "Description": "Nightmares, I Tell You", "GMNotes": "{\n \"id\": \"80011\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Relic. Cursed.\",\n \"willpowerIcons\": 1,\n \"intellectIcons\": 1,\n \"wildIcons\": 1\n}", "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": true, "Hands": true, "CardID": 537606, "SidewaysCard": false, "CustomDeck": { "5376": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1626320456297420931/3655DD579E6DE8FFA2C1E4D84DFDEA3B3957C28C/", "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", "NumWidth": 10, "NumHeight": 7, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "f5db25", "Name": "Custom_Tile", "Transform": { "posX": -3.6761992, "posY": 1.58300054, "posZ": -14.5353947, "rotX": -2.7151367E-07, "rotY": 269.999756, "rotZ": 3.54774414E-07, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "The Meddling of Meowlathotep", "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": "https://i.imgur.com/EcbhVuh.jpg/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'Meowlathotep'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "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 } } ] }