SCED/content/curated/en/campaign_jumanji.json
2023-06-26 10:13:37 +02:00

28972 lines
1.1 MiB

{
"GUID": "5bd588",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 30.8950615,
"posY": 1.48149908,
"posZ": -8.029739,
"rotX": 1.58008177E-07,
"rotY": 270.018158,
"rotZ": -2.831099E-07,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Jumanji",
"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/1847049778276522891/B0F1D72796E5A43963B6EFA6B7FD870A89B139AF/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"1ece3e\":{\"lock\":false,\"pos\":{\"x\":-9.2713,\"y\":1.5635,\"z\":6.5718},\"rot\":{\"x\":0.6414,\"y\":315.0067,\"z\":0.6405}},\"37fb4d\":{\"lock\":false,\"pos\":{\"x\":11.3297,\"y\":1.2965,\"z\":-17.9023},\"rot\":{\"x\":0,\"y\":0.0014,\"z\":0.0001}},\"3b7b53\":{\"lock\":false,\"pos\":{\"x\":11.9519,\"y\":1.2965,\"z\":17.9867},\"rot\":{\"x\":0,\"y\":0.0003,\"z\":0.0001}},\"61b7e9\":{\"lock\":false,\"pos\":{\"x\":-9.3097,\"y\":1.5631,\"z\":-7.1846},\"rot\":{\"x\":0.6346,\"y\":314.9666,\"z\":0.6339}},\"73b5e1\":{\"lock\":false,\"pos\":{\"x\":12.2521,\"y\":1.4815,\"z\":3.9858},\"rot\":{\"x\":0,\"y\":269.9996,\"z\":0}},\"847279\":{\"lock\":false,\"pos\":{\"x\":19.0421,\"y\":1.2965,\"z\":0.1406},\"rot\":{\"x\":0,\"y\":0.001,\"z\":0.0001}},\"8a3606\":{\"lock\":false,\"pos\":{\"x\":12.2532,\"y\":1.4815,\"z\":-12.0152},\"rot\":{\"x\":0,\"y\":269.9906,\"z\":0}},\"8cd599\":{\"lock\":false,\"pos\":{\"x\":14.1598,\"y\":1.5515,\"z\":-29.6479},\"rot\":{\"x\":0,\"y\":89.9881,\"z\":0}},\"90b00d\":{\"lock\":false,\"pos\":{\"x\":12.25,\"y\":1.4815,\"z\":27.986},\"rot\":{\"x\":0,\"y\":270.002,\"z\":0}},\"c2f5ae\":{\"lock\":false,\"pos\":{\"x\":0.7,\"y\":1.4815,\"z\":28.6},\"rot\":{\"x\":0,\"y\":269.9617,\"z\":0}},\"c3633f\":{\"lock\":false,\"pos\":{\"x\":12.2512,\"y\":1.4815,\"z\":-4.0144},\"rot\":{\"x\":0,\"y\":269.9984,\"z\":0}},\"ca53e8\":{\"lock\":false,\"pos\":{\"x\":-9.3675,\"y\":1.5625,\"z\":-2.4075},\"rot\":{\"x\":0.6264,\"y\":314.9641,\"z\":0.6249}},\"cba0aa\":{\"lock\":false,\"pos\":{\"x\":-9.41,\"y\":1.5621,\"z\":2.1646},\"rot\":{\"x\":0.6194,\"y\":315.0299,\"z\":0.6192}},\"e11d84\":{\"lock\":false,\"pos\":{\"x\":12.2537,\"y\":1.4815,\"z\":11.986},\"rot\":{\"x\":0,\"y\":269.9914,\"z\":0}},\"eda22b\":{\"lock\":false,\"pos\":{\"x\":1.1475,\"y\":1.5815,\"z\":-29.7397},\"rot\":{\"x\":0,\"y\":270.022,\"z\":0}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1ece3e",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.271301,
"posY": 1.56344247,
"posZ": 6.571803,
"rotX": 0.6402251,
"rotY": 315.0067,
"rotZ": 0.6403065,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Easy Tokens",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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 filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "6cda68",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.62925148,
"posY": 4.34284639,
"posZ": 6.25809956,
"rotX": 14.360652,
"rotY": 309.313934,
"rotZ": 274.68045,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"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": "917ea4",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.852047,
"posY": 3.52561879,
"posZ": 6.177215,
"rotX": 346.102539,
"rotY": 307.774231,
"rotZ": 284.198273,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa43e0",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.00037,
"posY": 3.45588851,
"posZ": 5.82842255,
"rotX": 358.961121,
"rotY": 315.414581,
"rotZ": 285.214569,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"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": "ddd462",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.900279,
"posY": 3.414849,
"posZ": 5.918606,
"rotX": 351.411255,
"rotY": 312.202942,
"rotZ": 284.69458,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ce4ab",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.853577,
"posY": 3.74371839,
"posZ": 6.87800741,
"rotX": 347.662476,
"rotY": 311.9395,
"rotZ": 98.66789,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"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/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "38d73c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.993948,
"posY": 3.92807674,
"posZ": 6.98644066,
"rotX": 351.199615,
"rotY": 312.259216,
"rotZ": 279.381348,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"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/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e04757",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.0788,
"posY": 3.37340331,
"posZ": 5.614058,
"rotX": 37.0151749,
"rotY": 328.891083,
"rotZ": 289.981049,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"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/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "611dee",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.262694,
"posY": 4.05103254,
"posZ": 6.701065,
"rotX": 341.425873,
"rotY": 307.994781,
"rotZ": 279.5666,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "b297ae",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.404915,
"posY": 3.322149,
"posZ": 6.210196,
"rotX": 18.6425667,
"rotY": 312.7997,
"rotZ": 101.471191,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"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": "bf610b",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.998076,
"posY": 3.54716325,
"posZ": 6.85827255,
"rotX": 5.376091,
"rotY": 312.267761,
"rotZ": 99.69972,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"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/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2b8a0",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.648054,
"posY": 3.51679683,
"posZ": 5.99068832,
"rotX": 19.04674,
"rotY": 316.6635,
"rotZ": 104.574852,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ff40c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.844037,
"posY": 4.134682,
"posZ": 7.10327244,
"rotX": 356.5487,
"rotY": 313.238525,
"rotZ": 100.982414,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "+1",
"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/uIx8jbY.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb1afd",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.240953,
"posY": 3.35709667,
"posZ": 6.54676437,
"rotX": 357.35907,
"rotY": 311.484833,
"rotZ": 98.1159,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "ed78de",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.269192,
"posY": 3.20535,
"posZ": 6.609049,
"rotX": 12.4941664,
"rotY": 313.525818,
"rotZ": 278.052979,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "233aa2",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.98872948,
"posY": 3.42609739,
"posZ": 5.81843042,
"rotX": 312.688568,
"rotY": 297.884644,
"rotZ": 113.495277,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"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/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b68783",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.688269,
"posY": 3.38694239,
"posZ": 7.17849445,
"rotX": 13.2192163,
"rotY": 318.6215,
"rotZ": 272.9489,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "+1",
"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/uIx8jbY.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "37fb4d",
"Name": "Bag",
"Transform": {
"posX": 11.3297024,
"posY": 1.2964648,
"posZ": -17.9022942,
"rotX": 8.35526464E-07,
"rotY": 0.00130406581,
"rotZ": -8.412661E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Epilogue (Spoiler Alert!)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7019608,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0628eb",
"Name": "CardCustom",
"Transform": {
"posX": 11.4447145,
"posY": 3.55891228,
"posZ": -18.09432,
"rotX": 359.875549,
"rotY": 270.013367,
"rotZ": 0.4649503,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Traumatic Memories",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"0de3a2fd-9085-4605-a19c-83e733eaeee3\",\"type\":\"Treachery\",\"traits\":\"Terror\",\"weakness\":true}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270100,
"SidewaysCard": false,
"CustomDeck": {
"2701": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276393374/AA84C0DE58A7C46C9679957B81692A36DDCE5C2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e354ef",
"Name": "CardCustom",
"Transform": {
"posX": 11.6604719,
"posY": 3.55828023,
"posZ": -17.86721,
"rotX": 359.614563,
"rotY": 269.9929,
"rotZ": 359.901184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sarah Parrish",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4efb636b-2401-4d27-9738-9e3dac245aff\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Clairvoyant\",\"agilityIcons\":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": [
"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": 270000,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276392109/3DE7BE60523E890B9275DEDBBE26E00DB878BA14/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1641f9",
"Name": "CardCustom",
"Transform": {
"posX": 11.882864,
"posY": 3.56934452,
"posZ": -18.1581326,
"rotX": 359.136261,
"rotY": 269.9933,
"rotZ": 0.8976775,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"64c22f24-bce8-4d9f-adf9-acd75855fca6\",\"type\":\"Minicard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269900,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276391351/727694253FC0171561FC2F152E104FF57B662CD9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276391519/1BED9C26522A38C00B757540162FFA2038402939/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "786b5f",
"Name": "CardCustom",
"Transform": {
"posX": 10.6929808,
"posY": 3.572202,
"posZ": -17.6245174,
"rotX": 0.756094158,
"rotY": 270.031372,
"rotZ": 359.824463,
"scaleX": 0.8062451,
"scaleY": 1.0,
"scaleZ": 0.8062451
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e4cad966-fa5e-4068-a4e0-434d49fc06de\",\"type\":\"Investigator\",\"class\":\"Survivor\",\"traits\":\"Wayfarer. Socialite\",\"agilityIcons\":4,\"combatIcons\":3,\"intellectIcons\":2,\"willpowerIcons\":3,\"id\":\"Z8815\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Investigator",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269800,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276390512/391874B5B0BAA4E83C1E36BBBD262B87D28A5C19/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276390713/26463446E2CDA1DA831BCDB4A6CFA8B855C2B4B1/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3b7b53",
"Name": "Bag",
"Transform": {
"posX": 11.9519,
"posY": 1.29646492,
"posZ": 17.9867,
"rotX": -1.11223437E-06,
"rotY": 0.000282032124,
"rotZ": -2.39623841E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tokens added during campaign",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.6555897,
"b": 0.134145558
},
"LayoutGroupSortIndex": 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": "6927e8",
"Name": "Custom_Tile",
"Transform": {
"posX": 20.2128353,
"posY": 2.29097652,
"posZ": -61.6996346,
"rotX": 359.920135,
"rotY": 269.9731,
"rotZ": 0.0169087127,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"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": "a3ec6b",
"Name": "Custom_Tile",
"Transform": {
"posX": 21.2216911,
"posY": 2.45097971,
"posZ": -53.480732,
"rotX": 359.920135,
"rotY": 269.9895,
"rotZ": 0.01688731,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"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": "22fd4e",
"Name": "Custom_Tile",
"Transform": {
"posX": 32.1075859,
"posY": 2.295131,
"posZ": -61.6794434,
"rotX": 359.920135,
"rotY": 270.020752,
"rotZ": 0.0168458931,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"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": "456b23",
"Name": "Custom_Tile",
"Transform": {
"posX": 26.22042,
"posY": 2.52981615,
"posZ": -48.56926,
"rotX": 359.920135,
"rotY": 269.972961,
"rotZ": 0.01727274,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"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": "11c2d6",
"Name": "Custom_Tile",
"Transform": {
"posX": 25.7583923,
"posY": 2.45546412,
"posZ": -57.8948975,
"rotX": 359.9258,
"rotY": 269.9732,
"rotZ": 0.0158064477,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Tablet",
"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": "ba3db8",
"Name": "Custom_Tile",
"Transform": {
"posX": 33.81853,
"posY": 2.294903,
"posZ": -61.55426,
"rotX": 359.9213,
"rotY": 269.987061,
"rotZ": 0.0170962643,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"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": "adb646",
"Name": "Custom_Tile",
"Transform": {
"posX": 41.6497879,
"posY": 2.29310536,
"posZ": -76.50356,
"rotX": 359.919861,
"rotY": 270.0207,
"rotZ": 0.016051732,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"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": "c0cbac",
"Name": "Custom_Tile",
"Transform": {
"posX": 39.85293,
"posY": 2.30089164,
"posZ": -58.7005348,
"rotX": 0.2982797,
"rotY": 269.9898,
"rotZ": 359.961639,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Cultist",
"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": "61b7e9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.309702,
"posY": 1.56306314,
"posZ": -7.184601,
"rotX": 0.634505451,
"rotY": 314.966644,
"rotZ": 0.633678436,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Expert Tokens",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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 filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "75dd78",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.986665,
"posY": 3.99852324,
"posZ": -8.93954,
"rotX": 37.15379,
"rotY": 307.07666,
"rotZ": 284.24884,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"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/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e1978d",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.510582,
"posY": 3.17896914,
"posZ": -7.83546734,
"rotX": 6.83447838,
"rotY": 300.615234,
"rotZ": 279.4671,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "f19391",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.748243,
"posY": 4.012283,
"posZ": -8.29515,
"rotX": 357.390228,
"rotY": 298.3364,
"rotZ": 100.768166,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-7",
"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": "c84b2e",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.511668,
"posY": 4.72641468,
"posZ": -8.164527,
"rotX": 13.1368885,
"rotY": 302.6526,
"rotZ": 282.075256,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"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": "4b2926",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.486052,
"posY": 4.08584,
"posZ": -7.81324959,
"rotX": 2.71726179,
"rotY": 300.456665,
"rotZ": 280.501373,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "21d840",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.813603,
"posY": 4.085769,
"posZ": -8.825929,
"rotX": 12.7738514,
"rotY": 301.012451,
"rotZ": 281.740173,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"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": "3ca7aa",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.878692,
"posY": 4.12375069,
"posZ": -8.797715,
"rotX": 313.346069,
"rotY": 286.306732,
"rotZ": 106.465309,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"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/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c57e80",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.586244,
"posY": 4.35078669,
"posZ": -8.2549,
"rotX": 347.161926,
"rotY": 297.043182,
"rotZ": 101.813171,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-4",
"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": "c8d16b",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.747512,
"posY": 4.478277,
"posZ": -8.629464,
"rotX": 2.62217116,
"rotY": 299.1992,
"rotZ": 280.9328,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b5770a",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.66943,
"posY": 4.38778257,
"posZ": -8.221109,
"rotX": 9.399725,
"rotY": 301.826447,
"rotZ": 281.210663,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"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": "e931eb",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.104854,
"posY": 4.07867241,
"posZ": -8.442946,
"rotX": 4.62142324,
"rotY": 299.843262,
"rotZ": 101.474205,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eeb452",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.740025,
"posY": 4.04112434,
"posZ": -8.317427,
"rotX": 18.147,
"rotY": 302.866943,
"rotZ": 282.13913,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-5",
"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": "919b74",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.571574,
"posY": 4.445349,
"posZ": -8.068329,
"rotX": 349.826538,
"rotY": 297.9772,
"rotZ": 101.098991,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"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": "16104c",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.777633,
"posY": 3.96495533,
"posZ": -8.59711552,
"rotX": 7.16396952,
"rotY": 300.265472,
"rotZ": 281.571381,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c94c01",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.29684,
"posY": 4.440892,
"posZ": -7.76774645,
"rotX": 358.698059,
"rotY": 299.857452,
"rotZ": 100.485451,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"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/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "692bf6",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.484007,
"posY": 4.6472435,
"posZ": -7.932942,
"rotX": 350.7513,
"rotY": 298.1217,
"rotZ": 101.132759,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "73b5e1",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2521,
"posY": 1.4814992,
"posZ": 3.9858,
"rotX": 1.33401636E-08,
"rotY": 269.999573,
"rotZ": 6.49861276E-09,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "2: Urban Jungle",
"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/1847049778276524288/CC86275EE33673DF1299D5E076781D5BE558A3E7/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"06bc0a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.5336,\"z\":11.46},\"rot\":{\"x\":0,\"y\":270,\"z\":180}},\"0e8921\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.5336,\"z\":3.86},\"rot\":{\"x\":0,\"y\":269.9998,\"z\":180}},\"1a359f\":{\"lock\":false,\"pos\":{\"x\":-19.7771,\"y\":1.5336,\"z\":11.5774},\"rot\":{\"x\":0,\"y\":270.0225,\"z\":0}},\"1a365a\":{\"lock\":false,\"pos\":{\"x\":-2.2302,\"y\":1.5966,\"z\":-5.2189},\"rot\":{\"x\":0,\"y\":180.019,\"z\":0}},\"1e10c5\":{\"lock\":false,\"pos\":{\"x\":-3.9561,\"y\":1.5966,\"z\":-10.4414},\"rot\":{\"x\":0,\"y\":270.1224,\"z\":0}},\"547a4f\":{\"lock\":false,\"pos\":{\"x\":-17.0215,\"y\":1.5698,\"z\":-7.7227},\"rot\":{\"x\":0,\"y\":270.0001,\"z\":180}},\"66ea1b\":{\"lock\":false,\"pos\":{\"x\":3.0578,\"y\":1.5966,\"z\":-5.1883},\"rot\":{\"x\":0,\"y\":180.0164,\"z\":0}},\"6edc1c\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.5336,\"z\":-3.83},\"rot\":{\"x\":0,\"y\":270.0275,\"z\":180}},\"7df58f\":{\"lock\":false,\"pos\":{\"x\":1.6977,\"y\":1.558,\"z\":14.2786},\"rot\":{\"x\":0,\"y\":224.9842,\"z\":0}},\"934a3c\":{\"lock\":false,\"pos\":{\"x\":0.3116,\"y\":1.5966,\"z\":-5.1432},\"rot\":{\"x\":0,\"y\":179.9971,\"z\":0}},\"9f40ec\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.5336,\"z\":3.8655},\"rot\":{\"x\":0,\"y\":270.0307,\"z\":180}},\"a07d4c\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.5336,\"z\":-3.83},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":180}},\"a5d866\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.5336,\"z\":-11.51},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":180}},\"a9fcad\":{\"lock\":false,\"pos\":{\"x\":-2.725,\"y\":1.6184,\"z\":0.3735},\"rot\":{\"x\":0,\"y\":180.0232,\"z\":0}},\"deb149\":{\"lock\":false,\"pos\":{\"x\":-3.928,\"y\":1.7484,\"z\":5.7573},\"rot\":{\"x\":0,\"y\":269.9683,\"z\":180}},\"e76b3b\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.5336,\"z\":3.8601},\"rot\":{\"x\":0,\"y\":270.0002,\"z\":180}},\"ec83fb\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.5336,\"z\":-11.51},\"rot\":{\"x\":0,\"y\":270.0005,\"z\":180}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7df58f",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.697701,
"posY": 1.55803609,
"posZ": 14.2786036,
"rotX": 1.81048915E-06,
"rotY": 224.984177,
"rotZ": 3.10191069E-07,
"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": "149a2a",
"Name": "Card",
"Transform": {
"posX": -7.036871,
"posY": 2.53821826,
"posZ": -53.18733,
"rotX": 1.23927546,
"rotY": 269.9986,
"rotZ": -2.94620786E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sarah Whittle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8092e964-cb61-49b1-b458-2daef8109b61\",\"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": 272107,
"SidewaysCard": false,
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f2e772",
"Name": "Card",
"Transform": {
"posX": 14.6100721,
"posY": 2.33186579,
"posZ": -80.6301041,
"rotX": 0.0208047144,
"rotY": 270.012238,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Howell Asylum",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"dd48ccd4-5e85-409c-ae14-e3be1143f8d6\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Triangle\",\"connections\":\"Cross\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":2},\"locationBack\":{\"icons\":\"Triangle\",\"connections\":\"Cross\"}}",
"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": 269900,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375361/42ABF05AAFC7B35323CFEFAE20B1531852B2AB9E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375812/6C028BF736A44F40E0457AF9691D02D27953AE43/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "206709",
"Name": "Card",
"Transform": {
"posX": 13.9290972,
"posY": 2.33368134,
"posZ": -74.0580139,
"rotX": 0.0208072141,
"rotY": 270.003662,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Boorstein Clinic",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8186bf3d-af45-4669-ac7a-04c0e4f90443\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Moon\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":2},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Moon\"}}",
"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": 269901,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375361/42ABF05AAFC7B35323CFEFAE20B1531852B2AB9E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375812/6C028BF736A44F40E0457AF9691D02D27953AE43/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ebf51d",
"Name": "Card",
"Transform": {
"posX": 24.7161846,
"posY": 2.29446816,
"posZ": -96.15659,
"rotX": 0.0208059885,
"rotY": 270.0081,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Municipal Mental Ward",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a56322c6-64ec-4aa5-88df-0b2efd76ed14\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Hourglass\",\"connections\":\"Heart\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":2},\"locationBack\":{\"icons\":\"Hourglass\",\"connections\":\"Heart\"}}",
"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": 269902,
"SidewaysCard": false,
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375361/42ABF05AAFC7B35323CFEFAE20B1531852B2AB9E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293375812/6C028BF736A44F40E0457AF9691D02D27953AE43/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "abf90d",
"Name": "Card",
"Transform": {
"posX": 14.124259,
"posY": 2.64510369,
"posZ": -31.6171131,
"rotX": 6.279442E-08,
"rotY": 180.006348,
"rotZ": -5.990085E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - Reaquaintance",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"1be90313-3683-4eeb-84f3-6904ffc52dec\",\"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": 272112,
"SidewaysCard": true,
"CustomDeck": {
"2721": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513227401/81A08A705659993462E79CE84A5AC65ECF57572C/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8f924",
"Name": "Card",
"Transform": {
"posX": 10.8316107,
"posY": 2.41093087,
"posZ": -54.2618942,
"rotX": 359.920135,
"rotY": 269.999542,
"rotZ": 0.0168737378,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carl Bentley",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"172dc456-e3a8-4a09-9ee1-bf39d8d2623f\",\"type\":\"Asset\",\"victory\":1,\"class\":\"Neutral\",\"traits\":\"Police\"}",
"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": 266706,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "25e8c1",
"Name": "Card",
"Transform": {
"posX": 26.2614117,
"posY": 2.30066776,
"posZ": -77.1298447,
"rotX": 0.0208082069,
"rotY": 270.001526,
"rotZ": 0.0167717524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carnivorous Tangle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"489d29b9-bdc8-4dea-8477-bd8b17ea14ed\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Flora. Creature. Predator. 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": 270009,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293381553/EA78EFE3D8C720AC38233C366EBFBA340266AD41/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "deb149",
"Name": "Deck",
"Transform": {
"posX": -3.92800069,
"posY": 1.74835181,
"posZ": 5.757302,
"rotX": 2.66871581E-07,
"rotY": 269.9683,
"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": [
266510,
266511,
266512,
271413,
271414,
271415,
271416,
271417,
271418,
271419,
271420,
271421,
271422,
271423,
271724,
271726,
271725,
271427,
271428,
267802,
267801,
267800,
269500,
269501,
269502,
269503,
267101,
267100,
271803,
271802
],
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513170024/C3D09AABD11D4A55026AF3D54AF883405D0ED364/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2714": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2717": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513192618/5DCB52FEF51FEC7C9910BF82C57BD550A94544D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2718": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f37b80",
"Name": "Card",
"Transform": {
"posX": 33.07597,
"posY": 2.29885864,
"posZ": -92.16524,
"rotX": 0.0208087973,
"rotY": 269.999054,
"rotZ": 0.0167707838,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vindictive Officer",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d7f212a4-6a61-4827-b0f2-bea3dc67365c\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Police\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266510,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513170024/C3D09AABD11D4A55026AF3D54AF883405D0ED364/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b98f0f",
"Name": "Card",
"Transform": {
"posX": 29.6697578,
"posY": 2.31921625,
"posZ": -89.6288147,
"rotX": 0.0208198037,
"rotY": 270.000458,
"rotZ": 1.10508573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vindictive Officer",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d7f212a4-6a61-4827-b0f2-bea3dc67365c\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Police\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266511,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513170024/C3D09AABD11D4A55026AF3D54AF883405D0ED364/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1df377",
"Name": "Card",
"Transform": {
"posX": 28.1286449,
"posY": 2.31763482,
"posZ": -88.88556,
"rotX": 0.0209908783,
"rotY": 269.9979,
"rotZ": 1.02632189,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vindictive Officer",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d7f212a4-6a61-4827-b0f2-bea3dc67365c\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Police\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266512,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513170024/C3D09AABD11D4A55026AF3D54AF883405D0ED364/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "08b86f",
"Name": "Card",
"Transform": {
"posX": -9.803904,
"posY": 1.71402991,
"posZ": -20.2904625,
"rotX": 0.18142499,
"rotY": 270.0008,
"rotZ": 180.287628,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Crackdown",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4dd05e3a-0e89-47fe-b52d-0dd6115e73d9\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271413,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "033db6",
"Name": "Card",
"Transform": {
"posX": -10.3155222,
"posY": 1.71939039,
"posZ": -20.3730125,
"rotX": 359.9516,
"rotY": 269.999268,
"rotZ": 181.168243,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Crackdown",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4dd05e3a-0e89-47fe-b52d-0dd6115e73d9\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271414,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f1d3b6",
"Name": "Card",
"Transform": {
"posX": -10.5162983,
"posY": 1.67977929,
"posZ": -20.0312977,
"rotX": 359.9521,
"rotY": 269.9972,
"rotZ": 180.240814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Police Crackdown",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4dd05e3a-0e89-47fe-b52d-0dd6115e73d9\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271415,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdcd8f",
"Name": "Card",
"Transform": {
"posX": -10.2726746,
"posY": 1.69996691,
"posZ": -19.6962433,
"rotX": 359.952057,
"rotY": 270.0008,
"rotZ": 181.068329,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Panicking Populace",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"949d478d-5b1c-4d6d-9b7b-0596b286da17\",\"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": 271416,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d72b41",
"Name": "Card",
"Transform": {
"posX": -9.818893,
"posY": 1.69107306,
"posZ": -20.7746563,
"rotX": 0.821919262,
"rotY": 269.983215,
"rotZ": 180.205231,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Panicking Populace",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"949d478d-5b1c-4d6d-9b7b-0596b286da17\",\"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": 271417,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6c97a",
"Name": "Card",
"Transform": {
"posX": -10.02667,
"posY": 1.68971384,
"posZ": -20.4751148,
"rotX": 0.8869438,
"rotY": 270.1209,
"rotZ": 180.252655,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Panicking Populace",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"949d478d-5b1c-4d6d-9b7b-0596b286da17\",\"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": 271418,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6b68a",
"Name": "Card",
"Transform": {
"posX": -10.1709719,
"posY": 1.646802,
"posZ": -20.4044857,
"rotX": 359.936462,
"rotY": 270.0,
"rotZ": 180.018188,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night Watchman",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"922aaca2-2a9d-4ec1-9733-9545d84627e2\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Police\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271419,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1213e3",
"Name": "Card",
"Transform": {
"posX": -10.501895,
"posY": 1.64198411,
"posZ": -20.3463135,
"rotX": 359.952026,
"rotY": 270.0001,
"rotZ": 180.320923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night Watchman",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"922aaca2-2a9d-4ec1-9733-9545d84627e2\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Police\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271420,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c52220",
"Name": "Card",
"Transform": {
"posX": -10.162509,
"posY": 1.64976406,
"posZ": -20.83796,
"rotX": 0.0227355119,
"rotY": 270.0007,
"rotZ": 181.487747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Night Watchman",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"922aaca2-2a9d-4ec1-9733-9545d84627e2\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Humanoid. Police\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271421,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3fed12",
"Name": "Card",
"Transform": {
"posX": -10.1868563,
"posY": 1.63422179,
"posZ": -20.50656,
"rotX": 359.951752,
"rotY": 269.9995,
"rotZ": 181.0083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lack of Trust",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"445a1370-e8dc-48bf-ae4a-7f88422ea566\",\"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": 271422,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5c30d",
"Name": "Card",
"Transform": {
"posX": -10.4962864,
"posY": 1.60930383,
"posZ": -20.4941235,
"rotX": 359.952759,
"rotY": 270.0,
"rotZ": 180.068817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lack of Trust",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"445a1370-e8dc-48bf-ae4a-7f88422ea566\",\"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": 271423,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ed0d9f",
"Name": "Card",
"Transform": {
"posX": -28.2298088,
"posY": 1.38340044,
"posZ": -49.74335,
"rotX": 357.452,
"rotY": 269.996552,
"rotZ": 0.0260001663,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Concerned Citizen",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"47b69558-e89a-434f-ab2e-f6185c764533\",\"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": 271724,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8514b",
"Name": "Card",
"Transform": {
"posX": -31.74469,
"posY": 1.38548148,
"posZ": -48.4999771,
"rotX": 2.7085278,
"rotY": 269.978973,
"rotZ": 0.0166047029,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Concerned Citizen",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"47b69558-e89a-434f-ab2e-f6185c764533\",\"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": 271726,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "32a49e",
"Name": "Card",
"Transform": {
"posX": -29.8079071,
"posY": 1.473111,
"posZ": -49.2703972,
"rotX": 5.97779942,
"rotY": 269.993744,
"rotZ": 0.0113494564,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Concerned Citizen",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"47b69558-e89a-434f-ab2e-f6185c764533\",\"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": 271725,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840056010/5B0C8427028ED47CF8C890DDE4F80F59FB4C7594/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4b11c",
"Name": "Card",
"Transform": {
"posX": -10.1803236,
"posY": 1.64894462,
"posZ": -18.8451672,
"rotX": 359.954,
"rotY": 269.993652,
"rotZ": 182.790314,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berserk Civilian",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"950fc791-8b85-4f56-a3ad-bd80cb18c2f5\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Humanoid. Lunatic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271427,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "739a91",
"Name": "Card",
"Transform": {
"posX": -10.303668,
"posY": 1.59979045,
"posZ": -18.6323013,
"rotX": 359.921875,
"rotY": 269.99707,
"rotZ": 184.235153,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berserk Civilian",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"950fc791-8b85-4f56-a3ad-bd80cb18c2f5\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Humanoid. Lunatic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271428,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "250030",
"Name": "Card",
"Transform": {
"posX": 8.535946,
"posY": 1.32795668,
"posZ": -49.7288437,
"rotX": 0.0209323615,
"rotY": 269.99826,
"rotZ": 0.016006304,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f35644e9-c29d-46ed-8731-a4cb0819f4bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Omen. 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": 267802,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b69158",
"Name": "Card",
"Transform": {
"posX": 8.5150795,
"posY": 1.36976767,
"posZ": -49.4876976,
"rotX": 0.0250216983,
"rotY": 269.9961,
"rotZ": 0.0093507655,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f35644e9-c29d-46ed-8731-a4cb0819f4bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Omen. 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": 267801,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7fc09a",
"Name": "Card",
"Transform": {
"posX": 8.649743,
"posY": 1.40382469,
"posZ": -49.6263962,
"rotX": 0.0213067532,
"rotY": 270.000183,
"rotZ": 0.0164060649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f35644e9-c29d-46ed-8731-a4cb0819f4bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Omen. 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": 267800,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "105ecc",
"Name": "Card",
"Transform": {
"posX": 4.37371,
"posY": 1.32240164,
"posZ": -63.5525932,
"rotX": 0.0209068339,
"rotY": 270.0003,
"rotZ": 0.01619891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ec60953b-e095-47af-90ce-eba5d093dd7d\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Mystery\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269500,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e98807",
"Name": "Card",
"Transform": {
"posX": 4.31495,
"posY": 1.36418426,
"posZ": -63.2001152,
"rotX": 0.0259661414,
"rotY": 270.003052,
"rotZ": 0.00637912424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ec60953b-e095-47af-90ce-eba5d093dd7d\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Mystery\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269501,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "819805",
"Name": "Card",
"Transform": {
"posX": 4.42892027,
"posY": 1.39830649,
"posZ": -63.2213745,
"rotX": 0.0211659372,
"rotY": 270.0024,
"rotZ": 0.0160875078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"55e0f964-01a9-4edf-bd71-1b2b9bc09bff\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269502,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dd4be",
"Name": "Card",
"Transform": {
"posX": 4.713935,
"posY": 1.40805316,
"posZ": -63.1260033,
"rotX": 0.0209549461,
"rotY": 270.000244,
"rotZ": 0.0161888059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"55e0f964-01a9-4edf-bd71-1b2b9bc09bff\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269503,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "31b6dc",
"Name": "Card",
"Transform": {
"posX": -8.084184,
"posY": 3.02184868,
"posZ": -80.64382,
"rotX": 0.020808829,
"rotY": 269.9992,
"rotZ": 0.01677092,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Instinct",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4fd668bd-fd86-4c01-b757-f7ea140b8b45\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Madness\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267101,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513192618/5DCB52FEF51FEC7C9910BF82C57BD550A94544D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c9bd2e",
"Name": "Card",
"Transform": {
"posX": -8.400667,
"posY": 3.03883958,
"posZ": -80.49486,
"rotX": 0.020822579,
"rotY": 270.001,
"rotZ": 0.9475417,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Instinct",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4fd668bd-fd86-4c01-b757-f7ea140b8b45\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Madness\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267100,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513192618/5DCB52FEF51FEC7C9910BF82C57BD550A94544D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4ab809",
"Name": "Card",
"Transform": {
"posX": -19.2958851,
"posY": 1.31239474,
"posZ": -69.06072,
"rotX": 0.0195685122,
"rotY": 269.999237,
"rotZ": 0.0286807548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Animal",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"60bedeae-b5dc-436f-b53d-f7d1d1f2a1fe\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271803,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "082612",
"Name": "Card",
"Transform": {
"posX": -19.29582,
"posY": 1.34226739,
"posZ": -69.06058,
"rotX": 359.9494,
"rotY": 269.999451,
"rotZ": 359.847565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Animal",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"60bedeae-b5dc-436f-b53d-f7d1d1f2a1fe\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 271802,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a9fcad",
"Name": "Deck",
"Transform": {
"posX": -2.72500014,
"posY": 1.61837292,
"posZ": 0.373500228,
"rotX": 2.60469815E-08,
"rotY": 180.0232,
"rotZ": 6.993898E-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": [
271616,
271617,
271618
],
"CustomDeck": {
"2716": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3a0003",
"Name": "Card",
"Transform": {
"posX": -31.8383369,
"posY": 1.31455362,
"posZ": -45.3555222,
"rotX": 0.01707977,
"rotY": 179.999634,
"rotZ": 359.9771,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 3 - Last Response",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"aae08b06-2cc1-4937-9dd3-c6a06f19108d\",\"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": 271616,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33d171",
"Name": "Card",
"Transform": {
"posX": -31.7196922,
"posY": 1.35630572,
"posZ": -45.6434,
"rotX": 0.0223324187,
"rotY": 179.999588,
"rotZ": 359.978058,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Man vs. Nature",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e2ab340c-b1c1-4330-8a34-34c7b8381b0d\",\"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": 271617,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e0c12",
"Name": "Card",
"Transform": {
"posX": -31.5177326,
"posY": 1.39047682,
"posZ": -45.4036446,
"rotX": 0.0166951,
"rotY": 179.999573,
"rotZ": 359.978851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Unwelcoming Committee",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"50f4f0bb-6aa8-4707-8742-f17d66d750c8\",\"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": 271618,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "66ea1b",
"Name": "Card",
"Transform": {
"posX": 3.05780125,
"posY": 1.59660506,
"posZ": -5.18830156,
"rotX": 4.43029471E-08,
"rotY": 180.0164,
"rotZ": -5.513636E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1a - Inquiry of the Municipal Mental Ward",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"be015cb7-9b05-48b1-aba2-ae7ddccafb5c\",\"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",
"Location"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267515,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "934a3c",
"Name": "Card",
"Transform": {
"posX": 0.311600655,
"posY": 1.59660506,
"posZ": -5.1432004,
"rotX": 2.7940823E-08,
"rotY": 179.9971,
"rotZ": 7.01297651E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1c - Inquiry of the Boorstein Clinic",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8a92ab0b-de0c-4a4d-b315-055e8daff841\",\"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": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267514,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a365a",
"Name": "Card",
"Transform": {
"posX": -2.2302,
"posY": 1.59660506,
"posZ": -5.218901,
"rotX": -4.81480349E-08,
"rotY": 180.019,
"rotZ": -2.50906034E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1e - Inquiry of Howell Asylum",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f318a579-f12c-4fd1-b1b0-9d2a21504962\",\"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": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 267513,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1e10c5",
"Name": "Card",
"Transform": {
"posX": -3.9561007,
"posY": 1.59660506,
"posZ": -10.4414024,
"rotX": 2.1625727E-08,
"rotY": 270.122375,
"rotZ": 8.102455E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "Urban Jungle",
"GMNotes": "{\"TtsZoopGuid\":\"ccda8213-34c4-496e-979f-279a694643c1\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 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": 266611,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840053705/6A8DAA42C009B7C161AC39B9173E6C3DB155220B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840054144/FF96BE05032B057905BF299E4F6CBAD25E14F7F2/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a359f",
"Name": "Card",
"Transform": {
"posX": -19.7770977,
"posY": 1.53360486,
"posZ": 11.5774031,
"rotX": -4.12272847E-08,
"rotY": 270.022522,
"rotZ": 3.506393E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"fb917dca-c2ae-470f-b384-ea5c2fedf01c\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Ally. Wayfarer\"}",
"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": 271408,
"SidewaysCard": false,
"CustomDeck": {
"2714": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "547a4f",
"Name": "Deck",
"Transform": {
"posX": -17.0214977,
"posY": 1.5698148,
"posZ": -7.72270155,
"rotX": 3.61168766E-08,
"rotY": 270.000122,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Leads 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": [
272000,
272001,
272002,
272003,
272004,
272005
],
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ce13e1",
"Name": "Card",
"Transform": {
"posX": -16.9161167,
"posY": 1.53359437,
"posZ": -11.1603889,
"rotX": 0.000116810035,
"rotY": 270.0,
"rotZ": -0.000712527137,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"044975c9-83f4-419c-b0d3-604d6466c8e6\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272000,
"SidewaysCard": false,
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8fc9cf",
"Name": "Card",
"Transform": {
"posX": -17.1535664,
"posY": 1.5750972,
"posZ": -10.7825241,
"rotX": 0.006375057,
"rotY": 269.999939,
"rotZ": 359.988831,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"950a9708-aa10-4ff1-8fb3-5ea5eedb8a34\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272001,
"SidewaysCard": false,
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ab633a",
"Name": "Card",
"Transform": {
"posX": -16.7412777,
"posY": 1.609225,
"posZ": -11.4712019,
"rotX": 0.000350969785,
"rotY": 270.0,
"rotZ": -0.000404974067,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"063c1b84-0b22-431f-aaa3-047a5a5be350\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272002,
"SidewaysCard": false,
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2ffbcf",
"Name": "Card",
"Transform": {
"posX": -16.68136,
"posY": 1.61871052,
"posZ": -12.103137,
"rotX": -0.000903023349,
"rotY": 269.999969,
"rotZ": 0.003883204,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d1d3027d-2fde-4d94-82e1-cae6836b7145\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272003,
"SidewaysCard": false,
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "929850",
"Name": "Card",
"Transform": {
"posX": -17.1572342,
"posY": 1.62847424,
"posZ": -11.073266,
"rotX": -0.000389118679,
"rotY": 269.999847,
"rotZ": -0.000349456066,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8bfa928b-75af-45f1-a621-c504e56484ff\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272004,
"SidewaysCard": false,
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95d06b",
"Name": "Card",
"Transform": {
"posX": -16.5765953,
"posY": 1.63811147,
"posZ": -11.482748,
"rotX": 0.000237888366,
"rotY": 269.992645,
"rotZ": -0.000350193062,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lead",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e4307010-1aba-4358-94fc-885c18bf8d26\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272005,
"SidewaysCard": false,
"CustomDeck": {
"2720": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276344034/20BECB22DF5B3C297797C14C0B303EFAE0086A5A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "06bc0a",
"Name": "Card",
"Transform": {
"posX": -23.6764984,
"posY": 1.53360486,
"posZ": 11.4600039,
"rotX": -1.02518243E-07,
"rotY": 270.0,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Whittle Residence",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c3f7eb74-cb37-4887-97b9-f0ee9ac966ff\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"Circle|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"Circle|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": 270810,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0e8921",
"Name": "Card",
"Transform": {
"posX": -23.6764984,
"posY": 1.53360486,
"posZ": 3.86000085,
"rotX": -2.625689E-08,
"rotY": 269.999817,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Smitty's Diner",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"1908b8c4-4299-4569-9b49-e0570ef7511f\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Circle\",\"connections\":\"Square|T|Star\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"Circle\",\"connections\":\"Square|T|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": 271309,
"SidewaysCard": false,
"CustomDeck": {
"2713": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9f40ec",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.53360486,
"posZ": 3.865501,
"rotX": -3.803042E-08,
"rotY": 270.030731,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brantford Police Station",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9c2c2745-af3a-45a1-9df1-583e4ad6a612\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"T\",\"connections\":\"Square|Circle|Star|Quote\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"T\",\"connections\":\"Square|Circle|Star|Quote\"}}",
"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": 266608,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840053705/6A8DAA42C009B7C161AC39B9173E6C3DB155220B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840054144/FF96BE05032B057905BF299E4F6CBAD25E14F7F2/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e76b3b",
"Name": "Card",
"Transform": {
"posX": -36.7731056,
"posY": 1.53360486,
"posZ": 3.86010075,
"rotX": -1.4166919E-07,
"rotY": 270.000153,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Telephone Dispatch Office",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"6f2d2893-80d0-4c4d-9e84-ca2687780a50\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Quote\",\"connections\":\"T|Star|Heart\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Quote\",\"connections\":\"T|Star|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": 271506,
"SidewaysCard": false,
"CustomDeck": {
"2715": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a07d4c",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.53360486,
"posZ": -3.830001,
"rotX": -3.50407675E-10,
"rotY": 269.9999,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Brantford City Hall",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"64cc648c-35ff-4664-b731-0d898d56b51f\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Star\",\"connections\":\"Circle|T|Quote|Heart|Moon|Cross\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Star\",\"connections\":\"Circle|T|Quote|Heart|Moon|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": 271507,
"SidewaysCard": false,
"CustomDeck": {
"2715": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6edc1c",
"Name": "Card",
"Transform": {
"posX": -36.7732,
"posY": 1.53360486,
"posZ": -3.83000064,
"rotX": 3.034294E-08,
"rotY": 270.0275,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Municipal Hospital",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4d7c07e4-c883-4b31-9ab5-5fe3102f3e67\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Heart\",\"connections\":\"Star|Quote|Moon|Hourglass\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"Heart\",\"connections\":\"Star|Quote|Moon|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": 269805,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276773628/17DFA40CD7822C0AF090E3AAFEE2ED020C27DD66/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276774104/3BAC33075DC00D0CB612F65EAD77ABC4F3A4F108/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec83fb",
"Name": "Card",
"Transform": {
"posX": -23.6764984,
"posY": 1.53360486,
"posZ": -11.5100031,
"rotX": -3.20162528E-08,
"rotY": 270.000519,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "St. Simon's Church",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"587c973c-7a52-4eee-9009-b5465bc78b15\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Cross\",\"connections\":\"Star|Moon|Triangle\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Cross\",\"connections\":\"Star|Moon|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": 271903,
"SidewaysCard": false,
"CustomDeck": {
"2719": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5d866",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.53360486,
"posZ": -11.5100031,
"rotX": -1.08593223E-09,
"rotY": 269.999939,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chronicle Archives",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4d6f6bd0-57d0-4398-8ebb-9218a0a508ae\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Moon\",\"connections\":\"Star|Heart|Cross|Slash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":3}],\"victory\":2},\"locationBack\":{\"icons\":\"Moon\",\"connections\":\"Star|Heart|Cross|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": 271304,
"SidewaysCard": false,
"CustomDeck": {
"2713": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276345976/3EB2B1DB72EB7E3DB3623ADF1A44EF37897F099D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276346409/852325DE2B25F4FC1F8BD00AD2D45CF9A250FA07/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
},
{
"GUID": "847279",
"Name": "Bag",
"Transform": {
"posX": 19.0421,
"posY": 1.29646492,
"posZ": 0.140599936,
"rotX": 2.2345786E-07,
"rotY": 0.00100642571,
"rotZ": -1.05720994E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cards for interlude",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6117647,
"g": 0.8235294,
"b": 0.3058818
},
"LayoutGroupSortIndex": 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": "d6d5c9",
"Name": "Card",
"Transform": {
"posX": 19.046957,
"posY": 3.57174444,
"posZ": -0.478974581,
"rotX": -0.005398544,
"rotY": 269.999481,
"rotZ": 0.8989071,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Awareness)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"fe4696e6-4118-420d-9b72-a8390a9a34f5\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267603,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e3f5a8",
"Name": "Card",
"Transform": {
"posX": 19.102726,
"posY": 3.57594419,
"posZ": -0.246645927,
"rotX": 359.927429,
"rotY": 269.999023,
"rotZ": 0.8010316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Awareness)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"fe4696e6-4118-420d-9b72-a8390a9a34f5\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267602,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "49d292",
"Name": "Card",
"Transform": {
"posX": 19.3004627,
"posY": 3.57988048,
"posZ": 0.164605379,
"rotX": 359.6555,
"rotY": 269.999756,
"rotZ": 359.905365,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Awareness)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"fe4696e6-4118-420d-9b72-a8390a9a34f5\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267601,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bc65bc",
"Name": "Card",
"Transform": {
"posX": 19.0606556,
"posY": 3.56967735,
"posZ": -0.6390846,
"rotX": 359.983582,
"rotY": 269.9994,
"rotZ": 0.8853651,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Awareness)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"fe4696e6-4118-420d-9b72-a8390a9a34f5\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267600,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "923297",
"Name": "Card",
"Transform": {
"posX": 19.4096069,
"posY": 3.57343483,
"posZ": -0.321425527,
"rotX": 359.6819,
"rotY": 269.997375,
"rotZ": 0.764463246,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Endurance)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c9fc61ff-d709-473f-a471-1e609f93091a\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267605,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a4d12",
"Name": "Card",
"Transform": {
"posX": 19.81516,
"posY": 3.56786156,
"posZ": -0.632189453,
"rotX": 359.649323,
"rotY": 269.9974,
"rotZ": 0.673290253,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Endurance)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c9fc61ff-d709-473f-a471-1e609f93091a\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267607,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6d887",
"Name": "Card",
"Transform": {
"posX": 19.6337147,
"posY": 3.56473684,
"posZ": -1.01333773,
"rotX": 359.8057,
"rotY": 269.9918,
"rotZ": 0.7040155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Endurance)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c9fc61ff-d709-473f-a471-1e609f93091a\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267606,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f10f25",
"Name": "Card",
"Transform": {
"posX": 19.1078358,
"posY": 3.570561,
"posZ": -0.575376749,
"rotX": 359.9571,
"rotY": 269.998962,
"rotZ": 0.8939639,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Endurance)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c9fc61ff-d709-473f-a471-1e609f93091a\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267604,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6bab15",
"Name": "Card",
"Transform": {
"posX": 19.6710339,
"posY": 3.567452,
"posZ": -0.779147863,
"rotX": 359.74826,
"rotY": 269.998047,
"rotZ": 0.714128435,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Caution)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d9ba72c0-ec38-47bf-8ba5-649c0464fc04\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267608,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5409e6",
"Name": "Card",
"Transform": {
"posX": 19.2275658,
"posY": 3.57739425,
"posZ": 0.422147632,
"rotX": 359.786133,
"rotY": 270.0008,
"rotZ": 359.335724,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Caution)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d9ba72c0-ec38-47bf-8ba5-649c0464fc04\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267609,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "18e7d5",
"Name": "Card",
"Transform": {
"posX": 19.5379372,
"posY": 3.5675745,
"posZ": -0.7749833,
"rotX": 359.7856,
"rotY": 269.9981,
"rotZ": 0.7654613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Caution)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d9ba72c0-ec38-47bf-8ba5-649c0464fc04\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267610,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "912974",
"Name": "Card",
"Transform": {
"posX": 19.2743568,
"posY": 3.57727432,
"posZ": -0.154762119,
"rotX": 359.733582,
"rotY": 269.998016,
"rotZ": 0.634757,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Caution)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d9ba72c0-ec38-47bf-8ba5-649c0464fc04\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267611,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4e1cbf",
"Name": "Card",
"Transform": {
"posX": 18.98352,
"posY": 3.56954741,
"posZ": -0.6482973,
"rotX": 0.0338945761,
"rotY": 269.999847,
"rotZ": 0.878945649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Focus)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"b29885d3-175c-48dd-b4c1-1568bfc2e017\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267612,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6323d2",
"Name": "Card",
"Transform": {
"posX": 19.80916,
"posY": 3.57292461,
"posZ": 0.104342267,
"rotX": 359.364349,
"rotY": 269.999237,
"rotZ": 0.0426774621,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Focus)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"b29885d3-175c-48dd-b4c1-1568bfc2e017\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267613,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f56847",
"Name": "Card",
"Transform": {
"posX": 19.4044647,
"posY": 3.578506,
"posZ": 0.06608689,
"rotX": 359.55304,
"rotY": 269.9988,
"rotZ": 0.1504383,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Focus)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"b29885d3-175c-48dd-b4c1-1568bfc2e017\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267615,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f49837",
"Name": "Card",
"Transform": {
"posX": 19.1225643,
"posY": 3.571434,
"posZ": -0.5104704,
"rotX": 359.942535,
"rotY": 269.9989,
"rotZ": 0.8953997,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wilderness Training (Focus)",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"b29885d3-175c-48dd-b4c1-1568bfc2e017\",\"type\":\"Asset\",\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Talent\"}",
"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": 267614,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276363182/8F58D7452C6C712D9365A748F84C1617311DD69F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933574036605747/66F5F6903F78214DDB7420F5022C9CDEC4D85464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8a3606",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2532,
"posY": 1.481499,
"posZ": -12.0152,
"rotX": -1.15304175E-08,
"rotY": 269.9906,
"rotZ": 3.248935E-08,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "4: Force of Nature",
"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/1847049778276525299/2BB5C611E45B4CC8DFE9D7D6DCEC2ADEFC2B8094/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"33df04\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.5602,\"z\":11.4601},\"rot\":{\"x\":0,\"y\":269.9995,\"z\":180}},\"35aa25\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.5336,\"z\":-0.03},\"rot\":{\"x\":0,\"y\":269.9998,\"z\":180}},\"44a293\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5966,\"z\":-10.4413},\"rot\":{\"x\":0,\"y\":269.9992,\"z\":0}},\"629e09\":{\"lock\":false,\"pos\":{\"x\":-4.2625,\"y\":1.5966,\"z\":13.608},\"rot\":{\"x\":0,\"y\":269.9833,\"z\":0}},\"8d59ce\":{\"lock\":false,\"pos\":{\"x\":-4.2587,\"y\":1.5966,\"z\":16.1578},\"rot\":{\"x\":0,\"y\":269.9814,\"z\":0}},\"972462\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.5336,\"z\":-0.03},\"rot\":{\"x\":0,\"y\":269.9999,\"z\":0}},\"979545\":{\"lock\":false,\"pos\":{\"x\":1.6993,\"y\":1.558,\"z\":14.2783},\"rot\":{\"x\":0,\"y\":224.989,\"z\":0}},\"97c724\":{\"lock\":false,\"pos\":{\"x\":-8.0286,\"y\":1.6153,\"z\":16.369},\"rot\":{\"x\":2.0637,\"y\":269.9966,\"z\":179.9999}},\"9f5efc\":{\"lock\":false,\"pos\":{\"x\":-8.0259,\"y\":1.6154,\"z\":13.6532},\"rot\":{\"x\":2.0668,\"y\":269.9942,\"z\":179.9999}},\"ae9268\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.5602,\"z\":11.4601},\"rot\":{\"x\":0,\"y\":270.0016,\"z\":180}},\"b4af5f\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.6184,\"z\":-5.0486},\"rot\":{\"x\":0,\"y\":179.9997,\"z\":0}},\"cb9136\":{\"lock\":false,\"pos\":{\"x\":-8.0613,\"y\":1.6143,\"z\":10.9909},\"rot\":{\"x\":2.0257,\"y\":269.9935,\"z\":179.9997}},\"d8401e\":{\"lock\":false,\"pos\":{\"x\":-11.5829,\"y\":1.335,\"z\":-15.6659},\"rot\":{\"x\":0,\"y\":0.0009,\"z\":0}},\"e74252\":{\"lock\":false,\"pos\":{\"x\":-2.7249,\"y\":1.6184,\"z\":0.3733},\"rot\":{\"x\":0,\"y\":179.9996,\"z\":0}},\"e9e002\":{\"lock\":false,\"pos\":{\"x\":-44.4343,\"y\":1.5336,\"z\":2.3801},\"rot\":{\"x\":0,\"y\":270.0019,\"z\":0}},\"ec9437\":{\"lock\":false,\"pos\":{\"x\":-3.928,\"y\":1.6424,\"z\":5.7573},\"rot\":{\"x\":0,\"y\":270.0009,\"z\":180}},\"f5b51e\":{\"lock\":false,\"pos\":{\"x\":-43.3702,\"y\":1.5336,\"z\":-0.03},\"rot\":{\"x\":0,\"y\":269.9992,\"z\":180}},\"f7a56b\":{\"lock\":false,\"pos\":{\"x\":-11.5107,\"y\":1.5987,\"z\":-12.4323},\"rot\":{\"x\":0,\"y\":270.0002,\"z\":180}},\"f9b202\":{\"lock\":false,\"pos\":{\"x\":-16.056,\"y\":1.5336,\"z\":2.2334},\"rot\":{\"x\":0,\"y\":270.0159,\"z\":0}},\"fe1b3a\":{\"lock\":false,\"pos\":{\"x\":-30.2811,\"y\":1.5554,\"z\":11.5127},\"rot\":{\"x\":0,\"y\":269.9993,\"z\":180}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "979545",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69930124,
"posY": 1.55803633,
"posZ": 14.2783041,
"rotX": 1.43648413E-06,
"rotY": 224.988983,
"rotZ": 3.80581156E-07,
"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": "676d1d",
"Name": "Deck",
"Transform": {
"posX": 51.26448,
"posY": 2.00738525,
"posZ": -127.391525,
"rotX": 0.0208015628,
"rotY": 270.024963,
"rotZ": 0.0167800747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunter Encounter Set",
"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": [
267000,
267001,
269602
],
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513190733/6A15FE2E06946DB4D53437077429866860904229/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d8515b",
"Name": "Card",
"Transform": {
"posX": 32.9526672,
"posY": 2.31631374,
"posZ": -87.96286,
"rotX": 0.020735627,
"rotY": 270.000366,
"rotZ": 0.8844152,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rifle Blast",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"5a69c1a3-e0da-41fa-beca-00dd9e6087f7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267000,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513190733/6A15FE2E06946DB4D53437077429866860904229/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dba31e",
"Name": "Card",
"Transform": {
"posX": 33.9865036,
"posY": 2.29836059,
"posZ": -96.74285,
"rotX": 0.020807717,
"rotY": 270.0019,
"rotZ": 0.0167722777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rifle Blast",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"5a69c1a3-e0da-41fa-beca-00dd9e6087f7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267001,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513190733/6A15FE2E06946DB4D53437077429866860904229/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e7562",
"Name": "Card",
"Transform": {
"posX": 8.995375,
"posY": 1.39597023,
"posZ": -76.78578,
"rotX": 0.0209061541,
"rotY": 270.0227,
"rotZ": 0.01625923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Got you in my sights...\"",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"baf85a15-ce1f-468e-8e7f-9817f8792ed4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269602,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "df6da2",
"Name": "Card",
"Transform": {
"posX": -1.23872817,
"posY": 2.32422686,
"posZ": -87.98582,
"rotX": 0.0208064262,
"rotY": 270.0073,
"rotZ": 0.0167736672,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Van Pelt",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e3a3c4b9-28df-4bac-8b97-9cee42e39ddb\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Humanoid. Lunatic. 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": 270403,
"SidewaysCard": false,
"CustomDeck": {
"2704": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293406593/746BF4E2667E5E04DD6650A8D0AFCD477D083819/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cac1bb",
"Name": "Card",
"Transform": {
"posX": 32.2472458,
"posY": 2.29846,
"posZ": -91.71741,
"rotX": 0.0208083428,
"rotY": 270.001,
"rotZ": 0.016771432,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"1bbefd85-ecb1-45d3-a0c1-04b9b65e949d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Ancient One. 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": false,
"Hands": true,
"CardID": 266814,
"SidewaysCard": false,
"CustomDeck": {
"2668": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513178926/698422D371FB0A35A39FA3711EDEFC670045D5A6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513179587/1DA3BCE358DAFC1769130EB530EDB6FDF3D35464/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8d59ce",
"Name": "Card",
"Transform": {
"posX": -4.25870228,
"posY": 1.59660506,
"posZ": 16.1578121,
"rotX": 2.16141345E-08,
"rotY": 269.981445,
"rotZ": 7.97577755E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fourth Player",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"96eea706-8e72-47f4-90a2-c085e31950d1\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Turns\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Condition\"}",
"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": 272912,
"SidewaysCard": false,
"CustomDeck": {
"2729": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "629e09",
"Name": "Card",
"Transform": {
"posX": -4.26250124,
"posY": 1.59660506,
"posZ": 13.6080084,
"rotX": 4.9719258E-08,
"rotY": 269.983276,
"rotZ": -2.54628656E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Dice",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f5406279-1780-4efe-871e-c8925d38be33\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Relic\"}",
"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": 270315,
"SidewaysCard": false,
"CustomDeck": {
"2703": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293398218/DDCD2C00456FDEB03DB20A7E02AC43620A34935D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97c724",
"Name": "Deck",
"Transform": {
"posX": -8.028602,
"posY": 1.61529994,
"posZ": 16.36901,
"rotX": 2.06365514,
"rotY": 269.996643,
"rotZ": 179.999878,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Spirits Encounter Set",
"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": [
269300,
269301,
269302,
269303
],
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8c460f",
"Name": "Card",
"Transform": {
"posX": 8.736771,
"posY": 1.32297111,
"posZ": -66.92138,
"rotX": 0.0212178454,
"rotY": 269.900024,
"rotZ": 0.0142478244,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fallen Explorer",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"49ee6ed4-2580-42b3-9996-df2c7fd90299\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269300,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aef8a5",
"Name": "Card",
"Transform": {
"posX": 8.776021,
"posY": 1.35927463,
"posZ": -66.98697,
"rotX": 0.0218854733,
"rotY": 270.03064,
"rotZ": -0.00210294477,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fallen Explorer",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"49ee6ed4-2580-42b3-9996-df2c7fd90299\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269301,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c169bd",
"Name": "Card",
"Transform": {
"posX": 9.081781,
"posY": 1.3993752,
"posZ": -65.27199,
"rotX": 0.0208618883,
"rotY": 270.0334,
"rotZ": 0.0157792941,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Aspect",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"78cd19d9-80c1-4765-8b37-037d9e1fdc71\",\"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": 269302,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b18b0",
"Name": "Card",
"Transform": {
"posX": 9.12202,
"posY": 1.40890467,
"posZ": -65.72903,
"rotX": 0.0211583152,
"rotY": 270.0342,
"rotZ": 0.01651411,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Aspect",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"78cd19d9-80c1-4765-8b37-037d9e1fdc71\",\"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": 269303,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "9f5efc",
"Name": "Deck",
"Transform": {
"posX": -8.025891,
"posY": 1.61538625,
"posZ": 13.6532106,
"rotX": 2.066801,
"rotY": 269.9942,
"rotZ": 179.999878,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Primal Influence Encounter Set",
"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": [
267100,
267101,
273103,
273102
],
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513192618/5DCB52FEF51FEC7C9910BF82C57BD550A94544D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2731": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "a49934",
"Name": "Card",
"Transform": {
"posX": 15.3840256,
"posY": 2.35041332,
"posZ": -76.4549561,
"rotX": 0.0208223127,
"rotY": 270.0016,
"rotZ": 0.9475386,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Instinct",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4fd668bd-fd86-4c01-b757-f7ea140b8b45\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Madness\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267100,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513192618/5DCB52FEF51FEC7C9910BF82C57BD550A94544D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c18580",
"Name": "Card",
"Transform": {
"posX": 15.43013,
"posY": 2.33129215,
"posZ": -82.71567,
"rotX": 0.0208086874,
"rotY": 269.999573,
"rotZ": 0.01677086,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Instinct",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4fd668bd-fd86-4c01-b757-f7ea140b8b45\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hex. Madness\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267101,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513192618/5DCB52FEF51FEC7C9910BF82C57BD550A94544D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4ab809",
"Name": "Card",
"Transform": {
"posX": -19.2958851,
"posY": 1.31239474,
"posZ": -69.06072,
"rotX": 0.0195685122,
"rotY": 269.999237,
"rotZ": 0.0286807548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Animal",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"60bedeae-b5dc-436f-b53d-f7d1d1f2a1fe\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273103,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "082612",
"Name": "Card",
"Transform": {
"posX": -19.29582,
"posY": 1.34226739,
"posZ": -69.06058,
"rotX": 359.9494,
"rotY": 269.999451,
"rotZ": 359.847565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Animal",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"60bedeae-b5dc-436f-b53d-f7d1d1f2a1fe\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273102,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840066447/3FE3D0DBF2B460F8B916179046C6BE9F2195D334/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "cb9136",
"Name": "Deck",
"Transform": {
"posX": -8.061302,
"posY": 1.61428761,
"posZ": 10.9909077,
"rotX": 2.02572346,
"rotY": 269.99353,
"rotZ": 179.999741,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spreading Wilds Encounter Set",
"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": [
269500,
269501,
269502,
269503
],
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "105ecc",
"Name": "Card",
"Transform": {
"posX": 4.37371,
"posY": 1.32240164,
"posZ": -63.5525932,
"rotX": 0.0209068339,
"rotY": 270.0003,
"rotZ": 0.01619891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ec60953b-e095-47af-90ce-eba5d093dd7d\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Mystery\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269500,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e98807",
"Name": "Card",
"Transform": {
"posX": 4.31495,
"posY": 1.36418426,
"posZ": -63.2001152,
"rotX": 0.0259661414,
"rotY": 270.003052,
"rotZ": 0.00637912424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ec60953b-e095-47af-90ce-eba5d093dd7d\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Mystery\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269501,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "819805",
"Name": "Card",
"Transform": {
"posX": 4.42892027,
"posY": 1.39830649,
"posZ": -63.2213745,
"rotX": 0.0211659372,
"rotY": 270.0024,
"rotZ": 0.0160875078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"55e0f964-01a9-4edf-bd71-1b2b9bc09bff\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269502,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dd4be",
"Name": "Card",
"Transform": {
"posX": 4.713935,
"posY": 1.40805316,
"posZ": -63.1260033,
"rotX": 0.0209549461,
"rotY": 270.000244,
"rotZ": 0.0161888059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"55e0f964-01a9-4edf-bd71-1b2b9bc09bff\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269503,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ec9437",
"Name": "Deck",
"Transform": {
"posX": -3.9280014,
"posY": 1.64244318,
"posZ": 5.75730562,
"rotX": 6.763238E-08,
"rotY": 270.0009,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
267300,
267301,
267302,
267303,
267304,
273407,
273406,
273405
],
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2734": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513175743/1AC50A8A5E7DAA59C32EE1359FFE73D834D31ABC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "42b524",
"Name": "Card",
"Transform": {
"posX": -11.7791977,
"posY": 1.6329453,
"posZ": -23.362896,
"rotX": 359.952545,
"rotY": 269.999634,
"rotZ": 180.65979,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Jungle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"95ed7814-f5dc-40b6-8665-dcaf14cfb8ff\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Abomination. Creature. Flora. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2aea05",
"Name": "Card",
"Transform": {
"posX": -11.9507465,
"posY": 1.6414721,
"posZ": -22.679987,
"rotX": 359.9521,
"rotY": 269.999268,
"rotZ": 181.247147,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Jungle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"95ed7814-f5dc-40b6-8665-dcaf14cfb8ff\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Abomination. Creature. Flora. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f0c6ea",
"Name": "Card",
"Transform": {
"posX": -11.7716179,
"posY": 1.61033142,
"posZ": -22.3852215,
"rotX": 359.952759,
"rotY": 269.999939,
"rotZ": 180.029083,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Winds",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"0f94b284-dc9c-4703-b25a-e539739482c6\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267302,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3ff219",
"Name": "Card",
"Transform": {
"posX": -12.0053244,
"posY": 1.66445684,
"posZ": -22.6252937,
"rotX": 1.62788546,
"rotY": 270.05188,
"rotZ": 181.587387,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Winds",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"0f94b284-dc9c-4703-b25a-e539739482c6\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267303,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6cf8f7",
"Name": "Card",
"Transform": {
"posX": -12.060626,
"posY": 1.59696734,
"posZ": -22.7289047,
"rotX": 0.5295874,
"rotY": 270.010254,
"rotZ": 180.087891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Winds",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"0f94b284-dc9c-4703-b25a-e539739482c6\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267304,
"SidewaysCard": false,
"CustomDeck": {
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276355214/5C16B276358C505A900750AB5743FE3E10A1BBFA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ccbc1c",
"Name": "Card",
"Transform": {
"posX": 17.9115963,
"posY": 1.98561573,
"posZ": -102.732864,
"rotX": 0.0207759961,
"rotY": 269.988,
"rotZ": 0.0167960785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Whirling",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"040404b2-f1cb-46f1-8c4b-a4a51eb04d99\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273407,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513175743/1AC50A8A5E7DAA59C32EE1359FFE73D834D31ABC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "085176",
"Name": "Card",
"Transform": {
"posX": 15.4538794,
"posY": 1.98563159,
"posZ": -101.226753,
"rotX": 0.0208352562,
"rotY": 269.99353,
"rotZ": 0.01660316,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Whirling",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"040404b2-f1cb-46f1-8c4b-a4a51eb04d99\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273406,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513175743/1AC50A8A5E7DAA59C32EE1359FFE73D834D31ABC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a07ca9",
"Name": "Card",
"Transform": {
"posX": 19.1438084,
"posY": 1.985647,
"posZ": -102.804352,
"rotX": 0.0209158976,
"rotY": 269.9895,
"rotZ": 0.0160535835,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Whirling",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"040404b2-f1cb-46f1-8c4b-a4a51eb04d99\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273405,
"SidewaysCard": false,
"CustomDeck": {
"2667": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513175743/1AC50A8A5E7DAA59C32EE1359FFE73D834D31ABC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e74252",
"Name": "Deck",
"Transform": {
"posX": -2.72490072,
"posY": 1.61837292,
"posZ": 0.373300344,
"rotX": -9.731259E-09,
"rotY": 179.9996,
"rotZ": 9.971998E-09,
"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": [
267503,
267504,
273305
],
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
},
"2733": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dc132e",
"Name": "Card",
"Transform": {
"posX": -2.72473621,
"posY": 1.59885025,
"posZ": 0.373342335,
"rotX": 0.0182626937,
"rotY": 179.999619,
"rotZ": 0.07087432,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 3 - Apex Predator",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"dca8d7c4-47e8-496e-a57a-e5fdb5d19e8b\",\"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": 267503,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "42fb94",
"Name": "Card",
"Transform": {
"posX": -2.72479153,
"posY": 1.63044024,
"posZ": 0.373267055,
"rotX": 0.041007027,
"rotY": 179.9987,
"rotZ": 0.103081547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Whirling Fury",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"02dca769-fab4-476c-8b1c-08f8df912ec6\",\"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": 267504,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "abbde8",
"Name": "Card",
"Transform": {
"posX": -7.430836,
"posY": 3.02014542,
"posZ": -86.83826,
"rotX": 0.0167708155,
"rotY": 179.99968,
"rotZ": 359.9792,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Leaking Chaos",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"65168763-7e85-41ba-8cbc-291bc837a7aa\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":10}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 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": 273305,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b4af5f",
"Name": "Deck",
"Transform": {
"posX": -2.68870068,
"posY": 1.61837292,
"posZ": -5.04860353,
"rotX": 2.54376662E-08,
"rotY": 179.9997,
"rotZ": 4.88530425E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
267500,
267501,
267502
],
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c1d364",
"Name": "Card",
"Transform": {
"posX": -2.688538,
"posY": 1.59734833,
"posZ": -5.04864645,
"rotX": 0.0168380253,
"rotY": 180.000031,
"rotZ": 0.08023534,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3 - One More Turn",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"df23b743-33a5-4dec-8957-1506b8c1e406\",\"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": 267500,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0f4388",
"Name": "Card",
"Transform": {
"posX": -2.68854523,
"posY": 1.64343894,
"posZ": -5.04852962,
"rotX": 0.0142734461,
"rotY": 180.0,
"rotZ": 0.06551962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - Well Begun is Half Done",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"30b1736e-4d9e-43b2-b3fc-60dbee2e5a0c\",\"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": 267501,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "063bf0",
"Name": "Card",
"Transform": {
"posX": -2.68853354,
"posY": 1.66220582,
"posZ": -5.04854,
"rotX": 0.0194129311,
"rotY": 179.9992,
"rotZ": 0.07926353,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1 - Never Split the Party",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"dd3351eb-1502-48e7-abf5-0c6d5dbd7b8f\",\"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": 267502,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "44a293",
"Name": "Card",
"Transform": {
"posX": -3.956002,
"posY": 1.59660506,
"posZ": -10.441309,
"rotX": 6.549205E-08,
"rotY": 269.999176,
"rotZ": 1.32773481E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "Force of Nature",
"GMNotes": "{\"TtsZoopGuid\":\"2140013f-38f0-496c-92b8-af84f13b1c28\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 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": 272715,
"SidewaysCard": false,
"CustomDeck": {
"2727": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f7a56b",
"Name": "Deck",
"Transform": {
"posX": -11.5106878,
"posY": 1.59869909,
"posZ": -12.43231,
"rotX": 2.769969E-08,
"rotY": 270.000183,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji 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": [
273600,
273603,
273601,
273602,
273604,
273605,
273606,
273607,
273608,
273609,
273610,
273611
],
"CustomDeck": {
"2736": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7d2605",
"Name": "Card",
"Transform": {
"posX": -26.5301838,
"posY": 2.17548156,
"posZ": -84.98825,
"rotX": 0.03854557,
"rotY": 268.2984,
"rotZ": 359.932648,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tigers",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"62686cc5-ffa9-4dec-93cd-d6f02b285812\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273600,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b2281",
"Name": "Card",
"Transform": {
"posX": -26.5265713,
"posY": 2.255689,
"posZ": -84.978714,
"rotX": 0.00907078851,
"rotY": 270.0586,
"rotZ": 359.941437,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snakes",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f5995a91-fe0a-4dff-a2c4-3c934b87ffe2\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273603,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "418e6a",
"Name": "Card",
"Transform": {
"posX": -26.41774,
"posY": 2.20242429,
"posZ": -84.99252,
"rotX": 0.0379043,
"rotY": 269.155243,
"rotZ": 359.925781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stampede",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a78aa48e-d577-4926-a03d-3f38415e2135\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273601,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cfd7da",
"Name": "Card",
"Transform": {
"posX": -26.620945,
"posY": 2.22919536,
"posZ": -84.8645248,
"rotX": 0.03333737,
"rotY": 273.432556,
"rotZ": 359.933258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiders",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9061e78a-b344-446a-95b0-396e065dbccf\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273602,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "975699",
"Name": "Card",
"Transform": {
"posX": -26.5797863,
"posY": 2.28257585,
"posZ": -84.98774,
"rotX": 0.005031425,
"rotY": 270.6381,
"rotZ": 359.91745,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9811072f-8489-4e95-a8e3-e9973a1133cf\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273604,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61e435",
"Name": "Card",
"Transform": {
"posX": -26.4444885,
"posY": 2.30872035,
"posZ": -85.00199,
"rotX": 0.0222472977,
"rotY": 270.6724,
"rotZ": 359.908478,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monsoon",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"2f0caa7e-a9a2-46c4-b0a3-016af916fc1a\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273605,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14b464",
"Name": "Card",
"Transform": {
"posX": -26.6065311,
"posY": 2.33558226,
"posZ": -85.00669,
"rotX": 0.0236693732,
"rotY": 267.821228,
"rotZ": 359.9302,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insects",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e2beb558-9e5c-4817-b030-18446bed3860\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273606,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "544e5b",
"Name": "Card",
"Transform": {
"posX": -26.48533,
"posY": 2.36188626,
"posZ": -84.96193,
"rotX": 0.031261187,
"rotY": 269.575073,
"rotZ": 359.956482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hippos",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d5af5439-a9d4-4780-b34b-5b1f42299a40\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273607,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa5164",
"Name": "Card",
"Transform": {
"posX": -26.5179214,
"posY": 2.38885379,
"posZ": -84.96035,
"rotX": 0.03513058,
"rotY": 270.2519,
"rotZ": 359.973267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gorillas",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c444452b-a765-40d7-aa0e-d54be7516d13\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273608,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8aeaaa",
"Name": "Card",
"Transform": {
"posX": -26.572094,
"posY": 2.41547418,
"posZ": -85.0004959,
"rotX": 0.0466686748,
"rotY": 269.9593,
"rotZ": 359.9824,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthquake",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"974a6f9d-daf4-442d-999e-aa59da6dd4bc\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273609,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3a774",
"Name": "Card",
"Transform": {
"posX": -26.5476589,
"posY": 1.312633,
"posZ": -58.60623,
"rotX": 0.02078741,
"rotY": 269.967865,
"rotZ": 0.0170682464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crocodiles",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"57f550c0-f2dc-470a-bb44-c07875c7c4a6\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273610,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "615e7b",
"Name": "Card",
"Transform": {
"posX": -26.5027027,
"posY": 1.35457385,
"posZ": -58.2287369,
"rotX": 0.0186209455,
"rotY": 269.967377,
"rotZ": 0.0101237716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climate",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"01d59411-7d24-4c21-813b-3a66b7dc69be\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273611,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d8401e",
"Name": "Bag",
"Transform": {
"posX": -11.5828962,
"posY": 1.33496606,
"posZ": -15.665904,
"rotX": 5.501167E-06,
"rotY": 0.0009252172,
"rotZ": 4.41939E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Sets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.850174069,
"g": 0.7016305,
"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": "64c874",
"Name": "Deck",
"Transform": {
"posX": -51.61716,
"posY": 2.00733781,
"posZ": -103.279572,
"rotX": 0.0208080579,
"rotY": 270.000061,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tigers Encounter Set",
"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": [
269200,
269201,
269202
],
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "71f06c",
"Name": "Card",
"Transform": {
"posX": 21.3474445,
"posY": 1.29072881,
"posZ": -68.1729,
"rotX": 0.0212800074,
"rotY": 270.001221,
"rotZ": 0.0137168737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silent Stalking",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c9eee641-4f69-4e41-83c6-806fa8be3858\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269200,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cde970",
"Name": "Card",
"Transform": {
"posX": 21.2629566,
"posY": 1.33480608,
"posZ": -68.08163,
"rotX": 0.0127699422,
"rotY": 270.000977,
"rotZ": 359.896454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Tiger",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ef6ede95-517f-47e9-9018-00716915e560\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269201,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "514fe7",
"Name": "Card",
"Transform": {
"posX": 21.5538635,
"posY": 1.366633,
"posZ": -68.15456,
"rotX": 0.0213430077,
"rotY": 270.0011,
"rotZ": 0.0164976269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Tiger",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ef6ede95-517f-47e9-9018-00716915e560\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269202,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "9e4b47",
"Name": "Deck",
"Transform": {
"posX": -19.98467,
"posY": 2.34248161,
"posZ": -75.3448257,
"rotX": 0.0208080746,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stampede Encounter Set",
"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": [
270800,
270801,
270802
],
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2830d9",
"Name": "Card",
"Transform": {
"posX": -27.1081676,
"posY": 1.31466043,
"posZ": -50.92882,
"rotX": 0.02092839,
"rotY": 270.000031,
"rotZ": 0.016006995,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trampled Underfoot",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4a84913b-c7e2-4028-9030-cc03fa0cfd13\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270800,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a70b5d",
"Name": "Card",
"Transform": {
"posX": -27.1702671,
"posY": 1.35642779,
"posZ": -51.2482643,
"rotX": 0.0204208139,
"rotY": 270.000031,
"rotZ": 0.0131465085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charging Rhinoceros",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"5a6c7e56-bf00-451e-bbae-94b6e65a53f3\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270801,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a19b11",
"Name": "Card",
"Transform": {
"posX": -27.298418,
"posY": 1.39032984,
"posZ": -51.15118,
"rotX": 0.02184725,
"rotY": 270.000031,
"rotZ": 0.0166021865,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berserk Elephant",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"2574314d-5926-4286-8693-aaa7f366529d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270802,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a0d735",
"Name": "Deck",
"Transform": {
"posX": -19.6318913,
"posY": 2.34347963,
"posZ": -71.84027,
"rotX": 0.0208080523,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiders Encounter Set",
"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": [
270700,
270701,
270702
],
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4abade",
"Name": "Card",
"Transform": {
"posX": -23.3748951,
"posY": 1.31774688,
"posZ": -45.0065,
"rotX": 0.02096923,
"rotY": 269.952759,
"rotZ": 0.015805,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangling Webs",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"37033f78-bb04-420a-9f93-9aac6883378e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270700,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a1cdf",
"Name": "Card",
"Transform": {
"posX": -23.5017471,
"posY": 1.359529,
"posZ": -44.85992,
"rotX": 0.0250807051,
"rotY": 269.97702,
"rotZ": 0.0108684814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangling Webs",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"37033f78-bb04-420a-9f93-9aac6883378e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270701,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "562878",
"Name": "Card",
"Transform": {
"posX": -23.4667759,
"posY": 1.39349842,
"posZ": -45.16588,
"rotX": 0.0207694136,
"rotY": 269.983429,
"rotZ": 0.0164016783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Giant Tarantula",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"62a7e32f-7c4e-4d85-9887-ac89dc8099db\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Spider. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270702,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b65d58",
"Name": "Deck",
"Transform": {
"posX": 1.92383122,
"posY": 2.344889,
"posZ": -96.19671,
"rotX": 0.0208090525,
"rotY": 269.997864,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snakes Encounter Set",
"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": [
270600,
267401,
267402
],
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513196387/4414484E55A74A0D28103D3A5E0202CFA5267826/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "91202a",
"Name": "Card",
"Transform": {
"posX": -19.4805527,
"posY": 1.317286,
"posZ": -51.42474,
"rotX": 0.0209194962,
"rotY": 270.0084,
"rotZ": 0.0160570238,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rainforest Viper",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f2c5d2f3-9b15-4665-bd6c-58ea09a4259d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Serpent. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270600,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4f36d",
"Name": "Card",
"Transform": {
"posX": 5.01777172,
"posY": 1.32125354,
"posZ": -68.25507,
"rotX": 0.0209504031,
"rotY": 269.983337,
"rotZ": 0.0158468839,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Menace",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4f226707-cade-4de2-a80d-15dff80b888f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/5063766435513196387/4414484E55A74A0D28103D3A5E0202CFA5267826/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b262f",
"Name": "Card",
"Transform": {
"posX": 4.76396561,
"posY": 1.36298168,
"posZ": -68.0123444,
"rotX": 0.0261542667,
"rotY": 269.981232,
"rotZ": 0.009055105,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Menace",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4f226707-cade-4de2-a80d-15dff80b888f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/5063766435513196387/4414484E55A74A0D28103D3A5E0202CFA5267826/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "44afc7",
"Name": "Deck",
"Transform": {
"posX": -23.07435,
"posY": 2.007384,
"posZ": -104.867126,
"rotX": 0.02080842,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Encounter Set",
"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": [
268802,
268801,
268800
],
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0cdb4f",
"Name": "Card",
"Transform": {
"posX": 21.4666634,
"posY": 1.29608655,
"posZ": -50.1384621,
"rotX": 0.0209212,
"rotY": 270.021851,
"rotZ": 0.01604578,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c2a3adfb-aebe-4cc6-bddd-34cbfcee6915\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268802,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bc3ce",
"Name": "Card",
"Transform": {
"posX": 21.3064232,
"posY": 1.337903,
"posZ": -49.95226,
"rotX": 0.019072827,
"rotY": 270.020355,
"rotZ": 0.0142658744,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c2a3adfb-aebe-4cc6-bddd-34cbfcee6915\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268801,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "790fce",
"Name": "Card",
"Transform": {
"posX": 21.42977,
"posY": 1.37260354,
"posZ": -49.67911,
"rotX": 0.0205799118,
"rotY": 270.022583,
"rotZ": 0.01585853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c2a3adfb-aebe-4cc6-bddd-34cbfcee6915\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268800,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "57898e",
"Name": "Deck",
"Transform": {
"posX": -23.58652,
"posY": 2.33504462,
"posZ": -96.89724,
"rotX": 0.0208074637,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monsoon Encounter Set",
"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": [
268600,
268601,
268602
],
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f0ae03",
"Name": "Card",
"Transform": {
"posX": 21.1372452,
"posY": 1.29510093,
"posZ": -52.9168663,
"rotX": 0.02145229,
"rotY": 269.9925,
"rotZ": 0.0125408927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"878ea09b-ec8e-43ce-8d52-bdab09e36791\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268600,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "de0eaf",
"Name": "Card",
"Transform": {
"posX": 21.313509,
"posY": 1.33673024,
"posZ": -53.402832,
"rotX": 0.01615253,
"rotY": 269.9925,
"rotZ": 0.0207034964,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"878ea09b-ec8e-43ce-8d52-bdab09e36791\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268601,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2694f",
"Name": "Card",
"Transform": {
"posX": 20.7980766,
"posY": 1.37076461,
"posZ": -53.2578545,
"rotX": 0.0209043771,
"rotY": 269.992432,
"rotZ": 0.0162801817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"878ea09b-ec8e-43ce-8d52-bdab09e36791\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268602,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6b59f0",
"Name": "Deck",
"Transform": {
"posX": 15.4411268,
"posY": 2.00738382,
"posZ": -114.361954,
"rotX": 0.020796515,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insects Encounter Set",
"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": [
267200,
268401,
268402
],
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513193799/F48D5CB9D2FD8B72E6477BBCAE8B57FA2C5BDB3E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f8336c",
"Name": "Card",
"Transform": {
"posX": 28.3523827,
"posY": 1.98562956,
"posZ": -97.77709,
"rotX": 0.0208081622,
"rotY": 270.00177,
"rotZ": 0.0167718213,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Mosquitos",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8dff9a22-6c03-45bb-8f53-8b1695b95df6\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Insect\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267200,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513193799/F48D5CB9D2FD8B72E6477BBCAE8B57FA2C5BDB3E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "09b78c",
"Name": "Card",
"Transform": {
"posX": 25.1758156,
"posY": 1.334095,
"posZ": -67.7666245,
"rotX": 0.0231745616,
"rotY": 270.014984,
"rotZ": 0.0145197483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tsetse Fly Bite",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9096c590-a64f-4f22-9c1a-c58e659287b7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"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": 268401,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "800ce9",
"Name": "Card",
"Transform": {
"posX": 24.9140148,
"posY": 1.36793029,
"posZ": -67.99905,
"rotX": 0.0207903981,
"rotY": 270.014954,
"rotZ": 0.0163587052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Army of Ants",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"549f4122-6075-4250-b422-9b64a1007659\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268402,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "fb283a",
"Name": "Deck",
"Transform": {
"posX": -20.4856415,
"posY": 2.33975649,
"posZ": -84.81526,
"rotX": 0.0208076686,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hippos Encounter Set",
"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": [
268300,
268301,
268302
],
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "312425",
"Name": "Card",
"Transform": {
"posX": 24.6207619,
"posY": 1.29318035,
"posZ": -63.9701958,
"rotX": 0.02095358,
"rotY": 269.9986,
"rotZ": 0.015839586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Territorial Beasts",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8c6a82d1-fab9-43e1-986b-1a96dafc1782\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268300,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ee522",
"Name": "Card",
"Transform": {
"posX": 24.804945,
"posY": 1.33509588,
"posZ": -63.8842354,
"rotX": 0.0231752861,
"rotY": 269.9986,
"rotZ": 0.0148908664,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraged Hippopotamus",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a4556058-0eff-47e7-84cf-42d268cdc57d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268301,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "458430",
"Name": "Card",
"Transform": {
"posX": 24.75588,
"posY": 1.36899889,
"posZ": -64.09441,
"rotX": 0.0212697051,
"rotY": 269.9985,
"rotZ": 0.016194379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraged Hippopotamus",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a4556058-0eff-47e7-84cf-42d268cdc57d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268302,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "16bb06",
"Name": "Deck",
"Transform": {
"posX": -10.5389986,
"posY": 2.007384,
"posZ": -110.883,
"rotX": 0.0208082814,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gorillas Encounter Set",
"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": [
268200,
268201,
268202
],
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8abb3c",
"Name": "Card",
"Transform": {
"posX": 24.33702,
"posY": 1.2939142,
"posZ": -61.1086273,
"rotX": 0.0209677573,
"rotY": 269.993225,
"rotZ": 0.01578696,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eyes in the Mist",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"04cb123f-edb4-41fb-a121-73e10580313c\",\"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": 268200,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d38359",
"Name": "Card",
"Transform": {
"posX": 24.2825737,
"posY": 1.33573771,
"posZ": -61.03516,
"rotX": 0.0183939338,
"rotY": 269.993225,
"rotZ": 0.0148416823,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Furious Silverback",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"93aff6bb-685e-45aa-9c98-3790ba8a6f2f\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268201,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96977b",
"Name": "Card",
"Transform": {
"posX": 24.34784,
"posY": 1.36975265,
"posZ": -60.99368,
"rotX": 0.02141279,
"rotY": 269.993225,
"rotZ": 0.016307462,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Furious Silverback",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"93aff6bb-685e-45aa-9c98-3790ba8a6f2f\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268202,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "657162",
"Name": "Deck",
"Transform": {
"posX": -9.393531,
"posY": 2.00733137,
"posZ": -102.3101,
"rotX": 0.0208080653,
"rotY": 270.000061,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthquake Encounter Set",
"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": [
268102,
268101,
268100
],
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1b303f",
"Name": "Card",
"Transform": {
"posX": 24.80714,
"posY": 1.29628444,
"posZ": -53.6193542,
"rotX": 0.0208951514,
"rotY": 269.9983,
"rotZ": 0.0162725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"66956686-38e9-4db7-be60-63ae0d67d576\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268102,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c8303",
"Name": "Card",
"Transform": {
"posX": 24.7718678,
"posY": 1.338161,
"posZ": -53.36103,
"rotX": 0.0189236719,
"rotY": 269.9983,
"rotZ": 0.0135790566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"66956686-38e9-4db7-be60-63ae0d67d576\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268101,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a46c05",
"Name": "Card",
"Transform": {
"posX": 24.808054,
"posY": 1.3721633,
"posZ": -53.3087349,
"rotX": 0.02122983,
"rotY": 269.9983,
"rotZ": 0.0160391368,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"66956686-38e9-4db7-be60-63ae0d67d576\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268100,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "905c7c",
"Name": "Deck",
"Transform": {
"posX": -4.53710651,
"posY": 2.348213,
"posZ": -75.52104,
"rotX": 0.020808449,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crocodiles Encounter Set",
"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": [
270500,
270501,
270502
],
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c44970",
"Name": "Card",
"Transform": {
"posX": -16.00113,
"posY": 1.32042634,
"posZ": -45.030056,
"rotX": 0.0208751783,
"rotY": 270.001221,
"rotZ": 0.0163730867,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Violent Ambush",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d390f333-d33f-4129-a149-5858f7ffc52b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270500,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8efd3a",
"Name": "Card",
"Transform": {
"posX": -16.0350189,
"posY": 1.36225808,
"posZ": -45.09875,
"rotX": 0.0202912763,
"rotY": 270.001251,
"rotZ": 0.0127606923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Violent Ambush",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d390f333-d33f-4129-a149-5858f7ffc52b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270501,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5743e",
"Name": "Card",
"Transform": {
"posX": -16.0480175,
"posY": 1.44069886,
"posZ": -44.9269829,
"rotX": 1.72530949,
"rotY": 270.016754,
"rotZ": 0.0171226151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Crocodile",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"80032ddc-0d42-4aeb-ad79-78ec21100f17\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270502,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "29f6b6",
"Name": "Deck",
"Transform": {
"posX": -5.73112965,
"posY": 2.343653,
"posZ": -89.91059,
"rotX": 0.0208074432,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climate Encounter Set",
"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": [
267900,
267901,
267902
],
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "eb5d9f",
"Name": "Card",
"Transform": {
"posX": 24.8880634,
"posY": 1.29811287,
"posZ": -47.430706,
"rotX": 0.0210058335,
"rotY": 270.002747,
"rotZ": 0.0154613191,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"81153da8-1ff9-4ca9-b40d-59fb48c0115f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267900,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "116f06",
"Name": "Card",
"Transform": {
"posX": 24.9569988,
"posY": 1.33991,
"posZ": -47.68222,
"rotX": 0.0233008526,
"rotY": 270.002747,
"rotZ": 0.0143792676,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"81153da8-1ff9-4ca9-b40d-59fb48c0115f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267901,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c30e3",
"Name": "Card",
"Transform": {
"posX": 24.5949345,
"posY": 1.37379181,
"posZ": -47.6089973,
"rotX": 0.0208919179,
"rotY": 270.0027,
"rotZ": 0.016305685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"81153da8-1ff9-4ca9-b40d-59fb48c0115f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267902,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "f9b202",
"Name": "Card",
"Transform": {
"posX": -16.0559921,
"posY": 1.53360486,
"posZ": 2.23340178,
"rotX": -1.62685616E-08,
"rotY": 270.015869,
"rotZ": 8.961952E-09,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sarah Whittle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"74e4e1c5-83be-4e17-8a53-d65a625c4da8\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Turns\"}],\"class\":\"Neutral\",\"traits\":\"Ally. Bystander\"}",
"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": 271314,
"SidewaysCard": false,
"CustomDeck": {
"2713": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35aa25",
"Name": "Card",
"Transform": {
"posX": -17.1199913,
"posY": 1.53360486,
"posZ": -0.0299998913,
"rotX": -2.13286722E-08,
"rotY": 269.999756,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrouded Clearing",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d0345080-af91-4a05-9903-308f631296c2\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Jumanji\",\"locationFront\":{\"icons\":\"Star\",\"connections\":\"Slash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Star\",\"connections\":\"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": 272501,
"SidewaysCard": false,
"CustomDeck": {
"2725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33df04",
"Name": "Deck",
"Transform": {
"posX": -23.6764946,
"posY": 1.56018674,
"posZ": 11.46011,
"rotX": 2.01332313E-07,
"rotY": 269.999542,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "copies of Overgrown Streets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
272606,
272607,
272608,
272609
],
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ee49b9",
"Name": "Card",
"Transform": {
"posX": -23.5534973,
"posY": 1.61885345,
"posZ": 11.764473,
"rotX": 0.000382029422,
"rotY": 269.999268,
"rotZ": 180.000412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overgrown Streets",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"68db8906-08be-499d-b5a2-25c22568bf56\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Slash|Diamond|Star\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Slash|Diamond|Star\"}}",
"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": 272606,
"SidewaysCard": false,
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "510dbd",
"Name": "Card",
"Transform": {
"posX": -23.87071,
"posY": 1.60921919,
"posZ": 11.11666,
"rotX": -0.000249200442,
"rotY": 269.999054,
"rotZ": 180.000656,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overgrown Streets",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c1af0161-849a-4c67-a32d-67493891df84\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Slash|Diamond|Star\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Slash|Diamond|Star\"}}",
"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": 272607,
"SidewaysCard": false,
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c2a18",
"Name": "Card",
"Transform": {
"posX": -23.3729076,
"posY": 1.57520521,
"posZ": 10.9647427,
"rotX": 0.0005143957,
"rotY": 269.999023,
"rotZ": 180.005081,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overgrown Streets",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e7e4a752-9051-462e-9c1e-206d877dec08\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Slash|Diamond|Star\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Slash|Diamond|Star\"}}",
"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": 272608,
"SidewaysCard": false,
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dea37c",
"Name": "Card",
"Transform": {
"posX": -23.67654,
"posY": 1.53360379,
"posZ": 11.4600439,
"rotX": 3.23152453E-05,
"rotY": 269.999146,
"rotZ": 180.0001,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overgrown Streets",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"14039a00-ee0a-4978-b785-8ff477b121eb\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Slash|Diamond|Star\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Slash|Diamond|Star\"}}",
"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": 272609,
"SidewaysCard": false,
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "fe1b3a",
"Name": "Deck",
"Transform": {
"posX": -30.2811012,
"posY": 1.55537271,
"posZ": 11.512723,
"rotX": -1.36851838E-07,
"rotY": 269.999329,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "copies of Rampant Jungle",
"Description": "",
"GMNotes": "",
"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": false,
"SidewaysCard": false,
"DeckIDs": [
273210,
273211,
273212
],
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c5c2e7",
"Name": "Card",
"Transform": {
"posX": -30.4534473,
"posY": 1.60923517,
"posZ": 11.8220863,
"rotX": -1.87027181E-05,
"rotY": 269.9992,
"rotZ": 180.000366,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rampant Jungle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"70aa48d2-2bf0-4f05-8a2d-a5cb606e184b\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"Diamond\",\"connections\":\"Heart|Slash|DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Diamond\",\"connections\":\"Heart|Slash|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": 273210,
"SidewaysCard": false,
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0ebba0",
"Name": "Card",
"Transform": {
"posX": -30.2400017,
"posY": 1.579394,
"posZ": 11.4800005,
"rotX": -0.000131492561,
"rotY": 269.9992,
"rotZ": 180.000656,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rampant Jungle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"621f59d4-79f4-4ea9-91c4-3f4a5f62d692\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"Diamond\",\"connections\":\"Heart|Slash|DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Diamond\",\"connections\":\"Heart|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": 273211,
"SidewaysCard": false,
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e0041c",
"Name": "Card",
"Transform": {
"posX": -30.2811,
"posY": 1.53360426,
"posZ": 11.5127144,
"rotX": 7.520612E-06,
"rotY": 269.9992,
"rotZ": 180.000046,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rampant Jungle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"15e1274a-2961-4d3d-94c2-1e6593554461\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"Diamond\",\"connections\":\"Heart|Slash|DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Diamond\",\"connections\":\"Heart|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": 273212,
"SidewaysCard": false,
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "972462",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.53360486,
"posZ": -0.0300002638,
"rotX": 2.31049864E-08,
"rotY": 269.999939,
"rotZ": 5.65481066E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c30c0fb2-bf37-409c-9fd2-9b48ff352b9f\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford\",\"locationFront\":{\"icons\":\"Heart\",\"connections\":\"Diamond\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"count\":0}]},\"locationBack\":{\"icons\":\"Heart\",\"connections\":\"Diamond\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"count\":0}]}}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard",
"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": 273013,
"SidewaysCard": false,
"CustomDeck": {
"2730": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ae9268",
"Name": "Deck",
"Transform": {
"posX": -36.7733078,
"posY": 1.56018674,
"posZ": 11.4601068,
"rotX": 1.8540176E-07,
"rotY": 270.0016,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "copies of Tangled Neighborhood",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
272802,
272803,
272804,
272805
],
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "fdf2ee",
"Name": "Card",
"Transform": {
"posX": -36.99586,
"posY": 1.61885822,
"posZ": 11.4858189,
"rotX": 6.771985E-05,
"rotY": 270.0023,
"rotZ": 180.000565,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangled Neighborhood",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"45654047-4735-43a6-99ab-fe6a9a80f2da\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"DoubleSlash|Diamond|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"DoubleSlash|Diamond|T\"}}",
"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": 272802,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "988c9f",
"Name": "Card",
"Transform": {
"posX": -36.5409546,
"posY": 1.6092236,
"posZ": 11.35204,
"rotX": 0.000415446557,
"rotY": 270.002258,
"rotZ": 180.00032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangled Neighborhood",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4fef1e42-c980-405c-818c-4de921b80945\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"DoubleSlash|Diamond|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"DoubleSlash|Diamond|T\"}}",
"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": 272803,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a490a",
"Name": "Card",
"Transform": {
"posX": -36.7743835,
"posY": 1.5752337,
"posZ": 11.34553,
"rotX": -0.00254607364,
"rotY": 270.0022,
"rotZ": 180.002274,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangled Neighborhood",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ff362597-2691-4d47-beaa-c4c3bd71b9d7\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"DoubleSlash|Diamond|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"DoubleSlash|Diamond|T\"}}",
"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": 272804,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "24e191",
"Name": "Card",
"Transform": {
"posX": -36.773262,
"posY": 1.533592,
"posZ": 11.4600439,
"rotX": 0.000142505553,
"rotY": 270.0021,
"rotZ": 180.000885,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangled Neighborhood",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8c22ed50-886d-4f75-ad46-cd4c36f828b7\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Brantford. Jumanji\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"DoubleSlash|Diamond|T\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"DoubleSlash|Diamond|T\"}}",
"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": 272805,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061344/119BADBF67F5F3FFFCDCA3C81071863F997CF0B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840061776/D937B66671C643FC93210B87597025A65F84EDAE/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e9e002",
"Name": "Card",
"Transform": {
"posX": -44.43431,
"posY": 1.53360486,
"posZ": 2.380102,
"rotX": -3.665383E-08,
"rotY": 270.001862,
"rotZ": -1.55965285E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a965c8e0-4625-43bc-9a68-acaaa919ab3e\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Turns\"}],\"class\":\"Neutral\",\"traits\":\"Ally. Wayfarer\"}",
"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": 266913,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513182908/C045ADD37C715F53E69BE19A8E429CBCB8925089/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5b51e",
"Name": "Card",
"Transform": {
"posX": -43.3702126,
"posY": 1.53360486,
"posZ": -0.029999692,
"rotX": -3.124085E-08,
"rotY": 269.9992,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dense Thicket",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d317567c-73f7-45c1-87cb-735243bbdb73\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Jumanji\",\"locationFront\":{\"icons\":\"T\",\"connections\":\"DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"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": [
"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": 273500,
"SidewaysCard": false,
"CustomDeck": {
"2735": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276356813/F1D5BF7ADBCAFE18D6B466D2E226AA259378AA2E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276357274/9D2AD5BB3030895999F7F600516996C5E1D66924/",
"NumWidth": 4,
"NumHeight": 4,
"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": "8cd599",
"Name": "Notecard",
"Transform": {
"posX": 14.1598,
"posY": 1.55149889,
"posZ": -29.6479,
"rotX": -1.15481233E-08,
"rotY": 89.9881,
"rotZ": 6.64989E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Campaign Log",
"Description": "Page 1: Investigator details and notes\nPage 2: Scenario progress, turns taken, threat lists, tokens added\n\nPress page up/page down to swap between the pages",
"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": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90b00d",
"Name": "Custom_PDF",
"Transform": {
"posX": 12.25,
"posY": 1.48149931,
"posZ": 27.986,
"rotX": -3.438025E-08,
"rotY": 270.002,
"rotZ": -7.87026E-09,
"scaleX": 1.76113939,
"scaleY": 1.0,
"scaleZ": 1.76113939
},
"Nickname": "Additional Rules",
"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/1688271369106169580/ABB0A6B305AA80FA681F4882803966F76621508F/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c2f5ae",
"Name": "Custom_PDF",
"Transform": {
"posX": 0.7,
"posY": 1.48149931,
"posZ": 28.6,
"rotX": -1.94729548E-08,
"rotY": 269.9617,
"rotZ": 1.28360416E-08,
"scaleX": 3.57731819,
"scaleY": 1.0,
"scaleZ": 3.57731819
},
"Nickname": "Jumanji 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/5063766435513378509/1E5876B33473FBA2F952C8A74FD4A0ACDDDF6B32/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3633f",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2512,
"posY": 1.48149908,
"posZ": -4.0144,
"rotX": -3.344503E-07,
"rotY": 269.9984,
"rotZ": 1.32786852E-07,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "3: Game Night",
"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/1847049778276524818/9F6F2148A168CB054FCAAF3DADF1A58EDC1E6978/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"0c0dbb\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.5336,\"z\":-3.83},\"rot\":{\"x\":0,\"y\":270.0041,\"z\":180}},\"155588\":{\"lock\":false,\"pos\":{\"x\":-2.6888,\"y\":1.6232,\"z\":-5.0485},\"rot\":{\"x\":0,\"y\":180.0226,\"z\":0}},\"2051e1\":{\"lock\":false,\"pos\":{\"x\":-39.3855,\"y\":1.5336,\"z\":6.184},\"rot\":{\"x\":0,\"y\":270.0113,\"z\":0}},\"28c6e8\":{\"lock\":false,\"pos\":{\"x\":1.6977,\"y\":1.558,\"z\":14.2786},\"rot\":{\"x\":0,\"y\":225.0045,\"z\":0}},\"39a613\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.5336,\"z\":3.86},\"rot\":{\"x\":0,\"y\":270.0066,\"z\":180}},\"39bd43\":{\"lock\":false,\"pos\":{\"x\":-10.9119,\"y\":1.335,\"z\":-15.6801},\"rot\":{\"x\":0,\"y\":0.0005,\"z\":0}},\"3e8cb3\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.5336,\"z\":11.46},\"rot\":{\"x\":0,\"y\":270.0049,\"z\":180}},\"530a0f\":{\"lock\":false,\"pos\":{\"x\":-39.38,\"y\":1.5336,\"z\":1.5665},\"rot\":{\"x\":0,\"y\":270.0021,\"z\":0}},\"6eb2d5\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.5336,\"z\":-3.83},\"rot\":{\"x\":0,\"y\":270.0044,\"z\":180}},\"710027\":{\"lock\":false,\"pos\":{\"x\":-3.928,\"y\":1.6473,\"z\":5.7573},\"rot\":{\"x\":0,\"y\":270.0009,\"z\":180}},\"78c4cf\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.5336,\"z\":3.86},\"rot\":{\"x\":0,\"y\":270.0068,\"z\":180}},\"956639\":{\"lock\":false,\"pos\":{\"x\":-23.5773,\"y\":1.5602,\"z\":-11.3321},\"rot\":{\"x\":0,\"y\":270.0003,\"z\":180}},\"a7930b\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.5336,\"z\":3.86},\"rot\":{\"x\":0,\"y\":270.0012,\"z\":180}},\"af1b40\":{\"lock\":false,\"pos\":{\"x\":-40.205,\"y\":1.5336,\"z\":3.8667},\"rot\":{\"x\":0,\"y\":269.9889,\"z\":0}},\"c8cb5c\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5966,\"z\":-10.4376},\"rot\":{\"x\":0,\"y\":270.0291,\"z\":0}},\"d4fd14\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.5336,\"z\":-11.51},\"rot\":{\"x\":0,\"y\":270.0052,\"z\":180}},\"e1a2a1\":{\"lock\":false,\"pos\":{\"x\":-5.5818,\"y\":1.5966,\"z\":15.3424},\"rot\":{\"x\":0,\"y\":270.0149,\"z\":0}},\"e6adaf\":{\"lock\":false,\"pos\":{\"x\":-10.4693,\"y\":1.5987,\"z\":-12.6492},\"rot\":{\"x\":0,\"y\":270.0012,\"z\":180}},\"fabdc6\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6136,\"z\":0.3733},\"rot\":{\"x\":0,\"y\":180.0173,\"z\":0}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "28c6e8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.6977011,
"posY": 1.55803585,
"posZ": 14.2786026,
"rotX": 6.77412856E-07,
"rotY": 225.0045,
"rotZ": 2.48865672E-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": "e98b54",
"Name": "Deck",
"Transform": {
"posX": 21.4882145,
"posY": 2.007384,
"posZ": -135.302551,
"rotX": 0.0208015572,
"rotY": 270.0249,
"rotZ": 0.0167801566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunter Encounter Set",
"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": [
267001,
267000,
269602
],
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513190733/6A15FE2E06946DB4D53437077429866860904229/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "128e5d",
"Name": "Card",
"Transform": {
"posX": 31.4909382,
"posY": 1.98518908,
"posZ": -98.32617,
"rotX": 0.0208079871,
"rotY": 270.0015,
"rotZ": 0.0167717822,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rifle Blast",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"5a69c1a3-e0da-41fa-beca-00dd9e6087f7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267001,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513190733/6A15FE2E06946DB4D53437077429866860904229/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "461f5c",
"Name": "Card",
"Transform": {
"posX": 32.499485,
"posY": 2.313526,
"posZ": -95.5085144,
"rotX": 0.0208180174,
"rotY": 270.0005,
"rotZ": 0.884754837,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rifle Blast",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"5a69c1a3-e0da-41fa-beca-00dd9e6087f7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267000,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513190733/6A15FE2E06946DB4D53437077429866860904229/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e7562",
"Name": "Card",
"Transform": {
"posX": 8.995375,
"posY": 1.39597023,
"posZ": -76.78578,
"rotX": 0.0209061541,
"rotY": 270.0227,
"rotZ": 0.01625923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Got you in my sights...\"",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"baf85a15-ce1f-468e-8e7f-9817f8792ed4\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269602,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386819/78CBD2BC1330F8D587C8A1FBCDBFDA58BE94474F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7610e3",
"Name": "Card",
"Transform": {
"posX": -1.83675194,
"posY": 2.329908,
"posZ": -67.4637756,
"rotX": 0.0208065175,
"rotY": 270.0073,
"rotZ": 0.01677372,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Van Pelt",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e3a3c4b9-28df-4bac-8b97-9cee42e39ddb\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Humanoid. Lunatic. 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": 270403,
"SidewaysCard": false,
"CustomDeck": {
"2704": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293406593/746BF4E2667E5E04DD6650A8D0AFCD477D083819/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c7b914",
"Name": "Deck",
"Transform": {
"posX": 17.6111126,
"posY": 2.00257015,
"posZ": -103.60244,
"rotX": 0.02081094,
"rotY": 269.9936,
"rotZ": 0.0167689677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lions Encounter Set",
"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": [
268500,
268501
],
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ba7e5e",
"Name": "Card",
"Transform": {
"posX": 8.334637,
"posY": 1.32602453,
"posZ": -56.063488,
"rotX": 0.0209763218,
"rotY": 269.992157,
"rotZ": 0.0156911947,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feral Roar",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4294d76d-d936-454d-b856-3550642a2cc6\",\"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": 268500,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6f7f9",
"Name": "Card",
"Transform": {
"posX": 8.393179,
"posY": 1.36785448,
"posZ": -56.09618,
"rotX": 0.0240077749,
"rotY": 269.992126,
"rotZ": 0.0127312895,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feral Roar",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4294d76d-d936-454d-b856-3550642a2cc6\",\"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": 268501,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ebdd33",
"Name": "Card",
"Transform": {
"posX": 29.96673,
"posY": 1.98563457,
"posZ": -98.8323059,
"rotX": 0.0208106413,
"rotY": 269.9935,
"rotZ": 0.0167691763,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ferocious Lion",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"7e1451ac-57a0-4a31-8658-3582eeccf620\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Creature. Predator. 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": 268502,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf49fd",
"Name": "Deck",
"Transform": {
"posX": 13.1773643,
"posY": 2.44334865,
"posZ": -48.84393,
"rotX": 359.9216,
"rotY": 269.993,
"rotZ": 0.0167630725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Copies of Thieving Monkey",
"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": [
267106,
267105,
267103,
267104
],
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "3308ee",
"Name": "Card",
"Transform": {
"posX": -8.159699,
"posY": 1.60198867,
"posZ": -15.25814,
"rotX": 359.921753,
"rotY": 269.99472,
"rotZ": 0.017322747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Monkey",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"63bed6ed-562f-4847-b631-b079d831984f\",\"type\":\"Enemy\",\"victory\":0,\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267106,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "143cf1",
"Name": "Card",
"Transform": {
"posX": -8.33486748,
"posY": 1.64433,
"posZ": -15.4711847,
"rotX": 359.921448,
"rotY": 269.9926,
"rotZ": 0.0164849777,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Monkey",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"63bed6ed-562f-4847-b631-b079d831984f\",\"type\":\"Enemy\",\"victory\":0,\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267105,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f92ecb",
"Name": "Card",
"Transform": {
"posX": -8.470981,
"posY": 1.67847753,
"posZ": -15.4583082,
"rotX": 359.921448,
"rotY": 269.994568,
"rotZ": 0.0171278678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Monkey",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"63bed6ed-562f-4847-b631-b079d831984f\",\"type\":\"Enemy\",\"victory\":0,\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267103,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "616368",
"Name": "Card",
"Transform": {
"posX": -8.371301,
"posY": 1.68801832,
"posZ": -15.414073,
"rotX": 359.921448,
"rotY": 269.995483,
"rotZ": 0.0171274412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thieving Monkey",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"63bed6ed-562f-4847-b631-b079d831984f\",\"type\":\"Enemy\",\"victory\":0,\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267104,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e7ba9a",
"Name": "Card",
"Transform": {
"posX": 16.63079,
"posY": 2.6660645,
"posZ": -44.6626854,
"rotX": 359.9201,
"rotY": 269.9949,
"rotZ": 0.01684497,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Coiling Growth",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e81c363d-4fd7-4e54-9fcc-44ae400fdfbe\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Creature. Flora. 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": 267107,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e1a2a1",
"Name": "Card",
"Transform": {
"posX": -5.58180141,
"posY": 1.59660506,
"posZ": 15.3424034,
"rotX": 2.93608711E-08,
"rotY": 270.0149,
"rotZ": 1.37660128E-09,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fourth Player",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"96eea706-8e72-47f4-90a2-c085e31950d1\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Turns\"}],\"permanent\":true,\"class\":\"Neutral\",\"traits\":\"Condition\"}",
"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": 270212,
"SidewaysCard": false,
"CustomDeck": {
"2702": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "710027",
"Name": "Deck",
"Transform": {
"posX": -3.92800069,
"posY": 1.64725721,
"posZ": 5.75730133,
"rotX": 2.53376022E-08,
"rotY": 270.000854,
"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": [
272600,
272601,
272602,
272700,
267701,
267702,
267300,
268701,
268702
],
"CustomDeck": {
"2726": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2727": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840064342/A30C8EB0B500424071210EFFC80714FA1AA17DC6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513195103/F90C2DC3CE314D759302B1D4F4DAB995746B9AD9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "befd78",
"Name": "Card",
"Transform": {
"posX": -3.92769647,
"posY": 1.71625137,
"posZ": 5.757144,
"rotX": 359.9519,
"rotY": 269.997437,
"rotZ": 177.798386,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wild Interference",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"7de89323-fd19-40fd-841a-007e9ca0392b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272600,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb9800",
"Name": "Card",
"Transform": {
"posX": -3.92770958,
"posY": 1.65020263,
"posZ": 5.757146,
"rotX": 0.008066027,
"rotY": 270.0,
"rotZ": 180.0256,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wild Interference",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"7de89323-fd19-40fd-841a-007e9ca0392b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272601,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "145a54",
"Name": "Card",
"Transform": {
"posX": -3.92767382,
"posY": 1.60225964,
"posZ": 5.757145,
"rotX": 359.919739,
"rotY": 270.000061,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mischievous Chimp",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"5906d6d2-3e14-4c2a-8906-10ad9b69ef77\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272602,
"SidewaysCard": false,
"CustomDeck": {
"2671": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276350820/C96E1FD23796E6FF7C78F4DCABD6EDFD5D750433/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "989559",
"Name": "Card",
"Transform": {
"posX": 1.48654318,
"posY": 1.985616,
"posZ": -117.297493,
"rotX": 0.0208073854,
"rotY": 270.004,
"rotZ": 0.0167726427,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swooping Bats",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"fbe6c246-2a83-42d6-b687-91053864812d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 272700,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840064342/A30C8EB0B500424071210EFFC80714FA1AA17DC6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da5aa4",
"Name": "Card",
"Transform": {
"posX": 7.699326,
"posY": 1.36807477,
"posZ": -54.39343,
"rotX": 0.0176024567,
"rotY": 270.0012,
"rotZ": 0.016704293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nocturnal Shrieks",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8fc2186b-5572-4b48-8d53-bd3b6edd9671\",\"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/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6095f",
"Name": "Card",
"Transform": {
"posX": 7.903186,
"posY": 1.40211022,
"posZ": -54.57995,
"rotX": 0.0210402738,
"rotY": 270.0021,
"rotZ": 0.0164363068,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nocturnal Shrieks",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8fc2186b-5572-4b48-8d53-bd3b6edd9671\",\"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/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0347ba",
"Name": "Card",
"Transform": {
"posX": 11.7371378,
"posY": 1.985616,
"posZ": -106.694954,
"rotX": 0.0208084527,
"rotY": 270.000244,
"rotZ": 0.0167713538,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Maneater Flytrap",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"b2a0efd8-4c1d-4522-b358-ff1f82ad2a42\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Flora. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/5063766435513195103/F90C2DC3CE314D759302B1D4F4DAB995746B9AD9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2be91",
"Name": "Card",
"Transform": {
"posX": 8.719715,
"posY": 1.36588168,
"posZ": -63.27187,
"rotX": 0.023138538,
"rotY": 269.999817,
"rotZ": 0.0142350085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constrictor Vines",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9f047295-4496-41d1-a65f-a5f8d48d83ab\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Trap\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268701,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c14d90",
"Name": "Card",
"Transform": {
"posX": 8.906282,
"posY": 1.39980447,
"posZ": -63.7161865,
"rotX": 0.0210917424,
"rotY": 270.000061,
"rotZ": 0.0163809825,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constrictor Vines",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9f047295-4496-41d1-a65f-a5f8d48d83ab\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Trap\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268702,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "fabdc6",
"Name": "Deck",
"Transform": {
"posX": -2.72480035,
"posY": 1.61355889,
"posZ": 0.373300344,
"rotX": 9.552525E-10,
"rotY": 180.0173,
"rotZ": 8.060196E-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": [
267510,
267511
],
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7f286a",
"Name": "Card",
"Transform": {
"posX": 28.34817,
"posY": 1.29997194,
"posZ": -45.3848228,
"rotX": 0.0169498529,
"rotY": 180.017075,
"rotZ": 359.978119,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Growing Catastrophe",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"77182b1f-973f-4511-9607-c751f64cb23a\",\"type\":\"Agenda\",\"class\":\"Mythos\",\"doomThreshold\":9}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 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": 267510,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8935f1",
"Name": "Card",
"Transform": {
"posX": 28.2995758,
"posY": 1.34174633,
"posZ": -45.45335,
"rotX": 0.014296188,
"rotY": 180.016968,
"rotZ": 359.977417,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Housewarming",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e02f5b4c-b199-4b7a-87fd-eb495a66b380\",\"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": 267511,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "155588",
"Name": "Deck",
"Transform": {
"posX": -2.68880033,
"posY": 1.623187,
"posZ": -5.04850149,
"rotX": 6.58110153E-08,
"rotY": 180.0226,
"rotZ": 4.484174E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
267506,
267507,
267508,
269709
],
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
},
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4a4ecb",
"Name": "Card",
"Transform": {
"posX": 26.8457069,
"posY": 1.29945064,
"posZ": -45.3220367,
"rotX": 0.0168878045,
"rotY": 180.022552,
"rotZ": 359.978516,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 4 - Hunting Grounds",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"1e68de75-23ba-44f3-bc47-7dac939391f4\",\"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": 267506,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "74a337",
"Name": "Card",
"Transform": {
"posX": 26.6558876,
"posY": 1.342159,
"posZ": -45.0831261,
"rotX": 0.0186512247,
"rotY": 180.02269,
"rotZ": 0.1635598,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3 - Going Ape",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"82a5c58e-823d-45bc-a305-34b6d52e86bf\",\"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": 267507,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ee509b",
"Name": "Card",
"Transform": {
"posX": 26.9873219,
"posY": 1.37534714,
"posZ": -45.13721,
"rotX": 0.0171810035,
"rotY": 180.017654,
"rotZ": 359.978668,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - Aggressive Gardening",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"08a5b01a-cfc4-4bc8-aa94-74258717df29\",\"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": 267508,
"SidewaysCard": true,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276359345/390A7DBD238CE756C927999900C9455DDC27DCD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276360184/248A727BCF1676B1018CC139D3214F0D6A95C86D/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a6965d",
"Name": "Card",
"Transform": {
"posX": -2.68832326,
"posY": 1.65794981,
"posZ": -5.04869,
"rotX": 0.59719944,
"rotY": 180.006592,
"rotZ": 1.47838247,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1 - On a Roll",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"834625c9-ab99-4ccd-8d18-676b2db45fd3\",\"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": 269709,
"SidewaysCard": true,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c8cb5c",
"Name": "Card",
"Transform": {
"posX": -3.95600057,
"posY": 1.59660506,
"posZ": -10.437603,
"rotX": 7.71993456E-08,
"rotY": 270.0291,
"rotZ": 4.291487E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "Game Night",
"GMNotes": "{\"TtsZoopGuid\":\"a52e0288-c2f1-4048-81c1-4b8972d628a8\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 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": 273011,
"SidewaysCard": false,
"CustomDeck": {
"2730": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840059091/274F3C4E56F1CD364C5F1980070AC65D9961DBCA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840059523/5F02B60338C70679ACB5CD0C3B479A4EBBF85360/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e6adaf",
"Name": "Deck",
"Transform": {
"posX": -10.4692955,
"posY": 1.59869909,
"posZ": -12.6492043,
"rotX": -9.73601857E-08,
"rotY": 270.001129,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji 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": [
273100,
273103,
273101,
273102,
273104,
273105,
273106,
273107,
273108,
273109,
273110,
273111
],
"CustomDeck": {
"2731": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7d2605",
"Name": "Card",
"Transform": {
"posX": -26.5301838,
"posY": 2.17548156,
"posZ": -84.98825,
"rotX": 0.03854557,
"rotY": 268.2984,
"rotZ": 359.932648,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tigers",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"62686cc5-ffa9-4dec-93cd-d6f02b285812\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273100,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b2281",
"Name": "Card",
"Transform": {
"posX": -26.5265713,
"posY": 2.255689,
"posZ": -84.978714,
"rotX": 0.00907078851,
"rotY": 270.0586,
"rotZ": 359.941437,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snakes",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f5995a91-fe0a-4dff-a2c4-3c934b87ffe2\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273103,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "418e6a",
"Name": "Card",
"Transform": {
"posX": -26.41774,
"posY": 2.20242429,
"posZ": -84.99252,
"rotX": 0.0379043,
"rotY": 269.155243,
"rotZ": 359.925781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stampede",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a78aa48e-d577-4926-a03d-3f38415e2135\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273101,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cfd7da",
"Name": "Card",
"Transform": {
"posX": -26.620945,
"posY": 2.22919536,
"posZ": -84.8645248,
"rotX": 0.03333737,
"rotY": 273.432556,
"rotZ": 359.933258,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiders",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9061e78a-b344-446a-95b0-396e065dbccf\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273102,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "975699",
"Name": "Card",
"Transform": {
"posX": -26.5797863,
"posY": 2.28257585,
"posZ": -84.98774,
"rotX": 0.005031425,
"rotY": 270.6381,
"rotZ": 359.91745,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9811072f-8489-4e95-a8e3-e9973a1133cf\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273104,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "61e435",
"Name": "Card",
"Transform": {
"posX": -26.4444885,
"posY": 2.30872035,
"posZ": -85.00199,
"rotX": 0.0222472977,
"rotY": 270.6724,
"rotZ": 359.908478,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monsoon",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"2f0caa7e-a9a2-46c4-b0a3-016af916fc1a\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273105,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14b464",
"Name": "Card",
"Transform": {
"posX": -26.6065311,
"posY": 2.33558226,
"posZ": -85.00669,
"rotX": 0.0236693732,
"rotY": 267.821228,
"rotZ": 359.9302,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insects",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"e2beb558-9e5c-4817-b030-18446bed3860\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273106,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "544e5b",
"Name": "Card",
"Transform": {
"posX": -26.48533,
"posY": 2.36188626,
"posZ": -84.96193,
"rotX": 0.031261187,
"rotY": 269.575073,
"rotZ": 359.956482,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hippos",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d5af5439-a9d4-4780-b34b-5b1f42299a40\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273107,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aa5164",
"Name": "Card",
"Transform": {
"posX": -26.5179214,
"posY": 2.38885379,
"posZ": -84.96035,
"rotX": 0.03513058,
"rotY": 270.2519,
"rotZ": 359.973267,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gorillas",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c444452b-a765-40d7-aa0e-d54be7516d13\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273108,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8aeaaa",
"Name": "Card",
"Transform": {
"posX": -26.572094,
"posY": 2.41547418,
"posZ": -85.0004959,
"rotX": 0.0466686748,
"rotY": 269.9593,
"rotZ": 359.9824,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthquake",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"974a6f9d-daf4-442d-999e-aa59da6dd4bc\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273109,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3a774",
"Name": "Card",
"Transform": {
"posX": -26.5476589,
"posY": 1.312633,
"posZ": -58.60623,
"rotX": 0.02078741,
"rotY": 269.967865,
"rotZ": 0.0170682464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crocodiles",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"57f550c0-f2dc-470a-bb44-c07875c7c4a6\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273110,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "615e7b",
"Name": "Card",
"Transform": {
"posX": -26.5027027,
"posY": 1.35457385,
"posZ": -58.2287369,
"rotX": 0.0186209455,
"rotY": 269.967377,
"rotZ": 0.0101237716,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climate",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"01d59411-7d24-4c21-813b-3a66b7dc69be\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 273111,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840067511/33925322102358AE6A431013A950C2ABBD027203/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "39bd43",
"Name": "Bag",
"Transform": {
"posX": -10.9118948,
"posY": 1.33496559,
"posZ": -15.6801043,
"rotX": 1.17394961E-06,
"rotY": 0.000564344344,
"rotZ": -2.21446953E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Sets",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.850174069,
"g": 0.7016305,
"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": "64c874",
"Name": "Deck",
"Transform": {
"posX": -51.61716,
"posY": 2.00733781,
"posZ": -103.279572,
"rotX": 0.0208080579,
"rotY": 270.000061,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tigers Encounter Set",
"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": [
269200,
269201,
269202
],
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "71f06c",
"Name": "Card",
"Transform": {
"posX": 21.3474445,
"posY": 1.29072881,
"posZ": -68.1729,
"rotX": 0.0212800074,
"rotY": 270.001221,
"rotZ": 0.0137168737,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silent Stalking",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c9eee641-4f69-4e41-83c6-806fa8be3858\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269200,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cde970",
"Name": "Card",
"Transform": {
"posX": 21.2629566,
"posY": 1.33480608,
"posZ": -68.08163,
"rotX": 0.0127699422,
"rotY": 270.000977,
"rotZ": 359.896454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Tiger",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ef6ede95-517f-47e9-9018-00716915e560\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269201,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "514fe7",
"Name": "Card",
"Transform": {
"posX": 21.5538635,
"posY": 1.366633,
"posZ": -68.15456,
"rotX": 0.0213430077,
"rotY": 270.0011,
"rotZ": 0.0164976269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Savage Tiger",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ef6ede95-517f-47e9-9018-00716915e560\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269202,
"SidewaysCard": false,
"CustomDeck": {
"2692": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276382501/EAECE45E550BE8723A21A2DE00B4D64D74B08710/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "658e47",
"Name": "Deck",
"Transform": {
"posX": -22.275135,
"posY": 2.341123,
"posZ": -78.2229462,
"rotX": 0.0208081733,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stampede Encounter Set",
"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": [
270800,
270801,
270802
],
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2830d9",
"Name": "Card",
"Transform": {
"posX": -27.1081676,
"posY": 1.31466043,
"posZ": -50.92882,
"rotX": 0.02092839,
"rotY": 270.000031,
"rotZ": 0.016006995,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trampled Underfoot",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4a84913b-c7e2-4028-9030-cc03fa0cfd13\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270800,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a70b5d",
"Name": "Card",
"Transform": {
"posX": -27.1702671,
"posY": 1.35642779,
"posZ": -51.2482643,
"rotX": 0.0204208139,
"rotY": 270.000031,
"rotZ": 0.0131465085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Charging Rhinoceros",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"5a6c7e56-bf00-451e-bbae-94b6e65a53f3\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270801,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a19b11",
"Name": "Card",
"Transform": {
"posX": -27.298418,
"posY": 1.39032984,
"posZ": -51.15118,
"rotX": 0.02184725,
"rotY": 270.000031,
"rotZ": 0.0166021865,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Berserk Elephant",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"2574314d-5926-4286-8693-aaa7f366529d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270802,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293411807/D9BBB7E82936ABE55C7299088556D17D4149AEA7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f7403c",
"Name": "Deck",
"Transform": {
"posX": -22.0190773,
"posY": 2.343333,
"posZ": -72.0392151,
"rotX": 0.0208081976,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiders Encounter Set",
"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": [
270700,
270701,
270702
],
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4abade",
"Name": "Card",
"Transform": {
"posX": -23.3748951,
"posY": 1.31774688,
"posZ": -45.0065,
"rotX": 0.02096923,
"rotY": 269.952759,
"rotZ": 0.015805,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangling Webs",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"37033f78-bb04-420a-9f93-9aac6883378e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270700,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9a1cdf",
"Name": "Card",
"Transform": {
"posX": -23.5017471,
"posY": 1.359529,
"posZ": -44.85992,
"rotX": 0.0250807051,
"rotY": 269.97702,
"rotZ": 0.0108684814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tangling Webs",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"37033f78-bb04-420a-9f93-9aac6883378e\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270701,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "562878",
"Name": "Card",
"Transform": {
"posX": -23.4667759,
"posY": 1.39349842,
"posZ": -45.16588,
"rotX": 0.0207694136,
"rotY": 269.983429,
"rotZ": 0.0164016783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Giant Tarantula",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"62a7e32f-7c4e-4d85-9887-ac89dc8099db\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Spider. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270702,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293410774/94CF9F916B2F913F13028E59B5BBB5DEDE76C4CF/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "daa092",
"Name": "Deck",
"Transform": {
"posX": 2.82434726,
"posY": 2.34760928,
"posZ": -86.79278,
"rotX": 0.020807825,
"rotY": 269.999878,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Snakes Encounter Set",
"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": [
270600,
267401,
267402
],
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2674": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513196387/4414484E55A74A0D28103D3A5E0202CFA5267826/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "91202a",
"Name": "Card",
"Transform": {
"posX": 6.35829258,
"posY": 1.39780855,
"posZ": -74.4629745,
"rotX": 0.02098641,
"rotY": 269.999939,
"rotZ": 180.0172,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rainforest Viper",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f2c5d2f3-9b15-4665-bd6c-58ea09a4259d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Serpent. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270600,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293409407/A5658C6413B4EF9E44E5EDAA256C292F1DFBB28C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4f36d",
"Name": "Card",
"Transform": {
"posX": 5.01777172,
"posY": 1.32125354,
"posZ": -68.25507,
"rotX": 0.0209504031,
"rotY": 269.983337,
"rotZ": 0.0158468839,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Menace",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4f226707-cade-4de2-a80d-15dff80b888f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/5063766435513196387/4414484E55A74A0D28103D3A5E0202CFA5267826/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b262f",
"Name": "Card",
"Transform": {
"posX": 4.76396561,
"posY": 1.36298168,
"posZ": -68.0123444,
"rotX": 0.0261542667,
"rotY": 269.981232,
"rotZ": 0.009055105,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hidden Menace",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4f226707-cade-4de2-a80d-15dff80b888f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Scheme. Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/5063766435513196387/4414484E55A74A0D28103D3A5E0202CFA5267826/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "44afc7",
"Name": "Deck",
"Transform": {
"posX": -23.07435,
"posY": 2.007384,
"posZ": -104.867126,
"rotX": 0.02080842,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Encounter Set",
"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": [
268802,
268801,
268800
],
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0cdb4f",
"Name": "Card",
"Transform": {
"posX": 21.4666634,
"posY": 1.29608655,
"posZ": -50.1384621,
"rotX": 0.0209212,
"rotY": 270.021851,
"rotZ": 0.01604578,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c2a3adfb-aebe-4cc6-bddd-34cbfcee6915\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268802,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1bc3ce",
"Name": "Card",
"Transform": {
"posX": 21.3064232,
"posY": 1.337903,
"posZ": -49.95226,
"rotX": 0.019072827,
"rotY": 270.020355,
"rotZ": 0.0142658744,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c2a3adfb-aebe-4cc6-bddd-34cbfcee6915\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268801,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "790fce",
"Name": "Card",
"Transform": {
"posX": 21.42977,
"posY": 1.37260354,
"posZ": -49.67911,
"rotX": 0.0205799118,
"rotY": 270.022583,
"rotZ": 0.01585853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Quicksand Pit",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c2a3adfb-aebe-4cc6-bddd-34cbfcee6915\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268800,
"SidewaysCard": false,
"CustomDeck": {
"2688": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276378389/B4B7FB4FA99B3A2E2E3E4646D7914F4AD2BC13D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "57898e",
"Name": "Deck",
"Transform": {
"posX": -23.58652,
"posY": 2.33504462,
"posZ": -96.89724,
"rotX": 0.0208074637,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Monsoon Encounter Set",
"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": [
268600,
268601,
268602
],
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f0ae03",
"Name": "Card",
"Transform": {
"posX": 21.1372452,
"posY": 1.29510093,
"posZ": -52.9168663,
"rotX": 0.02145229,
"rotY": 269.9925,
"rotZ": 0.0125408927,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"878ea09b-ec8e-43ce-8d52-bdab09e36791\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268600,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "de0eaf",
"Name": "Card",
"Transform": {
"posX": 21.313509,
"posY": 1.33673024,
"posZ": -53.402832,
"rotX": 0.01615253,
"rotY": 269.9925,
"rotZ": 0.0207034964,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"878ea09b-ec8e-43ce-8d52-bdab09e36791\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268601,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e2694f",
"Name": "Card",
"Transform": {
"posX": 20.7980766,
"posY": 1.37076461,
"posZ": -53.2578545,
"rotX": 0.0209043771,
"rotY": 269.992432,
"rotZ": 0.0162801817,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Torrential Downpour",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"878ea09b-ec8e-43ce-8d52-bdab09e36791\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268602,
"SidewaysCard": false,
"CustomDeck": {
"2686": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276376681/E84FBB15C0E41101EADCE96A1DEDA8FDE7E1BE9B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "6b59f0",
"Name": "Deck",
"Transform": {
"posX": 11.8186636,
"posY": 2.007384,
"posZ": -121.395973,
"rotX": 0.0208087377,
"rotY": 269.999756,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Insects Encounter Set",
"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": [
267200,
268401,
268402
],
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513193799/F48D5CB9D2FD8B72E6477BBCAE8B57FA2C5BDB3E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "88b4e8",
"Name": "Card",
"Transform": {
"posX": 24.07519,
"posY": 2.0043056,
"posZ": -100.507492,
"rotX": 359.279816,
"rotY": 270.000946,
"rotZ": 0.0167713054,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vicious Mosquitos",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8dff9a22-6c03-45bb-8f53-8b1695b95df6\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Insect\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267200,
"SidewaysCard": false,
"CustomDeck": {
"2672": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513193799/F48D5CB9D2FD8B72E6477BBCAE8B57FA2C5BDB3E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "09b78c",
"Name": "Card",
"Transform": {
"posX": 25.1758156,
"posY": 1.334095,
"posZ": -67.7666245,
"rotX": 0.0231745616,
"rotY": 270.014984,
"rotZ": 0.0145197483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tsetse Fly Bite",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9096c590-a64f-4f22-9c1a-c58e659287b7\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"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": 268401,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "800ce9",
"Name": "Card",
"Transform": {
"posX": 24.9140148,
"posY": 1.36793029,
"posZ": -67.99905,
"rotX": 0.0207903981,
"rotY": 270.014954,
"rotZ": 0.0163587052,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Army of Ants",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"549f4122-6075-4250-b422-9b64a1007659\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268402,
"SidewaysCard": false,
"CustomDeck": {
"2684": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276373786/80F14A977D91611CC23132A66A22CEFA893EDEE5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "fb283a",
"Name": "Deck",
"Transform": {
"posX": -20.4856415,
"posY": 2.33975649,
"posZ": -84.81526,
"rotX": 0.0208076686,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hippos Encounter Set",
"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": [
268300,
268301,
268302
],
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "312425",
"Name": "Card",
"Transform": {
"posX": 24.6207619,
"posY": 1.29318035,
"posZ": -63.9701958,
"rotX": 0.02095358,
"rotY": 269.9986,
"rotZ": 0.015839586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Territorial Beasts",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8c6a82d1-fab9-43e1-986b-1a96dafc1782\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268300,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6ee522",
"Name": "Card",
"Transform": {
"posX": 24.804945,
"posY": 1.33509588,
"posZ": -63.8842354,
"rotX": 0.0231752861,
"rotY": 269.9986,
"rotZ": 0.0148908664,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraged Hippopotamus",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a4556058-0eff-47e7-84cf-42d268cdc57d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268301,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "458430",
"Name": "Card",
"Transform": {
"posX": 24.75588,
"posY": 1.36899889,
"posZ": -64.09441,
"rotX": 0.0212697051,
"rotY": 269.9985,
"rotZ": 0.016194379,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enraged Hippopotamus",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a4556058-0eff-47e7-84cf-42d268cdc57d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268302,
"SidewaysCard": false,
"CustomDeck": {
"2683": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276372693/EA7F2E6156917EC8083FAAE13BAAADB11D6B7F0A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "16bb06",
"Name": "Deck",
"Transform": {
"posX": -10.5389986,
"posY": 2.007384,
"posZ": -110.883,
"rotX": 0.0208082814,
"rotY": 270.0,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gorillas Encounter Set",
"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": [
268200,
268201,
268202
],
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8abb3c",
"Name": "Card",
"Transform": {
"posX": 24.33702,
"posY": 1.2939142,
"posZ": -61.1086273,
"rotX": 0.0209677573,
"rotY": 269.993225,
"rotZ": 0.01578696,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Eyes in the Mist",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"04cb123f-edb4-41fb-a121-73e10580313c\",\"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": 268200,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d38359",
"Name": "Card",
"Transform": {
"posX": 24.2825737,
"posY": 1.33573771,
"posZ": -61.03516,
"rotX": 0.0183939338,
"rotY": 269.993225,
"rotZ": 0.0148416823,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Furious Silverback",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"93aff6bb-685e-45aa-9c98-3790ba8a6f2f\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268201,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96977b",
"Name": "Card",
"Transform": {
"posX": 24.34784,
"posY": 1.36975265,
"posZ": -60.99368,
"rotX": 0.02141279,
"rotY": 269.993225,
"rotZ": 0.016307462,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Furious Silverback",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"93aff6bb-685e-45aa-9c98-3790ba8a6f2f\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268202,
"SidewaysCard": false,
"CustomDeck": {
"2682": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276371784/A7EAF9B5EE81B317905481B9BD1FABA1ADCB4F56/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "657162",
"Name": "Deck",
"Transform": {
"posX": -9.393531,
"posY": 2.00733137,
"posZ": -102.3101,
"rotX": 0.0208080653,
"rotY": 270.000061,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Earthquake Encounter Set",
"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": [
268102,
268101,
268100
],
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1b303f",
"Name": "Card",
"Transform": {
"posX": 24.80714,
"posY": 1.29628444,
"posZ": -53.6193542,
"rotX": 0.0208951514,
"rotY": 269.9983,
"rotZ": 0.0162725,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"66956686-38e9-4db7-be60-63ae0d67d576\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268102,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9c8303",
"Name": "Card",
"Transform": {
"posX": 24.7718678,
"posY": 1.338161,
"posZ": -53.36103,
"rotX": 0.0189236719,
"rotY": 269.9983,
"rotZ": 0.0135790566,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"66956686-38e9-4db7-be60-63ae0d67d576\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268101,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a46c05",
"Name": "Card",
"Transform": {
"posX": 24.808054,
"posY": 1.3721633,
"posZ": -53.3087349,
"rotX": 0.02122983,
"rotY": 269.9983,
"rotZ": 0.0160391368,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Collapsing Ground",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"66956686-38e9-4db7-be60-63ae0d67d576\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268100,
"SidewaysCard": false,
"CustomDeck": {
"2681": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276370543/A37839D17F53955300B4A63ECD58E262AFFAAEAA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f5c9c6",
"Name": "Deck",
"Transform": {
"posX": -5.48708153,
"posY": 2.34788752,
"posZ": -76.70874,
"rotX": 0.02080832,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Crocodiles Encounter Set",
"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": [
270500,
270501,
270502
],
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c44970",
"Name": "Card",
"Transform": {
"posX": -16.00113,
"posY": 1.32042634,
"posZ": -45.030056,
"rotX": 0.0208751783,
"rotY": 270.001221,
"rotZ": 0.0163730867,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Violent Ambush",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d390f333-d33f-4129-a149-5858f7ffc52b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270500,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8efd3a",
"Name": "Card",
"Transform": {
"posX": -16.0350189,
"posY": 1.36225808,
"posZ": -45.09875,
"rotX": 0.0202912763,
"rotY": 270.001251,
"rotZ": 0.0127606923,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Violent Ambush",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"d390f333-d33f-4129-a149-5858f7ffc52b\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Tactic\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270501,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c5743e",
"Name": "Card",
"Transform": {
"posX": -16.0480175,
"posY": 1.44069886,
"posZ": -44.9269829,
"rotX": 1.72530949,
"rotY": 270.016754,
"rotZ": 0.0171226151,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Crocodile",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"80032ddc-0d42-4aeb-ad79-78ec21100f17\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270502,
"SidewaysCard": false,
"CustomDeck": {
"2705": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293407747/EB7115C88427376298827CCFE4490F6074D32711/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "29f6b6",
"Name": "Deck",
"Transform": {
"posX": -5.73112965,
"posY": 2.343653,
"posZ": -89.91059,
"rotX": 0.0208074432,
"rotY": 269.999969,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Climate Encounter Set",
"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": [
267900,
267901,
267902
],
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "eb5d9f",
"Name": "Card",
"Transform": {
"posX": 24.8880634,
"posY": 1.29811287,
"posZ": -47.430706,
"rotX": 0.0210058335,
"rotY": 270.002747,
"rotZ": 0.0154613191,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"81153da8-1ff9-4ca9-b40d-59fb48c0115f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267900,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "116f06",
"Name": "Card",
"Transform": {
"posX": 24.9569988,
"posY": 1.33991,
"posZ": -47.68222,
"rotX": 0.0233008526,
"rotY": 270.002747,
"rotZ": 0.0143792676,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"81153da8-1ff9-4ca9-b40d-59fb48c0115f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267901,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6c30e3",
"Name": "Card",
"Transform": {
"posX": 24.5949345,
"posY": 1.37379181,
"posZ": -47.6089973,
"rotX": 0.0208919179,
"rotY": 270.0027,
"rotZ": 0.016305685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overheated",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"81153da8-1ff9-4ca9-b40d-59fb48c0115f\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Hazard\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 267902,
"SidewaysCard": false,
"CustomDeck": {
"2679": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276368674/4B6C8D8422818E8E05176CF59136D59CF433FA7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "39a613",
"Name": "Card",
"Transform": {
"posX": -23.6764984,
"posY": 1.53360486,
"posZ": 3.86000085,
"rotX": 2.35634356E-08,
"rotY": 270.006622,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Attic",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ec372d16-7267-4994-868a-b827c553b4b2\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Third Floor\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Clover|Moon\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":3}],\"victory\":2},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Clover|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": 272500,
"SidewaysCard": false,
"CustomDeck": {
"2725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78c4cf",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.53360486,
"posZ": 3.860001,
"rotX": -1.63082881E-08,
"rotY": 270.006836,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Master Bedroom",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9db9753a-de84-4f73-96ac-47bd2dee985e\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Second Floor\",\"locationFront\":{\"icons\":\"Moon\",\"connections\":\"Clover|DoubleSlash|Slash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":2},\"locationBack\":{\"icons\":\"Moon\",\"connections\":\"Clover|DoubleSlash|Slash\"}}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272805,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6eb2d5",
"Name": "Card",
"Transform": {
"posX": -30.2242,
"posY": 1.53360486,
"posZ": -3.830001,
"rotX": -1.25753532E-08,
"rotY": 270.0044,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Spiral Staircase",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"b8c87124-e28a-460e-9c3f-dbc556c5f09f\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"First Floor. Second Floor. Third Floor\",\"locationFront\":{\"icons\":\"Clover\",\"connections\":\"Diamond|Hourglass|Moon|Square|Slash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Clover\",\"connections\":\"Diamond|Hourglass|Moon|Square|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": 272506,
"SidewaysCard": false,
"CustomDeck": {
"2725": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "956639",
"Name": "Deck",
"Transform": {
"posX": -23.5772972,
"posY": 1.56018674,
"posZ": -11.3321028,
"rotX": -8.104831E-08,
"rotY": 270.000366,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "copies of Abandoned Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
273201,
273202,
273203,
273204
],
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f6bead",
"Name": "Card",
"Transform": {
"posX": -17.7191658,
"posY": 1.61886358,
"posZ": -4.7717967,
"rotX": -2.555658E-05,
"rotY": 270.000061,
"rotZ": 180.000336,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned Room",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"1a104670-f5b1-467b-b711-f2bea1014602\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Second Floor\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"Clover|Square\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"Clover|Square\"}}",
"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": 273201,
"SidewaysCard": false,
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5a2332",
"Name": "Card",
"Transform": {
"posX": -17.7239628,
"posY": 1.60921979,
"posZ": -5.24623346,
"rotX": -0.000388723158,
"rotY": 270.0001,
"rotZ": 180.000381,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned Room",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"c79496f9-eb82-4e62-8d7d-b7051271fa71\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Second Floor\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"Clover|Square\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"Clover|Square\"}}",
"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": 273202,
"SidewaysCard": false,
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e94cb",
"Name": "Card",
"Transform": {
"posX": -17.4526463,
"posY": 1.57524681,
"posZ": -5.29055834,
"rotX": 0.00223476812,
"rotY": 270.000061,
"rotZ": 180.002686,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned Room",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4ed84fe1-8098-4fb2-8fc9-83f8bc5bfb25\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Second Floor\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"Clover|Square\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"Clover|Square\"}}",
"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": 273203,
"SidewaysCard": false,
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "838a93",
"Name": "Card",
"Transform": {
"posX": -17.567522,
"posY": 1.53359437,
"posZ": -5.09886837,
"rotX": 0.000112571623,
"rotY": 270.000122,
"rotZ": 180.0007,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abandoned Room",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f467971f-32bc-4c4e-8ff0-1f72d3fd4454\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Second Floor\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"Clover|Square\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"Clover|Square\"}}",
"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": 273204,
"SidewaysCard": false,
"CustomDeck": {
"2732": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3e8cb3",
"Name": "Card",
"Transform": {
"posX": -36.7731056,
"posY": 1.53360486,
"posZ": 11.4600019,
"rotX": 1.70326278E-08,
"rotY": 270.0049,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Veranda",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"6e3251fe-27fe-442b-8cac-4136582ac2e1\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"First Floor\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"Star|Moon\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"Star|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": 272408,
"SidewaysCard": false,
"CustomDeck": {
"2724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a7930b",
"Name": "Card",
"Transform": {
"posX": -36.7732048,
"posY": 1.53360486,
"posZ": 3.86000085,
"rotX": -1.84404865E-08,
"rotY": 270.00116,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Parlor",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"48183a2a-752e-4d0b-a226-678eba29a3ca\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"First Floor\",\"locationFront\":{\"icons\":\"Star\",\"connections\":\"Diamond|DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Star\",\"connections\":\"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": 272910,
"SidewaysCard": false,
"CustomDeck": {
"2729": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293414201/F67849C5CDA7F01A77C92B62EAF595BD6CBE7470/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0c0dbb",
"Name": "Card",
"Transform": {
"posX": -36.7731,
"posY": 1.53360486,
"posZ": -3.83000064,
"rotX": 1.71818415E-09,
"rotY": 270.0041,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Foyer",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"67fca310-8aef-408d-9edd-42bd5933690d\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"First Floor\",\"locationFront\":{\"icons\":\"Diamond\",\"connections\":\"Star|Hourglass|Clover\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}]},\"locationBack\":{\"icons\":\"Diamond\",\"connections\":\"Star|Hourglass|Clover\"}}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272409,
"SidewaysCard": false,
"CustomDeck": {
"2724": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d4fd14",
"Name": "Card",
"Transform": {
"posX": -36.7731,
"posY": 1.53360486,
"posZ": -11.5100021,
"rotX": -9.592873E-08,
"rotY": 270.00528,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Reception Room",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"6290dc5e-ce93-4c12-9ef1-696f92ddc89c\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"First Floor\",\"locationFront\":{\"icons\":\"Hourglass\",\"connections\":\"Diamond|Clover\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Hourglass\",\"connections\":\"Diamond|Clover\"}}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 272807,
"SidewaysCard": false,
"CustomDeck": {
"2728": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353109/92C8607879C19C063A02520B704EE99585BA13EE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276353530/A378394BC8A7714E2841AB2A08AC0BD25562A91E/",
"NumWidth": 4,
"NumHeight": 3,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2051e1",
"Name": "Card",
"Transform": {
"posX": -39.3855,
"posY": 1.53360486,
"posZ": 6.18400145,
"rotX": -1.27083766E-07,
"rotY": 270.01123,
"rotZ": 2.863817E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sarah Whittle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"74e4e1c5-83be-4e17-8a53-d65a625c4da8\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Turns\"}],\"class\":\"Neutral\",\"traits\":\"Ally. 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": 269814,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276387774/E6A00C41CDCADC620EF4788F691E334F88B9EE70/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af1b40",
"Name": "Card",
"Transform": {
"posX": -40.2050056,
"posY": 1.53360486,
"posZ": 3.866701,
"rotX": -4.761733E-08,
"rotY": 269.9889,
"rotZ": -2.42917886E-09,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jumanji Dice",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f5406279-1780-4efe-871e-c8925d38be33\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Item. Relic\"}",
"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": 270315,
"SidewaysCard": false,
"CustomDeck": {
"2703": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293398218/DDCD2C00456FDEB03DB20A7E02AC43620A34935D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "530a0f",
"Name": "Card",
"Transform": {
"posX": -39.38,
"posY": 1.53360486,
"posZ": 1.56649983,
"rotX": -4.878966E-08,
"rotY": 270.002045,
"rotZ": 3.41567926E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Alan Parrish",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a965c8e0-4625-43bc-9a68-acaaa919ab3e\",\"type\":\"Asset\",\"uses\":[{\"count\":0,\"token\":\"resource\",\"type\":\"Turns\"}],\"class\":\"Neutral\",\"traits\":\"Ally. Wayfarer\"}",
"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": 266913,
"SidewaysCard": false,
"CustomDeck": {
"2669": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513182908/C045ADD37C715F53E69BE19A8E429CBCB8925089/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 4,
"NumHeight": 4,
"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
}
}
]
},
{
"GUID": "ca53e8",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.367502,
"posY": 1.56250417,
"posZ": -2.40749955,
"rotX": 0.6255429,
"rotY": 314.964142,
"rotZ": 0.6246799,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Hard Tokens",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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 filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "53997b",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.65795755,
"posY": 3.65677977,
"posZ": -3.552847,
"rotX": 16.2252,
"rotY": 305.104675,
"rotZ": 99.69667,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-5",
"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": "20798a",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.456582,
"posY": 3.5040288,
"posZ": -3.61385775,
"rotX": 25.9270611,
"rotY": 304.475555,
"rotZ": 279.250916,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-4",
"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": "f0f8ef",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.92924,
"posY": 3.715659,
"posZ": -2.70109439,
"rotX": 8.181516,
"rotY": 307.1251,
"rotZ": 275.748169,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"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/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd1134",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.062924,
"posY": 3.70667934,
"posZ": -2.915209,
"rotX": 347.269623,
"rotY": 304.319153,
"rotZ": 96.56824,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "183c56",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.80916357,
"posY": 3.19392776,
"posZ": -3.85688567,
"rotX": 357.991119,
"rotY": 304.667877,
"rotZ": 105.943909,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7481bc",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.09491873,
"posY": 3.81407428,
"posZ": -2.889849,
"rotX": 358.368225,
"rotY": 306.498627,
"rotZ": 276.071747,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "e01c7f",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.521031,
"posY": 3.62769365,
"posZ": -3.406009,
"rotX": 325.775879,
"rotY": 297.5439,
"rotZ": 276.414978,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"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": "fbe491",
"Name": "Custom_Tile",
"Transform": {
"posX": -8.012274,
"posY": 3.33432841,
"posZ": -4.349642,
"rotX": 43.9206352,
"rotY": 318.710754,
"rotZ": 288.692871,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"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/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cbb37c",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.90594864,
"posY": 3.391149,
"posZ": -4.16767263,
"rotX": 318.857269,
"rotY": 293.508972,
"rotZ": 107.798767,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"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/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b8c4d2",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.973791,
"posY": 3.84865928,
"posZ": -4.224893,
"rotX": 354.887726,
"rotY": 303.6754,
"rotZ": 285.645538,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"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": "e1a10c",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.326857,
"posY": 3.63369846,
"posZ": -3.17323685,
"rotX": 15.0627785,
"rotY": 306.159241,
"rotZ": 275.284637,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"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": "8919e8",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.67131138,
"posY": 3.5698123,
"posZ": -3.86520076,
"rotX": 341.962433,
"rotY": 301.007324,
"rotZ": 104.550308,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ea22fb",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.582466,
"posY": 3.44921541,
"posZ": -3.87196684,
"rotX": 2.545414,
"rotY": 305.6051,
"rotZ": 282.7191,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7fcd14",
"Name": "Custom_Tile",
"Transform": {
"posX": -6.954187,
"posY": 3.70172548,
"posZ": -2.70322967,
"rotX": 1.36859775,
"rotY": 306.064972,
"rotZ": 96.25993,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"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/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a1e645",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.25128031,
"posY": 3.62965846,
"posZ": -3.07940221,
"rotX": 5.118368,
"rotY": 305.391541,
"rotZ": 276.467438,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "8e9969",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.193728,
"posY": 3.62805557,
"posZ": -3.35616326,
"rotX": 20.81613,
"rotY": 304.196136,
"rotZ": 95.4138947,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"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": "cba0aa",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": -9.410002,
"posY": 1.56209993,
"posZ": 2.1646018,
"rotX": 0.618468761,
"rotY": 315.029938,
"rotZ": 0.6190515,
"scaleX": 3.0,
"scaleY": 3.0,
"scaleZ": 3.0
},
"Nickname": "Standard Tokens",
"Description": "Chaos Bag",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"Tags": [
"chaos_bag"
],
"LayoutGroupSortIndex": 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/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/",
"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 filterObjectEnter(obj)\n local props = obj.getCustomObject()\n if props ~= nil and props.image ~= nil then\n obj.setName(Global.call(\"getTokenName\", { url=props.image }))\n end\n return true\nend\n\nfunction onCollisionEnter(collision_info)\n self.shuffle()\n self.shuffle()\n self.shuffle()\nend",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dae80d",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.1117115,
"posY": 3.97225213,
"posZ": 2.19809532,
"rotX": 359.034424,
"rotY": 306.8216,
"rotZ": 282.881226,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-4",
"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": "21ac74",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.1511469,
"posY": 4.29774237,
"posZ": 2.4165113,
"rotX": 17.6180649,
"rotY": 310.9772,
"rotZ": 104.610947,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-3",
"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": "f43b4a",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.3586121,
"posY": 4.086417,
"posZ": 2.064299,
"rotX": 350.331818,
"rotY": 304.627319,
"rotZ": 284.059448,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3d7860",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.93543148,
"posY": 3.9078846,
"posZ": 2.52423358,
"rotX": 21.0126781,
"rotY": 312.862732,
"rotZ": 284.2841,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"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": "a0bd73",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.4280233,
"posY": 4.341276,
"posZ": 1.76756358,
"rotX": 41.18389,
"rotY": 319.159363,
"rotZ": 287.9427,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Auto-fail",
"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/lns4fhz.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33201c",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.2460651,
"posY": 3.82962251,
"posZ": 2.05203915,
"rotX": 5.559162,
"rotY": 308.4682,
"rotZ": 103.565536,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8733de",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.829079,
"posY": 4.178472,
"posZ": 2.654887,
"rotX": 7.0428195,
"rotY": 308.416779,
"rotZ": 282.131866,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "8b35f0",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.59682751,
"posY": 3.83472276,
"posZ": 2.9994607,
"rotX": 356.568237,
"rotY": 305.306152,
"rotZ": 283.186676,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"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/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd69ee",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.0123835,
"posY": 3.56261468,
"posZ": 2.23959017,
"rotX": 354.69104,
"rotY": 305.795715,
"rotZ": 103.032745,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Skull",
"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/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ec3683",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.652753,
"posY": 4.58675671,
"posZ": 2.69296,
"rotX": 5.559061,
"rotY": 307.373322,
"rotZ": 283.3579,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "0",
"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/btEtVfd.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "02703f",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.2971067,
"posY": 3.135698,
"posZ": 1.98896575,
"rotX": 7.26074839,
"rotY": 309.56662,
"rotZ": 293.3864,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Thing",
"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": "753bde",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.737029,
"posY": 4.094751,
"posZ": 2.88411069,
"rotX": 3.947875,
"rotY": 306.816528,
"rotZ": 102.556885,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "240ff7",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.512972,
"posY": 4.250103,
"posZ": 3.07731724,
"rotX": 357.898682,
"rotY": 305.5822,
"rotZ": 103.064468,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "+1",
"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/uIx8jbY.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e89c81",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.942545,
"posY": 3.95193529,
"posZ": 2.3797183,
"rotX": 333.201355,
"rotY": 300.340546,
"rotZ": 284.9389,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-2",
"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": "1fac0c",
"Name": "Custom_Tile",
"Transform": {
"posX": -10.4547148,
"posY": 4.246201,
"posZ": 1.664594,
"rotX": 308.996338,
"rotY": 299.598663,
"rotZ": 98.1107,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Elder Sign",
"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/nEmqjmj.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a24643",
"Name": "Custom_Tile",
"Transform": {
"posX": -9.748,
"posY": 4.106498,
"posZ": 2.60703158,
"rotX": 4.79241657,
"rotY": 308.286835,
"rotZ": 102.121292,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "-1",
"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": "e11d84",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2537,
"posY": 1.48149908,
"posZ": 11.986,
"rotX": 3.49243034E-09,
"rotY": 269.9914,
"rotZ": -3.46652342E-08,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "1: Home Invasion",
"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/1847049778276523787/614D684BD99C5E12E9B3676E4FD0FE4B849BCD02/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"183ac4\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.5336,\"z\":-3.83},\"rot\":{\"x\":0,\"y\":270.0003,\"z\":180}},\"18aade\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.5336,\"z\":3.86},\"rot\":{\"x\":0,\"y\":270.0003,\"z\":180}},\"2b891f\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.5336,\"z\":3.86},\"rot\":{\"x\":0,\"y\":270.0003,\"z\":180}},\"39551c\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6184,\"z\":0.3733},\"rot\":{\"x\":0,\"y\":180.017,\"z\":0}},\"5658eb\":{\"lock\":false,\"pos\":{\"x\":-2.6887,\"y\":1.6184,\"z\":-5.0485},\"rot\":{\"x\":0,\"y\":180.0164,\"z\":0}},\"5676b4\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.5336,\"z\":-3.83},\"rot\":{\"x\":0,\"y\":270.0007,\"z\":180}},\"69c954\":{\"lock\":false,\"pos\":{\"x\":-43.37,\"y\":1.5336,\"z\":-0.03},\"rot\":{\"x\":0,\"y\":270.0046,\"z\":180}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.7006,\"y\":1.558,\"z\":14.2872},\"rot\":{\"x\":0,\"y\":224.7285,\"z\":0}},\"8c9db7\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.5336,\"z\":-3.83},\"rot\":{\"x\":0,\"y\":270.0005,\"z\":180}},\"b98ab2\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.5336,\"z\":3.86},\"rot\":{\"x\":0,\"y\":270.0012,\"z\":180}},\"d36a1f\":{\"lock\":false,\"pos\":{\"x\":-23.7813,\"y\":1.5602,\"z\":11.6158},\"rot\":{\"x\":0,\"y\":270.0001,\"z\":180}},\"d425bd\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.5336,\"z\":-0.03},\"rot\":{\"x\":0,\"y\":269.9915,\"z\":180}},\"eac9d0\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.7484,\"z\":5.7573},\"rot\":{\"x\":0,\"y\":269.9873,\"z\":180}},\"faba94\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5966,\"z\":-10.4412},\"rot\":{\"x\":0,\"y\":269.9995,\"z\":0}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.70060146,
"posY": 1.5580368,
"posZ": 14.2872038,
"rotX": 7.327828E-06,
"rotY": 224.728485,
"rotZ": -5.848326E-07,
"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": "f5add5",
"Name": "Card",
"Transform": {
"posX": 37.80661,
"posY": 2.30003214,
"posZ": -93.95389,
"rotX": 0.02080819,
"rotY": 269.9999,
"rotZ": 0.0167717878,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wild Man",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"88e88b10-86ea-4ae1-b9a1-5f37aab3b16b\",\"type\":\"Asset\",\"class\":\"Neutral\",\"traits\":\"Wayfarer\"}",
"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": 266613,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513165974/5A66802B6C5015FEF7CEE59F93331FB0C3BE70CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d01172",
"Name": "Deck",
"Transform": {
"posX": 30.01579,
"posY": 2.31631827,
"posZ": -83.97561,
"rotX": 0.0208106972,
"rotY": 269.9934,
"rotZ": 0.0167686269,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lions Encounter Set",
"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": [
268500,
268501
],
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "ba7e5e",
"Name": "Card",
"Transform": {
"posX": 8.334637,
"posY": 1.32602453,
"posZ": -56.063488,
"rotX": 0.0209763218,
"rotY": 269.992157,
"rotZ": 0.0156911947,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feral Roar",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4294d76d-d936-454d-b856-3550642a2cc6\",\"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": 268500,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f6f7f9",
"Name": "Card",
"Transform": {
"posX": 8.393179,
"posY": 1.36785448,
"posZ": -56.09618,
"rotX": 0.0240077749,
"rotY": 269.992126,
"rotZ": 0.0127312895,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feral Roar",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"4294d76d-d936-454d-b856-3550642a2cc6\",\"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": 268501,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "79bf19",
"Name": "Card",
"Transform": {
"posX": 25.8627682,
"posY": 2.30242252,
"posZ": -70.78268,
"rotX": 0.02081071,
"rotY": 269.993439,
"rotZ": 0.01676884,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ferocious Lion",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"7e1451ac-57a0-4a31-8658-3582eeccf620\",\"type\":\"Enemy\",\"victory\":2,\"class\":\"Mythos\",\"traits\":\"Creature. Predator. 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": 268502,
"SidewaysCard": false,
"CustomDeck": {
"2685": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276374906/B534C97542A0BE04B2398A69A6C6DB85A05DA1F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "eac9d0",
"Name": "Deck",
"Transform": {
"posX": -3.92790055,
"posY": 1.74835181,
"posZ": 5.75730133,
"rotX": 1.00754328E-07,
"rotY": 269.9873,
"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": [
266602,
266601,
266600,
270403,
270404,
270405,
270406,
270407,
266609,
266608,
269611,
269610,
269612,
270600,
267701,
267702,
267802,
267801,
267800,
269300,
269301,
269302,
269303,
267300,
268701,
268702,
269500,
269501,
269502,
269503
],
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513165974/5A66802B6C5015FEF7CEE59F93331FB0C3BE70CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2704": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840064342/A30C8EB0B500424071210EFFC80714FA1AA17DC6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2677": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2673": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513195103/F90C2DC3CE314D759302B1D4F4DAB995746B9AD9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d3d247",
"Name": "Card",
"Transform": {
"posX": 33.3379555,
"posY": 2.303955,
"posZ": -74.8230057,
"rotX": 0.0208085664,
"rotY": 270.0,
"rotZ": 0.0167710558,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thorny Growths",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9807559b-098f-4dc9-8809-a0d81b151f30\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"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": 266602,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513165974/5A66802B6C5015FEF7CEE59F93331FB0C3BE70CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5c7113",
"Name": "Card",
"Transform": {
"posX": 34.8322258,
"posY": 2.30447435,
"posZ": -74.7774353,
"rotX": 0.0208085682,
"rotY": 269.999939,
"rotZ": 0.01677129,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thorny Growths",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9807559b-098f-4dc9-8809-a0d81b151f30\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"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": 266601,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513165974/5A66802B6C5015FEF7CEE59F93331FB0C3BE70CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "240d16",
"Name": "Card",
"Transform": {
"posX": 33.41666,
"posY": 2.30413938,
"posZ": -74.88989,
"rotX": 0.02080847,
"rotY": 269.999939,
"rotZ": 0.0167710967,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thorny Growths",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9807559b-098f-4dc9-8809-a0d81b151f30\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"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": 266600,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513165974/5A66802B6C5015FEF7CEE59F93331FB0C3BE70CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "801297",
"Name": "Card",
"Transform": {
"posX": 32.9853,
"posY": 1.49438179,
"posZ": -47.4095535,
"rotX": 2.04910064,
"rotY": 269.99,
"rotZ": 179.9614,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ripping Tendrils",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"877803ab-f23e-48b9-a686-546ba849b257\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. 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": 270403,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "478c53",
"Name": "Card",
"Transform": {
"posX": 32.9853,
"posY": 1.48955631,
"posZ": -47.4095535,
"rotX": 0.0125529272,
"rotY": 269.999084,
"rotZ": 183.221954,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ripping Tendrils",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"877803ab-f23e-48b9-a686-546ba849b257\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. 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": 270404,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "40cfb4",
"Name": "Card",
"Transform": {
"posX": 32.9853,
"posY": 1.47174525,
"posZ": -47.4095535,
"rotX": 1.95404863,
"rotY": 270.001282,
"rotZ": 180.016953,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rapid Flourishing",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"822f9fea-ab26-4974-84d4-ad9f5998f5a3\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270405,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "308c18",
"Name": "Card",
"Transform": {
"posX": 32.9852943,
"posY": 1.41165149,
"posZ": -47.4087067,
"rotX": 0.0122979963,
"rotY": 269.998474,
"rotZ": 180.285843,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rapid Flourishing",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"822f9fea-ab26-4974-84d4-ad9f5998f5a3\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270406,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ecf799",
"Name": "Card",
"Transform": {
"posX": 32.9853,
"posY": 1.44071341,
"posZ": -47.40955,
"rotX": 0.0124364942,
"rotY": 269.9995,
"rotZ": 181.897659,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rapid Flourishing",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"822f9fea-ab26-4974-84d4-ad9f5998f5a3\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270407,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276338182/E3075B66B74C904E293C5DC209800DF928E61AAB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0f1afd",
"Name": "Card",
"Transform": {
"posX": 20.3593311,
"posY": 2.30055332,
"posZ": -71.42602,
"rotX": 0.02080852,
"rotY": 270.0002,
"rotZ": 0.0167717375,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Giant Sundew",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"1688617f-421f-4ee2-852c-5b8b98bef7d5\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Creature. Flora. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266609,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513165974/5A66802B6C5015FEF7CEE59F93331FB0C3BE70CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "711ace",
"Name": "Card",
"Transform": {
"posX": 21.6201248,
"posY": 2.29969335,
"posZ": -74.35671,
"rotX": 0.020808313,
"rotY": 270.0002,
"rotZ": 0.0167717,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Giant Sundew",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"1688617f-421f-4ee2-852c-5b8b98bef7d5\",\"type\":\"Enemy\",\"victory\":1,\"class\":\"Mythos\",\"traits\":\"Creature. Flora. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266608,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513165974/5A66802B6C5015FEF7CEE59F93331FB0C3BE70CB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b65e5f",
"Name": "Card",
"Transform": {
"posX": -11.8164577,
"posY": 1.3206588,
"posZ": -49.3872452,
"rotX": 0.02098362,
"rotY": 270.01297,
"rotZ": 0.0155986045,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carrion Flowers",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ef3a058e-7ce5-4911-aff5-3b28c677e971\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. 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": 269611,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c174c0",
"Name": "Card",
"Transform": {
"posX": -11.7784758,
"posY": 1.36246967,
"posZ": -49.5171738,
"rotX": 0.0238743238,
"rotY": 270.01297,
"rotZ": 0.0135452338,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carrion Flowers",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ef3a058e-7ce5-4911-aff5-3b28c677e971\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. 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": 269610,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d768ce",
"Name": "Card",
"Transform": {
"posX": -12.0551538,
"posY": 1.39634168,
"posZ": -49.6455879,
"rotX": 0.0208298732,
"rotY": 270.015442,
"rotZ": 0.0163965877,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Carrion Flowers",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ef3a058e-7ce5-4911-aff5-3b28c677e971\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. 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": 269612,
"SidewaysCard": false,
"CustomDeck": {
"2696": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293351923/ACABE58DD192016C81FE6602246651F5CE67387E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "804ed6",
"Name": "Card",
"Transform": {
"posX": -22.4641342,
"posY": 2.31938386,
"posZ": -76.75355,
"rotX": 0.020807283,
"rotY": 270.004,
"rotZ": 0.0167719964,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swooping Bats",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"fbe6c246-2a83-42d6-b687-91053864812d\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 270600,
"SidewaysCard": false,
"CustomDeck": {
"2670": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840064342/A30C8EB0B500424071210EFFC80714FA1AA17DC6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da5aa4",
"Name": "Card",
"Transform": {
"posX": 7.699326,
"posY": 1.36807477,
"posZ": -54.39343,
"rotX": 0.0176024567,
"rotY": 270.0012,
"rotZ": 0.016704293,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nocturnal Shrieks",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8fc2186b-5572-4b48-8d53-bd3b6edd9671\",\"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/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6095f",
"Name": "Card",
"Transform": {
"posX": 7.903186,
"posY": 1.40211022,
"posZ": -54.57995,
"rotX": 0.0210402738,
"rotY": 270.0021,
"rotZ": 0.0164363068,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nocturnal Shrieks",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8fc2186b-5572-4b48-8d53-bd3b6edd9671\",\"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/1847049778276365497/D5CF343EEF67D6F69369A3A251C41B2DDCE3316F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "250030",
"Name": "Card",
"Transform": {
"posX": 8.535946,
"posY": 1.32795668,
"posZ": -49.7288437,
"rotX": 0.0209323615,
"rotY": 269.99826,
"rotZ": 0.016006304,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f35644e9-c29d-46ed-8731-a4cb0819f4bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Omen. 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": 267802,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b69158",
"Name": "Card",
"Transform": {
"posX": 8.5150795,
"posY": 1.36976767,
"posZ": -49.4876976,
"rotX": 0.0250216983,
"rotY": 269.9961,
"rotZ": 0.0093507655,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f35644e9-c29d-46ed-8731-a4cb0819f4bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Omen. 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": 267801,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7fc09a",
"Name": "Card",
"Transform": {
"posX": 8.649743,
"posY": 1.40382469,
"posZ": -49.6263962,
"rotX": 0.0213067532,
"rotY": 270.000183,
"rotZ": 0.0164060649,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Haunting Drums",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f35644e9-c29d-46ed-8731-a4cb0819f4bf\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Omen. 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": 267800,
"SidewaysCard": false,
"CustomDeck": {
"2678": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276367852/B71E44C2909CE3A01189155976E253C37E4D16A7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8c460f",
"Name": "Card",
"Transform": {
"posX": 8.736771,
"posY": 1.32297111,
"posZ": -66.92138,
"rotX": 0.0212178454,
"rotY": 269.900024,
"rotZ": 0.0142478244,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fallen Explorer",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"49ee6ed4-2580-42b3-9996-df2c7fd90299\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269300,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aef8a5",
"Name": "Card",
"Transform": {
"posX": 8.776021,
"posY": 1.35927463,
"posZ": -66.98697,
"rotX": 0.0218854733,
"rotY": 270.03064,
"rotZ": -0.00210294477,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Fallen Explorer",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"49ee6ed4-2580-42b3-9996-df2c7fd90299\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Monster. Geist\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269301,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c169bd",
"Name": "Card",
"Transform": {
"posX": 9.081781,
"posY": 1.3993752,
"posZ": -65.27199,
"rotX": 0.0208618883,
"rotY": 270.0334,
"rotZ": 0.0157792941,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Aspect",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"78cd19d9-80c1-4765-8b37-037d9e1fdc71\",\"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": 269302,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8b18b0",
"Name": "Card",
"Transform": {
"posX": 9.12202,
"posY": 1.40890467,
"posZ": -65.72903,
"rotX": 0.0211583152,
"rotY": 270.0342,
"rotZ": 0.01651411,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chaotic Aspect",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"78cd19d9-80c1-4765-8b37-037d9e1fdc71\",\"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": 269303,
"SidewaysCard": false,
"CustomDeck": {
"2693": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276384323/CC03EEFE3EE9FB01D92D9D2A58F813CBB1A2CED1/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b9d29",
"Name": "Card",
"Transform": {
"posX": 3.492173,
"posY": 2.3237896,
"posZ": -94.3176,
"rotX": 0.0208084714,
"rotY": 270.000122,
"rotZ": 0.0167707168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Maneater Flytrap",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"b2a0efd8-4c1d-4522-b358-ff1f82ad2a42\",\"type\":\"Enemy\",\"class\":\"Mythos\",\"traits\":\"Creature. Flora. Predator\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": 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/5063766435513195103/F90C2DC3CE314D759302B1D4F4DAB995746B9AD9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2be91",
"Name": "Card",
"Transform": {
"posX": 8.719715,
"posY": 1.36588168,
"posZ": -63.27187,
"rotX": 0.023138538,
"rotY": 269.999817,
"rotZ": 0.0142350085,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constrictor Vines",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9f047295-4496-41d1-a65f-a5f8d48d83ab\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Trap\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268701,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c14d90",
"Name": "Card",
"Transform": {
"posX": 8.906282,
"posY": 1.39980447,
"posZ": -63.7161865,
"rotX": 0.0210917424,
"rotY": 270.000061,
"rotZ": 0.0163809825,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Constrictor Vines",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"9f047295-4496-41d1-a65f-a5f8d48d83ab\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Trap\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 268702,
"SidewaysCard": false,
"CustomDeck": {
"2687": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276377452/B5BD1CDCBBF1EA015776C303BC12E93650514E6D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "105ecc",
"Name": "Card",
"Transform": {
"posX": 4.37371,
"posY": 1.32240164,
"posZ": -63.5525932,
"rotX": 0.0209068339,
"rotY": 270.0003,
"rotZ": 0.01619891,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ec60953b-e095-47af-90ce-eba5d093dd7d\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Mystery\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269500,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e98807",
"Name": "Card",
"Transform": {
"posX": 4.31495,
"posY": 1.36418426,
"posZ": -63.2001152,
"rotX": 0.0259661414,
"rotY": 270.003052,
"rotZ": 0.00637912424,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Jungle Reclamation",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ec60953b-e095-47af-90ce-eba5d093dd7d\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Mystery\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269501,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "819805",
"Name": "Card",
"Transform": {
"posX": 4.42892027,
"posY": 1.39830649,
"posZ": -63.2213745,
"rotX": 0.0211659372,
"rotY": 270.0024,
"rotZ": 0.0160875078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"55e0f964-01a9-4edf-bd71-1b2b9bc09bff\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269502,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3dd4be",
"Name": "Card",
"Transform": {
"posX": 4.713935,
"posY": 1.40805316,
"posZ": -63.1260033,
"rotX": 0.0209549461,
"rotY": 270.000244,
"rotZ": 0.0161888059,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Creeping Foliage",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"55e0f964-01a9-4edf-bd71-1b2b9bc09bff\",\"type\":\"Treachery\",\"class\":\"Mythos\",\"traits\":\"Flora. Obstacle\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 269503,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276386109/213CDCD24DAE39AD0BE1E8CD7B198F6FD03BE4B2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/",
"NumWidth": 2,
"NumHeight": 2,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "39551c",
"Name": "Deck",
"Transform": {
"posX": -2.72480035,
"posY": 1.61837292,
"posZ": 0.373300284,
"rotX": -4.87556164E-08,
"rotY": 180.017,
"rotZ": 4.8070433E-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": [
269722,
269723,
269724
],
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4a9ce4",
"Name": "Card",
"Transform": {
"posX": 4.046911,
"posY": 1.32531142,
"posZ": -53.2084923,
"rotX": 0.016857883,
"rotY": 180.000244,
"rotZ": 359.978668,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 3 - Impenetrable Jungle",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"630f1394-a7eb-4c77-b72f-e26a56e32829\",\"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": 269722,
"SidewaysCard": true,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f3e20",
"Name": "Card",
"Transform": {
"posX": 3.78829479,
"posY": 1.36709845,
"posZ": -53.0234146,
"rotX": 0.0184601285,
"rotY": 179.999969,
"rotZ": 359.9764,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 2 - Spreading Like Weeds",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"13b8928b-0531-45de-a506-f42cc9cf97e8\",\"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": 269723,
"SidewaysCard": true,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "234da0",
"Name": "Card",
"Transform": {
"posX": 3.7195406,
"posY": 1.40082574,
"posZ": -53.696743,
"rotX": 0.0186500344,
"rotY": 179.999771,
"rotZ": 359.976685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda 1 - Savage Garden",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"56d944f5-9c1d-4089-9f6a-7536eef8e6ed\",\"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": 269724,
"SidewaysCard": true,
"CustomDeck": {
"2697": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293360181/F9B2AF1453A3FF9CCBA54A590E03ADE5EA4C262B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "5658eb",
"Name": "Deck",
"Transform": {
"posX": -2.6887002,
"posY": 1.61837292,
"posZ": -5.048501,
"rotX": -2.71955454E-08,
"rotY": 180.0164,
"rotZ": -5.33811466E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
269919,
269920,
269921
],
"CustomDeck": {
"2699": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "eac8ed",
"Name": "Card",
"Transform": {
"posX": -29.754385,
"posY": 1.3954823,
"posZ": -49.0815926,
"rotX": 0.01574842,
"rotY": 180.002869,
"rotZ": 356.073517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 3 - Condemned Building",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"dccd5b20-927e-4098-a123-c0bc4b1d8dd9\",\"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": 269919,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "115cad",
"Name": "Card",
"Transform": {
"posX": -29.4487267,
"posY": 1.50187492,
"posZ": -49.4363251,
"rotX": 0.0157720279,
"rotY": 179.999512,
"rotZ": 359.252075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 2 - No Dice",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"f4573356-9ef6-4888-bad1-fd016eb01085\",\"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": 269920,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb6163",
"Name": "Card",
"Transform": {
"posX": -29.8632317,
"posY": 1.64465547,
"posZ": -49.0381775,
"rotX": 4.199448,
"rotY": 179.984192,
"rotZ": 359.561371,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act 1 - Invasive Species",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"544c904f-9bd2-478a-a6c8-349ee717f484\",\"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": 269921,
"SidewaysCard": true,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1917989596840047596/2BAB015DA6B0ECC4FAA19C975EE2840F1728EC52/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1870697260293361288/24580DDAC7B665861EEAFEE53832587352E50FAD/",
"NumWidth": 5,
"NumHeight": 5,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "faba94",
"Name": "Card",
"Transform": {
"posX": -3.9560008,
"posY": 1.59660506,
"posZ": -10.4412031,
"rotX": 1.48803112E-08,
"rotY": 269.999481,
"rotZ": 2.84134476E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "Home Invasion",
"GMNotes": "{\"TtsZoopGuid\":\"f4935a32-b6ed-4bd5-a83a-cd21bbb1538f\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 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": 270712,
"SidewaysCard": false,
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d425bd",
"Name": "Card",
"Transform": {
"posX": -17.1199989,
"posY": 1.53360486,
"posZ": -0.0300000571,
"rotX": 3.383501E-08,
"rotY": 269.9915,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backyard",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ea537a79-8a9f-4ea5-be01-67f6a5540c88\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Outdoors\",\"locationFront\":{\"icons\":\"Clover\",\"connections\":\"Slash|Square\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}]},\"locationBack\":{\"icons\":\"Clover\",\"connections\":\"Slash|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": 270806,
"SidewaysCard": false,
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/5063766435513205086/084C5232DA38D164472A3C709CAC30156248B542/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d36a1f",
"Name": "Deck",
"Transform": {
"posX": -23.7812977,
"posY": 1.56018674,
"posZ": 11.6158028,
"rotX": -9.667828E-08,
"rotY": 270.000122,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "copies of Side Yard",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
269807,
269808,
269809,
269810
],
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "03cf0f",
"Name": "Card",
"Transform": {
"posX": -13.2912264,
"posY": 1.495075,
"posZ": 24.3391228,
"rotX": 0.000288357929,
"rotY": 269.998779,
"rotZ": -0.00191415346,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Yard",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"10cda49b-46db-4571-930e-61d2008e8d4c\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Outdoors\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Diamond|Clover\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Diamond|Clover\"}}",
"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": 269807,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "46c2d0",
"Name": "Card",
"Transform": {
"posX": -13.154377,
"posY": 1.53673339,
"posZ": 23.8961334,
"rotX": 0.0021360605,
"rotY": 269.999939,
"rotZ": -0.00141993584,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Yard",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"7cdedd4e-da3c-4ae0-bf39-b0131fc850b2\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Outdoors\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Diamond|Clover\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Diamond|Clover\"}}",
"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": 269808,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fae8ba",
"Name": "Card",
"Transform": {
"posX": -13.3460054,
"posY": 1.57071984,
"posZ": 24.5386047,
"rotX": -0.000395235722,
"rotY": 270.000031,
"rotZ": -0.000467267033,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Yard",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8c77db6e-02ad-4a13-a7fa-894a4863761b\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Outdoors\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Diamond|Clover\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Diamond|Clover\"}}",
"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": 269809,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4cde9",
"Name": "Card",
"Transform": {
"posX": -13.4814939,
"posY": 1.58036208,
"posZ": 24.034523,
"rotX": -9.23389E-06,
"rotY": 270.000031,
"rotZ": -0.000351535622,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Side Yard",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"3fe7cb7a-d285-49e4-af5b-362d1b2cc506\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Outdoors\",\"locationFront\":{\"icons\":\"Slash\",\"connections\":\"Diamond|Clover\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Slash\",\"connections\":\"Diamond|Clover\"}}",
"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": 269810,
"SidewaysCard": false,
"CustomDeck": {
"2698": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "18aade",
"Name": "Card",
"Transform": {
"posX": -23.6765976,
"posY": 1.53360486,
"posZ": 3.86000133,
"rotX": -3.703709E-08,
"rotY": 270.000336,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Kitchen",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8d4b05aa-8dcd-4be5-a094-3f236d1b8390\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Indoors\",\"locationFront\":{\"icons\":\"Square\",\"connections\":\"Clover|Circle|Triangle\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"Square\",\"connections\":\"Clover|Circle|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": 267602,
"SidewaysCard": false,
"CustomDeck": {
"2676": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8c9db7",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.53360486,
"posZ": -3.83000016,
"rotX": -9.92841436E-08,
"rotY": 270.000519,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bathroom",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"17e1505f-acdf-4cac-a50e-3816c1f2649f\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Indoors\",\"locationFront\":{\"icons\":\"Triangle\",\"connections\":\"Square|Hourglass\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Triangle\",\"connections\":\"Square|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": 270101,
"SidewaysCard": false,
"CustomDeck": {
"2701": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b891f",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.53360486,
"posZ": 3.86000085,
"rotX": 1.77082993E-09,
"rotY": 270.0003,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dining Room",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"8e7b2834-32bb-4189-9300-2c56d5e0b97f\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Indoors\",\"locationFront\":{\"icons\":\"Circle\",\"connections\":\"DoubleSlash|Square|Hourglass\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":2},\"locationBack\":{\"icons\":\"Circle\",\"connections\":\"DoubleSlash|Square|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": 267503,
"SidewaysCard": false,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "183ac4",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.53360486,
"posZ": -3.83000064,
"rotX": -1.73748074E-08,
"rotY": 270.0003,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Study",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"ef68309a-075c-4d20-9a35-5a873902e3be\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Indoors\",\"locationFront\":{\"icons\":\"Hourglass\",\"connections\":\"Circle|Heart|Triangle\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":3}]},\"locationBack\":{\"icons\":\"Hourglass\",\"connections\":\"Circle|Heart|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": 267500,
"SidewaysCard": false,
"CustomDeck": {
"2675": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b98ab2",
"Name": "Card",
"Transform": {
"posX": -36.7732048,
"posY": 1.53360486,
"posZ": 3.86000085,
"rotX": -1.84404865E-08,
"rotY": 270.00116,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Entry Hall",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"a4fdca9c-408b-476c-9ebd-28a2613459a8\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Indoors\",\"locationFront\":{\"icons\":\"DoubleSlash\",\"connections\":\"Diamond|Circle|Heart\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":2}],\"victory\":1},\"locationBack\":{\"icons\":\"DoubleSlash\",\"connections\":\"Diamond|Circle|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": 270305,
"SidewaysCard": false,
"CustomDeck": {
"2703": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5676b4",
"Name": "Card",
"Transform": {
"posX": -36.7732048,
"posY": 1.53360486,
"posZ": -3.83000064,
"rotX": 1.8039735E-08,
"rotY": 270.0007,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Living Room",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"2e435168-aee6-4c6f-8a7d-7aa2f2e70643\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Indoors\",\"locationFront\":{\"icons\":\"Heart\",\"connections\":\"DoubleSlash|Hourglass\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"countPerInvestigator\":1}],\"victory\":1},\"locationBack\":{\"icons\":\"Heart\",\"connections\":\"DoubleSlash|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": 270004,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"NumWidth": 7,
"NumHeight": 2,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "69c954",
"Name": "Card",
"Transform": {
"posX": -43.3700027,
"posY": 1.53360486,
"posZ": -0.0300000627,
"rotX": -1.02719833E-08,
"rotY": 270.004639,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Front Garden",
"Description": "",
"GMNotes": "{\"TtsZoopGuid\":\"cb030956-f018-4278-8f1f-8bf15210cf87\",\"type\":\"Location\",\"class\":\"Mythos\",\"traits\":\"Outdoors\",\"locationFront\":{\"icons\":\"Diamond\",\"connections\":\"Slash|DoubleSlash\",\"uses\":[{\"token\":\"clue\",\"type\":\"Clue\",\"count\":0}]},\"locationBack\":{\"icons\":\"Diamond\",\"connections\":\"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": 270011,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341564/2282BBB25E0A4432B2FAD61E0FECE3F155F947E0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1847049778276341908/BED5652F068FD57909CFC00CC6EE15F08F032932/",
"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": "eda22b",
"Name": "Custom_Token",
"Transform": {
"posX": 1.147498,
"posY": 1.5815,
"posZ": -29.7397079,
"rotX": 1.833983E-06,
"rotY": 270.022,
"rotZ": 9.589409E-06,
"scaleX": 5.189041,
"scaleY": 1.0,
"scaleZ": 5.189041
},
"Nickname": "Jumanji Campaign Log 1",
"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/1847049778276400654/CA0CB2DFEC2369A88438155657A68BE20B90A90E/",
"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 --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 --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 1\r\n {\r\n pos = {-0.930,0.1,0.930},\r\n rows = 27,\r\n width = 7800,\r\n font_size = 300,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Campaign Notes 2\r\n {\r\n pos = {0.820,0.1,0.707},\r\n rows = 20,\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\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\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\r\n",
"LuaScriptState": "{\"checkbox\":[],\"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}],\"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.93],\"rows\":27,\"value\":\"\",\"width\":7800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[0.82,0.1,0.707],\"rows\":20,\"value\":\"\",\"width\":7800},{\"alignment\":2,\"font_size\":300,\"label\":\"Empty\",\"pos\":[1.01,0.1,1.7],\"rows\":5,\"value\":\"\",\"width\":7400}]}",
"XmlUI": "",
"States": {
"2": {
"GUID": "a9628a",
"Name": "Custom_Token",
"Transform": {
"posX": 1.1475991,
"posY": 1.57115233,
"posZ": -29.7397079,
"rotX": 359.9201,
"rotY": 270.021973,
"rotZ": 0.0168409962,
"scaleX": 5.188961,
"scaleY": 1.0,
"scaleZ": 5.188961
},
"Nickname": "Jumanji Campaign Log 2",
"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/1847049778276403495/316E06F3D6F35585DFA7C9F161D9B6F0C6D34558/",
"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 --Home Invasion\r\n {\r\n pos = {-1.370,0.1,-0.158},\r\n size = 600,\r\n state = false\r\n },\r\n --Urban Jungle\r\n {\r\n pos = {-1.352,0.1,-0.031},\r\n size = 600,\r\n state = false\r\n },\r\n --Back to Start\r\n {\r\n pos = {-1.339,0.1,0.099},\r\n size = 600,\r\n state = false\r\n },\r\n --Urban Jungle\r\n {\r\n pos = {-1.331,0.1,0.234},\r\n size = 600,\r\n state = false\r\n },\r\n --Force of Nature\r\n {\r\n pos = {-1.319,0.1,0.369},\r\n size = 600,\r\n state = false\r\n },\r\n --1: Cultist Token\r\n {\r\n pos = {-1.268,0.1,1.158},\r\n size = 600,\r\n state = false\r\n },\r\n --1: Monster Token\r\n {\r\n pos = {-0.773,0.1,1.119},\r\n size = 600,\r\n state = false\r\n },\r\n --2: Cultist Token\r\n {\r\n pos = {-1.260,0.1,1.287},\r\n size = 600,\r\n state = false\r\n },\r\n --2: Tablet Token\r\n {\r\n pos = {-0.760,0.1,1.251},\r\n size = 600,\r\n state = false\r\n },\r\n --3: Tablet Token\r\n {\r\n pos = {-1.247,0.1,1.420},\r\n size = 600,\r\n state = false\r\n },\r\n --3: Monster Token\r\n {\r\n pos = {-0.751,0.1,1.380},\r\n size = 600,\r\n state = false\r\n },\r\n --4: Cultist Token\r\n {\r\n pos = {-1.239,0.1,1.549},\r\n size = 600,\r\n state = false\r\n },\r\n --4: Tablet Token\r\n {\r\n pos = {-0.743,0.1,1.517},\r\n size = 600,\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 --Turns Taken\r\n {\r\n pos = {-0.880,0.1,0.737},\r\n size = 1500,\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 --Aggressive Threats\r\n {\r\n pos = {0.640,0.1,-1.500},\r\n rows = 4,\r\n width = 3800,\r\n font_size = 450,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Lurking Threats\r\n {\r\n pos = {0.620,0.1,-1.000},\r\n rows = 4,\r\n width = 3800,\r\n font_size = 450,\r\n label = \"Empty\",\r\n value = \"\",\r\n alignment = 2\r\n },\r\n --Environmental Threats\r\n {\r\n pos = {0.600,0.1,-0.500},\r\n rows = 4,\r\n width = 3800,\r\n font_size = 450,\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\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then saved_data=\"\" end\r\n self.script_state = saved_data\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\r\n",
"LuaScriptState": "{\"checkbox\":[{\"pos\":[-1.37,0.1,-0.158],\"size\":600,\"state\":false},{\"pos\":[-1.352,0.1,-0.031],\"size\":600,\"state\":false},{\"pos\":[-1.339,0.1,0.099],\"size\":600,\"state\":false},{\"pos\":[-1.331,0.1,0.234],\"size\":600,\"state\":false},{\"pos\":[-1.319,0.1,0.369],\"size\":600,\"state\":false},{\"pos\":[-1.268,0.1,1.158],\"size\":600,\"state\":false},{\"pos\":[-0.773,0.1,1.119],\"size\":600,\"state\":false},{\"pos\":[-1.26,0.1,1.287],\"size\":600,\"state\":false},{\"pos\":[-0.76,0.1,1.251],\"size\":600,\"state\":false},{\"pos\":[-1.247,0.1,1.42],\"size\":600,\"state\":false},{\"pos\":[-0.751,0.1,1.38],\"size\":600,\"state\":false},{\"pos\":[-1.239,0.1,1.549],\"size\":600,\"state\":false},{\"pos\":[-0.743,0.1,1.517],\"size\":600,\"state\":false}],\"counter\":[{\"hideBG\":true,\"pos\":[-0.88,0.1,0.737],\"size\":1500,\"value\":0}],\"textbox\":[{\"alignment\":2,\"font_size\":450,\"label\":\"Empty\",\"pos\":[0.64,0.1,-1.5],\"rows\":4,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":450,\"label\":\"Empty\",\"pos\":[0.62,0.1,-1],\"rows\":4,\"value\":\"\",\"width\":3800},{\"alignment\":2,\"font_size\":450,\"label\":\"Empty\",\"pos\":[0.6,0.1,-0.5],\"rows\":4,\"value\":\"\",\"width\":3800}]}",
"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
}
}
]
}