SCED/content/generated/en/scenarios/WaroftheOuterGods.json
2023-06-26 10:13:37 +02:00

5703 lines
205 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"GUID": "fc7674",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.2469988,
"posY": 1.48149908,
"posZ": -12.016,
"rotX": 1.4422622E-07,
"rotY": 270.0001,
"rotZ": 2.84424345E-07,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "War of the Outer Gods",
"Description": "Scenario Pack",
"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/1655599785041387976/264E2E1DA532DC374D6E75B19AD4FEDDBEAA22F0/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 3,
"TypeIndex": 6,
"CustomShader": {
"SpecularColor": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"SpecularIntensity": 0.0,
"SpecularSharpness": 2.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "-- Utility memory bag by Directsun\r\n-- Version 2.5.2\r\n-- Fork of Memory Bag 2.0 by MrStump\r\n\r\nfunction updateSave()\r\n local data_to_save = {[\"ml\"]=memoryList}\r\n saved_data = JSON.encode(data_to_save)\r\n self.script_state = saved_data\r\nend\r\n\r\nfunction combineMemoryFromBagsWithin()\r\n local bagObjList = self.getObjects()\r\n for _, bagObj in ipairs(bagObjList) do\r\n local data = bagObj.lua_script_state\r\n if data ~= nil then\r\n local j = JSON.decode(data)\r\n if j ~= nil and j.ml ~= nil then\r\n for guid, entry in pairs(j.ml) do\r\n memoryList[guid] = entry\r\n end\r\n end\r\n end\r\n end\r\nend\r\n\r\nfunction updateMemoryWithMoves()\r\n memoryList = memoryListBackup\r\n --get the first transposed object's coordinates\r\n local obj = getObjectFromGUID(moveGuid)\r\n\r\n -- p1 is where needs to go, p2 is where it was\r\n local refObjPos = memoryList[moveGuid].pos\r\n local deltaPos = findOffsetDistance(obj.getPosition(), refObjPos, nil)\r\n local movedRotation = obj.getRotation()\r\n for guid, entry in pairs(memoryList) do\r\n memoryList[guid].pos.x = entry.pos.x - deltaPos.x\r\n memoryList[guid].pos.y = entry.pos.y - deltaPos.y\r\n memoryList[guid].pos.z = entry.pos.z - deltaPos.z\r\n -- memoryList[guid].rot.x = movedRotation.x\r\n -- memoryList[guid].rot.y = movedRotation.y\r\n -- memoryList[guid].rot.z = movedRotation.z\r\n end\r\n\r\n --theList[obj.getGUID()] = {\r\n -- pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n -- rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n -- lock=obj.getLock()\r\n --}\r\n moveList = {}\r\nend\r\n\r\nfunction onload(saved_data)\r\n fresh = true\r\n if saved_data ~= \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n --Set up information off of loaded_data\r\n memoryList = loaded_data.ml\r\n else\r\n --Set up information for if there is no saved saved data\r\n memoryList = {}\r\n end\r\n\r\n moveList = {}\r\n moveGuid = nil\r\n\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n fresh = false\r\n createMemoryActionButtons()\r\n end\r\nend\r\n\r\n\r\n--Beginning Setup\r\n\r\n\r\n--Make setup button\r\nfunction createSetupButton()\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n--Triggered by Transpose button\r\nfunction buttonClick_transpose()\r\n moveGuid = nil\r\n broadcastToAll(\"Select one object and move it- all objects will move relative to the new location\", {0.75, 0.75, 1})\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n moveList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(true)\r\n createSetupActionButtons(true)\r\nend\r\n\r\n--Triggered by setup button,\r\nfunction buttonClick_setup()\r\n memoryListBackup = duplicateTable(memoryList)\r\n memoryList = {}\r\n self.clearButtons()\r\n createButtonsOnAllObjects(false)\r\n createSetupActionButtons(false)\r\nend\r\n\r\nfunction getAllObjectsInMemory()\r\n local objTable = {}\r\n local curObj = {}\r\n\r\n for guid in pairs(memoryListBackup) do\r\n curObj = getObjectFromGUID(guid)\r\n table.insert(objTable, curObj)\r\n end\r\n\r\n return objTable\r\n -- return getAllObjects()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects(move)\r\n local howManyButtons = 0\r\n\r\n local objsToHaveButtons = {}\r\n if move == true then\r\n objsToHaveButtons = getAllObjectsInMemory()\r\n else\r\n objsToHaveButtons = getAllObjects()\r\n end\r\n\r\n for _, obj in ipairs(objsToHaveButtons) do\r\n if obj ~= self then\r\n local dummyIndex = howManyButtons\r\n --On a normal bag, the button positions aren't the same size as the bag.\r\n globalScaleFactor = 1 * 1/self.getScale().x\r\n --Super sweet math to set button positions\r\n local selfPos = self.getPosition()\r\n local objPos = obj.getPosition()\r\n local deltaPos = findOffsetDistance(selfPos, objPos, obj)\r\n local objPos = rotateLocalCoordinates(deltaPos, self)\r\n objPos.x = -objPos.x * globalScaleFactor\r\n objPos.y = objPos.y * globalScaleFactor + 2\r\n objPos.z = objPos.z * globalScaleFactor * 0.9\r\n --Offset rotation of bag\r\n local rot = self.getRotation()\r\n rot.y = -rot.y + 180\r\n --Create function\r\n local funcName = \"selectButton_\" .. howManyButtons\r\n local func = function() buttonClick_selection(dummyIndex, obj, move) end\r\n local color = {0.75,0.25,0.25,0.6}\r\n local colorMove = {0,0,1,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.setVar(funcName, func)\r\n self.createButton({\r\n click_function=funcName, function_owner=self,\r\n position=objPos, rotation=rot, height=500, width=500,\r\n color=color,\r\n })\r\n howManyButtons = howManyButtons + 1\r\n end\r\n end\r\nend\r\n\r\n--Creates submit and cancel buttons\r\nfunction createSetupActionButtons(move)\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={-0.6,0.1,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={-0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n\r\n if move == false then\r\n self.createButton({\r\n label=\"Add\", click_function=\"buttonClick_add\", function_owner=self,\r\n position={0.6,0.3,-2.1}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.25,1,0.25}\r\n })\r\n\r\n if fresh == false then\r\n self.createButton({\r\n label=\"Set New\", click_function=\"buttonClick_setNew\", function_owner=self,\r\n position={0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={0.75,0.75,1}\r\n })\r\n self.createButton({\r\n label=\"Remove\", click_function=\"buttonClick_remove\", function_owner=self,\r\n position={0.6,0.3,-2.5}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,0.25,0.25}\r\n })\r\n end\r\n end\r\n\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-0.6,0.3,-2.9}, rotation={0,0,0}, height=220, width=550,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\nend\r\n\r\n\r\n--During Setup\r\n\r\n\r\n--Checks or unchecks buttons\r\nfunction buttonClick_selection(index, obj, move)\r\n local colorMove = {0,0,1,0.6}\r\n local color = {0,1,0,0.6}\r\n\r\n previousGuid = selectedGuid\r\n selectedGuid = obj.getGUID()\r\n\r\n theList = memoryList\r\n if move == true then\r\n theList = moveList\r\n if previousGuid ~= nil and previousGuid ~= selectedGuid then\r\n local prevObj = getObjectFromGUID(previousGuid)\r\n prevObj.highlightOff()\r\n self.editButton({index=previousIndex, color=colorMove})\r\n theList[previousGuid] = nil\r\n end\r\n previousIndex = index\r\n end\r\n\r\n if theList[selectedGuid] == nil then\r\n self.editButton({index=index, color=color})\r\n --Adding pos/rot to memory table\r\n local pos, rot = obj.getPosition(), obj.getRotation()\r\n --I need to add it like this or it won't save due to indexing issue\r\n theList[obj.getGUID()] = {\r\n pos={x=round(pos.x,4), y=round(pos.y,4), z=round(pos.z,4)},\r\n rot={x=round(rot.x,4), y=round(rot.y,4), z=round(rot.z,4)},\r\n lock=obj.getLock()\r\n }\r\n obj.highlightOn({0,1,0})\r\n else\r\n color = {0.75,0.25,0.25,0.6}\r\n if move == true then\r\n color = colorMove\r\n end\r\n self.editButton({index=index, color=color})\r\n theList[obj.getGUID()] = nil\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Cancels selection process\r\nfunction buttonClick_cancel()\r\n memoryList = memoryListBackup\r\n moveList = {}\r\n self.clearButtons()\r\n if next(memoryList) == nil then\r\n createSetupButton()\r\n else\r\n createMemoryActionButtons()\r\n end\r\n removeAllHighlights()\r\n broadcastToAll(\"Selection Canceled\", {1,1,1})\r\n moveGuid = nil\r\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n fresh = false\r\n if next(moveList) ~= nil then\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n end\r\n if memoryListBackup[moveGuid] == nil then\r\n broadcastToAll(\"Item selected for moving is not already in memory\", {1, 0.25, 0.25})\r\n else\r\n broadcastToAll(\"Moving all items in memory relative to new objects position!\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(moveList) do\r\n moveGuid = guid\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n updateMemoryWithMoves()\r\n updateSave()\r\n buttonClick_place()\r\n end\r\n elseif next(memoryList) == nil and moveGuid == nil then\r\n memoryList = memoryListBackup\r\n broadcastToAll(\"No selections made.\", {0.75, 0.25, 0.25})\r\n end\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\n moveGuid = nil\r\nend\r\n\r\nfunction combineTables(first_table, second_table)\r\n for k,v in pairs(second_table) do first_table[k] = v end\r\nend\r\n\r\nfunction buttonClick_add()\r\n fresh = false\r\n combineTables(memoryList, memoryListBackup)\r\n broadcastToAll(\"Adding internal bags and selections to existing memory\", {0.25, 0.75, 0.25})\r\n combineMemoryFromBagsWithin()\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_remove()\r\n broadcastToAll(\"Removing Selected Entries From Memory\", {1.0, 0.25, 0.25})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for guid in pairs(memoryList) do\r\n count = count + 1\r\n memoryListBackup[guid] = nil\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then obj.highlightOff() end\r\n end\r\n broadcastToAll(count..\" Objects Removed\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\nfunction buttonClick_setNew()\r\n broadcastToAll(\"Setting new position relative to items in memory\", {0.75, 0.75, 1})\r\n self.clearButtons()\r\n createMemoryActionButtons()\r\n local count = 0\r\n for _, obj in ipairs(getAllObjects()) do\r\n guid = obj.guid\r\n if memoryListBackup[guid] ~= nil then\r\n count = count + 1\r\n memoryListBackup[guid].pos = obj.getPosition()\r\n memoryListBackup[guid].rot = obj.getRotation()\r\n memoryListBackup[guid].lock = obj.getLock()\r\n end\r\n end\r\n broadcastToAll(count..\" Objects Saved\", {1,1,1})\r\n memoryList = memoryListBackup\r\n updateSave()\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\r\n fresh = true\r\n memoryList = {}\r\n self.clearButtons()\r\n createSetupButton()\r\n removeAllHighlights()\r\n broadcastToAll(\"Tool Reset\", {1,1,1})\r\n updateSave()\r\nend\r\n\r\n\r\n--After Setup\r\n\r\n\r\n--Creates recall and place buttons\r\nfunction createMemoryActionButtons()\r\n self.createButton({\r\n label=\"Place\", click_function=\"buttonClick_place\", function_owner=self,\r\n position={0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Recall\", click_function=\"buttonClick_recall\", function_owner=self,\r\n position={-0.6,0.1,2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Setup\", click_function=\"buttonClick_setup\", function_owner=self,\r\n position={0,0.1,-2.1}, rotation={0,0,0}, height=220, width=500,\r\n font_size=130, color={0,0,0}, font_color={1,1,1}\r\n })\r\n--- self.createButton({\r\n--- label=\"Move\", click_function=\"buttonClick_transpose\", function_owner=self,\r\n--- position={-2.8,0.3,0}, rotation={0,0,0}, height=350, width=800,\r\n--- font_size=250, color={0,0,0}, font_color={0.75,0.75,1}\r\n--- })\r\nend\r\n\r\n--Sends objects from bag/table to their saved position/rotation\r\nfunction buttonClick_place()\r\n local bagObjList = self.getObjects()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n --If obj is out on the table, move it to the saved pos/rot\r\n if obj ~= nil then\r\n obj.setPositionSmooth(entry.pos)\r\n obj.setRotationSmooth(entry.rot)\r\n obj.setLock(entry.lock)\r\n else\r\n --If obj is inside of the bag\r\n for _, bagObj in ipairs(bagObjList) do\r\n if bagObj.guid == guid then\r\n local item = self.takeObject({\r\n guid=guid, position=entry.pos, rotation=entry.rot, smooth=false\r\n })\r\n item.setLock(entry.lock)\r\n break\r\n end\r\n end\r\n end\r\n end\r\n broadcastToAll(\"Objects Placed\", {1,1,1})\r\nend\r\n\r\n--Recalls objects to bag from table\r\nfunction buttonClick_recall()\r\n for guid, entry in pairs(memoryList) do\r\n local obj = getObjectFromGUID(guid)\r\n if obj ~= nil then self.putObject(obj) end\r\n end\r\n broadcastToAll(\"Objects Recalled\", {1,1,1})\r\nend\r\n\r\n\r\n--Utility functions\r\n\r\n\r\n--Find delta (difference) between 2 x/y/z coordinates\r\nfunction findOffsetDistance(p1, p2, obj)\r\n local yOffset = 0\r\n if obj ~= nil then\r\n local bounds = obj.getBounds()\r\n yOffset = (bounds.size.y - bounds.offset.y)\r\n end\r\n local deltaPos = {}\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + yOffset\r\n deltaPos.z = (p2.z-p1.z)\r\n return deltaPos\r\nend\r\n\r\n--Used to rotate a set of coordinates by an angle\r\nfunction rotateLocalCoordinates(desiredPos, obj)\r\n\tlocal objPos, objRot = obj.getPosition(), obj.getRotation()\r\n local angle = math.rad(objRot.y)\r\n\tlocal x = desiredPos.x * math.cos(angle) - desiredPos.z * math.sin(angle)\r\n\tlocal z = desiredPos.x * math.sin(angle) + desiredPos.z * math.cos(angle)\r\n\t--return {x=objPos.x+x, y=objPos.y+desiredPos.y, z=objPos.z+z}\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\nfunction rotateMyCoordinates(desiredPos, obj)\r\n\tlocal angle = math.rad(obj.getRotation().y)\r\n local x = desiredPos.x * math.sin(angle)\r\n\tlocal z = desiredPos.z * math.cos(angle)\r\n return {x=x, y=desiredPos.y, z=z}\r\nend\r\n\r\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend",
"LuaScriptState": "{\"ml\":{\"012f6e\":{\"lock\":false,\"pos\":{\"x\":-33.1674919128418,\"y\":1.6287933588028,\"z\":3.70239424705505},\"rot\":{\"x\":359.931579589844,\"y\":315.000122070313,\"z\":359.955413818359}},\"01a1bf\":{\"lock\":false,\"pos\":{\"x\":-2.68847990036011,\"y\":1.61911654472351,\"z\":-5.04854345321655},\"rot\":{\"x\":0.0168357044458389,\"y\":179.999969482422,\"z\":0.0802558362483978}},\"119ff4\":{\"lock\":false,\"pos\":{\"x\":-2.72466206550598,\"y\":1.62076032161713,\"z\":0.373312473297119},\"rot\":{\"x\":0.0168315507471561,\"y\":180.002822875977,\"z\":0.080256812274456}},\"1375c8\":{\"lock\":false,\"pos\":{\"x\":-0.0221959762275219,\"y\":1.61770987510681,\"z\":2.87429571151733},\"rot\":{\"x\":0.0168356113135815,\"y\":179.999984741211,\"z\":0.080255962908268}},\"1ade36\":{\"lock\":false,\"pos\":{\"x\":-3.95589303970337,\"y\":1.59753930568695,\"z\":-10.4411792755127},\"rot\":{\"x\":359.919738769531,\"y\":270.000152587891,\"z\":0.0168368946760893}},\"262233\":{\"lock\":false,\"pos\":{\"x\":-23.6764488220215,\"y\":1.62806642055511,\"z\":-0.0300165209919214},\"rot\":{\"x\":359.920104980469,\"y\":270.000305175781,\"z\":0.0168391764163971}},\"308d21\":{\"lock\":false,\"pos\":{\"x\":-20.245641708374,\"y\":1.60910308361053,\"z\":-1.98555314540863},\"rot\":{\"x\":359.931579589844,\"y\":315,\"z\":359.955413818359}},\"30c009\":{\"lock\":false,\"pos\":{\"x\":-26.6726875305176,\"y\":1.6186695098877,\"z\":0.0717479661107063},\"rot\":{\"x\":359.920104980469,\"y\":270.008666992188,\"z\":0.0168553087860346}},\"3111c8\":{\"lock\":false,\"pos\":{\"x\":-3.92764544487,\"y\":1.70105218887329,\"z\":5.75713586807251},\"rot\":{\"x\":359.919738769531,\"y\":270,\"z\":180.016815185547}},\"354cd0\":{\"lock\":false,\"pos\":{\"x\":-36.7732048034668,\"y\":1.63610112667084,\"z\":11.4600057601929},\"rot\":{\"x\":359.983154296875,\"y\":-7.23976627341472E-05,\"z\":359.920074462891}},\"363e2d\":{\"lock\":false,\"pos\":{\"x\":-3.92945504188538,\"y\":1.70105469226837,\"z\":5.75715255737305},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":180.016830444336}},\"36b4eb\":{\"lock\":false,\"pos\":{\"x\":-1.4717743396759,\"y\":1.47563123703003,\"z\":-26.9304161071777},\"rot\":{\"x\":359.920135498047,\"y\":269.986267089844,\"z\":0.0168911255896091}},\"370aa5\":{\"lock\":false,\"pos\":{\"x\":-33.3459815979004,\"y\":1.6377238035202,\"z\":-13.0488519668579},\"rot\":{\"x\":359.920104980469,\"y\":270.007629394531,\"z\":0.0168289542198181}},\"44d047\":{\"lock\":false,\"pos\":{\"x\":-14.6150169372559,\"y\":1.62739491462708,\"z\":-6.00151872634888},\"rot\":{\"x\":359.920013427734,\"y\":270.0048828125,\"z\":0.735514640808105}},\"473d21\":{\"lock\":false,\"pos\":{\"x\":-36.773136138916,\"y\":1.64856243133545,\"z\":7.56998348236084},\"rot\":{\"x\":359.920104980469,\"y\":270.000305175781,\"z\":0.0168392565101385}},\"638f24\":{\"lock\":false,\"pos\":{\"x\":-36.7732353210449,\"y\":1.62935054302216,\"z\":-11.5099906921387},\"rot\":{\"x\":359.983154296875,\"y\":0.000155930014443584,\"z\":359.920043945313}},\"677a88\":{\"lock\":false,\"pos\":{\"x\":-33.8202323913574,\"y\":1.66120958328247,\"z\":16.7586078643799},\"rot\":{\"x\":359.393829345703,\"y\":269.9990234375,\"z\":0.0168407447636127}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-40.2050437927246,\"y\":1.63523375988007,\"z\":-7.77354431152344},\"rot\":{\"x\":359.920104980469,\"y\":270.008728027344,\"z\":0.0168547462671995}},\"790c3a\":{\"lock\":false,\"pos\":{\"x\":-17.1199398040771,\"y\":1.62006711959839,\"z\":3.85998702049255},\"rot\":{\"x\":359.920104980469,\"y\":270.000274658203,\"z\":0.0168391242623329}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"7f901e\":{\"lock\":false,\"pos\":{\"x\":-33.5703430175781,\"y\":1.63791847229004,\"z\":-13.4511194229126},\"rot\":{\"x\":359.920104980469,\"y\":269.999969482422,\"z\":0.0168396458029747}},\"a96a99\":{\"lock\":false,\"pos\":{\"x\":-5.41815328598022,\"y\":1.62370681762695,\"z\":-2.43894195556641},\"rot\":{\"x\":0.0168357398360968,\"y\":179.999938964844,\"z\":0.0802559182047844}},\"b2f67d\":{\"lock\":false,\"pos\":{\"x\":-40.2400131225586,\"y\":1.63415777683258,\"z\":-11.6012926101685},\"rot\":{\"x\":359.931579589844,\"y\":314.999816894531,\"z\":359.955413818359}},\"b57f26\":{\"lock\":false,\"pos\":{\"x\":-17.119945526123,\"y\":1.6178103685379,\"z\":-3.83001327514648},\"rot\":{\"x\":359.920074462891,\"y\":270.000366210938,\"z\":0.0170574262738228}},\"b976f6\":{\"lock\":false,\"pos\":{\"x\":-43.3699989318848,\"y\":1.6532735824585,\"z\":-7.70002031326294},\"rot\":{\"x\":359.920104980469,\"y\":270.000183105469,\"z\":0.016839362680912}},\"be7797\":{\"lock\":false,\"pos\":{\"x\":-36.7731857299805,\"y\":1.64407479763031,\"z\":-7.70001935958862},\"rot\":{\"x\":359.920104980469,\"y\":270.000213623047,\"z\":0.0168393291532993}},\"bfc095\":{\"lock\":false,\"pos\":{\"x\":-33.264720916748,\"y\":1.64666676521301,\"z\":17.7659683227539},\"rot\":{\"x\":359.920104980469,\"y\":270.008117675781,\"z\":0.016829950734973}},\"c21137\":{\"lock\":false,\"pos\":{\"x\":-30.220832824707,\"y\":1.6371922492981,\"z\":-0.0298347342759371},\"rot\":{\"x\":359.920104980469,\"y\":269.979156494141,\"z\":0.0168686341494322}},\"ca62fc\":{\"lock\":false,\"pos\":{\"x\":-17.119909286499,\"y\":1.60531914234161,\"z\":-0.0299909822642803},\"rot\":{\"x\":359.983154296875,\"y\":1.91053222806659E-05,\"z\":359.920074462891}},\"d9e9ca\":{\"lock\":false,\"pos\":{\"x\":-43.3699531555176,\"y\":1.65776121616364,\"z\":7.56960582733154},\"rot\":{\"x\":359.920104980469,\"y\":269.998138427734,\"z\":0.0168421883136034}},\"dcb241\":{\"lock\":false,\"pos\":{\"x\":-3.61810564994812,\"y\":1.58212554454803,\"z\":-14.987250328064},\"rot\":{\"x\":359.919738769531,\"y\":270.025085449219,\"z\":0.0168028976768255}},\"dcb5db\":{\"lock\":false,\"pos\":{\"x\":-40.8296585083008,\"y\":1.64187610149384,\"z\":11.8642778396606},\"rot\":{\"x\":359.955413818359,\"y\":224.999725341797,\"z\":0.0683861002326012}},\"f2b1dd\":{\"lock\":false,\"pos\":{\"x\":-14.0998258590698,\"y\":1.6266473531723,\"z\":-5.97682428359985},\"rot\":{\"x\":359.408386230469,\"y\":270.001953125,\"z\":0.0172571241855621}},\"f52a2e\":{\"lock\":false,\"pos\":{\"x\":-36.7731704711914,\"y\":1.65080201625824,\"z\":15.1899909973145},\"rot\":{\"x\":359.920104980469,\"y\":270.000244140625,\"z\":0.0168393030762672}},\"f7e308\":{\"lock\":false,\"pos\":{\"x\":-39.8396644592285,\"y\":1.6392365694046,\"z\":7.5797963142395},\"rot\":{\"x\":359.920104980469,\"y\":270.008636474609,\"z\":0.0168524961918592}},\"fa15cd\":{\"lock\":false,\"pos\":{\"x\":-36.7732353210449,\"y\":1.64184725284576,\"z\":-15.2800159454346},\"rot\":{\"x\":359.920104980469,\"y\":270.000366210938,\"z\":0.0168388821184635}},\"fc5dce\":{\"lock\":false,\"pos\":{\"x\":-33.6138725280762,\"y\":1.62700355052948,\"z\":-4.50444030761719},\"rot\":{\"x\":359.955413818359,\"y\":225.000061035156,\"z\":0.0683787390589714}},\"fe6ec3\":{\"lock\":false,\"pos\":{\"x\":-20.3256988525391,\"y\":1.61053466796875,\"z\":2.50686311721802},\"rot\":{\"x\":359.955200195313,\"y\":225.168899536133,\"z\":0.0682470053434372}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "01a1bf",
"Name": "Deck",
"Transform": {
"posX": -2.68853068,
"posY": 1.61837292,
"posZ": -5.04853439,
"rotX": -2.86953146E-08,
"rotY": 179.999985,
"rotZ": 3.63666857E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
231912,
231911,
231910
],
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d552f6",
"Name": "Card",
"Transform": {
"posX": -9.69691849,
"posY": 1.50093746,
"posZ": -26.1329365,
"rotX": 0.0168717485,
"rotY": 179.999985,
"rotZ": 0.0798770338,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Close All Portals",
"Description": "Act 3",
"GMNotes": "{\n \"id\": \"86013\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231912,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e8a8f4",
"Name": "Card",
"Transform": {
"posX": -9.438414,
"posY": 1.53242874,
"posZ": -26.3099174,
"rotX": -0.00229730317,
"rotY": 179.858627,
"rotZ": 0.06725734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Close the Portal",
"Description": "Act 2",
"GMNotes": "{\n \"id\": \"86012\",\n \"type\": \"Act\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231911,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78ec38",
"Name": "Card",
"Transform": {
"posX": -9.413708,
"posY": 1.56627214,
"posZ": -26.4102135,
"rotX": -0.00158173218,
"rotY": 179.2129,
"rotZ": 0.0670934245,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "War of the Outer Gods",
"Description": "Act 1",
"GMNotes": "{\n \"id\": \"86011\",\n \"type\": \"Act\",\n \"clueThresholdPerInvestigator\": 3,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231910,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "119ff4",
"Name": "Deck",
"Transform": {
"posX": -2.7247088,
"posY": 1.618373,
"posZ": 0.373321921,
"rotX": 4.525357E-07,
"rotY": 180.002731,
"rotZ": -1.36245524E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blue Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
231903,
231902,
231901
],
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "eb72a0",
"Name": "Card",
"Transform": {
"posX": -7.792643,
"posY": 1.4987694,
"posZ": -33.63362,
"rotX": 0.0165955983,
"rotY": 180.002731,
"rotZ": 0.225124851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Summoning Nears Completion",
"Description": "Agenda 3",
"GMNotes": "{\n \"id\": \"86004\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231903,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b1d57",
"Name": "Card",
"Transform": {
"posX": -7.761172,
"posY": 1.53372061,
"posZ": -33.5671158,
"rotX": 0.0338502228,
"rotY": 180.001892,
"rotZ": 0.0916196853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Summoning Progresses",
"Description": "Agenda 2",
"GMNotes": "{\n \"id\": \"86003\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231902,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "67ab8f",
"Name": "Card",
"Transform": {
"posX": -7.59458876,
"posY": 1.56102884,
"posZ": -34.09421,
"rotX": 0.0168766119,
"rotY": 180.010666,
"rotZ": 0.0798862055,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Summoning of Silenus",
"Description": "Agenda 1",
"GMNotes": "{\n \"id\": \"86002\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231901,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "1375c8",
"Name": "Deck",
"Transform": {
"posX": -0.0222441386,
"posY": 1.61837292,
"posZ": 2.874307,
"rotX": -2.1558753E-08,
"rotY": 180.0,
"rotZ": -3.304085E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Green Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
231906,
231905,
231904
],
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d54e23",
"Name": "Card",
"Transform": {
"posX": -10.9142447,
"posY": 1.500015,
"posZ": -35.02883,
"rotX": 359.920074,
"rotY": 270.004822,
"rotZ": 0.016896205,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Incubation Nears Completion",
"Description": "Agenda 3",
"GMNotes": "{\n \"id\": \"86007\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231906,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "97e6e2",
"Name": "Card",
"Transform": {
"posX": -10.9311619,
"posY": 1.53149593,
"posZ": -35.15718,
"rotX": 359.920074,
"rotY": 269.999939,
"rotZ": 0.0168403145,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Incubation Progresses",
"Description": "Agenda 2",
"GMNotes": "{\n \"id\": \"86006\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231905,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb3fbd",
"Name": "Card",
"Transform": {
"posX": -10.83145,
"posY": 1.56546783,
"posZ": -34.64013,
"rotX": 359.9201,
"rotY": 270.000031,
"rotZ": 0.0168597512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Incubation of the Egg",
"Description": "Agenda 1",
"GMNotes": "{\n \"id\": \"86005\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231904,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "1ade36",
"Name": "Card",
"Transform": {
"posX": -3.95591354,
"posY": 1.59660506,
"posZ": -10.4411783,
"rotX": -4.08649157E-07,
"rotY": 270.0001,
"rotZ": 3.99299267E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "War of the Outer Gods",
"GMNotes": "{\"type\": \"ScenarioReference\", \"class\": \"Mythos\", \"tokens\": {\"back\": {\"Cultist\": {\"description\": \"-4. Place 1 resource on each Mutated enemy, as a mutation.\", \"modifier\": -4}, \"Elder Thing\": {\"description\": \"-5. Place each committed to this test facedown underneath an Insect enemy, as a swarm card.\", \"modifier\": -5}, \"Skull\": {\"description\": \"-2 for each clue you have.\", \"modifier\": -2}, \"Tablet\": {\"description\": \"-4. Draw the top Hex card in the encounter discard pile.\", \"modifier\": -4}}, \"front\": {\"Cultist\": {\"description\": \"-3. If you fail, place 1 resource on the nearest Mutated enemy, as a mutation.\", \"modifier\": -3}, \"Elder Thing\": {\"description\": \"-4. If you fail, place one card committed to this test facedown underneath an Insect enemy, as a swarm card.\", \"modifier\": -4}, \"Skull\": {\"description\": \"-1 for each clue you have.\", \"modifier\": -1}, \"Tablet\": {\"description\": \"-3. If you fail, draw the top Hex card in the encounter discard pile.\", \"modifier\": -3}}}, \"id\": \"86001\"}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231800,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "262233",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.53360486,
"posZ": -0.0300092734,
"rotX": -4.28532871E-08,
"rotY": 270.0002,
"rotZ": 2.22741665E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streets of Montréal",
"Description": "Montréal.",
"GMNotes": "{\n \"id\": \"86018\",\n \"type\": \"Location\",\n \"traits\": \"Montréal.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass\",\n \"connections\": \"Triangle|SlantedEquals|Heart\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Hourglass\",\n \"connections\": \"Triangle|SlantedEquals|Heart\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231817,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "363e2d",
"Name": "Deck",
"Transform": {
"posX": -3.9296205,
"posY": 1.6953975,
"posZ": 5.757189,
"rotX": -1.78903463E-07,
"rotY": 270.000122,
"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": [
266405,
266407,
266401,
266519,
266402,
266408,
266401,
266400,
266403,
266424,
266404,
266406,
266406,
266405,
266406,
266408,
266413,
266407,
266403
],
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1dd487",
"Name": "Card",
"Transform": {
"posX": -5.283032,
"posY": 1.74922121,
"posZ": 14.6631155,
"rotX": 359.934418,
"rotY": 270.005554,
"rotZ": 0.0129656848,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feast of Locusts",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"86030\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266405,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c57162",
"Name": "Card",
"Transform": {
"posX": -5.57942867,
"posY": 1.79795063,
"posZ": 15.2084064,
"rotX": 359.933044,
"rotY": 270.005737,
"rotZ": 0.014046384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ravages of War",
"Description": "Terror.",
"GMNotes": "{\n \"id\": \"86032\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266407,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6534ee",
"Name": "Card",
"Transform": {
"posX": -5.221264,
"posY": 1.6723187,
"posZ": 14.9646406,
"rotX": 359.931854,
"rotY": 270.008118,
"rotZ": 0.0143428119,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Death and Decay",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"86026\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266401,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b02f99",
"Name": "Card",
"Transform": {
"posX": -4.88809156,
"posY": 1.85460114,
"posZ": 14.4972639,
"rotX": 359.9198,
"rotY": 270.00528,
"rotZ": 0.01690512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bringer of Paradise",
"Description": "Humanoid. Mutated.",
"GMNotes": "{\n \"id\": \"86044\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Mutated.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266519,
"SidewaysCard": false,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e77a22",
"Name": "Card",
"Transform": {
"posX": -5.106179,
"posY": 1.69153118,
"posZ": 15.57786,
"rotX": 359.9331,
"rotY": 270.0057,
"rotZ": 0.0140096834,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Zealot of Paradise",
"Description": "Humanoid. Cultist.",
"GMNotes": "{\n \"id\": \"86027\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266402,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a0ce2",
"Name": "Card",
"Transform": {
"posX": -5.558526,
"posY": 1.81730676,
"posZ": 15.7366409,
"rotX": 359.932434,
"rotY": 270.006958,
"rotZ": 0.0141723845,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "While They Sleep",
"Description": "Omen.",
"GMNotes": "{\n \"id\": \"86033\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Omen.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266408,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a8d33d",
"Name": "Card",
"Transform": {
"posX": -5.32365036,
"posY": 1.6821177,
"posZ": 15.1975079,
"rotX": 359.933136,
"rotY": 270.005676,
"rotZ": 0.0140097039,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Death and Decay",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"86026\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266401,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "734264",
"Name": "Card",
"Transform": {
"posX": -5.355226,
"posY": 1.6384933,
"posZ": 14.686058,
"rotX": 359.9326,
"rotY": 270.006622,
"rotZ": 0.0141266324,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nihilistic Stargazer",
"Description": "Humanoid. Cultist.",
"GMNotes": "{\n \"id\": \"86025\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266400,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1aac1e",
"Name": "Card",
"Transform": {
"posX": -5.20756626,
"posY": 1.7204572,
"posZ": 15.3412514,
"rotX": 359.933044,
"rotY": 270.005829,
"rotZ": 0.0140242977,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Predator's Call",
"Description": "Scheme.",
"GMNotes": "{\n \"id\": \"86028\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266403,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bb7088",
"Name": "Card",
"Transform": {
"posX": -5.31939268,
"posY": 1.845775,
"posZ": 15.1391506,
"rotX": 359.933136,
"rotY": 270.005737,
"rotZ": 0.0140120666,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trylogog",
"Description": "Creature. Insect.",
"GMNotes": "{\n \"id\": \"86049\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Creature. Insect.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266424,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87a328",
"Name": "Card",
"Transform": {
"posX": -5.231073,
"posY": 1.73964977,
"posZ": 15.3150921,
"rotX": 359.9336,
"rotY": 270.00705,
"rotZ": 0.0127669778,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Disciple of the Swarm",
"Description": "Humanoid. Cultist.",
"GMNotes": "{\n \"id\": \"86029\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266404,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5406f",
"Name": "Card",
"Transform": {
"posX": -5.35723829,
"posY": 1.77832973,
"posZ": 14.839427,
"rotX": 359.9331,
"rotY": 270.005585,
"rotZ": 0.0139907291,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hellfire",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"86031\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266406,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d13cef",
"Name": "Card",
"Transform": {
"posX": -5.37090349,
"posY": 1.76888633,
"posZ": 15.4824677,
"rotX": 359.932465,
"rotY": 270.0069,
"rotZ": 0.0141664864,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hellfire",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"86031\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266406,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a7387c",
"Name": "Card",
"Transform": {
"posX": -5.21771669,
"posY": 1.75911224,
"posZ": 15.6198807,
"rotX": 359.932526,
"rotY": 270.006958,
"rotZ": 0.0141401161,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Feast of Locusts",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"86030\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266405,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b27e86",
"Name": "Card",
"Transform": {
"posX": -5.56949759,
"posY": 1.78815925,
"posZ": 14.6722364,
"rotX": 359.9331,
"rotY": 270.005676,
"rotZ": 0.0140357791,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hellfire",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"86031\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266406,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a11a63",
"Name": "Card",
"Transform": {
"posX": -5.416423,
"posY": 1.82680345,
"posZ": 15.8577557,
"rotX": 359.9331,
"rotY": 270.0056,
"rotZ": 0.0140334079,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "While They Sleep",
"Description": "Omen.",
"GMNotes": "{\n \"id\": \"86033\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Omen.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266408,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf8b76",
"Name": "Card",
"Transform": {
"posX": -5.2414546,
"posY": 1.836176,
"posZ": 15.7856083,
"rotX": 359.933075,
"rotY": 270.005829,
"rotZ": 0.0140454955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Entity",
"Description": "Monster.",
"GMNotes": "{\n \"id\": \"86038\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266413,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2564bc",
"Name": "Card",
"Transform": {
"posX": -5.46495962,
"posY": 1.80756581,
"posZ": 15.71766,
"rotX": 359.9331,
"rotY": 270.005646,
"rotZ": 0.0140350414,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ravages of War",
"Description": "Terror.",
"GMNotes": "{\n \"id\": \"86032\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266407,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cef33d",
"Name": "Card",
"Transform": {
"posX": -5.30529547,
"posY": 1.71093965,
"posZ": 15.5098667,
"rotX": 359.9319,
"rotY": 270.006165,
"rotZ": 0.01211543,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Predator's Call",
"Description": "Scheme.",
"GMNotes": "{\n \"id\": \"86028\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266403,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "36b4eb",
"Name": "Custom_PDF",
"Transform": {
"posX": -1.47178781,
"posY": 1.48149884,
"posZ": -26.93041,
"rotX": -6.993906E-07,
"rotY": 269.98645,
"rotZ": 1.7002119E-06,
"scaleX": 3.0,
"scaleY": 1.0,
"scaleZ": 3.0
},
"Nickname": "War of the Outer Gods",
"Description": "Scenario Guide",
"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/1655600953066105658/A21B91035054BB76F7C10F7FD4FC465C64B41AB2/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "370aa5",
"Name": "Card",
"Transform": {
"posX": -33.3460426,
"posY": 1.53360486,
"posZ": -13.0488472,
"rotX": -6.996575E-08,
"rotY": 270.007751,
"rotZ": 6.857982E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nihilistic Stargazer",
"Description": "Humanoid. Cultist.",
"GMNotes": "{\n \"id\": \"86025\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266400,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "44d047",
"Name": "Card",
"Transform": {
"posX": -14.6150293,
"posY": 1.54725611,
"posZ": -6.00151348,
"rotX": -1.55280086E-05,
"rotY": 270.005371,
"rotZ": 0.7152089,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Zealot of Paradise",
"Description": "Humanoid. Cultist.",
"GMNotes": "{\n \"id\": \"86027\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266402,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "473d21",
"Name": "Card",
"Transform": {
"posX": -36.7731934,
"posY": 1.53360486,
"posZ": 7.569994,
"rotX": -1.38327081E-07,
"rotY": 270.0002,
"rotZ": 3.42400483E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streets of New York City",
"Description": "New York City.",
"GMNotes": "{\n \"id\": \"86021\",\n \"type\": \"Location\",\n \"traits\": \"New York City.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle\",\n \"connections\": \"Triangle|Apostrophe|Crescent\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Circle\",\n \"connections\": \"Triangle|Apostrophe|Crescent\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231820,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "790c3a",
"Name": "Card",
"Transform": {
"posX": -17.1199856,
"posY": 1.53360486,
"posZ": 3.859998,
"rotX": -5.21935931E-07,
"rotY": 270.000244,
"rotZ": 7.241888E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Chateau Ramezay",
"Description": "Montréal.",
"GMNotes": "{\n \"id\": \"86019\",\n \"type\": \"Location\",\n \"traits\": \"Montréal.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Hourglass|Heart\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals\",\n \"connections\": \"Hourglass|Heart\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231818,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69,
"posY": 1.56,
"posZ": 14.24,
"rotX": 0,
"rotY": 225,
"rotZ": 0,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/2038485431565955058/F72FECE5488594A28292C06997A2E28A8B8961C5/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
},
"ContainedObjects": [
{
"GUID": "9629a6",
"Name": "Deck",
"Transform": {
"posX": -0.611438155,
"posY": 3.57168674,
"posZ": -2.14234567,
"rotX": 359.9201,
"rotY": 270.033783,
"rotZ": 0.016827764,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Story Assets",
"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": [
266330,
266329,
266328,
266327,
266326
],
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "a4775a",
"Name": "Card",
"Transform": {
"posX": 9.506208,
"posY": 1.38236022,
"posZ": 67.4075241,
"rotX": 0.0125003066,
"rotY": 270.0,
"rotZ": 180.081848,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Skull",
"Description": "Mask of the Burning Pit",
"GMNotes": "{\n \"id\": \"86055\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Relic.\",\n \"intellectIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266330,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e89f48",
"Name": "Card",
"Transform": {
"posX": 8.931046,
"posY": 1.35624075,
"posZ": 67.108284,
"rotX": 0.01664616,
"rotY": 270.000031,
"rotZ": 180.013428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Blade of Ark'at",
"Description": "Shellblade Tribute",
"GMNotes": "{\n \"id\": \"86054\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Relic. Weapon. Melee.\",\n \"combatIcons\": 2,\n \"wildIcons\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266329,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a94ad",
"Name": "Card",
"Transform": {
"posX": 9.304654,
"posY": 1.34812558,
"posZ": 67.70818,
"rotX": 0.0125906216,
"rotY": 270.0002,
"rotZ": 180.059372,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dreaded End",
"Description": "Gift of the Void",
"GMNotes": "{\n \"id\": \"86053\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Spell.\",\n \"willpowerIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 3,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266328,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35e8e2",
"Name": "Card",
"Transform": {
"posX": 9.563364,
"posY": 1.31308413,
"posZ": 67.6786041,
"rotX": 0.0166467465,
"rotY": 270.0,
"rotZ": 180.013428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pocket Portal",
"Description": "Doorway to Another World",
"GMNotes": "{\n \"id\": \"86052\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 2,\n \"traits\": \"Spell.\",\n \"wildIcons\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266327,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e4ab48",
"Name": "Card",
"Transform": {
"posX": 9.406355,
"posY": 1.281806,
"posZ": 67.53318,
"rotX": 0.0208078716,
"rotY": 269.999725,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cloak of the Outer Realm",
"Description": "Interwoven Distortion",
"GMNotes": "{\n \"id\": \"86051\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"cost\": 1,\n \"traits\": \"Item. Relic. Clothing.\",\n \"agilityIcons\": 2,\n \"wildIcons\": 1,\n \"uses\": [\n {\n \"count\": 4,\n \"type\": \"Charge\",\n \"token\": \"resource\"\n }\n ],\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266326,
"SidewaysCard": false,
"CustomDeck": {
"2663": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "377fcf",
"Name": "Card",
"Transform": {
"posX": 1.69650376,
"posY": 3.66304088,
"posZ": 14.2788191,
"rotX": 359.948059,
"rotY": 224.998062,
"rotZ": 0.0583073571,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hub Dimension",
"Description": "Portal.",
"GMNotes": "{\n \"id\": \"86024\",\n \"type\": \"Location\",\n \"traits\": \"Portal.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231823,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7858d6",
"Name": "Deck",
"Transform": {
"posX": 19.8833828,
"posY": 3.43647122,
"posZ": -42.0585823,
"rotX": 359.920135,
"rotY": 269.999878,
"rotZ": 0.0168780759,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Death of Stars",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266414,
266414,
266414,
266412,
266412,
266411,
266410,
266409,
231924
],
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0c3bee",
"Name": "Card",
"Transform": {
"posX": -1.05677378,
"posY": 1.27542317,
"posZ": 58.70923,
"rotX": 0.0208127536,
"rotY": 269.986,
"rotZ": 0.0167659689,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inevitable End",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"86039\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266414,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6b0726",
"Name": "Card",
"Transform": {
"posX": -1.27603519,
"posY": 1.32405388,
"posZ": 58.736618,
"rotX": 0.0208128281,
"rotY": 269.986,
"rotZ": 0.0167660024,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inevitable End",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"86039\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266414,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "423f46",
"Name": "Card",
"Transform": {
"posX": -1.276045,
"posY": 1.351125,
"posZ": 58.73661,
"rotX": 0.0196247827,
"rotY": 269.986,
"rotZ": 0.01598239,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Inevitable End",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"86039\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266414,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "299533",
"Name": "Card",
"Transform": {
"posX": 8.276789,
"posY": 1.27790856,
"posZ": 55.6197968,
"rotX": 0.0208127536,
"rotY": 269.985962,
"rotZ": 0.0167658627,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Entity",
"Description": "Monster.",
"GMNotes": "{\n \"id\": \"86038\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266412,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e876e",
"Name": "Card",
"Transform": {
"posX": 8.574313,
"posY": 1.327097,
"posZ": 55.2131271,
"rotX": 0.02081265,
"rotY": 269.985962,
"rotZ": 0.0167659484,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Entity",
"Description": "Monster.",
"GMNotes": "{\n \"id\": \"86038\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266412,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8cf2dc",
"Name": "Card",
"Transform": {
"posX": 1.76717234,
"posY": 1.36093748,
"posZ": 64.94693,
"rotX": 0.012921704,
"rotY": 270.000183,
"rotZ": 180.387466,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hune-Stitched Herald",
"Description": "Monster.",
"GMNotes": "{\n \"id\": \"86037\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266411,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb03a3",
"Name": "Card",
"Transform": {
"posX": 1.60241365,
"posY": 1.34354615,
"posZ": 65.20048,
"rotX": 0.01249107,
"rotY": 269.999969,
"rotZ": 180.0139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Inescapable Maw",
"Description": "Servant of Silenus",
"GMNotes": "{\n \"id\": \"86036\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Servitor. Elite.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266410,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "00544c",
"Name": "Card",
"Transform": {
"posX": 1.520298,
"posY": 1.32745636,
"posZ": 65.1756,
"rotX": 0.200688347,
"rotY": 269.966522,
"rotZ": 180.161652,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silenus",
"Description": "The Empty Sky",
"GMNotes": "{\n \"id\": \"86035\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Ancient One. Elite.\",\n \"victory\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266409,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4a08fd",
"Name": "Card",
"Transform": {
"posX": 1.49876606,
"posY": 1.27823639,
"posZ": 65.1494751,
"rotX": 0.0208080523,
"rotY": 270.000977,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Silenus Descends",
"Description": "",
"GMNotes": "{\n \"id\": \"86034\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 9,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231924,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "8113f3",
"Name": "Deck",
"Transform": {
"posX": 18.1746769,
"posY": 3.38543582,
"posZ": -37.5759277,
"rotX": 359.920135,
"rotY": 270.006348,
"rotZ": 0.0168683361,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Swarm of Assimilation",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266425,
266425,
266423,
266423,
266423,
266423,
266422,
266421,
231926
],
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "de8b64",
"Name": "Card",
"Transform": {
"posX": -2.67523026,
"posY": 1.27307081,
"posZ": 52.68095,
"rotX": 0.0208125152,
"rotY": 269.986023,
"rotZ": 0.01676537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Transmogrify",
"Description": "Curse.",
"GMNotes": "{\n \"id\": \"86050\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Curse.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266425,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "99b66c",
"Name": "Card",
"Transform": {
"posX": -2.880732,
"posY": 1.32133031,
"posZ": 53.0297356,
"rotX": 0.0208125729,
"rotY": 269.986023,
"rotZ": 0.0167654473,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Transmogrify",
"Description": "Curse.",
"GMNotes": "{\n \"id\": \"86050\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Curse.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266425,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cd1c9e",
"Name": "Card",
"Transform": {
"posX": -6.75337648,
"posY": 1.28798819,
"posZ": 50.8074532,
"rotX": 0.0208219122,
"rotY": 269.986053,
"rotZ": 0.9045815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trylogog",
"Description": "Creature. Insect.",
"GMNotes": "{\n \"id\": \"86049\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Creature. Insect.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266423,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a92c96",
"Name": "Card",
"Transform": {
"posX": -7.10658264,
"posY": 1.272702,
"posZ": 56.918972,
"rotX": 0.0208125263,
"rotY": 269.986023,
"rotZ": 0.0167659186,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trylogog",
"Description": "Creature. Insect.",
"GMNotes": "{\n \"id\": \"86049\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Creature. Insect.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266423,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "19817e",
"Name": "Card",
"Transform": {
"posX": -7.0555234,
"posY": 1.27190566,
"posZ": 54.1807671,
"rotX": 0.02093617,
"rotY": 269.985321,
"rotZ": 0.0160277933,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trylogog",
"Description": "Creature. Insect.",
"GMNotes": "{\n \"id\": \"86049\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Creature. Insect.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266423,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a926f1",
"Name": "Card",
"Transform": {
"posX": -7.050307,
"posY": 1.29039466,
"posZ": 52.60886,
"rotX": 0.0209484044,
"rotY": 269.986084,
"rotZ": 1.0087986,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trylogog",
"Description": "Creature. Insect.",
"GMNotes": "{\n \"id\": \"86049\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Creature. Insect.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266423,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "482cae",
"Name": "Card",
"Transform": {
"posX": 5.758503,
"posY": 1.34384549,
"posZ": 61.58586,
"rotX": 0.0166502036,
"rotY": 270.000031,
"rotZ": 180.013428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Droning Horde",
"Description": "Monster. Insect. Servitor. Elite.",
"GMNotes": "{\n \"id\": \"86048\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Insect. Servitor. Elite.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266422,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e8b6e",
"Name": "Card",
"Transform": {
"posX": 6.784368,
"posY": 1.31056476,
"posZ": 62.07767,
"rotX": 0.01248212,
"rotY": 270.0,
"rotZ": 180.012344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ezel-zen-rezl",
"Description": "The Lord of Swarms",
"GMNotes": "{\n \"id\": \"86047\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Ancient One. Elite.\",\n \"victory\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266421,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e6bbf7",
"Name": "Card",
"Transform": {
"posX": 6.524274,
"posY": 1.27923238,
"posZ": 62.3168678,
"rotX": 0.0208079666,
"rotY": 269.999939,
"rotZ": 180.016769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ezel-zen-rezl Emerges",
"Description": "",
"GMNotes": "{\n \"id\": \"86046\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 9,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231926,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c4f13b",
"Name": "Deck",
"Transform": {
"posX": 17.9628963,
"posY": 4.3781743,
"posZ": -32.38185,
"rotX": 359.920135,
"rotY": 270.0,
"rotZ": 0.016877139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Children of Paradise",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
266420,
266420,
266420,
266618,
266618,
266417,
266416,
266415,
231925
],
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "284eb9",
"Name": "Card",
"Transform": {
"posX": -5.410508,
"posY": 1.51190054,
"posZ": 31.391201,
"rotX": 359.920135,
"rotY": 269.9998,
"rotZ": 0.0168729443,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunt Down",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"86045\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266420,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33df93",
"Name": "Card",
"Transform": {
"posX": -5.008935,
"posY": 1.54298747,
"posZ": 31.573101,
"rotX": 359.936127,
"rotY": 270.000427,
"rotZ": 0.00687815156,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunt Down",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"86045\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266420,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "17c2a5",
"Name": "Card",
"Transform": {
"posX": -5.324601,
"posY": 1.57723749,
"posZ": 31.09051,
"rotX": 359.9361,
"rotY": 269.9999,
"rotZ": 0.00668786932,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunt Down",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"86045\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266420,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "faa1c1",
"Name": "Card",
"Transform": {
"posX": -4.58372068,
"posY": 1.586677,
"posZ": 30.9924488,
"rotX": 359.940277,
"rotY": 270.006775,
"rotZ": 0.01686764,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bringer of Paradise",
"Description": "Humanoid. Mutated.",
"GMNotes": "{\n \"id\": \"86044\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Mutated.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266618,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e95c7",
"Name": "Card",
"Transform": {
"posX": -4.69468069,
"posY": 1.59572709,
"posZ": 31.4054279,
"rotX": 359.940277,
"rotY": 270.006836,
"rotZ": 0.016805416,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Bringer of Paradise",
"Description": "Humanoid. Mutated.",
"GMNotes": "{\n \"id\": \"86044\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Mutated.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266618,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "598c97",
"Name": "Card",
"Transform": {
"posX": 6.6466403,
"posY": 1.354759,
"posZ": 64.88368,
"rotX": 0.0166438,
"rotY": 270.000061,
"rotZ": 180.013428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Horrific Shoggoth",
"Description": "Monster. Shoggoth. Mutated.",
"GMNotes": "{\n \"id\": \"86043\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Shoggoth. Mutated.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266417,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e6103a",
"Name": "Card",
"Transform": {
"posX": 7.03003931,
"posY": 1.34534276,
"posZ": 65.2210846,
"rotX": 0.0166490432,
"rotY": 270.0,
"rotZ": 180.013412,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vile Broodmaster",
"Description": "Grotesque Abomination",
"GMNotes": "{\n \"id\": \"86042\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Servitor. Mutated. Elite.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266416,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "32978f",
"Name": "Card",
"Transform": {
"posX": -5.602829,
"posY": 1.65232134,
"posZ": 28.77662,
"rotX": 359.920135,
"rotY": 269.997925,
"rotZ": 358.971069,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Maghan Arkat",
"Description": "The Child of Paradise",
"GMNotes": "{\n \"id\": \"86041\",\n \"type\": \"Enemy\",\n \"traits\": \"Ancient One. Mutated. Elite.\",\n \"victory\": 2,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266415,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "74767c",
"Name": "Card",
"Transform": {
"posX": -5.60276842,
"posY": 1.59410179,
"posZ": 28.7766075,
"rotX": 359.920135,
"rotY": 269.999969,
"rotZ": 0.0168741643,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Egg Hatches",
"Description": "",
"GMNotes": "{\n \"id\": \"86040\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"doomThreshold\": 9,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231925,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "a96a99",
"Name": "Deck",
"Transform": {
"posX": -5.41821146,
"posY": 1.61837292,
"posZ": -2.43893051,
"rotX": -2.95829161E-09,
"rotY": 179.999954,
"rotZ": 1.7195643E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Red Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
231909,
231908,
231907
],
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "0d5c1c",
"Name": "Card",
"Transform": {
"posX": -10.0484533,
"posY": 1.50172663,
"posZ": -25.1169147,
"rotX": 359.920135,
"rotY": 269.999817,
"rotZ": 0.01687282,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Proliferation Nears Completion",
"Description": "Agenda 3",
"GMNotes": "{\n \"id\": \"86010\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231909,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "07021f",
"Name": "Card",
"Transform": {
"posX": -9.940212,
"posY": 1.54374814,
"posZ": -25.16713,
"rotX": 359.920135,
"rotY": 269.999084,
"rotZ": 0.0168739911,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Proliferation Progresses",
"Description": "Agenda 2",
"GMNotes": "{\n \"id\": \"86009\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231908,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9da423",
"Name": "Card",
"Transform": {
"posX": -9.852399,
"posY": 1.56688607,
"posZ": -25.3129272,
"rotX": 359.920135,
"rotY": 269.999084,
"rotZ": 0.0168961678,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Proliferation of the Swarm",
"Description": "Agenda 1",
"GMNotes": "{\n \"id\": \"86008\",\n \"type\": \"Agenda\",\n \"class\": \"Mythos\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 231907,
"SidewaysCard": true,
"CustomDeck": {
"2319": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b57f26",
"Name": "Card",
"Transform": {
"posX": -17.1199837,
"posY": 1.533594,
"posZ": -3.830008,
"rotX": 7.103593E-05,
"rotY": 270.000427,
"rotZ": -0.0007100921,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrine of Maghan Arkat",
"Description": "Ritual Site. Montréal.",
"GMNotes": "{\n \"id\": \"86020\",\n \"type\": \"Location\",\n \"traits\": \"Ritual Site. Montréal.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Hourglass|SlantedEquals\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231819,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b976f6",
"Name": "Card",
"Transform": {
"posX": -43.37002,
"posY": 1.53360486,
"posZ": -7.700019,
"rotX": 9.674929E-09,
"rotY": 270.000183,
"rotZ": -1.4217207E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Arcade",
"Description": "Providence.",
"GMNotes": "{\n \"id\": \"86017\",\n \"type\": \"Location\",\n \"traits\": \"Providence.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tee\",\n \"connections\": \"Star|Tilde\"\n },\n \"locationBack\": {\n \"icons\": \"Tee\",\n \"connections\": \"Star|Tilde\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231816,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be7797",
"Name": "Card",
"Transform": {
"posX": -36.773243,
"posY": 1.53360486,
"posZ": -7.70000935,
"rotX": -2.68721116E-08,
"rotY": 270.000244,
"rotZ": -3.95504252E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streets of Providence",
"Description": "Providence.",
"GMNotes": "{\n \"id\": \"86015\",\n \"type\": \"Location\",\n \"traits\": \"Providence.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star\",\n \"connections\": \"Triangle|Tee|Tilde\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Star\",\n \"connections\": \"Triangle|Tee|Tilde\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231814,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bfc095",
"Name": "Card",
"Transform": {
"posX": -33.2650375,
"posY": 1.56868374,
"posZ": 17.7655258,
"rotX": -0.000322619715,
"rotY": 270.022644,
"rotZ": 1.83759534,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Disciple of the Swarm",
"Description": "Humanoid. Cultist.",
"GMNotes": "{\n \"id\": \"86029\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Humanoid. Cultist.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 266404,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065965648/5A0D88CCA811A490C2FEF2675A397E1CEE010870/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c21137",
"Name": "Card",
"Transform": {
"posX": -30.2208958,
"posY": 1.53360486,
"posZ": -0.0298229735,
"rotX": -6.46887059E-08,
"rotY": 269.9792,
"rotZ": 2.5475282E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham",
"Description": "Ritual Site. Town.",
"GMNotes": "{\n \"id\": \"86014\",\n \"type\": \"Location\",\n \"traits\": \"Ritual Site. Town.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Circle|Star|Hourglass\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle\",\n \"connections\": \"Circle|Star|Hourglass\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231813,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d9e9ca",
"Name": "Card",
"Transform": {
"posX": -43.37002,
"posY": 1.53360486,
"posZ": 7.569627,
"rotX": -9.521035E-09,
"rotY": 269.9981,
"rotZ": 1.48634163E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Penthouse",
"Description": "New York City.",
"GMNotes": "{\n \"id\": \"86023\",\n \"type\": \"Location\",\n \"traits\": \"New York City.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Circle|Apostrophe\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Circle|Apostrophe\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231822,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dcb241",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.6181047,
"posY": 1.58300042,
"posZ": -14.9872541,
"rotX": -2.70055153E-07,
"rotY": 270.025024,
"rotZ": 3.58075539E-07,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "War of the Outer Gods",
"Description": "click to set chaos token difficulty",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "name = 'WotOG'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f52a2e",
"Name": "Card",
"Transform": {
"posX": -36.7732239,
"posY": 1.53360486,
"posZ": 15.1900082,
"rotX": -2.96131741E-09,
"rotY": 270.000183,
"rotZ": -1.25526256E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Burning Pit",
"Description": "Ritual Site. New York City.",
"GMNotes": "{\n \"id\": \"86022\",\n \"type\": \"Location\",\n \"traits\": \"Ritual Site. New York City.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Apostrophe\",\n \"connections\": \"Circle|Crescent\"\n },\n \"locationBack\": {\n \"icons\": \"Apostrophe\",\n \"connections\": \"Circle|Crescent\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231821,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa15cd",
"Name": "Card",
"Transform": {
"posX": -36.77329,
"posY": 1.53360486,
"posZ": -15.2800093,
"rotX": -7.487614E-09,
"rotY": 270.000366,
"rotZ": 3.22523377E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Athenaeum of the Empty Sky",
"Description": "Ritual Site. Providence.",
"GMNotes": "{\n \"id\": \"86016\",\n \"type\": \"Location\",\n \"traits\": \"Ritual Site. Providence.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Star|Tee\"\n },\n \"locationBack\": {\n \"icons\": \"Tilde\",\n \"connections\": \"Star|Tee\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 231815,
"SidewaysCard": false,
"CustomDeck": {
"2318": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967247/5DF91FC3666972D2915F2856464EACC3E5F1F5C3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1655600953065967466/52BDF162F655D678FAAFA2352732BFDBC247CE44/",
"NumWidth": 6,
"NumHeight": 5,
"BackIsHidden": true,
"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
}
}
]
}