{ "GUID": "fe07f7", "Name": "Custom_Model_Bag", "Transform": { "posX": 22.6147156, "posY": 1.48149908, "posZ": -5.958699, "rotX": 1.47613619E-08, "rotY": 270.000458, "rotZ": 6.718382E-07, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "The War of the Worlds", "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/1461933574036562700/261026F89C2322BF6390608AAB7DE43BEFB6240A/", "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", "LuaScriptState": "{\"ml\":{\"193901\":{\"lock\":false,\"pos\":{\"x\":8.6179,\"y\":1.5146,\"z\":-16.1944},\"rot\":{\"x\":359.9201,\"y\":270.0002,\"z\":0.0169}},\"313523\":{\"lock\":false,\"pos\":{\"x\":10.7639,\"y\":1.4665,\"z\":-0.0043},\"rot\":{\"x\":359.9201,\"y\":270.0055,\"z\":0.0169}},\"480756\":{\"lock\":false,\"pos\":{\"x\":12.2554,\"y\":1.4727,\"z\":28.0126},\"rot\":{\"x\":359.9201,\"y\":269.9943,\"z\":0.0169}},\"a0d2b1\":{\"lock\":false,\"pos\":{\"x\":10.57,\"y\":1.4641,\"z\":-8.9474},\"rot\":{\"x\":359.9201,\"y\":270.0628,\"z\":0.0168}},\"b5928a\":{\"lock\":false,\"pos\":{\"x\":-3.8478,\"y\":1.5825,\"z\":-14.7052},\"rot\":{\"x\":359.9197,\"y\":270.0028,\"z\":0.0168}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":-1.4656,\"y\":1.5756,\"z\":-26.9315},\"rot\":{\"x\":359.9201,\"y\":270.0101,\"z\":0.0169}},\"f70a0d\":{\"lock\":false,\"pos\":{\"x\":10.9056,\"y\":1.4689,\"z\":8.8892},\"rot\":{\"x\":359.9201,\"y\":269.999,\"z\":0.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "313523", "Name": "Custom_Model_Bag", "Transform": { "posX": 10.7639217, "posY": 1.48149908, "posZ": -0.0043049776, "rotX": -4.68463554E-07, "rotY": 270.005463, "rotZ": 2.06992951E-07, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "2: Phobos and Deimos", "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/1461933574036754011/5BB94F6CE5857794E639954A1AC904031A7752AE/", "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": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 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) 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=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPosition(entry.pos)\r\n obj.setRotation(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"01728a\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9998,\"z\":0.0168}},\"064b0f\":{\"lock\":false,\"pos\":{\"x\":-20.1646,\"y\":1.6107,\"z\":3.8968},\"rot\":{\"x\":359.9201,\"y\":270.0098,\"z\":0.0169}},\"0e9d55\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6292,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"0eb986\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6349,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"14f22b\":{\"lock\":false,\"pos\":{\"x\":2.3415,\"y\":1.394,\"z\":2.8614},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.9197}},\"1e366a\":{\"lock\":false,\"pos\":{\"x\":-2.7246,\"y\":1.6208,\"z\":0.3735},\"rot\":{\"x\":0.0168,\"y\":179.9992,\"z\":0.0803}},\"4ff006\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0003,\"z\":180.0168}},\"51a44f\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"5a544f\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"662189\":{\"lock\":false,\"pos\":{\"x\":-33.2744,\"y\":1.63,\"z\":7.4661},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0346,\"z\":0.08}},\"723bcf\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0171,\"y\":179.8131,\"z\":0.0799}},\"7d5965\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2791},\"rot\":{\"x\":359.9551,\"y\":224.9981,\"z\":0.0687}},\"8c86ec\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0005,\"z\":180.0168}},\"964dbc\":{\"lock\":false,\"pos\":{\"x\":-33.4039,\"y\":1.628,\"z\":-0.0959},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":0.0169}},\"982a77\":{\"lock\":false,\"pos\":{\"x\":-26.9448,\"y\":1.6207,\"z\":5.5592},\"rot\":{\"x\":359.9224,\"y\":300.0132,\"z\":359.9746}},\"a1198e\":{\"lock\":false,\"pos\":{\"x\":-27.2283,\"y\":1.636,\"z\":10.0866},\"rot\":{\"x\":359.9201,\"y\":270.1544,\"z\":0.0166}},\"a39847\":{\"lock\":false,\"pos\":{\"x\":2.0611,\"y\":1.3926,\"z\":-3.0653},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.9197}},\"cb64cc\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6247,\"z\":3.86},\"rot\":{\"x\":0.0172,\"y\":179.7664,\"z\":0.0799}},\"d0e2f1\":{\"lock\":false,\"pos\":{\"x\":-3.9272,\"y\":1.7925,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"d4f3f0\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6201,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"e0e879\":{\"lock\":false,\"pos\":{\"x\":-26.853,\"y\":1.6195,\"z\":1.9503},\"rot\":{\"x\":359.9392,\"y\":239.9978,\"z\":0.0545}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "01728a", "Name": "Card", "Transform": { "posX": -3.9560008, "posY": 1.59660506, "posZ": -10.4412031, "rotX": -6.99696923E-09, "rotY": 269.9988, "rotZ": 1.68711161E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario", "Description": "Phobos and Deimos", "GMNotes": "{\"TtsZoopGuid\":\"f3c1504a-acba-4c0f-a26b-5cd961917218\"}", "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": 266508, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0e9d55", "Name": "Card", "Transform": { "posX": -23.6765976, "posY": 1.53360486, "posZ": 3.86000228, "rotX": -1.15221184E-08, "rotY": 270.000122, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Rutgers University", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d4f56e2f-1427-4729-8d91-7b4b83351bda\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Newark\",\"locationFront\":{\"icons\":\"Star\",\"connections\":\"DoubleSlash|Square|Heart\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Star\",\"connections\":\"DoubleSlash|Square|Heart\"}}", "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": 266502, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0eb986", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.53360486, "posZ": -7.700004, "rotX": -2.45588927E-09, "rotY": 270.000549, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Port Newark", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0fe95368-f1d3-4047-b9a4-d4248029a92d\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Newark\",\"locationFront\":{\"icons\":\"Triangle\",\"connections\":\"DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Triangle\",\"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": 266503, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "14f22b", "Name": "Bag", "Transform": { "posX": 2.341501, "posY": 1.39796638, "posZ": 2.861401, "rotX": -2.78484123E-07, "rotY": -0.000262141839, "rotZ": -3.14662179E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The Martians wiped out the Militia", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "636a7c", "Name": "Deck", "Transform": { "posX": 2.46754217, "posY": 3.69941139, "posZ": 2.631233, "rotX": 0.277639329, "rotY": 180.001083, "rotZ": 0.3669915, "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": [ 267111, 266212, 267113 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9dd9f1", "Name": "Card", "Transform": { "posX": -10.976779, "posY": 1.61589837, "posZ": 14.67643, "rotX": 0.0259564742, "rotY": 179.881378, "rotZ": 359.9512, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 3 - Air Assault (v.I)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"86a24bc5-a017-44a0-9012-f56c60a2562c\",\"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": 267111, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f498f1", "Name": "Card", "Transform": { "posX": -2.68854475, "posY": 1.71145535, "posZ": -5.04852962, "rotX": 359.102539, "rotY": 179.999481, "rotZ": 0.0535789058, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 2 - Evacuation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"113ab363-79b3-45a3-b310-7da330f01196\",\"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": 266212, "SidewaysCard": true, "CustomDeck": { "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "51bfcd", "Name": "Card", "Transform": { "posX": -10.7224073, "posY": 1.69392443, "posZ": 14.5954447, "rotX": 0.1417623, "rotY": 179.999985, "rotZ": 0.08411597, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1 - The Voice of Reason", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4cecf6cc-fd08-4b3f-8b3e-30aacaa70ace\",\"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": 267113, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "1e366a", "Name": "Deck", "Transform": { "posX": -2.72460032, "posY": 1.61837292, "posZ": 0.373500049, "rotX": 1.96723313E-08, "rotY": 179.999146, "rotZ": -6.058699E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 267107, 267508, 267509 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "2675": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "408cc6", "Name": "Card", "Transform": { "posX": -2.72473669, "posY": 1.59795022, "posZ": 0.373332471, "rotX": 0.0269474462, "rotY": 179.999832, "rotZ": 0.0115358969, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 3 - Lambs to the Slaughter", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"058a4f03-b4dc-42ed-bdff-b149713a09a2\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":6}", "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": 267107, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e2aefb", "Name": "Card", "Transform": { "posX": -6.819369, "posY": 1.651678, "posZ": 16.4129868, "rotX": 0.0166342668, "rotY": 179.97876, "rotZ": 180.080536, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 2 - Steam and Dust", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"43512292-432d-4e62-958f-f8589de70cc3\",\"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": 267508, "SidewaysCard": true, "CustomDeck": { "2675": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c00a07", "Name": "Card", "Transform": { "posX": -7.12321949, "posY": 1.6099025, "posZ": 16.5624447, "rotX": 0.0174377225, "rotY": 180.004944, "rotZ": 180.080383, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 1 - Contagion of Fear", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"35e849d8-94fb-41bd-b512-e8bd85723101\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":6}", "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": 267509, "SidewaysCard": true, "CustomDeck": { "2675": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "4ff006", "Name": "Card", "Transform": { "posX": -36.77321, "posY": 1.53360486, "posZ": -0.0300001726, "rotX": 1.61278688E-08, "rotY": 270.000244, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Metropolitan Airport", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"bed22496-c7aa-4198-905b-43f780f7541b\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Newark\",\"locationFront\":{\"icons\":\"Circle\",\"connections\":\"DoubleSlash|Cross\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Circle\",\"connections\":\"DoubleSlash|Cross\"}}", "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": 266505, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "51a44f", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.53360486, "posZ": -0.0299998987, "rotX": -1.73287717E-07, "rotY": 270.000061, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Pennsylvania Station", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b11ac039-3af8-46cb-bc3b-30ce8c35cbf9\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Newark\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"Triangle|Circle|Square|Star|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":3}]},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"Triangle|Circle|Square|Star|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": 266504, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5a544f", "Name": "Card", "Transform": { "posX": -36.77321, "posY": 1.53360486, "posZ": 7.57000351, "rotX": -1.7049901E-08, "rotY": 270.000061, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Grace Church", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8b8c4cf3-f135-4583-9f49-d777c4b78f75\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Newark\",\"locationFront\":{\"icons\":\"Cross\",\"connections\":\"Circle|Square\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Cross\",\"connections\":\"Circle|Square\"}}", "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": 266506, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7d5965", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.696401, "posY": 1.5580368, "posZ": 14.2791042, "rotX": 6.130236E-06, "rotY": 224.998077, "rotZ": 1.18471019E-06, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "970d46", "Name": "Custom_Tile", "Transform": { "posX": 2.88540769, "posY": 3.65212321, "posZ": 13.6515312, "rotX": 359.919983, "rotY": 270.0208, "rotZ": 0.0169790015, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/ttnspKt.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f5c86b", "Name": "Custom_Tile", "Transform": { "posX": 1.69642711, "posY": 3.65536714, "posZ": 14.2788639, "rotX": 359.948151, "rotY": 224.998047, "rotZ": 0.05828665, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/VzhJJaH.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1b664e", "Name": "Card", "Transform": { "posX": 1.53535545, "posY": 2.80182528, "posZ": -7.878464, "rotX": 359.921143, "rotY": 270.000519, "rotZ": 0.0173076633, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Artillery Cannon", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"0c0cb343-dc81-4481-b244-871bf1e79292\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Weapon\"}", "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": 267721, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3bc219", "Name": "Card", "Transform": { "posX": 1.2288121, "posY": 2.60562539, "posZ": -5.205903, "rotX": 359.919739, "rotY": 270.002441, "rotZ": 0.0168336742, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Flying Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d2a66008-501a-4405-bed5-54d098aa6aad\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Elite. Martian. Vehicle\"}", "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": 267720, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cca3e4", "Name": "Card", "Transform": { "posX": 1.69830716, "posY": 3.66766977, "posZ": 14.2770367, "rotX": 359.9487, "rotY": 225.0303, "rotZ": 179.476608, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Holland Tunnel", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"36261e5b-4913-4c2d-8ef4-39ff8cf6ed77\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Newark\",\"locationFront\":{\"icons\":\"T\",\"connections\":\"DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"count\":0}]},\"locationBack\":{\"icons\":\"T\",\"connections\":\"DoubleSlash\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard", "Location" ], "LayoutGroupSortIndex": 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": 266500, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8c86ec", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.53360486, "posZ": 7.570002, "rotX": -7.86187648E-09, "rotY": 270.000549, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "City Hall", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"bd316513-cc87-429a-857e-27811ef0fc22\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Newark\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"DoubleSlash|Cross|Star\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"DoubleSlash|Cross|Star\"}}", "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": 266507, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "NumHeight": 3, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a1198e", "Name": "CardCustom", "Transform": { "posX": -27.2283, "posY": 1.53360486, "posZ": 10.0866051, "rotX": -8.556229E-08, "rotY": 270.154236, "rotZ": -1.1500471E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Professor Richard Pierson", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"036d81cd-6b7e-4abd-90a4-93234678200a\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Scientist\",\"intellectIcons\":1,\"willpowerIcons\":1,\"wildIcons\":1,\"cost\":3}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "Asset", "PlayerCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 266800, "SidewaysCard": false, "CustomDeck": { "2668": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192041297/E609281630368B6C3EECC8E3021B5EF3D0795EBA/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/", "NumWidth": 1, "NumHeight": 1, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a39847", "Name": "Bag", "Transform": { "posX": 2.0611012, "posY": 1.39796615, "posZ": -3.0653, "rotX": -2.11442966E-06, "rotY": 0.000755989749, "rotZ": 9.704863E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The militia suffered heavy losses in their retreat OR the militia made a safe retreat from Grovers Mill", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "8b7833", "Name": "Deck", "Transform": { "posX": 2.72844458, "posY": 3.68800068, "posZ": -3.761886, "rotX": 0.338363856, "rotY": 180.002335, "rotZ": 0.691744, "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": [ 267110, 266212, 267113 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 }, "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "11ecf9", "Name": "Card", "Transform": { "posX": -11.6038942, "posY": 1.69073081, "posZ": 11.1144724, "rotX": 0.0106298067, "rotY": 180.0, "rotZ": 180.106735, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 3 - Air Assault (v.II)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"2d2de1f8-d868-4ff8-928c-b861b1e2a3fa\",\"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": 267110, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f3c0ff", "Name": "Card", "Transform": { "posX": -2.68849754, "posY": 1.67198241, "posZ": -5.04851866, "rotX": 0.0165277459, "rotY": 179.999466, "rotZ": 0.0582970642, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 2 - Evacuation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"113ab363-79b3-45a3-b310-7da330f01196\",\"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": 266212, "SidewaysCard": true, "CustomDeck": { "2662": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "51bfcd", "Name": "Card", "Transform": { "posX": -11.0684214, "posY": 1.61471438, "posZ": 14.1980581, "rotX": 0.0169365946, "rotY": 180.000137, "rotZ": 180.080292, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1 - The Voice of Reason", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4cecf6cc-fd08-4b3f-8b3e-30aacaa70ace\",\"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": 267113, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "d0e2f1", "Name": "Deck", "Transform": { "posX": -3.92720032, "posY": 1.78686416, "posZ": 5.757101, "rotX": 1.52196137E-07, "rotY": 269.999939, "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": [ 267700, 267701, 267702, 267703, 267704, 267705, 267706, 267707, 267708, 267709, 267710, 267711, 267712, 267713, 267714, 267715, 267716, 267719, 267718, 267717, 267400, 267401, 267402, 267403, 267404, 267405, 267406, 267407, 267408, 267409, 267410, 267411, 267412, 267413, 267414, 267415, 267416, 267417 ], "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "a684e9", "Name": "Card", "Transform": { "posX": -6.75884151, "posY": 1.87077272, "posZ": 10.6409245, "rotX": 0.0634365156, "rotY": 270.001, "rotZ": 180.863083, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Trampling Crowd", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ec4e9f8f-e454-4f48-b5f9-ee60a0889dd4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror. Blunder\"}", "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": 267700, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "85364f", "Name": "Card", "Transform": { "posX": -7.28934956, "posY": 1.84126544, "posZ": 10.8785524, "rotX": 359.957123, "rotY": 270.000854, "rotZ": 180.2295, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Trampling Crowd", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ec4e9f8f-e454-4f48-b5f9-ee60a0889dd4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror. Blunder\"}", "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": 267701, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c30e8b", "Name": "Card", "Transform": { "posX": -7.15166855, "posY": 1.85161161, "posZ": 10.3266077, "rotX": 359.95575, "rotY": 269.931915, "rotZ": 178.420273, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Trampling Crowd", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ec4e9f8f-e454-4f48-b5f9-ee60a0889dd4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror. Blunder\"}", "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": 267702, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f142cc", "Name": "Card", "Transform": { "posX": -7.17827368, "posY": 1.82707071, "posZ": 10.2031374, "rotX": 359.952148, "rotY": 269.999634, "rotZ": 180.768066, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Trampling Crowd", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ec4e9f8f-e454-4f48-b5f9-ee60a0889dd4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror. Blunder\"}", "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": 267703, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ea3c29", "Name": "Card", "Transform": { "posX": -7.16615343, "posY": 1.80191469, "posZ": 10.7382717, "rotX": 359.952972, "rotY": 269.997681, "rotZ": 180.090347, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tangling Red Weeds", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c1e3f0aa-0d85-464f-b4cf-cef0983f20d9\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Obstacle. Flora\"}", "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": 267704, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "49a49e", "Name": "Card", "Transform": { "posX": -6.93657255, "posY": 1.82015717, "posZ": 11.1533947, "rotX": 359.951843, "rotY": 270.001251, "rotZ": 181.077927, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tangling Red Weeds", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c1e3f0aa-0d85-464f-b4cf-cef0983f20d9\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Obstacle. Flora\"}", "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": 267705, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a8a327", "Name": "Card", "Transform": { "posX": -7.09580231, "posY": 1.87678432, "posZ": 10.8072166, "rotX": 359.95224, "rotY": 270.003662, "rotZ": 175.334015, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tangling Red Weeds", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c1e3f0aa-0d85-464f-b4cf-cef0983f20d9\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Obstacle. Flora\"}", "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": 267706, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d60f76", "Name": "Card", "Transform": { "posX": -6.97053432, "posY": 1.78319836, "posZ": 10.7346659, "rotX": 359.951447, "rotY": 270.000122, "rotZ": 180.234909, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Panicked Civilian", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c4bdad30-5275-4402-8e52-f255082fbda8\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Bystander\"}", "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": 267707, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5fdd11", "Name": "Card", "Transform": { "posX": -7.17272854, "posY": 1.79510307, "posZ": 10.8405933, "rotX": 359.951935, "rotY": 270.000977, "rotZ": 181.138214, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Panicked Civilian", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c4bdad30-5275-4402-8e52-f255082fbda8\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Bystander\"}", "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": 267708, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e6d392", "Name": "Card", "Transform": { "posX": -7.384608, "posY": 1.78464615, "posZ": 10.4775333, "rotX": 0.0223417617, "rotY": 270.0006, "rotZ": 181.177017, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Panicked Civilian", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c4bdad30-5275-4402-8e52-f255082fbda8\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Bystander\"}", "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": 267709, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "11ac1e", "Name": "Card", "Transform": { "posX": -6.831865, "posY": 1.79482281, "posZ": 10.23097, "rotX": 359.920624, "rotY": 269.9979, "rotZ": 184.749039, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Panicked Civilian", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c4bdad30-5275-4402-8e52-f255082fbda8\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Bystander\"}", "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": 267710, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7214c3", "Name": "Card", "Transform": { "posX": -7.36284828, "posY": 1.83069944, "posZ": 10.4752789, "rotX": 359.951782, "rotY": 269.996765, "rotZ": 175.470718, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Opportunistic Refugee", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f8559135-81a2-470d-a418-be643fc4f0de\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Bystander. Criminal\"}", "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": 267711, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "34edb3", "Name": "Card", "Transform": { "posX": -7.09418535, "posY": 1.75366092, "posZ": 10.3980341, "rotX": 359.952, "rotY": 269.999054, "rotZ": 181.428314, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Opportunistic Refugee", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f8559135-81a2-470d-a418-be643fc4f0de\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Bystander. Criminal\"}", "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": 267712, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9be41f", "Name": "Card", "Transform": { "posX": -6.92868567, "posY": 1.722989, "posZ": 10.4213085, "rotX": 359.951935, "rotY": 270.0, "rotZ": 180.058945, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Opportunistic Refugee", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"f8559135-81a2-470d-a418-be643fc4f0de\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Bystander. Criminal\"}", "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": 267713, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "423474", "Name": "Card", "Transform": { "posX": -6.96024036, "posY": 2.04479122, "posZ": 10.8388147, "rotX": 359.9581, "rotY": 270.012329, "rotZ": 161.617935, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "General Hysteria", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"dd6ede38-9e83-40ad-925d-4b12a5b4b0cf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror. Blunder\"}", "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": 267714, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "729385", "Name": "Card", "Transform": { "posX": -7.20705032, "posY": 1.70619106, "posZ": 10.555706, "rotX": 359.9206, "rotY": 269.9994, "rotZ": 180.081909, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "General Hysteria", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"dd6ede38-9e83-40ad-925d-4b12a5b4b0cf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror. Blunder\"}", "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": 267715, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9de9f7", "Name": "Card", "Transform": { "posX": -7.1841507, "posY": 1.9352206, "posZ": 10.5217657, "rotX": 359.958, "rotY": 269.9849, "rotZ": 167.208481, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "General Hysteria", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"dd6ede38-9e83-40ad-925d-4b12a5b4b0cf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror. Blunder\"}", "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": 267716, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dd5431", "Name": "Card", "Transform": { "posX": -6.949881, "posY": 1.60788858, "posZ": 10.7385159, "rotX": 359.9179, "rotY": 270.019257, "rotZ": 0.0146787185, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Smoke", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c3856df8-394b-490c-a702-8783356a59da\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Hazard. Poison\"}", "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": 267719, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "006754", "Name": "Card", "Transform": { "posX": -6.81816, "posY": 1.64367831, "posZ": 11.1374521, "rotX": 359.896271, "rotY": 270.0014, "rotZ": 359.960663, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Smoke", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c3856df8-394b-490c-a702-8783356a59da\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Hazard. Poison\"}", "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": 267718, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "28995c", "Name": "Card", "Transform": { "posX": -7.14967, "posY": 1.684351, "posZ": 10.8285208, "rotX": 359.919464, "rotY": 270.001282, "rotZ": 0.0167955961, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Black Smoke", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c3856df8-394b-490c-a702-8783356a59da\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Hazard. Poison\"}", "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": 267717, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b7a687", "Name": "Card", "Transform": { "posX": -13.9324627, "posY": 1.85147655, "posZ": -3.548372, "rotX": 0.0364938639, "rotY": 270.0015, "rotZ": 181.037537, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267400, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed6319", "Name": "Card", "Transform": { "posX": -14.4051943, "posY": 1.84486878, "posZ": -2.6871326, "rotX": 0.000262588757, "rotY": 269.999634, "rotZ": 178.286057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267401, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "deeb02", "Name": "Card", "Transform": { "posX": -13.9666576, "posY": 1.836208, "posZ": -2.92806649, "rotX": 0.0361353867, "rotY": 270.002136, "rotZ": 180.992111, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267402, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e6188c", "Name": "Card", "Transform": { "posX": -14.4013987, "posY": 1.8282541, "posZ": -3.05022764, "rotX": 0.0358129255, "rotY": 270.002075, "rotZ": 181.0558, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267403, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cb7de2", "Name": "Card", "Transform": { "posX": -14.1754055, "posY": 1.97573352, "posZ": -3.33040977, "rotX": 359.967041, "rotY": 269.991241, "rotZ": 170.417313, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267404, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "564036", "Name": "Card", "Transform": { "posX": -13.81101, "posY": 1.80684662, "posZ": -3.28871918, "rotX": 359.952484, "rotY": 269.997742, "rotZ": 178.818954, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267405, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0dedff", "Name": "Card", "Transform": { "posX": -14.0105934, "posY": 1.79556668, "posZ": -2.69907117, "rotX": 0.0355848372, "rotY": 270.002136, "rotZ": 180.906708, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267406, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6826c1", "Name": "Card", "Transform": { "posX": -13.7216635, "posY": 1.7919054, "posZ": -2.66484356, "rotX": 0.03645171, "rotY": 270.00174, "rotZ": 181.054321, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267407, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0675da", "Name": "Card", "Transform": { "posX": -14.100811, "posY": 1.761666, "posZ": -3.19721437, "rotX": 0.0454738177, "rotY": 270.001221, "rotZ": 180.203171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267408, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "381c24", "Name": "Card", "Transform": { "posX": -13.7097759, "posY": 1.75093091, "posZ": -3.460492, "rotX": 0.0348324, "rotY": 270.000427, "rotZ": 180.106812, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267409, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d3bec9", "Name": "Card", "Transform": { "posX": -13.7490911, "posY": 1.75872517, "posZ": -3.03785515, "rotX": 359.952576, "rotY": 270.0009, "rotZ": 178.6434, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267410, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d19fab", "Name": "Card", "Transform": { "posX": -14.1113138, "posY": 1.75179267, "posZ": -3.13707137, "rotX": 0.0449036434, "rotY": 270.001038, "rotZ": 180.8343, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267411, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "df0679", "Name": "Card", "Transform": { "posX": -14.0707521, "posY": 1.739896, "posZ": -3.02546358, "rotX": 0.03610193, "rotY": 270.0021, "rotZ": 180.993851, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267412, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "927c6d", "Name": "Card", "Transform": { "posX": -13.7317514, "posY": 1.713524, "posZ": -2.86069036, "rotX": 0.0213335287, "rotY": 270.001251, "rotZ": 180.185257, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fighting Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5f485493-e7c3-4a35-a347-2d97ffa8c72d\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle. 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": 267413, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0160fa", "Name": "Card", "Transform": { "posX": -14.1116161, "posY": 1.70494974, "posZ": -2.82771277, "rotX": 0.03839522, "rotY": 270.001526, "rotZ": 180.254257, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fighting Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5f485493-e7c3-4a35-a347-2d97ffa8c72d\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle. 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": 267414, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7c2447", "Name": "Card", "Transform": { "posX": -13.8469458, "posY": 1.69424224, "posZ": -2.8296454, "rotX": 0.0221196488, "rotY": 270.001251, "rotZ": 180.184937, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267415, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74162b", "Name": "Card", "Transform": { "posX": -13.9195662, "posY": 1.67035687, "posZ": -2.87534976, "rotX": 0.03568758, "rotY": 270.002, "rotZ": 180.697662, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267416, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a89156", "Name": "Card", "Transform": { "posX": -11.836009, "posY": 1.78521478, "posZ": 21.5405064, "rotX": 359.9198, "rotY": 270.005981, "rotZ": 357.547546, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267417, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "d4f3f0", "Name": "Card", "Transform": { "posX": -17.1199989, "posY": 1.53360486, "posZ": 3.86000133, "rotX": 1.15361265E-09, "rotY": 270.0003, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "St. Michael's Medical Center", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4880a6b8-a182-405b-84d5-41625adf55a0\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Newark\",\"locationFront\":{\"icons\":\"Heart\",\"connections\":\"Star\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Heart\",\"connections\":\"Star\"}}", "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": 266501, "SidewaysCard": false, "CustomDeck": { "2665": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192037522/2A41C4766ED8A961385593CB64DBC25B9BD90B4D/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192038474/205B66304912610B996077B245D427395AF20E17/", "NumWidth": 3, "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 } } ] }, { "GUID": "480756", "Name": "Custom_PDF", "Transform": { "posX": 12.2554131, "posY": 1.4814992, "posZ": 28.0125961, "rotX": -1.67353619E-07, "rotY": 269.994263, "rotZ": 3.011113E-07, "scaleX": 3.51166582, "scaleY": 1.0, "scaleZ": 3.51166582 }, "Nickname": "War of the Worlds Campaign Guide", "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/1738925945686864121/17B644E8272E9ECE23095AFC72995D14A40425FB/", "PDFPassword": "", "PDFPage": 0, "PDFPageOffset": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a0d2b1", "Name": "Custom_Model_Bag", "Transform": { "posX": 10.5700254, "posY": 1.481499, "posZ": -8.947406, "rotX": 4.858988E-07, "rotY": 270.062775, "rotZ": 1.9938912E-07, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "3: The Thirsting Void", "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/1461933574036567398/15DAAE868BDDCBD5C0DB4F6CAA260264C0993C35/", "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": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 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) 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=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPosition(entry.pos)\r\n obj.setRotation(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"0683a6\":{\"lock\":false,\"pos\":{\"x\":2.5417,\"y\":1.3917,\"z\":-4.1378},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.9197}},\"0e619c\":{\"lock\":false,\"pos\":{\"x\":-33.9406,\"y\":1.6294,\"z\":1.9878},\"rot\":{\"x\":359.939,\"y\":240.2362,\"z\":0.0543}},\"13e962\":{\"lock\":false,\"pos\":{\"x\":-36.7745,\"y\":1.6316,\"z\":-3.8288},\"rot\":{\"x\":0.0169,\"y\":179.99,\"z\":0.08}},\"143177\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0168}},\"1b6eb1\":{\"lock\":false,\"pos\":{\"x\":-31.0312,\"y\":1.6538,\"z\":-5.5705},\"rot\":{\"x\":359.9201,\"y\":270.0015,\"z\":180.9124}},\"1cfcd8\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6281,\"z\":-0.0297},\"rot\":{\"x\":359.9201,\"y\":270.0077,\"z\":180.0168}},\"1e47a1\":{\"lock\":false,\"pos\":{\"x\":-33.7422,\"y\":1.6268,\"z\":-5.8858},\"rot\":{\"x\":359.9389,\"y\":240.301,\"z\":0.0542}},\"43c278\":{\"lock\":false,\"pos\":{\"x\":-23.9177,\"y\":1.6441,\"z\":-1.865},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":180.8658}},\"507873\":{\"lock\":false,\"pos\":{\"x\":-27.0204,\"y\":1.6174,\"z\":-5.9677},\"rot\":{\"x\":359.9224,\"y\":300.0099,\"z\":359.9747}},\"51b850\":{\"lock\":false,\"pos\":{\"x\":2.5947,\"y\":1.3927,\"z\":-0.2028},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.9197}},\"533582\":{\"lock\":false,\"pos\":{\"x\":-20.1668,\"y\":1.6084,\"z\":-4.1121},\"rot\":{\"x\":359.9317,\"y\":315.1504,\"z\":359.9552}},\"59d06d\":{\"lock\":false,\"pos\":{\"x\":-26.9777,\"y\":1.6184,\"z\":-2.4034},\"rot\":{\"x\":359.9392,\"y\":240.0526,\"z\":0.0545}},\"59f8a9\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":180.0168}},\"6436eb\":{\"lock\":false,\"pos\":{\"x\":-32.0494,\"y\":1.6261,\"z\":-0.0812},\"rot\":{\"x\":0.0168,\"y\":179.9968,\"z\":0.0799}},\"69b73d\":{\"lock\":false,\"pos\":{\"x\":-3.9274,\"y\":1.7829,\"z\":5.757},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7734,\"y\":1.6339,\"z\":3.8601},\"rot\":{\"x\":0.0168,\"y\":180.0052,\"z\":0.08}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.6964,\"y\":1.5583,\"z\":14.2789},\"rot\":{\"x\":359.9551,\"y\":225.0009,\"z\":0.0687}},\"8e9499\":{\"lock\":false,\"pos\":{\"x\":2.6428,\"y\":1.3938,\"z\":3.4968},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.9197}},\"92a3d2\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6383,\"z\":3.86},\"rot\":{\"x\":359.9201,\"y\":269.9964,\"z\":180.0168}},\"986ddd\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"a318ba\":{\"lock\":false,\"pos\":{\"x\":-33.4763,\"y\":1.6298,\"z\":5.5945},\"rot\":{\"x\":359.9224,\"y\":300.1253,\"z\":359.9745}},\"a73f89\":{\"lock\":false,\"pos\":{\"x\":-2.725,\"y\":1.6208,\"z\":0.3689},\"rot\":{\"x\":0.0168,\"y\":180.0203,\"z\":0.0803}},\"ab952b\":{\"lock\":false,\"pos\":{\"x\":-38.0369,\"y\":1.6631,\"z\":-9.3684},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.9491}},\"afe2c5\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6167,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":180.0168}},\"b6a70f\":{\"lock\":false,\"pos\":{\"x\":-30.2237,\"y\":1.6361,\"z\":-3.8313},\"rot\":{\"x\":359.9201,\"y\":269.9796,\"z\":180.0168}},\"becd49\":{\"lock\":false,\"pos\":{\"x\":-27.1866,\"y\":1.6199,\"z\":1.838},\"rot\":{\"x\":359.9224,\"y\":300.02,\"z\":359.9746}},\"c43615\":{\"lock\":false,\"pos\":{\"x\":-33.6095,\"y\":1.6278,\"z\":-1.8932},\"rot\":{\"x\":359.9223,\"y\":299.8525,\"z\":359.9749}},\"c7a9b1\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.0302},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":180.0168}},\"d6cc50\":{\"lock\":false,\"pos\":{\"x\":-38.5548,\"y\":1.6662,\"z\":-1.6835},\"rot\":{\"x\":359.9202,\"y\":269.9995,\"z\":180.9544}},\"f8f2ef\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":269.9993,\"z\":0.0168}},\"fdc52f\":{\"lock\":false,\"pos\":{\"x\":-20.5628,\"y\":1.6079,\"z\":-7.6857},\"rot\":{\"x\":359.9201,\"y\":270.0123,\"z\":0.0169}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "0683a6", "Name": "Bag", "Transform": { "posX": 2.5417006, "posY": 1.39796627, "posZ": -4.137801, "rotX": 3.485189E-07, "rotY": 0.0006236416, "rotZ": -1.08055519E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Tokens for \"Evacuated Locations\" setup", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "76cfbe", "Name": "Custom_Tile", "Transform": { "posX": 2.71743846, "posY": 3.64815855, "posZ": -4.97484159, "rotX": 359.718, "rotY": 269.9833, "rotZ": 1.01457024, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/9t3rPTQ.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c09eb2", "Name": "Custom_Tile", "Transform": { "posX": 2.838069, "posY": 3.64411926, "posZ": -4.084621, "rotX": 356.903137, "rotY": 269.8496, "rotZ": 2.48115921, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/4WRD42n.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e2d6e2", "Name": "Custom_Tile", "Transform": { "posX": 3.10021353, "posY": 3.65043259, "posZ": -4.15475368, "rotX": 358.664764, "rotY": 270.027649, "rotZ": 0.0251132064, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/c9qdSzS.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "60e324", "Name": "Custom_Tile", "Transform": { "posX": 2.819159, "posY": 3.64922929, "posZ": -3.629479, "rotX": 359.2593, "rotY": 269.97583, "rotZ": 358.840179, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/3Ym1IeG.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1cc49b", "Name": "Custom_Tile", "Transform": { "posX": 2.44853616, "posY": 3.66027522, "posZ": -4.28092241, "rotX": 0.5037433, "rotY": 270.028, "rotZ": 0.8149837, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/qrgGQRD.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f665f1", "Name": "Custom_Tile", "Transform": { "posX": 3.07544875, "posY": 3.57018948, "posZ": -5.055033, "rotX": 357.999664, "rotY": 269.981079, "rotZ": 3.02185941, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/yfs8gHq.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e7edaf", "Name": "Custom_Tile", "Transform": { "posX": 2.61573958, "posY": 3.649919, "posZ": -3.50917029, "rotX": 359.789642, "rotY": 270.0258, "rotZ": 358.827179, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/bfTg2hb.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d13aab", "Name": "Custom_Tile", "Transform": { "posX": 2.81931281, "posY": 3.62438917, "posZ": -5.122612, "rotX": 359.6873, "rotY": 270.037384, "rotZ": 0.998386145, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/w3XbrCC.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "143177", "Name": "Card", "Transform": { "posX": -36.77321, "posY": 1.53360486, "posZ": 7.570018, "rotX": 2.75080048E-08, "rotY": 270.000031, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Statue of Liberty", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"43500db2-f324-4c8d-b6dc-17fb2041d8ca\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Triangle\",\"connections\":\"Square|Cross\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"count\":0}]},\"locationBack\":{\"icons\":\"Triangle\",\"connections\":\"Square|Cross\"}}", "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": 266708, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1b6eb1", "Name": "Card", "Transform": { "posX": -31.0312, "posY": 1.55069828, "posZ": -5.570509, "rotX": -1.568809E-05, "rotY": 270.001434, "rotZ": 180.895508, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Derelict Skyscraper", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"fe6ef14a-611d-46a1-8002-ca95b4e8c3b9\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Moon\",\"connections\":\"Circle|Star|Cross|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Moon\",\"connections\":\"Circle|Star|Cross|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": 266703, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "1cfcd8", "Name": "Card", "Transform": { "posX": -23.6765881, "posY": 1.53360546, "posZ": -0.0296944752, "rotX": -3.60846911E-06, "rotY": 270.008453, "rotZ": 179.999969, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abandoned Theater", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"45dc6060-80d9-490c-9862-5043c449bcd0\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Star\",\"connections\":\"Diamond|Square|Moon\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Star\",\"connections\":\"Diamond|Square|Moon\"}}", "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": 266705, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "43c278", "Name": "Card", "Transform": { "posX": -23.917696, "posY": 1.54980969, "posZ": -1.86500442, "rotX": -3.76194021E-06, "rotY": 269.995544, "rotZ": 180.848984, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Abandoned Theater", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"430af5a7-be99-4518-b6e2-ec754e2da226\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Star\",\"connections\":\"Diamond|Square|Moon\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Star\",\"connections\":\"Diamond|Square|Moon\"}}", "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": 266704, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "51b850", "Name": "Bag", "Transform": { "posX": 2.59470224, "posY": 1.39796638, "posZ": -0.202799976, "rotX": 6.33657464E-07, "rotY": 0.0006284108, "rotZ": 4.835862E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The investigators did not discover some of the Martians' weaknesses", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "379cf1", "Name": "Deck", "Transform": { "posX": 2.50810027, "posY": 3.68922043, "posZ": 0.09263553, "rotX": 358.979858, "rotY": 180.012253, "rotZ": 357.5359, "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": [ 267103, 267104, 267105 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "2ae3d0", "Name": "Card", "Transform": { "posX": -14.9558353, "posY": 1.61915565, "posZ": 10.9062376, "rotX": 0.0170365889, "rotY": 180.001434, "rotZ": 0.07882887, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 3 - Blessing of the Great Abyss", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"36e8ba9b-a157-4cf1-a08f-6d391b353f3e\",\"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": 267103, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "68aae2", "Name": "Card", "Transform": { "posX": -15.0258875, "posY": 1.661225, "posZ": 10.7000446, "rotX": 0.01500339, "rotY": 180.000061, "rotZ": 0.0780621842, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 2 - Lost in Translation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3aaec555-c51a-4b8a-9273-a531df6bb640\",\"type\":\"Act\",\"class\":\"Mythos\",\"clueThresholdPerInvestigator\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 267104, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d2115f", "Name": "Card", "Transform": { "posX": -15.0619593, "posY": 1.69516742, "posZ": 10.4667578, "rotX": 0.0182290189, "rotY": 180.0001, "rotZ": 0.0784326643, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1 - Stark and Silent (v.II)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7fba53c2-aa01-4406-865c-447cdba08fae\",\"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": 267105, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "59f8a9", "Name": "Card", "Transform": { "posX": -23.67659, "posY": 1.53360486, "posZ": -7.70001554, "rotX": 1.03897184E-08, "rotY": 269.999725, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "General Motors Building", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c8d554b0-04e1-4790-bbda-7a4fa258b703\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Circle\",\"connections\":\"Diamond|Moon\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Circle\",\"connections\":\"Diamond|Moon\"}}", "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": 266710, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "69b73d", "Name": "Deck", "Transform": { "posX": -3.92740417, "posY": 1.7772361, "posZ": 5.757012, "rotX": -3.32005158E-07, "rotY": 270.000031, "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": [ 267700, 267701, 267702, 267703, 267704, 267705, 267706, 267707, 267708, 267709, 267710, 267711, 267712, 267713, 267714, 267715, 267716, 267717, 267400, 267401, 267402, 267403, 267404, 267405, 267406, 267407, 267408, 267409, 267410, 267411, 267412, 267413, 267414, 267415, 267416, 267417 ], "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "dc4dbb", "Name": "Card", "Transform": { "posX": -3.92766213, "posY": 1.81924617, "posZ": 5.757137, "rotX": 359.952667, "rotY": 269.9998, "rotZ": 179.96199, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ulla... Ulla...", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"578a0df3-21db-4807-be82-297de3d87707\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267700, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "610351", "Name": "Card", "Transform": { "posX": -3.92769742, "posY": 1.85036182, "posZ": 5.757144, "rotX": 359.951416, "rotY": 269.99765, "rotZ": 177.865387, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ulla... Ulla...", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"578a0df3-21db-4807-be82-297de3d87707\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267701, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "68bd75", "Name": "Card", "Transform": { "posX": -3.92770576, "posY": 1.841866, "posZ": 5.757146, "rotX": 359.951752, "rotY": 269.9985, "rotZ": 178.114777, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Ulla... Ulla...", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"578a0df3-21db-4807-be82-297de3d87707\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267702, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c13807", "Name": "Card", "Transform": { "posX": -3.92769742, "posY": 1.83113647, "posZ": 5.757144, "rotX": 359.951721, "rotY": 269.9976, "rotZ": 177.863953, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Star Vampire", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b9af8406-fa48-46ed-9234-18bdaa20abe5\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Monster. Extradimensional. 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": 267703, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c48f32", "Name": "Card", "Transform": { "posX": -3.927672, "posY": 1.777268, "posZ": 5.75721359, "rotX": 359.951569, "rotY": 270.000916, "rotZ": 180.092331, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Star Vampire", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b9af8406-fa48-46ed-9234-18bdaa20abe5\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Monster. Extradimensional. 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": 267704, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e848e6", "Name": "Card", "Transform": { "posX": -3.92761755, "posY": 1.77022731, "posZ": 5.75759029, "rotX": 359.9521, "rotY": 270.000763, "rotZ": 180.273727, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hound of Tindalos", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c76ea0d6-aeb6-41da-995c-bfceb0d64770\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Extradimensional\"}", "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": 267705, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fb659f", "Name": "Card", "Transform": { "posX": -3.92765117, "posY": 1.75951862, "posZ": 5.75713444, "rotX": 359.9516, "rotY": 270.000122, "rotZ": 180.0455, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hound of Tindalos", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c76ea0d6-aeb6-41da-995c-bfceb0d64770\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Extradimensional\"}", "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": 267706, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d408c4", "Name": "Card", "Transform": { "posX": -3.92770982, "posY": 1.74834883, "posZ": 5.757172, "rotX": 359.951141, "rotY": 269.999969, "rotZ": 180.06395, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hound of Tindalos", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c76ea0d6-aeb6-41da-995c-bfceb0d64770\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Extradimensional\"}", "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": 267707, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0d2a26", "Name": "Card", "Transform": { "posX": -3.92766523, "posY": 1.74275851, "posZ": 5.7571373, "rotX": 359.950836, "rotY": 269.999481, "rotZ": 179.884735, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Hound of Tindalos", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c76ea0d6-aeb6-41da-995c-bfceb0d64770\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Extradimensional\"}", "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": 267708, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cac2d9", "Name": "Card", "Transform": { "posX": -3.927664, "posY": 1.73291409, "posZ": 5.757137, "rotX": 359.950623, "rotY": 269.9998, "rotZ": 179.966675, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frenzied", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"66d7c4e6-b22d-4c64-99c5-6c06671ec5b4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267709, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3e663d", "Name": "Card", "Transform": { "posX": -3.927662, "posY": 1.72049773, "posZ": 5.75715065, "rotX": 359.951569, "rotY": 270.002136, "rotZ": 180.054276, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frenzied", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"66d7c4e6-b22d-4c64-99c5-6c06671ec5b4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267710, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "dce334", "Name": "Card", "Transform": { "posX": -3.92765427, "posY": 1.71191812, "posZ": 5.757135, "rotX": 359.9516, "rotY": 270.000122, "rotZ": 180.057449, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Frenzied", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"66d7c4e6-b22d-4c64-99c5-6c06671ec5b4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267711, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "191c6d", "Name": "Card", "Transform": { "posX": -3.927662, "posY": 1.70124269, "posZ": 5.75715065, "rotX": 359.951538, "rotY": 270.002136, "rotZ": 180.054352, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Death Throes", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ef98caf0-0f71-4101-8304-97e8dcee21c7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Desperate\"}", "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": 267712, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "127004", "Name": "Card", "Transform": { "posX": -3.9277, "posY": 1.68894613, "posZ": 5.757167, "rotX": 359.951447, "rotY": 270.0, "rotZ": 180.060242, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Death Throes", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ef98caf0-0f71-4101-8304-97e8dcee21c7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Desperate\"}", "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": 267713, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "90c62e", "Name": "Card", "Transform": { "posX": -3.92770815, "posY": 1.72826815, "posZ": 5.75714636, "rotX": 0.04745216, "rotY": 269.9979, "rotZ": 178.268448, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Death Throes", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ef98caf0-0f71-4101-8304-97e8dcee21c7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Desperate\"}", "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": 267714, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "833214", "Name": "Card", "Transform": { "posX": -3.92765641, "posY": 1.67182815, "posZ": 5.75715351, "rotX": 359.9512, "rotY": 270.002258, "rotZ": 180.0606, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bloodlust", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"be946e27-f7f4-4a28-96e7-b1ceb8e1a6dc\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267715, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "337999", "Name": "Card", "Transform": { "posX": -3.92776012, "posY": 1.63972652, "posZ": 5.75709724, "rotX": 359.94577, "rotY": 270.000031, "rotZ": 180.031647, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bloodlust", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"be946e27-f7f4-4a28-96e7-b1ceb8e1a6dc\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267716, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "5eb7c7", "Name": "Card", "Transform": { "posX": -3.927671, "posY": 1.60222316, "posZ": 5.757167, "rotX": 359.920135, "rotY": 270.000244, "rotZ": 180.019272, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Bloodlust", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"be946e27-f7f4-4a28-96e7-b1ceb8e1a6dc\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Power\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267717, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b7a687", "Name": "Card", "Transform": { "posX": -13.9324627, "posY": 1.85147655, "posZ": -3.548372, "rotX": 0.0364938639, "rotY": 270.0015, "rotZ": 181.037537, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267400, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed6319", "Name": "Card", "Transform": { "posX": -14.4051943, "posY": 1.84486878, "posZ": -2.6871326, "rotX": 0.000262588757, "rotY": 269.999634, "rotZ": 178.286057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267401, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "deeb02", "Name": "Card", "Transform": { "posX": -13.9666576, "posY": 1.836208, "posZ": -2.92806649, "rotX": 0.0361353867, "rotY": 270.002136, "rotZ": 180.992111, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267402, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e6188c", "Name": "Card", "Transform": { "posX": -14.4013987, "posY": 1.8282541, "posZ": -3.05022764, "rotX": 0.0358129255, "rotY": 270.002075, "rotZ": 181.0558, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267403, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cb7de2", "Name": "Card", "Transform": { "posX": -14.1754055, "posY": 1.97573352, "posZ": -3.33040977, "rotX": 359.967041, "rotY": 269.991241, "rotZ": 170.417313, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267404, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "564036", "Name": "Card", "Transform": { "posX": -13.81101, "posY": 1.80684662, "posZ": -3.28871918, "rotX": 359.952484, "rotY": 269.997742, "rotZ": 178.818954, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267405, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0dedff", "Name": "Card", "Transform": { "posX": -14.0105934, "posY": 1.79556668, "posZ": -2.69907117, "rotX": 0.0355848372, "rotY": 270.002136, "rotZ": 180.906708, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267406, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6826c1", "Name": "Card", "Transform": { "posX": -13.7216635, "posY": 1.7919054, "posZ": -2.66484356, "rotX": 0.03645171, "rotY": 270.00174, "rotZ": 181.054321, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267407, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0675da", "Name": "Card", "Transform": { "posX": -14.100811, "posY": 1.761666, "posZ": -3.19721437, "rotX": 0.0454738177, "rotY": 270.001221, "rotZ": 180.203171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267408, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "381c24", "Name": "Card", "Transform": { "posX": -13.7097759, "posY": 1.75093091, "posZ": -3.460492, "rotX": 0.0348324, "rotY": 270.000427, "rotZ": 180.106812, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267409, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d3bec9", "Name": "Card", "Transform": { "posX": -13.7490911, "posY": 1.75872517, "posZ": -3.03785515, "rotX": 359.952576, "rotY": 270.0009, "rotZ": 178.6434, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267410, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d19fab", "Name": "Card", "Transform": { "posX": -14.1113138, "posY": 1.75179267, "posZ": -3.13707137, "rotX": 0.0449036434, "rotY": 270.001038, "rotZ": 180.8343, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267411, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "df0679", "Name": "Card", "Transform": { "posX": -14.0707521, "posY": 1.739896, "posZ": -3.02546358, "rotX": 0.03610193, "rotY": 270.0021, "rotZ": 180.993851, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267412, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "927c6d", "Name": "Card", "Transform": { "posX": -13.7317514, "posY": 1.713524, "posZ": -2.86069036, "rotX": 0.0213335287, "rotY": 270.001251, "rotZ": 180.185257, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fighting Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5f485493-e7c3-4a35-a347-2d97ffa8c72d\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle. 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": 267413, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0160fa", "Name": "Card", "Transform": { "posX": -14.1116161, "posY": 1.70494974, "posZ": -2.82771277, "rotX": 0.03839522, "rotY": 270.001526, "rotZ": 180.254257, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fighting Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5f485493-e7c3-4a35-a347-2d97ffa8c72d\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle. 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": 267414, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7c2447", "Name": "Card", "Transform": { "posX": -13.8469458, "posY": 1.69424224, "posZ": -2.8296454, "rotX": 0.0221196488, "rotY": 270.001251, "rotZ": 180.184937, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267415, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74162b", "Name": "Card", "Transform": { "posX": -13.9195662, "posY": 1.67035687, "posZ": -2.87534976, "rotX": 0.03568758, "rotY": 270.002, "rotZ": 180.697662, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267416, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a89156", "Name": "Card", "Transform": { "posX": -11.836009, "posY": 1.78521478, "posZ": 21.5405064, "rotX": 359.9198, "rotY": 270.005981, "rotZ": 357.547546, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267417, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "7a167a", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69640112, "posY": 1.55803609, "posZ": 14.278904, "rotX": 3.84971E-06, "rotY": 225.001022, "rotZ": 1.78013477E-06, "scaleX": 2.0, "scaleY": 2.0, "scaleZ": 2.0 }, "Nickname": "Set-aside", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.02148666, "g": 0.00100758043, "b": 0.02148666 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "CustomMesh": { "MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/", "DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/", "NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/", "ColliderURL": "", "Convex": true, "MaterialIndex": 1, "TypeIndex": 6, "CastShadows": true }, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "PhysicsMaterial": { "StaticFriction": 0.6, "DynamicFriction": 0.6, "Bounciness": 0.0, "FrictionCombine": 0, "BounceCombine": 0 }, "Rigidbody": { "Mass": 1.375, "Drag": 5.0, "AngularDrag": 5.0, "UseGravity": true }, "ContainedObjects": [ { "GUID": "d3b02d", "Name": "Card", "Transform": { "posX": 1.696429, "posY": 3.656701, "posZ": 14.2788181, "rotX": 359.947632, "rotY": 225.02858, "rotZ": 0.0584828034, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Uvhash", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"04c9294e-4f01-4b4a-a3a9-2c20e793916a\",\"type\":\"Enemy\",\"victory\":3,\"class\":\"Mythos\",\"traits\":\"Ancient One. Extradimensional. 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": 267718, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 4, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "8e9499", "Name": "Bag", "Transform": { "posX": 2.64280248, "posY": 1.39796627, "posZ": 3.496803, "rotX": 6.18646368E-07, "rotY": 0.000643985462, "rotZ": 1.06722052E-06, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The investigators discovered some of the Martians' weaknesses", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "a8570e", "Name": "Deck", "Transform": { "posX": 2.7427485, "posY": 3.69680214, "posZ": 3.506365, "rotX": 359.9086, "rotY": 179.99704, "rotZ": 359.16864, "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": [ 267103, 267104, 267106 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "2ae3d0", "Name": "Card", "Transform": { "posX": -14.9558353, "posY": 1.61915565, "posZ": 10.9062376, "rotX": 0.0170365889, "rotY": 180.001434, "rotZ": 0.07882887, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 3 - Blessing of the Great Abyss", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"36e8ba9b-a157-4cf1-a08f-6d391b353f3e\",\"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": 267103, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "68aae2", "Name": "Card", "Transform": { "posX": -15.0258875, "posY": 1.661225, "posZ": 10.7000446, "rotX": 0.01500339, "rotY": 180.000061, "rotZ": 0.0780621842, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 2 - Lost in Translation", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3aaec555-c51a-4b8a-9273-a531df6bb640\",\"type\":\"Act\",\"class\":\"Mythos\",\"clueThresholdPerInvestigator\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 267104, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "450db6", "Name": "Card", "Transform": { "posX": -14.5439348, "posY": 1.695762, "posZ": 14.93424, "rotX": 0.01654869, "rotY": 179.999847, "rotZ": 0.07940749, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1 - Stark and Silent (v.I)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"68f863e8-e233-40e2-a58e-5aa419c53dbc\",\"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": 267106, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "92a3d2", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.53360486, "posZ": 3.86001015, "rotX": 1.90402627E-08, "rotY": 269.996338, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Times Square", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"60f1a4eb-e70e-4eee-ab62-f86f42dfb578\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"Star|Cross|Triangle\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"Star|Cross|Triangle\"}}", "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": 266711, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "986ddd", "Name": "Card", "Transform": { "posX": -36.7732124, "posY": 1.53360558, "posZ": -7.7000165, "rotX": -4.628766E-06, "rotY": 269.9999, "rotZ": 179.999954, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "69th Regiment Armory", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"76d196bf-d121-4717-9539-08989c390860\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"T\",\"connections\":\"Cross|Moon\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"T\",\"connections\":\"Cross|Moon\"}}", "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": 266707, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a73f89", "Name": "Deck", "Transform": { "posX": -2.72500229, "posY": 1.61837292, "posZ": 0.3689024, "rotX": 3.28403E-08, "rotY": 180.020218, "rotZ": 3.80355623E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 267100, 267101, 267102 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "b015ef", "Name": "Card", "Transform": { "posX": 26.8013248, "posY": 2.50510287, "posZ": -38.51108, "rotX": -4.35249348E-08, "rotY": 180.0202, "rotZ": -7.773915E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 3 - The Advent of Uvhash", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"83402e79-af22-4204-9d85-beb9295cf290\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":6}", "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": 267100, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9aa20b", "Name": "Card", "Transform": { "posX": -10.5018358, "posY": 1.60181975, "posZ": 19.8651943, "rotX": 358.977234, "rotY": 180.068863, "rotZ": 0.511123061, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 2 - The Amorphous Horde", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ee7413b2-8d71-4c19-896b-6e3ae082bcf0\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":6}", "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": 267101, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "14a919", "Name": "Card", "Transform": { "posX": -11.081809, "posY": 1.63152015, "posZ": 19.588438, "rotX": 359.903168, "rotY": 180.000259, "rotZ": 0.07972528, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 1 - Blood Sacrifice", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"cb2e1de9-e803-4a82-86fa-f0be980e1cf3\",\"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": 267102, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "ab952b", "Name": "Card", "Transform": { "posX": -38.0369225, "posY": 1.551399, "posZ": -9.368413, "rotX": 9.178067E-06, "rotY": 269.9977, "rotZ": 180.932266, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Collapsed Wreckage", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c387d187-c8ce-4242-9dab-1f72d855f4fa\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"T\",\"connections\":\"Cross|Moon\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"T\",\"connections\":\"Cross|Moon\"}}", "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": 266706, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "afe2c5", "Name": "Card", "Transform": { "posX": -17.1200829, "posY": 1.53360486, "posZ": -7.70001459, "rotX": 6.58119461E-08, "rotY": 269.9994, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Central Park", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"51b20b66-8863-46ee-88d5-bc69dc69a194\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Diamond\",\"connections\":\"Circle|Star\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Diamond\",\"connections\":\"Circle|Star\"}}", "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": 266709, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b6a70f", "Name": "Card", "Transform": { "posX": -30.2237015, "posY": 1.53360534, "posZ": -3.83130932, "rotX": -3.00418446E-06, "rotY": 269.98, "rotZ": 179.999985, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Derelict Skyscraper", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8e5a0bae-db41-4afb-a13b-522986bafeb1\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Moon\",\"connections\":\"Circle|Star|Cross|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Moon\",\"connections\":\"Circle|Star|Cross|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": 266702, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c7a9b1", "Name": "Card", "Transform": { "posX": -36.7732048, "posY": 1.53360546, "posZ": -0.0301982742, "rotX": -3.0135252E-06, "rotY": 270.001129, "rotZ": 179.999969, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vacant Square", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4c5cffd7-0e6f-4992-95d3-1b38a6dc7890\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Cross\",\"connections\":\"Square|Moon|Triangle|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Cross\",\"connections\":\"Square|Moon|Triangle|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": 266700, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d6cc50", "Name": "Card", "Transform": { "posX": -38.55483, "posY": 1.551499, "posZ": -1.6834898, "rotX": 5.15999454E-05, "rotY": 269.997253, "rotZ": 180.937576, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Vacant Square", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"06eb18ce-9c22-4624-b505-82d3f6d29cca\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"New York City\",\"locationFront\":{\"icons\":\"Cross\",\"connections\":\"Square|Moon|Triangle|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Cross\",\"connections\":\"Square|Moon|Triangle|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": 266701, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f8f2ef", "Name": "Card", "Transform": { "posX": -3.95600557, "posY": 1.59660506, "posZ": -10.4412231, "rotX": 1.04973719E-08, "rotY": 269.9959, "rotZ": 4.047934E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario", "Description": "The Thirsting Void", "GMNotes": "{\"TtsZoopGuid\":\"cc326d95-7084-4b66-bcff-4042e7e9f095\"}", "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": 266712, "SidewaysCard": false, "CustomDeck": { "2667": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192069306/76B27AC0C2255D36C9D88D75FC79A8637D28DB47/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192070494/3126CCC26BB99181A0076ED58010A8A4D488E3D6/", "NumWidth": 7, "NumHeight": 2, "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 } } ] }, { "GUID": "b5928a", "Name": "Custom_Tile", "Transform": { "posX": -3.764722, "posY": 1.58307517, "posZ": -14.6848469, "rotX": -0.00026534978, "rotY": 269.467773, "rotZ": 0.002845984, "scaleX": 2.2, "scaleY": 1.0, "scaleZ": 2.2 }, "Nickname": "War of the Worlds", "Description": "click to set chaos token difficulty", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 1.0, "g": 1.0, "b": 1.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/", "ImageSecondaryURL": "https://i.imgur.com/EcbhVuh.jpg/", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 3, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "name = 'War of the Worlds'\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "eda22b", "Name": "Custom_Token", "Transform": { "posX": -1.46572936, "posY": 1.581499, "posZ": -26.9314728, "rotX": -2.02712911E-07, "rotY": 270.010071, "rotZ": 2.73698E-07, "scaleX": 4.37388372, "scaleY": 1.0, "scaleZ": 4.37388372 }, "Nickname": "War of the Worlds Campaign Log", "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, "CustomImage": { "ImageURL": "http://cloud-3.steamusercontent.com/ugc/1284038003228560814/EE1E81BDE15C402CE89ED222A620CDEFA3ECEC79/", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomToken": { "Thickness": 0.2, "MergeDistancePixels": 15.0, "StandUp": false, "Stackable": false } }, "LuaScript": "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change the character sheet image\r\n -Right click on the character sheet, click Custom\r\n -Replace the image URL with one for your character sheet\r\n -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script to fit your character sheet\r\n -Below you will see some general options, and then the big data table\r\n -The data table is what determines how many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\n -Textboxes\r\n -By default, there are 3 of each. You can add more or remove entries\r\n -If you intend to add/remove, be sure only to add/remove ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\n state = false\r\n },\r\n -Deleting the whole thing would remove that specific item on the sheet\r\n -Copy and pasting it after another entry would create another\r\n -Each entry type has unique data points (pos, size, state, etc)\r\n -Do not try to add in your own data points or remove them individually\r\n -There is a summary of what each point does at the top of its category\r\n\r\nStep 3) Save and check script changes\r\n -Hit Save & Apply in the script window to save your code\r\n -You can edit your code as needed and Save+Apply as often as needed\r\n -When you are finished, make disableSave = false below then Save+apply\r\n -This enables saving, so your sheet will remember whats on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have included a tool to get positions for buttons in {x,y,z} form\r\n Place it where you want the center of your element to be\r\n Then copy the table from the notes (lower right of screen)\r\n You can highlight it and CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you want to manually tweek the values:\r\n {0,0,0} is the center of the character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1} is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\n If it was 0, it would be down inside the model of the sheet\r\n\r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false when you have finished\r\ndisableSave = false\r\n--Remember to set this to false once you are done making changes\r\n--Then, after you save & apply it, save your game too\r\n\r\n--Color information for button text (r,g,b, values of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for checkbox\r\n state = default starting value for checkbox (true=checked, false=not)\r\n ]]\r\n --First Contact\r\n {\r\n pos = {-1.730,0.1,1.140},\r\n size = 500,\r\n state = false\r\n },\r\n --Phobos and Deimos\r\n {\r\n pos = {-0.968,0.1,1.355},\r\n size = 500,\r\n state = false\r\n },\r\n --The Stillness\r\n {\r\n pos = {-1.683,0.1,1.560},\r\n size = 500,\r\n state = false\r\n },\r\n --The Thirsting Void\r\n {\r\n pos = {-0.888,0.1,1.746},\r\n size = 500,\r\n state = false\r\n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have a + and - button\r\n counter = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n size = height/width/font_size for counter\r\n value = default starting value for counter\r\n hideBG = if background of counter is hidden (true=hidden, false=not)\r\n ]]\r\n --1st Player Experience\r\n {\r\n pos = {-1.080,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1st Player Physical Trauma\r\n {\r\n pos = {-1.270,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --1st Player Mental Trauma\r\n {\r\n pos = {-1.000,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Experience\r\n {\r\n pos = {-0.251,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Physical Trauma\r\n {\r\n pos = {-0.441,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --2nd Player Mental Trauma\r\n {\r\n pos = {-0.171,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Experience\r\n {\r\n pos = {0.579,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Physical Trauma\r\n {\r\n pos = {0.389,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --3rd Player Mental Trauma\r\n {\r\n pos = {0.659,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Experience\r\n {\r\n pos = {1.407,0.1,-1.010},\r\n size = 800,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Physical Trauma\r\n {\r\n pos = {1.217,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --4th Player Mental Trauma\r\n {\r\n pos = {1.487,0.1,-0.790},\r\n size = 600,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --Sacrifices to Nodens\r\n {\r\n pos = {0.890,0.1,1.150},\r\n size = 1000,\r\n value = 0,\r\n hideBG = true\r\n },\r\n --End of counters\r\n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\n rows = how many lines of text you want for this box\r\n width = how wide the text box is\r\n font_size = size of text. This and \"rows\" effect overall height\r\n label = what is shown when there is no text. \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\n alignment = Number to indicate how you want text aligned\r\n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n ]]\r\n --1st Player Name\r\n {\r\n pos = {-1.265,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --1st Player Investigator\r\n {\r\n pos = {-1.265,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --1st Player Story Assets/Weaknesses\r\n {\r\n pos = {-1.265,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Name\r\n {\r\n pos = {-0.436,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Investigator\r\n {\r\n pos = {-0.436,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --2nd Player Story Assets/Weaknesses\r\n {\r\n pos = {-0.436,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Name\r\n {\r\n pos = {0.394,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Investigator\r\n {\r\n pos = {0.394,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --3rd Player Story Assets/Weaknesses\r\n {\r\n pos = {0.394,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Name\r\n {\r\n pos = {1.222,0.1,-1.390},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Investigator\r\n {\r\n pos = {1.222,0.1,-1.195},\r\n rows = 1,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --4th Player Story Assets/Weaknesses\r\n {\r\n pos = {1.222,0.1,-0.420},\r\n rows = 7,\r\n width = 3800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes\r\n {\r\n pos = {-0.930,0.1,0.620},\r\n rows = 12,\r\n width = 7800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Evacuated Locations\r\n {\r\n pos = {0.820,0.1,0.500},\r\n rows = 10,\r\n width = 7800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Killed and Insane Investigators\r\n {\r\n pos = {1.010,0.1,1.700},\r\n rows = 5,\r\n width = 7400,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nlocal alreadySaving = false -- Copy this too!\r\nfunction updateSave()\r\n\r\n function string.replaceText(text, old, new)\r\n local b,e = text:find(old,1,true)\r\n if b==nil then\r\n return text\r\n else\r\n return text:sub(1,b-1) .. new .. text:sub(e+1)\r\n end\r\n end\r\n\r\n function wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\n end\r\n\r\n function deepcopy(orig)\r\n local orig_type = type(orig)\r\n local copy\r\n if orig_type == 'table' then\r\n copy = {}\r\n for orig_key, orig_value in next, orig, nil do\r\n copy[deepcopy(orig_key)] = deepcopy(orig_value)\r\n end\r\n setmetatable(copy, deepcopy(getmetatable(orig)))\r\n else -- number, string, boolean, etc\r\n copy = orig\r\n end\r\n return copy\r\n end\r\n\r\n function startSaving()\r\n while alreadySaving do\r\n wait(0.01)\r\n end\r\n alreadySaving = true\r\n local ref_buttonData = deepcopy(ref_buttonData)\r\n local input_values = {}\r\n local checkbox_values = {}\r\n local counter_values = {}\r\n\r\n local GUID = self.getGUID()\r\n local counter = 1\r\n for _, val in ipairs(ref_buttonData.textbox) do\r\n if val.value != nil then\r\n input_values[counter] = val.value\r\n val.value = \"u\"..GUID..\":iv:\"..counter..\"u\"\r\n counter = counter + 1\r\n end\r\n if val.label != nil then\r\n input_values[counter] = val.label\r\n val.label = \"u\"..GUID..\":iv:\"..counter..\"u\"\r\n counter = counter + 1\r\n end\r\n end\r\n\r\n local counter = 1\r\n for _, val in ipairs(ref_buttonData.checkbox) do\r\n if val.value != nil then\r\n checkbox_values[counter] = val.value\r\n val.value = \"u\"..GUID..\":bv:\"..counter..\"u\"\r\n counter = counter + 1\r\n end\r\n end\r\n\r\n local counter = 1\r\n for _, val in ipairs(ref_buttonData.counter) do\r\n if val.value != nil then\r\n counter_values[counter] = val.value\r\n val.value = \"u\"..GUID..\":cv:\"..counter..\"u\"\r\n counter = counter + 1\r\n if val.counters != nil then\r\n for _, val2 in ipairs(val.counters) do\r\n if val2.value != nil then\r\n counter_values[counter] = val2.value\r\n val2.value = \"u\"..GUID..\":cv:\"..counter..\"u\"\r\n counter = counter + 1\r\n end\r\n if val2.change_value != nil then\r\n counter_values[counter] = val2.change_value\r\n val2.change_value = \"u\"..GUID..\":cv:\"..counter..\"u\"\r\n counter = counter + 1\r\n end\r\n end\r\n end\r\n\r\n end\r\n end\r\n\r\n saved_data = JSON.encode(ref_buttonData)\r\n\r\n local counter = 1\r\n for _, val in ipairs(ref_buttonData.textbox) do\r\n if val.value != nil then\r\n saved_data = saved_data:replaceText(\"u\"..GUID..\":iv:\"..counter..\"u\", string.gsub(input_values[counter], \"[\\\\\\\"']\", \"\\\\%1\"))\r\n val.value = input_values[counter]\r\n counter = counter + 1\r\n end\r\n if val.label != nil then\r\n saved_data = saved_data:replaceText(\"u\"..GUID..\":iv:\"..counter..\"u\", string.gsub(input_values[counter], \"[\\\\\\\"']\", \"\\\\%1\"))\r\n val.label = input_values[counter]\r\n counter = counter + 1\r\n end\r\n end\r\n\r\n local counter = 1\r\n for _, val in ipairs(ref_buttonData.checkbox) do\r\n if val.value != nil then\r\n val.value = checkbox_values[counter]\r\n saved_data = saved_data:replaceText(\"u\"..GUID..\":bv:\"..counter..\"u\", string.gsub(checkbox_values[counter], \"[\\\\\\\"']\", \"\\\\%1\"))\r\n counter = counter + 1\r\n end\r\n end\r\n\r\n local counter = 1\r\n for _, val in ipairs(ref_buttonData.counter) do\r\n if val.value != nil then\r\n val.value = counter_values[counter]\r\n saved_data = saved_data:replaceText(\"u\"..GUID..\":cv:\"..counter..\"u\", string.gsub(counter_values[counter], \"[\\\\\\\"']\", \"\\\\%1\"))\r\n counter = counter + 1\r\n\r\n if val.counters != nil then\r\n for _, val2 in ipairs(val.counters) do\r\n if val2.value != nil then\r\n val2.value = counter_values[counter]\r\n saved_data = saved_data:replaceText(\"u\"..GUID..\":cv:\"..counter..\"u\", string.gsub(counter_values[counter], \"[\\\\\\\"']\", \"\\\\%1\"))\r\n counter = counter + 1\r\n end\r\n if val2.change_value != nil then\r\n val2.change_value = counter_values[counter]\r\n saved_data = saved_data:replaceText(\"u\"..GUID..\":cv:\"..counter..\"u\", string.gsub(counter_values[counter], \"[\\\\\\\"']\", \"\\\\%1\"))\r\n counter = counter + 1\r\n end\r\n end\r\n end\r\n\r\n end\r\n end\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\r\n\r\n alreadySaving = false\r\n return 1\r\n end\r\n startLuaCoroutine(self, \"startSaving\")\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i, value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up reference function\r\n local buttonNumber = spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"\"\r\n if data.state==true then label=string.char(10008) end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\n --Sets up label\r\n local label = data.value\r\n --Sets height/width for display\r\n local size = data.size\r\n if data.hideBG == true then size = 0 end\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=\"click_none\", function_owner=self,\r\n position=data.pos, height=size, width=size,\r\n font_size=data.size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"+\"\r\n --Sets up position\r\n local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n --Sets up size\r\n local size = data.size / 2\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up subtract 1\r\n local funcName = \"counterSub\"..i\r\n local func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName, func)\r\n --Sets up label\r\n local label = \"-\"\r\n --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\n label=label, click_function=funcName, function_owner=self,\r\n position=pos, height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox) do\r\n --Sets up reference function\r\n local funcName = \"textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel) end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\n input_function = funcName,\r\n function_owner = self,\r\n label = data.label,\r\n alignment = data.alignment,\r\n position = data.pos,\r\n scale = buttonScale,\r\n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\n font_size = data.font_size,\r\n color = buttonColor,\r\n font_color = buttonFontColor,\r\n value = data.value,\r\n })\r\n end\r\nend", "LuaScriptState": "{\"checkbox\":[{\"pos\":[-1.73,0.1,1.14],\"size\":500,\"state\":false},{\"pos\":[-0.968,0.1,1.355],\"size\":500,\"state\":false},{\"pos\":[-1.683,0.1,1.56],\"size\":500,\"state\":false},{\"pos\":[-0.888,0.1,1.746],\"size\":500,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-1.08,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[-1.27,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-1,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-0.251,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[-0.441,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[-0.171,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[0.579,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[0.389,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[0.659,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[1.407,0.1,-1.01],\"size\":800,\"value\":0},{\"hideBG\":true,\"pos\":[1.217,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[1.487,0.1,-0.79],\"size\":600,\"value\":0},{\"hideBG\":true,\"pos\":[0.89,0.1,1.15],\"size\":1000,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-1.265,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.436,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.394,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-1.39],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-1.195],\"rows\":1,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.222,0.1,-0.42],\"rows\":7,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[-0.93,0.1,0.62],\"rows\":12,\"value\":\"\",\"width\":7800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.82,0.1,0.5],\"rows\":10,\"value\":\"\",\"width\":7800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.01,0.1,1.7],\"rows\":5,\"value\":\"\",\"width\":7400}]}", "XmlUI": "" }, { "GUID": "f70a0d", "Name": "Custom_Model_Bag", "Transform": { "posX": 10.9056177, "posY": 1.4814992, "posZ": 8.889196, "rotX": -2.73772343E-07, "rotY": 269.998962, "rotZ": -3.612357E-07, "scaleX": 2.21, "scaleY": 0.46, "scaleZ": 2.42 }, "Nickname": "1: First Contact", "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/1461933574036565027/BFC93EE20DEF6E27CE1C468B9533D3C69787FD4F/", "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": "function updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction onload(saved_data)\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1* 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) 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=400, width=400,\r\n color={0.75,0.25,0.25,0.6},\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n memoryList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n self.editButton({index=index, color=color})\r\n memoryList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n-- self.createButton({\r\n-- label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n-- position={2,0.3,0}, rotation={0,90,0}, height=350, width=800,\r\n-- font_size=250, color={0,0,0}, font_color={1,1,1}\r\n-- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPosition(entry.pos)\r\n obj.setRotation(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot,\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend", "LuaScriptState": "{\"ml\":{\"033a2d\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4412},\"rot\":{\"x\":359.9197,\"y\":270.0023,\"z\":0.0168}},\"145dbc\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"40671f\":{\"lock\":false,\"pos\":{\"x\":-31.5909,\"y\":1.6255,\"z\":-0.0663},\"rot\":{\"x\":0.0169,\"y\":179.9914,\"z\":0.0799}},\"4d0fa5\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0803}},\"5b9b85\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6463,\"z\":-0.0189},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"6f7d7d\":{\"lock\":false,\"pos\":{\"x\":-33.7185,\"y\":1.6279,\"z\":-1.904},\"rot\":{\"x\":359.9224,\"y\":300.0156,\"z\":359.9746}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6339,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180.0156,\"z\":0.0799}},\"7d8753\":{\"lock\":false,\"pos\":{\"x\":2.3699,\"y\":1.3921,\"z\":-3.2837},\"rot\":{\"x\":359.9832,\"y\":-0.0001,\"z\":359.9197}},\"84f32c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6383,\"z\":3.8601},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"8c1268\":{\"lock\":false,\"pos\":{\"x\":-33.4999,\"y\":1.6299,\"z\":5.9474},\"rot\":{\"x\":359.9224,\"y\":300.0061,\"z\":359.9747}},\"9c89ac\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6361,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"a14980\":{\"lock\":false,\"pos\":{\"x\":-3.9275,\"y\":1.7444,\"z\":5.7587},\"rot\":{\"x\":359.9197,\"y\":269.9995,\"z\":180.0168}},\"a84218\":{\"lock\":false,\"pos\":{\"x\":-33.4606,\"y\":1.6264,\"z\":-5.8547},\"rot\":{\"x\":359.9392,\"y\":240.0124,\"z\":0.0545}},\"aef61c\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":179.9993,\"z\":0.0799}},\"b19a6b\":{\"lock\":false,\"pos\":{\"x\":1.6996,\"y\":1.5583,\"z\":14.2781},\"rot\":{\"x\":359.9551,\"y\":225.0036,\"z\":0.0687}},\"eb56cf\":{\"lock\":false,\"pos\":{\"x\":-33.666,\"y\":1.629,\"z\":1.8964},\"rot\":{\"x\":359.9391,\"y\":240.1148,\"z\":0.0544}},\"ebe292\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"f4eb10\":{\"lock\":false,\"pos\":{\"x\":2.5139,\"y\":1.3938,\"z\":3.1084},\"rot\":{\"x\":359.9832,\"y\":0.0011,\"z\":359.9197}}}}", "XmlUI": "", "ContainedObjects": [ { "GUID": "033a2d", "Name": "Card", "Transform": { "posX": -3.95600057, "posY": 1.59660506, "posZ": -10.4412031, "rotX": 3.2482923E-08, "rotY": 270.00238, "rotZ": -5.58900624E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Scenario", "Description": "First Contact", "GMNotes": "{\"TtsZoopGuid\":\"47ba6a8b-fe40-45f7-a983-944b922480e1\"}", "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": 267705, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "145dbc", "Name": "Card", "Transform": { "posX": -36.77321, "posY": 1.53360486, "posZ": 7.570004, "rotX": -9.615856E-09, "rotY": 270.000031, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Princeton Junction", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4b8808f7-af6f-4515-9828-e11bb7ef48a2\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Grovers Mill. Military\",\"locationFront\":{\"icons\":\"Cross\",\"connections\":\"Triangle|Hourglass\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Cross\",\"connections\":\"Triangle|Hourglass\"}}", "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": 267702, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "4d0fa5", "Name": "Deck", "Transform": { "posX": -2.72470021, "posY": 1.61837292, "posZ": 0.373300225, "rotX": 6.694999E-08, "rotY": 179.999817, "rotZ": 3.487695E-08, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda Deck", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "SidewaysCard": true, "DeckIDs": [ 267114, 267115, 267116 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "503f01", "Name": "Card", "Transform": { "posX": -13.367527, "posY": 1.61443448, "posZ": 2.52347875, "rotX": 0.0173991658, "rotY": 180.000824, "rotZ": 0.07633418, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 3 - The Martians Advance", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"fb883c4d-0ec0-4961-86f1-5d246203d9a8\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":8}", "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": 267114, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ef0ce8", "Name": "Card", "Transform": { "posX": -12.9603367, "posY": 1.65588307, "posZ": 2.47121763, "rotX": 0.0221207272, "rotY": 180.000092, "rotZ": 0.08153533, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 2 - Losing Ground", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"32d3a72c-ff09-4e6a-a411-4842c6701318\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 267115, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "3a0742", "Name": "Card", "Transform": { "posX": -13.4546461, "posY": 1.690578, "posZ": 2.40635729, "rotX": 0.0164294653, "rotY": 180.000519, "rotZ": 0.07964333, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Agenda 1 - The Impact Crater", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8bb548f8-31a5-44bf-ac85-3b3e9a3467f3\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":4}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 267116, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "5b9b85", "Name": "Card", "Transform": { "posX": -36.7731056, "posY": 1.53360486, "posZ": -0.018900359, "rotX": -7.735064E-09, "rotY": 269.999847, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "State Militia Field HQ", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"dff7c7d9-0768-4083-88a9-dc8857cfca15\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Grovers Mill. Military\",\"locationFront\":{\"icons\":\"Hourglass\",\"connections\":\"Cross|Triangle|Diamond|Slash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Hourglass\",\"connections\":\"Cross|Triangle|Diamond|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": 267701, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7d8753", "Name": "Bag", "Transform": { "posX": 2.36990118, "posY": 1.39796615, "posZ": -3.283701, "rotX": -1.42239969E-06, "rotY": -0.0002827058, "rotZ": 2.634727E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The investigators are proceeding without permission", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "dd430a", "Name": "Deck", "Transform": { "posX": 3.26681566, "posY": 3.68776, "posZ": -2.939152, "rotX": 359.796234, "rotY": 179.99617, "rotZ": 0.7939022, "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": [ 267117, 267118, 267120 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "1dafdf", "Name": "Card", "Transform": { "posX": -12.9317694, "posY": 1.6152097, "posZ": -1.97544014, "rotX": 359.9149, "rotY": 179.998413, "rotZ": 0.07930736, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 3 - Full Retreat", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9b05f9f7-10c9-48ea-abfd-7a8cb870f3c9\",\"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": 267117, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7db99b", "Name": "Card", "Transform": { "posX": -12.6365147, "posY": 1.65706706, "posZ": -2.07464743, "rotX": 359.935944, "rotY": 180.009872, "rotZ": 0.08458801, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 2 - Firsthand Account (v.II)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"ac2a051d-6b56-4111-9ed5-de256131ce70\",\"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": 267118, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d1cfa5", "Name": "Card", "Transform": { "posX": -10.5489874, "posY": 1.6865381, "posZ": -5.752632, "rotX": 0.117350072, "rotY": 179.998611, "rotZ": 0.08026745, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1 - Perimeter Breach", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"d1f4b35d-4499-4dd3-b29b-74c3bc337541\",\"type\":\"Act\",\"class\":\"Mythos\",\"clueThresholdPerInvestigator\":2}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": true, "CardID": 267120, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "29080c", "Name": "Custom_Tile", "Transform": { "posX": 2.70387745, "posY": 3.65498543, "posZ": -3.704863, "rotX": 359.3727, "rotY": 269.967377, "rotZ": 1.19848621, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/1plY463.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b7093d", "Name": "Deck", "Transform": { "posX": 2.99469066, "posY": 3.70337, "posZ": -3.86955166, "rotX": 359.5853, "rotY": 269.9986, "rotZ": 180.621048, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Circumvention", "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": [ 267300, 267301, 267302, 267303, 267304, 267305 ], "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "592505", "Name": "Card", "Transform": { "posX": -13.4169531, "posY": 1.73918974, "posZ": 5.364081, "rotX": 359.952057, "rotY": 270.0008, "rotZ": 179.051743, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Militia Sentry", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"96903eff-6630-4bec-8465-b47175707a05\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid\"}", "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": 267300, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6bd431", "Name": "Card", "Transform": { "posX": -13.1700773, "posY": 1.79794693, "posZ": 5.21333647, "rotX": 359.952026, "rotY": 269.996765, "rotZ": 175.495392, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Militia Sentry", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"96903eff-6630-4bec-8465-b47175707a05\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid\"}", "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": 267301, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9bc7a4", "Name": "Card", "Transform": { "posX": -12.9899855, "posY": 1.82883859, "posZ": 5.08432341, "rotX": 1.39110363, "rotY": 269.868927, "rotZ": 175.378036, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Militia Sentry", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"96903eff-6630-4bec-8465-b47175707a05\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid\"}", "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": 267302, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a93f82", "Name": "Card", "Transform": { "posX": -12.96269, "posY": 1.70685, "posZ": 5.252264, "rotX": 359.952026, "rotY": 270.001251, "rotZ": 180.895554, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Caught in the Crossfire", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"96e2ac68-387a-4f53-bb88-de47f7b38988\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Blunder. Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267303, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f92428", "Name": "Card", "Transform": { "posX": -13.078578, "posY": 1.679198, "posZ": 5.09993029, "rotX": 359.9524, "rotY": 269.9993, "rotZ": 181.216278, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Caught in the Crossfire", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"96e2ac68-387a-4f53-bb88-de47f7b38988\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Blunder. Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267304, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "813275", "Name": "Card", "Transform": { "posX": -13.1931763, "posY": 1.6149857, "posZ": 5.20223951, "rotX": 359.9201, "rotY": 270.0009, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Caught in the Crossfire", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"96e2ac68-387a-4f53-bb88-de47f7b38988\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Blunder. Hazard\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267305, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "84f32c", "Name": "Card", "Transform": { "posX": -30.2243, "posY": 1.53360486, "posZ": 3.86010122, "rotX": -2.67112532E-09, "rotY": 270.0, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Millstone River", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"8588b89d-beb1-4e68-a56a-2a49b890c44e\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Grovers Mill\",\"locationFront\":{\"icons\":\"Triangle\",\"connections\":\"Cross|Hourglass|Diamond|DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Triangle\",\"connections\":\"Cross|Hourglass|Diamond|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": 267704, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9c89ac", "Name": "Card", "Transform": { "posX": -30.2242, "posY": 1.53360486, "posZ": -3.830002, "rotX": 1.94926475E-08, "rotY": 269.999939, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Plainsboro Field", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"1f114891-7d2f-4e01-a354-d42c853a969e\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Grovers Mill\",\"locationFront\":{\"icons\":\"Diamond\",\"connections\":\"Triangle|Hourglass|Slash|DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Diamond\",\"connections\":\"Triangle|Hourglass|Slash|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": 267703, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a14980", "Name": "Deck", "Transform": { "posX": -3.92750072, "posY": 1.73872375, "posZ": 5.75870132, "rotX": 1.48342025E-07, "rotY": 269.9995, "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": [ 267312, 267313, 267314, 267315, 267316, 267317, 267318, 267319, 267320, 267321, 267322, 267323, 267400, 267401, 267402, 267403, 267404, 267405, 267406, 267407, 267408, 267409, 267410, 267411, 267412, 267415, 267416, 267417 ], "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 }, "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "73eb92", "Name": "Card", "Transform": { "posX": -9.680328, "posY": 1.78819478, "posZ": 2.39097834, "rotX": 359.9519, "rotY": 269.999573, "rotZ": 180.952057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Unstable Soldier", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b01c3477-412e-44f0-876a-8eaf7c13c5dd\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid\"}", "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": 267312, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "07030c", "Name": "Card", "Transform": { "posX": -9.4857235, "posY": 1.78453529, "posZ": 2.033467, "rotX": 0.0053758393, "rotY": 270.000244, "rotZ": 181.470657, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Unstable Soldier", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b01c3477-412e-44f0-876a-8eaf7c13c5dd\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid\"}", "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": 267313, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "42a025", "Name": "Card", "Transform": { "posX": -9.999817, "posY": 1.84059143, "posZ": 2.451969, "rotX": 359.952, "rotY": 269.996765, "rotZ": 175.510284, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Unstable Soldier", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b01c3477-412e-44f0-876a-8eaf7c13c5dd\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid\"}", "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": 267314, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "fa3f31", "Name": "Card", "Transform": { "posX": -9.539511, "posY": 1.74541748, "posZ": 2.295299, "rotX": 359.955566, "rotY": 270.000153, "rotZ": 180.209564, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Unstable Soldier", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b01c3477-412e-44f0-876a-8eaf7c13c5dd\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid\"}", "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": 267315, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2f1ce3", "Name": "Card", "Transform": { "posX": -9.959501, "posY": 1.73445225, "posZ": 2.43718624, "rotX": 359.936371, "rotY": 270.0003, "rotZ": 179.925156, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Military Interference", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"822a8879-57de-4f0a-bc6b-824e4e386542\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Blunder\"}", "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": 267316, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "284f5f", "Name": "Card", "Transform": { "posX": -9.736608, "posY": 1.98517239, "posZ": 2.20378876, "rotX": 0.0777664259, "rotY": 269.982025, "rotZ": 166.973068, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Military Interference", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"822a8879-57de-4f0a-bc6b-824e4e386542\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Blunder\"}", "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": 267317, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0f9df1", "Name": "Card", "Transform": { "posX": -9.846183, "posY": 1.70694125, "posZ": 2.10190129, "rotX": 359.9512, "rotY": 269.994934, "rotZ": 180.196884, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Military Interference", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"822a8879-57de-4f0a-bc6b-824e4e386542\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Blunder\"}", "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": 267318, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "49bf24", "Name": "Card", "Transform": { "posX": -9.89337, "posY": 1.72671175, "posZ": 2.30957532, "rotX": 359.951843, "rotY": 269.9992, "rotZ": 181.275467, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Failing Defenses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c1cfc057-6414-43fb-bb49-3ef34087c63e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Fire. Hazard. 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": 267319, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0f4d72", "Name": "Card", "Transform": { "posX": -9.512696, "posY": 1.69561732, "posZ": 1.73448884, "rotX": 359.94986, "rotY": 270.0, "rotZ": 180.090057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Failing Defenses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"c1cfc057-6414-43fb-bb49-3ef34087c63e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Fire. Hazard. 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": 267320, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "347689", "Name": "Card", "Transform": { "posX": -9.68778, "posY": 1.68646109, "posZ": 2.60475349, "rotX": 359.951935, "rotY": 270.0003, "rotZ": 180.106171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Choking Smoke", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3b5591e1-fd9f-46e6-9fdd-2adfa23a7c7e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard. Fire\"}", "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": 267321, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b63ff9", "Name": "Card", "Transform": { "posX": -9.710618, "posY": 1.64577353, "posZ": 2.644261, "rotX": 359.925018, "rotY": 270.02066, "rotZ": 180.012741, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Choking Smoke", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3b5591e1-fd9f-46e6-9fdd-2adfa23a7c7e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard. Fire\"}", "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": 267322, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d6bb63", "Name": "Card", "Transform": { "posX": -9.665174, "posY": 1.609248, "posZ": 2.48903775, "rotX": 359.919281, "rotY": 270.000122, "rotZ": 180.0184, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Choking Smoke", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"3b5591e1-fd9f-46e6-9fdd-2adfa23a7c7e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard. Fire\"}", "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": 267323, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b7a687", "Name": "Card", "Transform": { "posX": -13.9324627, "posY": 1.85147655, "posZ": -3.548372, "rotX": 0.0364938639, "rotY": 270.0015, "rotZ": 181.037537, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267400, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "ed6319", "Name": "Card", "Transform": { "posX": -14.4051943, "posY": 1.84486878, "posZ": -2.6871326, "rotX": 0.000262588757, "rotY": 269.999634, "rotZ": 178.286057, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267401, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "deeb02", "Name": "Card", "Transform": { "posX": -13.9666576, "posY": 1.836208, "posZ": -2.92806649, "rotX": 0.0361353867, "rotY": 270.002136, "rotZ": 180.992111, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Sweeping Heat-Ray", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"07381596-dcb4-4eeb-8592-3f4ad4d8e82c\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Weapon. Fire\"}", "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": 267402, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "e6188c", "Name": "Card", "Transform": { "posX": -14.4013987, "posY": 1.8282541, "posZ": -3.05022764, "rotX": 0.0358129255, "rotY": 270.002075, "rotZ": 181.0558, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267403, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "cb7de2", "Name": "Card", "Transform": { "posX": -14.1754055, "posY": 1.97573352, "posZ": -3.33040977, "rotX": 359.967041, "rotY": 269.991241, "rotZ": 170.417313, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267404, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "564036", "Name": "Card", "Transform": { "posX": -13.81101, "posY": 1.80684662, "posZ": -3.28871918, "rotX": 359.952484, "rotY": 269.997742, "rotZ": 178.818954, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Search Light Beam", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"4930f2e2-c130-4912-b9e6-dfb9a70fc00b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Device. 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": 267405, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0dedff", "Name": "Card", "Transform": { "posX": -14.0105934, "posY": 1.79556668, "posZ": -2.69907117, "rotX": 0.0355848372, "rotY": 270.002136, "rotZ": 180.906708, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267406, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6826c1", "Name": "Card", "Transform": { "posX": -13.7216635, "posY": 1.7919054, "posZ": -2.66484356, "rotX": 0.03645171, "rotY": 270.00174, "rotZ": 181.054321, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267407, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0675da", "Name": "Card", "Transform": { "posX": -14.100811, "posY": 1.761666, "posZ": -3.19721437, "rotX": 0.0454738177, "rotY": 270.001221, "rotZ": 180.203171, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267408, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "381c24", "Name": "Card", "Transform": { "posX": -13.7097759, "posY": 1.75093091, "posZ": -3.460492, "rotX": 0.0348324, "rotY": 270.000427, "rotZ": 180.106812, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Martian Technician", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"7d6ea20c-adbb-47c9-a7d3-e475e27b5616\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian\"}", "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": 267409, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d3bec9", "Name": "Card", "Transform": { "posX": -13.7490911, "posY": 1.75872517, "posZ": -3.03785515, "rotX": 359.952576, "rotY": 270.0009, "rotZ": 178.6434, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267410, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "d19fab", "Name": "Card", "Transform": { "posX": -14.1113138, "posY": 1.75179267, "posZ": -3.13707137, "rotX": 0.0449036434, "rotY": 270.001038, "rotZ": 180.8343, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267411, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "df0679", "Name": "Card", "Transform": { "posX": -14.0707521, "posY": 1.739896, "posZ": -3.02546358, "rotX": 0.03610193, "rotY": 270.0021, "rotZ": 180.993851, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Handling Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"40767eb2-dfad-47b6-a2be-67efc61f5895\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle\"}", "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": 267412, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "7c2447", "Name": "Card", "Transform": { "posX": -13.8469458, "posY": 1.69424224, "posZ": -2.8296454, "rotX": 0.0221196488, "rotY": 270.001251, "rotZ": 180.184937, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267415, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "74162b", "Name": "Card", "Transform": { "posX": -13.9195662, "posY": 1.67035687, "posZ": -2.87534976, "rotX": 0.03568758, "rotY": 270.002, "rotZ": 180.697662, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267416, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "a89156", "Name": "Card", "Transform": { "posX": -9.792112, "posY": 1.83165717, "posZ": 7.9584794, "rotX": 359.920227, "rotY": 269.999939, "rotZ": 0.0168329328, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Charred Bodies", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"b40f6d93-7709-44eb-a539-03a32ddb1148\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Terror\"}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard" ], "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": true, "Hands": true, "CardID": 267417, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "b19a6b", "Name": "Custom_Model_Bag", "Transform": { "posX": 1.69960046, "posY": 1.55803633, "posZ": 14.2781038, "rotX": -2.94250117E-06, "rotY": 225.003723, "rotZ": -4.592314E-09, "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": "586607", "Name": "Custom_Tile", "Transform": { "posX": 1.69642675, "posY": 3.65558386, "posZ": 14.27886, "rotX": 359.948151, "rotY": 224.998047, "rotZ": 0.0582996868, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/1plY463.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "67cd54", "Name": "Card", "Transform": { "posX": 22.9033031, "posY": 2.36231875, "posZ": -49.92594, "rotX": 359.919983, "rotY": 269.977722, "rotZ": 357.200867, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Second Crash Site", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"55138859-298c-483c-bad9-dc0b0f342afe\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Grovers Mill. Cylinder\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"Triangle|Diamond\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":2},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"Triangle|Diamond\"}}", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.713235259, "g": 0.713235259, "b": 0.713235259 }, "Tags": [ "ScenarioCard", "Location" ], "LayoutGroupSortIndex": 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": 267324, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "8df1e7", "Name": "Deck", "Transform": { "posX": 1.69643617, "posY": 3.67377949, "posZ": 14.2788219, "rotX": 359.947968, "rotY": 225.033615, "rotZ": 0.058482755, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fighting Machines", "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": [ 267413, 267414 ], "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "927c6d", "Name": "Card", "Transform": { "posX": -10.7567711, "posY": 1.61343193, "posZ": 11.4735889, "rotX": 359.9201, "rotY": 269.998749, "rotZ": 0.016850939, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fighting Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5f485493-e7c3-4a35-a347-2d97ffa8c72d\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle. 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": 267413, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "0160fa", "Name": "Card", "Transform": { "posX": -10.6265259, "posY": 1.65758038, "posZ": 11.7134142, "rotX": 359.919281, "rotY": 269.998657, "rotZ": 0.0144521734, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Fighting Machine", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"5f485493-e7c3-4a35-a347-2d97ffa8c72d\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Monster. Martian. Vehicle. 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": 267414, "SidewaysCard": false, "CustomDeck": { "2674": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 6, "NumHeight": 3, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] } ] }, { "GUID": "ebe292", "Name": "Card", "Transform": { "posX": -36.7733, "posY": 1.53360486, "posZ": -7.700002, "rotX": 1.39081052E-07, "rotY": 270.000061, "rotZ": 180.0, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Wilmuth Farm", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"71e03978-cc97-4f47-811a-125b386163cc\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Grovers Mill. Cylinder\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Hourglass|Diamond\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Hourglass|Diamond\"}}", "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": 267700, "SidewaysCard": false, "CustomDeck": { "2677": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/", "NumWidth": 3, "NumHeight": 2, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f4eb10", "Name": "Bag", "Transform": { "posX": 2.51390076, "posY": 1.39796615, "posZ": 3.10840082, "rotX": 3.118301E-07, "rotY": 0.00106376188, "rotZ": -2.818091E-07, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "The investigators are cooperating with the militia", "Description": "", "GMNotes": "", "AltLookAngle": { "x": 0.0, "y": 0.0, "z": 0.0 }, "ColorDiffuse": { "r": 0.7058823, "g": 0.366520882, "b": 0.0 }, "LayoutGroupSortIndex": 0, "Value": 0, "Locked": false, "Grid": true, "Snap": true, "IgnoreFoW": false, "MeasureMovement": false, "DragSelectable": true, "Autoraise": true, "Sticky": true, "Tooltip": true, "GridProjection": false, "HideWhenFaceDown": false, "Hands": false, "MaterialIndex": -1, "MeshIndex": -1, "Bag": { "Order": 0 }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "15af5a", "Name": "Deck", "Transform": { "posX": 2.40230584, "posY": 3.700426, "posZ": 3.17458916, "rotX": 359.914185, "rotY": 179.997025, "rotZ": 359.7882, "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": [ 267117, 267119, 267121 ], "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "913bf7", "Name": "Card", "Transform": { "posX": -12.931489, "posY": 1.61459577, "posZ": -5.618522, "rotX": 0.127035737, "rotY": 179.998047, "rotZ": 0.06544716, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 3 - Full Retreat", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"9b05f9f7-10c9-48ea-abfd-7a8cb870f3c9\",\"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": 267117, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "b42d80", "Name": "Card", "Transform": { "posX": -12.5736494, "posY": 1.65652943, "posZ": -5.717539, "rotX": 0.10671939, "rotY": 180.003754, "rotZ": 0.0736454949, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 2 - Firsthand Account (v.I)", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"114223cf-bb5f-4159-89b3-fb9fd0ec1af3\",\"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": 267119, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "6a2ce7", "Name": "Card", "Transform": { "posX": -12.6107378, "posY": 1.69085467, "posZ": -5.52682829, "rotX": 0.110006191, "rotY": 180.001434, "rotZ": 0.07457632, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Act 1 - Red Tape", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"a9afd308-695f-4c97-ab9e-e824767a50af\",\"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": 267121, "SidewaysCard": true, "CustomDeck": { "2671": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/", "NumWidth": 6, "NumHeight": 4, "BackIsHidden": false, "UniqueBack": true, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" } ] }, { "GUID": "a99ddd", "Name": "Custom_Tile", "Transform": { "posX": 2.46410942, "posY": 3.649853, "posZ": 3.922271, "rotX": 359.993469, "rotY": 269.9879, "rotZ": 358.916473, "scaleX": 0.81, "scaleY": 1.0, "scaleZ": 0.81 }, "Nickname": "", "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, "CustomImage": { "ImageURL": "https://i.imgur.com/VzhJJaH.png", "ImageSecondaryURL": "", "ImageScalar": 1.0, "WidthScale": 0.0, "CustomTile": { "Type": 2, "Thickness": 0.1, "Stackable": false, "Stretch": true } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "33bead", "Name": "Deck", "Transform": { "posX": 2.40273333, "posY": 3.70441484, "posZ": 2.28878784, "rotX": 359.976624, "rotY": 269.990234, "rotZ": 180.795166, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Collaboration", "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": [ 267306, 267307, 267308, 267309, 267310, 267311 ], "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "", "ContainedObjects": [ { "GUID": "9db829", "Name": "Card", "Transform": { "posX": -13.1413822, "posY": 1.74350929, "posZ": 3.01568913, "rotX": 359.952057, "rotY": 270.000977, "rotZ": 181.14624, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "By the Book", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e04c3bd3-d028-4292-832d-54cd27708315\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Task. Blunder\"}", "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": 267306, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "2c9f53", "Name": "Card", "Transform": { "posX": -13.2747087, "posY": 1.7678169, "posZ": 2.599782, "rotX": 1.44897926, "rotY": 270.045776, "rotZ": 181.265762, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "By the Book", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e04c3bd3-d028-4292-832d-54cd27708315\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Task. Blunder\"}", "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": 267307, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "9e6db1", "Name": "Card", "Transform": { "posX": -12.9636326, "posY": 1.72399259, "posZ": 2.908643, "rotX": 359.952057, "rotY": 270.000977, "rotZ": 181.146973, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "By the Book", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"e04c3bd3-d028-4292-832d-54cd27708315\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Task. Blunder\"}", "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": 267308, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "f3a797", "Name": "Card", "Transform": { "posX": -12.7581348, "posY": 1.73464537, "posZ": 2.59381056, "rotX": 359.943237, "rotY": 270.127441, "rotZ": 183.362579, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gap in Defenses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"321dc6ff-90c2-450e-9380-66f5e4ae6176\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Task. Blunder\"}", "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": 267309, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "15308e", "Name": "Card", "Transform": { "posX": -12.8473644, "posY": 1.66569614, "posZ": 2.563394, "rotX": 359.952057, "rotY": 269.999756, "rotZ": 180.615768, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gap in Defenses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"321dc6ff-90c2-450e-9380-66f5e4ae6176\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Task. Blunder\"}", "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": 267310, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "Type": 0 } }, "LuaScript": "", "LuaScriptState": "", "XmlUI": "" }, { "GUID": "c1a71d", "Name": "Card", "Transform": { "posX": -13.1990948, "posY": 1.61428714, "posZ": 2.79687643, "rotX": 359.9201, "rotY": 270.0003, "rotZ": 180.016815, "scaleX": 1.0, "scaleY": 1.0, "scaleZ": 1.0 }, "Nickname": "Gap in Defenses", "Description": "", "GMNotes": "{\"TtsZoopGuid\":\"321dc6ff-90c2-450e-9380-66f5e4ae6176\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Task. Blunder\"}", "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": 267311, "SidewaysCard": false, "CustomDeck": { "2673": { "FaceURL": "http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/", "BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/", "NumWidth": 5, "NumHeight": 5, "BackIsHidden": true, "UniqueBack": false, "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 } } ] } ], "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 } } ] }