{ "GUID": "5f38ec", "Name": "Custom_Model_Bag", "Transform": { "posX": 14.8419437, "posY": 1.481499, "posZ": -5.64994669, "rotX": -4.215293E-07, "rotY": 270.0268, "rotZ": -5.42387E-07, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "The Legend of Sleepy Hollow", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420460064/3D20A71D13F484BEEBCF572E827CD38FF3DF57E4/", "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\":{\"033daa\":{\"lock\":false,\"pos\":{\"x\":-9.0466,\"y\":1.5684,\"z\":0.4547},\"rot\":{\"x\":1.3038,\"y\":270.0037,\"z\":0.0001}},\"0d0ca8\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.5336,\"z\":3.86},\"rot\":{\"x\":0,\"y\":269.9997,\"z\":180}},\"15b639\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6184,\"z\":-5.0485},\"rot\":{\"x\":0,\"y\":180.0166,\"z\":0}},\"4f9d72\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.5966,\"z\":0.3733},\"rot\":{\"x\":0,\"y\":180,\"z\":0}},\"7112e4\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.5336,\"z\":-0.03},\"rot\":{\"x\":0,\"y\":269.9998,\"z\":180}},\"75a1d7\":{\"lock\":false,\"pos\":{\"x\":-3.9285,\"y\":1.7628,\"z\":5.7561},\"rot\":{\"x\":0,\"y\":270.0072,\"z\":180}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.7024,\"y\":1.558,\"z\":14.2869},\"rot\":{\"x\":0,\"y\":224.7314,\"z\":0}},\"7d002e\":{\"lock\":false,\"pos\":{\"x\":-8.9411,\"y\":1.5602,\"z\":-3.1372},\"rot\":{\"x\":1.1525,\"y\":270.0174,\"z\":0.0005}},\"7fb809\":{\"lock\":false,\"pos\":{\"x\":-9.9078,\"y\":1.5336,\"z\":-13.0799},\"rot\":{\"x\":0,\"y\":270.0042,\"z\":0}},\"8385c4\":{\"lock\":false,\"pos\":{\"x\":-9.9019,\"y\":1.5336,\"z\":-6.2446},\"rot\":{\"x\":0,\"y\":269.9968,\"z\":180}},\"93a112\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.5336,\"z\":7.5708},\"rot\":{\"x\":0,\"y\":269.9991,\"z\":180}},\"98cfeb\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5966,\"z\":-10.4416},\"rot\":{\"x\":0,\"y\":269.9995,\"z\":0}},\"9e9ff6\":{\"lock\":false,\"pos\":{\"x\":-36.7734,\"y\":1.5336,\"z\":-7.7},\"rot\":{\"x\":0,\"y\":269.9993,\"z\":180}},\"abb407\":{\"lock\":false,\"pos\":{\"x\":-9.8828,\"y\":1.5336,\"z\":-15.3866},\"rot\":{\"x\":0,\"y\":270.0303,\"z\":0}},\"afa1f3\":{\"lock\":false,\"pos\":{\"x\":-9.8957,\"y\":1.5336,\"z\":-8.5333},\"rot\":{\"x\":0,\"y\":270.0023,\"z\":0}},\"b5a46b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.5336,\"z\":-3.8299},\"rot\":{\"x\":0,\"y\":270.0001,\"z\":180}},\"bbb70a\":{\"lock\":false,\"pos\":{\"x\":-3.9118,\"y\":1.6348,\"z\":-14.8057},\"rot\":{\"x\":358.6499,\"y\":270.029,\"z\":-0.0008}},\"bfa2a2\":{\"lock\":false,\"pos\":{\"x\":-9.9018,\"y\":1.5336,\"z\":-10.8101},\"rot\":{\"x\":0,\"y\":270.0024,\"z\":0}},\"e9cc5a\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.5336,\"z\":-0.03},\"rot\":{\"x\":0,\"y\":269.9995,\"z\":180}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "7a167a", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.70240092, "posY": 1.55803609, "posZ": 14.2869043, "rotX": 2.215477E-06, "rotY": 224.731384, "rotZ": 3.31255521E-08, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "4f2401", "Name": "Deck", "Transform": { "posX": -9.800889, "posY": 2.671785, "posZ": -8.34567, "rotX": 359.919739, "rotY": 269.999451, "rotZ": 0.0168404374, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Copies of Van Brunt's Reward", "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": [ 547801, 547803, 547800, 547802 ], "CustomDeck": { "5478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1673610911185589969/F8542398702886A3A42770D4AC3A743708FDE0A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "873eb1", "Name": "Card", "Transform": { "posX": -12.2992554, "posY": 1.66489053, "posZ": 12.7156153, "rotX": 359.9327, "rotY": 269.999451, "rotZ": 0.0165073127, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Van Brunt's Reward", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0ba72da8-9141-4aca-b92b-df49edfdacbd\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Boon\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard", "Asset" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 547801, "SidewaysCard": false, "CustomDeck": { "5478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1673610911185589969/F8542398702886A3A42770D4AC3A743708FDE0A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bb1c9b", "Name": "Card", "Transform": { "posX": -12.1113033, "posY": 1.71544385, "posZ": 13.2733192, "rotX": 0.05603949, "rotY": 270.001434, "rotZ": 0.102451161, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Van Brunt's Reward", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0ba72da8-9141-4aca-b92b-df49edfdacbd\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Boon\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard", "Asset" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 547803, "SidewaysCard": false, "CustomDeck": { "5478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1673610911185589969/F8542398702886A3A42770D4AC3A743708FDE0A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "85eb64", "Name": "Card", "Transform": { "posX": -12.5472631, "posY": 1.76650083, "posZ": 12.66848, "rotX": 359.835632, "rotY": 269.9983, "rotZ": 359.7073, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Van Brunt's Reward", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0ba72da8-9141-4aca-b92b-df49edfdacbd\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Boon\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard", "Asset" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 547800, "SidewaysCard": false, "CustomDeck": { "5478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1673610911185589969/F8542398702886A3A42770D4AC3A743708FDE0A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "918ed6", "Name": "Card", "Transform": { "posX": -11.81664, "posY": 1.61538839, "posZ": 13.5769911, "rotX": 359.921448, "rotY": 269.999481, "rotZ": 0.0076707094, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Van Brunt's Reward", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0ba72da8-9141-4aca-b92b-df49edfdacbd\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Boon\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard", "Asset" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 547802, "SidewaysCard": false, "CustomDeck": { "5478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1673610911185589969/F8542398702886A3A42770D4AC3A743708FDE0A0/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "6f3b2d", "Name": "Deck", "Transform": { "posX": 1.69642425, "posY": 3.68672872, "posZ": 14.2788353, "rotX": 359.948029, "rotY": 224.998062, "rotZ": 0.0582870729, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Copies of Secretive Hag", "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": [ 266307, 266306 ], "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "77f1d2", "Name": "Card", "Transform": { "posX": -11.1527853, "posY": 1.61382413, "posZ": 10.9739265, "rotX": 359.920227, "rotY": 269.998, "rotZ": 0.015978897, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Secretive Hag", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"bb714ed2-20f0-4914-9789-48926b9a99e2\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Witch\"}", "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": 266307, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c7c05b", "Name": "Card", "Transform": { "posX": -11.0859413, "posY": 1.6560837, "posZ": 10.9399672, "rotX": 359.9452, "rotY": 269.965851, "rotZ": 0.0453338921, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Secretive Hag", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"bb714ed2-20f0-4914-9789-48926b9a99e2\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Witch\"}", "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": 266306, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "240fda", "Name": "Deck", "Transform": { "posX": 1.69643986, "posY": 3.693333, "posZ": 14.2788639, "rotX": 359.6213, "rotY": 224.998215, "rotZ": 0.05744777, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Copies of Disembodied Skull", "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": [ 266324, 266323 ], "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "98d906", "Name": "Card", "Transform": { "posX": -11.0406733, "posY": 1.61469376, "posZ": 14.4824877, "rotX": 359.9203, "rotY": 269.9973, "rotZ": 0.0156392083, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Disembodied Skull", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"db1dc167-b1ca-4d38-81ab-33fbc5774fb1\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}", "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": 266324, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c86c62", "Name": "Card", "Transform": { "posX": -11.0027809, "posY": 1.65674007, "posZ": 14.2698946, "rotX": 359.922668, "rotY": 269.996918, "rotZ": 0.0143350735, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Disembodied Skull", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"db1dc167-b1ca-4d38-81ab-33fbc5774fb1\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}", "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": 266323, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "496054", "Name": "Card", "Transform": { "posX": 1.69642413, "posY": 3.669855, "posZ": 14.2788363, "rotX": 359.948059, "rotY": 224.998062, "rotZ": 0.05831881, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ichabod's Books", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"53b8d7a0-6128-4c25-8dc9-ffb5d1f18519\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Tome\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard", "Asset" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266337, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "432356", "Name": "Card", "Transform": { "posX": 1.69641566, "posY": 3.71751976, "posZ": 14.2788372, "rotX": 359.947845, "rotY": 224.997589, "rotZ": 357.567963, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ichabod Crane", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"08d18739-9755-4e08-8953-fc7eadb71eb2\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Geist\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "PlayerCard", "Asset" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266204, "SidewaysCard": false, "CustomDeck": { "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420464338/F72444EF5FA4609E4EE21F018D196390F9312D45/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "75a1d7", "Name": "Deck", "Transform": { "posX": -3.92850041, "posY": 1.762794, "posZ": 5.75610161, "rotX": 1.4324379E-08, "rotY": 270.007233, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Encounter Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": false, "SidewaysCard": false, "DeckIDs": [ 546900, 546901, 546902, 546903, 546904, 546905, 546908, 546909, 546910, 546911, 546912, 546913, 546914, 546915, 546916, 546917, 546918, 546919, 546920, 546921, 546922, 546925, 546926, 546927, 546928, 546929, 546930, 546931, 546932, 546933, 546934, 546935, 546936 ], "CustomDeck": { "5469": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "fca239", "Name": "Card", "Transform": { "posX": -3.92770815, "posY": 2.0836997, "posZ": 5.75714636, "rotX": 0.0462724045, "rotY": 269.9932, "rotZ": 174.2445, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Witch of the Hollow", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7a28dba8-6e70-4d09-a583-5990a8311cc0\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Witch\"}", "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": 546900, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d4ff3c", "Name": "Card", "Transform": { "posX": -3.92765117, "posY": 1.95206761, "posZ": 5.75713444, "rotX": 359.952179, "rotY": 270.000122, "rotZ": 180.045456, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Witch of the Hollow", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7a28dba8-6e70-4d09-a583-5990a8311cc0\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Witch\"}", "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": 546901, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1c9069", "Name": "Card", "Transform": { "posX": -3.92775631, "posY": 1.94398689, "posZ": 5.757227, "rotX": 359.9506, "rotY": 270.0, "rotZ": 179.987549, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Witch of the Hollow", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7a28dba8-6e70-4d09-a583-5990a8311cc0\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Witch\"}", "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": 546902, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8c4820", "Name": "Card", "Transform": { "posX": -3.92770767, "posY": 1.97145844, "posZ": 5.75714636, "rotX": 0.0103635313, "rotY": 270.0014, "rotZ": 181.448624, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Whispers on the Wind", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1ad87dfb-2c66-4ad0-8247-29912eace271\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546903, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "45c49a", "Name": "Card", "Transform": { "posX": -3.927751, "posY": 1.925682, "posZ": 5.75747347, "rotX": 359.9506, "rotY": 269.999969, "rotZ": 179.894012, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Whispers on the Wind", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1ad87dfb-2c66-4ad0-8247-29912eace271\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546904, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0c5b33", "Name": "Card", "Transform": { "posX": -3.92765141, "posY": 1.91103184, "posZ": 5.75726032, "rotX": 359.952454, "rotY": 270.000427, "rotZ": 180.067032, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Whispers on the Wind", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1ad87dfb-2c66-4ad0-8247-29912eace271\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546905, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8e9562", "Name": "Card", "Transform": { "posX": -3.92770815, "posY": 1.91731036, "posZ": 5.75714636, "rotX": 0.04728933, "rotY": 270.000061, "rotZ": 180.065964, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Quickening Ritual", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"35e3502c-c4e1-4a51-a1a8-b3c392c908b7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Curse\"}", "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": 546908, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "984aac", "Name": "Card", "Transform": { "posX": -3.927654, "posY": 1.89482415, "posZ": 5.757135, "rotX": 359.951935, "rotY": 270.000122, "rotZ": 180.057129, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Quickening Ritual", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"35e3502c-c4e1-4a51-a1a8-b3c392c908b7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Curse\"}", "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": 546909, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "83258d", "Name": "Card", "Transform": { "posX": -3.927661, "posY": 1.88365209, "posZ": 5.75714874, "rotX": 359.951965, "rotY": 270.002136, "rotZ": 180.052383, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Quickening Ritual", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"35e3502c-c4e1-4a51-a1a8-b3c392c908b7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Curse\"}", "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": 546910, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "41116f", "Name": "Card", "Transform": { "posX": -3.92769456, "posY": 1.87127316, "posZ": 5.757173, "rotX": 359.95285, "rotY": 269.999176, "rotZ": 180.056625, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Quickening Ritual", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"35e3502c-c4e1-4a51-a1a8-b3c392c908b7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Curse\"}", "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": 546911, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "65bdc5", "Name": "Card", "Transform": { "posX": -3.92770338, "posY": 1.921629, "posZ": 5.7571454, "rotX": 0.2102385, "rotY": 270.0246, "rotZ": 182.387039, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Marked by the Horseman", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6831841c-11a6-4d6e-afb7-8e4c204628bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546912, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "85b823", "Name": "Card", "Transform": { "posX": -3.92766118, "posY": 1.85475612, "posZ": 5.75714874, "rotX": 359.95163, "rotY": 270.002136, "rotZ": 180.052521, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Marked by the Horseman", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6831841c-11a6-4d6e-afb7-8e4c204628bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546913, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "be0050", "Name": "Card", "Transform": { "posX": -3.92775178, "posY": 1.84866107, "posZ": 5.75741625, "rotX": 359.950867, "rotY": 270.0, "rotZ": 179.914719, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Marked by the Horseman", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6831841c-11a6-4d6e-afb7-8e4c204628bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546914, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0fa3b4", "Name": "Card", "Transform": { "posX": -3.92770815, "posY": 1.85035956, "posZ": 5.75714636, "rotX": 0.049569618, "rotY": 270.0001, "rotZ": 180.082886, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Looming Spirit", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"28a0fa88-eff9-4e12-bc86-0840198f3edc\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Curse\"}", "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": 546915, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e1fd1b", "Name": "Card", "Transform": { "posX": -3.92718, "posY": 1.82927608, "posZ": 5.75692272, "rotX": 359.9521, "rotY": 269.974457, "rotZ": 179.819748, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Looming Spirit", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"28a0fa88-eff9-4e12-bc86-0840198f3edc\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Curse\"}", "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": 546916, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3b6135", "Name": "Card", "Transform": { "posX": -3.92775321, "posY": 1.81955147, "posZ": 5.75734949, "rotX": 359.950836, "rotY": 270.0, "rotZ": 179.941345, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hurled Pumpkin", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6fff3fac-4cd8-4f7a-b66b-6fa5b16d8e59\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546917, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "96828c", "Name": "Card", "Transform": { "posX": -3.92775178, "posY": 1.81015241, "posZ": 5.757416, "rotX": 359.950836, "rotY": 270.0, "rotZ": 179.914658, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hurled Pumpkin", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6fff3fac-4cd8-4f7a-b66b-6fa5b16d8e59\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546918, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f3b997", "Name": "Card", "Transform": { "posX": -3.92765117, "posY": 1.79802942, "posZ": 5.75713444, "rotX": 359.952881, "rotY": 270.000061, "rotZ": 180.029633, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hurled Pumpkin", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"6fff3fac-4cd8-4f7a-b66b-6fa5b16d8e59\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546919, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dfb170", "Name": "Card", "Transform": { "posX": -3.92770672, "posY": 1.78586924, "posZ": 5.757171, "rotX": 359.952, "rotY": 269.999573, "rotZ": 180.066559, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hessian Spectre", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b79801d1-fb75-4e3c-b6c4-f843fc0fc97a\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}", "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": 546920, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "265d0c", "Name": "Card", "Transform": { "posX": -3.927637, "posY": 1.78064144, "posZ": 5.75637674, "rotX": 359.9529, "rotY": 270.003876, "rotZ": 179.736862, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hessian Spectre", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b79801d1-fb75-4e3c-b6c4-f843fc0fc97a\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}", "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": 546921, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0aa8e3", "Name": "Card", "Transform": { "posX": -3.92775464, "posY": 1.77094984, "posZ": 5.757269, "rotX": 359.9504, "rotY": 270.0, "rotZ": 179.972458, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hessian Spectre", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b79801d1-fb75-4e3c-b6c4-f843fc0fc97a\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}", "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": 546922, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fddc72", "Name": "Card", "Transform": { "posX": -3.92765975, "posY": 1.76106215, "posZ": 5.75713634, "rotX": 359.951263, "rotY": 270.000061, "rotZ": 180.039536, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Decapitated Victim", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c8a62af0-c95e-4f33-a888-418ce4ce6b91\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}", "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": 546925, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7fbb75", "Name": "Card", "Transform": { "posX": -3.92769766, "posY": 1.79236436, "posZ": 5.757144, "rotX": 359.951416, "rotY": 269.9977, "rotZ": 177.889832, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Decapitated Victim", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c8a62af0-c95e-4f33-a888-418ce4ce6b91\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}", "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": 546926, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eb39c8", "Name": "Card", "Transform": { "posX": -3.927662, "posY": 1.73958969, "posZ": 5.75715065, "rotX": 359.951172, "rotY": 270.002167, "rotZ": 180.054214, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Decapitated Victim", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c8a62af0-c95e-4f33-a888-418ce4ce6b91\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}", "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": 546927, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "daba40", "Name": "Card", "Transform": { "posX": -3.927697, "posY": 1.72685981, "posZ": 5.757169, "rotX": 359.951447, "rotY": 269.999939, "rotZ": 180.063614, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Burgeoning Evil", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e0037d32-c737-4ca4-b375-325907b71167\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power. Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546928, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "44dbac", "Name": "Card", "Transform": { "posX": -3.9277513, "posY": 1.723486, "posZ": 5.75738, "rotX": 359.9505, "rotY": 270.0, "rotZ": 179.9278, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Burgeoning Evil", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e0037d32-c737-4ca4-b375-325907b71167\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power. Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546929, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "957049", "Name": "Card", "Transform": { "posX": -3.92763042, "posY": 1.71033108, "posZ": 5.75737429, "rotX": 359.9516, "rotY": 269.999451, "rotZ": 180.106216, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Burgeoning Evil", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e0037d32-c737-4ca4-b375-325907b71167\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power. Hex\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 546930, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ca71bb", "Name": "Card", "Transform": { "posX": -3.927753, "posY": 1.7040062, "posZ": 5.757377, "rotX": 359.950653, "rotY": 270.0, "rotZ": 179.931137, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bewitched", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c253b5c1-c1ac-45ce-8444-90fe2e48bb22\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Curse\"}", "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": 546931, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "40ce24", "Name": "Card", "Transform": { "posX": -3.92766023, "posY": 1.69109476, "posZ": 5.757287, "rotX": 359.951233, "rotY": 270.001129, "rotZ": 180.141327, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bewitched", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c253b5c1-c1ac-45ce-8444-90fe2e48bb22\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Curse\"}", "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": 546932, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fb6117", "Name": "Card", "Transform": { "posX": -3.927664, "posY": 1.6847949, "posZ": 5.757137, "rotX": 359.951263, "rotY": 270.0, "rotZ": 180.024216, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bewitched", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c253b5c1-c1ac-45ce-8444-90fe2e48bb22\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Curse\"}", "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": 546933, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "06fc16", "Name": "Card", "Transform": { "posX": -3.927759, "posY": 1.67389452, "posZ": 5.757166, "rotX": 359.9502, "rotY": 270.000031, "rotZ": 180.00798, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bewitched", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c253b5c1-c1ac-45ce-8444-90fe2e48bb22\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Curse\"}", "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": 546934, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "89eefa", "Name": "Card", "Transform": { "posX": -3.92772913, "posY": 1.63588691, "posZ": 5.75712, "rotX": 359.975067, "rotY": 269.999817, "rotZ": 180.112411, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Accursed Hollow", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"428b8d63-4b5b-4439-b25f-daffacf44932\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Curse\"}", "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": 546935, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e41d8c", "Name": "Card", "Transform": { "posX": -3.927732, "posY": 1.60225582, "posZ": 5.755722, "rotX": 359.9198, "rotY": 270.0002, "rotZ": 180.0171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Accursed Hollow", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"428b8d63-4b5b-4439-b25f-daffacf44932\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Curse\"}", "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": 546936, "SidewaysCard": false, "CustomDeck": { "2663": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "4f9d72", "Name": "Card", "Transform": { "posX": -2.72470021, "posY": 1.59660506, "posZ": 0.373300165, "rotX": -2.259995E-08, "rotY": 180.0, "rotZ": 1.66515832E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 1 - On the Wings of the Wind", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"de898b27-2f48-455e-907f-9ffb2e9a79b1\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":5}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266403, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476248/966C4F8D7E1395C3846E2AECD8F6FB486779932A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476787/7AE6F44F9C5B7C21057039B2DAF5DE15F70EC8E6/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "15b639", "Name": "Deck", "Transform": { "posX": -2.6886003, "posY": 1.61837292, "posZ": -5.048501, "rotX": 4.983683E-09, "rotY": 180.0166, "rotZ": 8.746635E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 266400, 266401, 266402 ], "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476248/966C4F8D7E1395C3846E2AECD8F6FB486779932A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476787/7AE6F44F9C5B7C21057039B2DAF5DE15F70EC8E6/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "f993bb", "Name": "Card", "Transform": { "posX": -2.68854928, "posY": 1.59742045, "posZ": -5.048516, "rotX": 0.0166523289, "rotY": 180.017014, "rotZ": 0.0843120739, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 3 - Banishing the Spectre", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a0b964b1-e04e-4ffa-8d96-c76e266dde0a\",\"type\":\"Act\",\"class\":\"Mythos\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266400, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476248/966C4F8D7E1395C3846E2AECD8F6FB486779932A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476787/7AE6F44F9C5B7C21057039B2DAF5DE15F70EC8E6/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "57944e", "Name": "Card", "Transform": { "posX": -2.68860269, "posY": 1.627305, "posZ": -5.048473, "rotX": 359.930481, "rotY": 180.005341, "rotZ": 359.9775, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 2 - The Hessian Horseman", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"11308525-9803-4c17-9a64-ff0208499245\",\"type\":\"Act\",\"class\":\"Mythos\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266401, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476248/966C4F8D7E1395C3846E2AECD8F6FB486779932A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476787/7AE6F44F9C5B7C21057039B2DAF5DE15F70EC8E6/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9cbf4c", "Name": "Card", "Transform": { "posX": -2.94, "posY": 1.67630637, "posZ": -5.104, "rotX": -6.96802745E-05, "rotY": 180.016617, "rotZ": -0.000101014346, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1 - The Tale of Ichabod Crane", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7df333c2-9046-47d1-93c6-26e4c6589eac\",\"type\":\"Act\",\"class\":\"Mythos\",\"clueThresholdPerInvestigator\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 266402, "SidewaysCard": true, "CustomDeck": { "2664": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476248/966C4F8D7E1395C3846E2AECD8F6FB486779932A/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420476787/7AE6F44F9C5B7C21057039B2DAF5DE15F70EC8E6/", "NumWidth": 2, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "98cfeb", "Name": "Card", "Transform": { "posX": -3.95600057, "posY": 1.59660506, "posZ": -10.4416018, "rotX": -1.1808674E-08, "rotY": 269.999481, "rotZ": -1.1908889E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario", "Description": "The Legend of Sleepy Hollow", "GMNotes": "{\"TtsZoopGuid\":\"29e98501-ef6a-4f25-ae0d-2726ec04dfa6\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 547206, "SidewaysCard": false, "CustomDeck": { "5472": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bbb70a", "Name": "Custom_Tile", "Transform": { "posX": -3.91179943, "posY": 1.63484955, "posZ": -14.8057032, "rotX": 358.649536, "rotY": 270.029, "rotZ": -1.58525763E-05, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "The Legend of Sleepy Hollow", "Description": "click to set chaos token difficulty", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", "ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'Sleepy Hollow'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\r\n", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "033daa", "Name": "Card", "Transform": { "posX": -9.046602, "posY": 1.56844187, "posZ": 0.4546981, "rotX": 1.3037796, "rotY": 270.0037, "rotZ": 8.278411E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Headless Horseman", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ea9a1916-d1fd-4c5a-bd34-aaa9d23d22a6\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Monster. Geist. Elite\"}", "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": 274538, "SidewaysCard": false, "CustomDeck": { "2745": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420470183/E44D3112A540FAFFC44BE69E3F11FE0AAA0EAA88/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 10, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7d002e", "Name": "Custom_PDF", "Transform": { "posX": -8.941097, "posY": 1.56022656, "posZ": -3.1372025, "rotX": 1.15248263, "rotY": 270.017365, "rotZ": 3.202299E-05, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Legend of Sleepy Hollow Booklet", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomPDF": { "PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1738925945687053121/904AFE8BCD9DA732CC21B7977A1C2C426AD0205E/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8385c4", "Name": "Card", "Transform": { "posX": -9.901897, "posY": 1.53360486, "posZ": -6.244602, "rotX": -4.94787962E-08, "rotY": 269.996826, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Front Cover / About", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5ddba47b-c3d3-4684-b6a6-06c584a90e64\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 547011, "SidewaysCard": false, "CustomDeck": { "5470": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "afa1f3", "Name": "Card", "Transform": { "posX": -9.895696, "posY": 1.53360486, "posZ": -8.533303, "rotX": 5.484367E-09, "rotY": 270.002319, "rotZ": -3.422992E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Standalone Rules / Side-Story Rules", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"10609354-1c52-4d53-b739-e75e419628da\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 547810, "SidewaysCard": false, "CustomDeck": { "5478": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1738925945687089764/5B9531AC91DF3D98D50623D136B6B97717635435/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "bfa2a2", "Name": "Card", "Transform": { "posX": -9.901796, "posY": 1.53360486, "posZ": -10.8101034, "rotX": 1.53078883E-08, "rotY": 270.0024, "rotZ": -3.75029535E-10, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Intro / Scenario Setup", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"575ce8e0-ccbf-46dc-9cf3-26dfdc6cb787\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 547609, "SidewaysCard": false, "CustomDeck": { "5476": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7fb809", "Name": "Card", "Transform": { "posX": -9.907795, "posY": 1.53360486, "posZ": -13.0799026, "rotX": -1.27886635E-08, "rotY": 270.004181, "rotZ": 6.173589E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Locations / Resolution 1", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4f74c93c-8bf8-482d-8778-cf2573f28ee6\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 547008, "SidewaysCard": false, "CustomDeck": { "5470": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "abb407", "Name": "Card", "Transform": { "posX": -9.882795, "posY": 1.53360486, "posZ": -15.3866043, "rotX": -3.00994643E-08, "rotY": 270.030334, "rotZ": -7.617699E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Resolution 2 / Back Cover", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"081bf259-9186-47a4-ab87-276add7fe8de\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 547407, "SidewaysCard": false, "CustomDeck": { "5474": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0d0ca8", "Name": "Card", "Transform": { "posX": -23.6765, "posY": 1.53360486, "posZ": 3.860001, "rotX": 4.307277E-08, "rotY": 269.9997, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "White Plains", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f7a2768f-5582-4201-884a-945ad7d5e270\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Sleepy Hollow\",\"locationFront\":{\"icons\":\"Clover\",\"connections\":\"DoubleSlash|Slash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Clover\",\"connections\":\"DoubleSlash|Slash\"}}", "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": 546600, "SidewaysCard": false, "CustomDeck": { "5466": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b5a46b", "Name": "Card", "Transform": { "posX": -23.6764984, "posY": 1.53360486, "posZ": -3.82990074, "rotX": -3.358071E-08, "rotY": 270.000122, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Derelict Schoolhouse", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8aed2e5a-c1a8-464e-a8b2-8c444783b613\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Sleepy Hollow\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"DoubleSlash|Clover\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":3}]},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"DoubleSlash|Clover\"}}", "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": 547501, "SidewaysCard": false, "CustomDeck": { "5475": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e9cc5a", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.53360486, "posZ": -0.029999828, "rotX": -5.32358069E-09, "rotY": 269.999542, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wiley's Swamp", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ba395cd7-46de-40a1-8e30-b5ab57a7e161\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Sleepy Hollow\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"T|Cross|Slash|Clover\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"T|Cross|Slash|Clover\"}}", "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": 547703, "SidewaysCard": false, "CustomDeck": { "5477": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "93a112", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.53360486, "posZ": 7.57080173, "rotX": -3.22529736E-08, "rotY": 269.999146, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Old Dutch Church", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0ee906cb-c858-4eae-8d75-9316ce6a1744\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Sleepy Hollow. Blessed\",\"locationFront\":{\"icons\":\"Cross\",\"connections\":\"DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Cross\",\"connections\":\"DoubleSlash\"}}", "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": 547102, "SidewaysCard": false, "CustomDeck": { "5471": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7112e4", "Name": "Card", "Transform": { "posX": -36.7732048, "posY": 1.53360486, "posZ": -0.0299999211, "rotX": 1.25226745E-08, "rotY": 269.999756, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Major Andre's Tree", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"cd5daa40-41ef-40c1-9502-cf5ca629a112\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Sleepy Hollow\",\"locationFront\":{\"icons\":\"T\",\"connections\":\"Square|DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"T\",\"connections\":\"Square|DoubleSlash\"}}", "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": 546804, "SidewaysCard": false, "CustomDeck": { "5468": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9e9ff6", "Name": "Card", "Transform": { "posX": -36.7734032, "posY": 1.53360486, "posZ": -7.70000124, "rotX": -5.88008E-09, "rotY": 269.999268, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Van Tassel Farmstead", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"dc62aeac-0f78-4d44-8792-16861046a0c5\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Sleepy Hollow\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"T\"}}", "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": 547305, "SidewaysCard": false, "CustomDeck": { "5473": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1617311203420478191/E4C5EE01FADD3E41DAB93BCCEB5B78FC2648D48D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1617310960258700881/CF4B827017BF075F40599577E9BA363EBB0A27B0/", "NumWidth": 4, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ], "AttachedDecals": [ { "Transform": { "posX": -0.0021877822, "posY": -0.08963572, "posZ": -0.00288731651, "rotX": 270.0, "rotY": 359.869568, "rotZ": 0.0, "scaleX": 2.00000215, "scaleY": 2.00000238, "scaleZ": 2.00000262 }, "CustomDecal": { "Name": "dunwich_back", "ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/", "Size": 7.4 } } ] }