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

9342 lines
302 KiB
JSON

{
"GUID": "ec74df",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 9.63514,
"posY": 1.46073842,
"posZ": -24.9217987,
"rotX": 359.9201,
"rotY": 270.017883,
"rotZ": 0.016849475,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Cosmic Pantheon",
"Description": "Mint Tea Fan & Hauke",
"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": true,
"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/1844797993644656426/EC19A65BD3119D5FA229F502D65D1D8DAA9E0ECB/",
"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\":{\"026884\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"0916a7\":{\"lock\":false,\"pos\":{\"x\":-39.8587,\"y\":1.6557,\"z\":17.3168},\"rot\":{\"x\":359.9201,\"y\":270.0876,\"z\":0.0167}},\"102eed\":{\"lock\":false,\"pos\":{\"x\":-43.3701,\"y\":1.6533,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"14757f\":{\"lock\":false,\"pos\":{\"x\":-40.1617,\"y\":1.6341,\"z\":-11.4772},\"rot\":{\"x\":0.0684,\"y\":134.9983,\"z\":0.0446}},\"1dae6f\":{\"lock\":false,\"pos\":{\"x\":-17.1199,\"y\":1.6201,\"z\":3.8604},\"rot\":{\"x\":359.9201,\"y\":270.0001,\"z\":180.0168}},\"20761e\":{\"lock\":false,\"pos\":{\"x\":-20.3595,\"y\":1.6092,\"z\":-2.1798},\"rot\":{\"x\":0.0682,\"y\":135.2074,\"z\":0.0448}},\"224719\":{\"lock\":false,\"pos\":{\"x\":-40.2157,\"y\":1.646,\"z\":-17.5792},\"rot\":{\"x\":359.9201,\"y\":270.0246,\"z\":0.0168}},\"24ec75\":{\"lock\":false,\"pos\":{\"x\":-33.864,\"y\":1.6276,\"z\":-3.5193},\"rot\":{\"x\":359.9554,\"y\":225.0005,\"z\":0.0684}},\"26faf8\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.7011,\"z\":5.7564},\"rot\":{\"x\":359.9197,\"y\":269.9695,\"z\":180.0169}},\"324649\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.0298},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"35d78a\":{\"lock\":false,\"pos\":{\"x\":-0.2631,\"y\":1.618,\"z\":2.7825},\"rot\":{\"x\":359.9197,\"y\":270.0023,\"z\":0.0168}},\"387a8c\":{\"lock\":false,\"pos\":{\"x\":-40.1074,\"y\":1.6351,\"z\":-7.7231},\"rot\":{\"x\":359.9201,\"y\":269.9951,\"z\":0.0169}},\"398981\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6053,\"z\":-0.03},\"rot\":{\"x\":0.0168,\"y\":179.9998,\"z\":0.0799}},\"402dc8\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6178,\"z\":-3.83},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":180.0168}},\"4b54bb\":{\"lock\":false,\"pos\":{\"x\":-36.8624,\"y\":1.6647,\"z\":15.2401},\"rot\":{\"x\":359.4041,\"y\":270.0047,\"z\":180.0169}},\"4bf4a2\":{\"lock\":false,\"pos\":{\"x\":-5.2724,\"y\":1.6236,\"z\":-2.2218},\"rot\":{\"x\":359.9197,\"y\":269.9948,\"z\":0.0168}},\"4cb4c7\":{\"lock\":false,\"pos\":{\"x\":-40.1502,\"y\":1.6397,\"z\":7.5151},\"rot\":{\"x\":359.9201,\"y\":269.9831,\"z\":0.0169}},\"551500\":{\"lock\":false,\"pos\":{\"x\":-8.3024,\"y\":1.4859,\"z\":-24.3237},\"rot\":{\"x\":359.9201,\"y\":270.0117,\"z\":0.0169}},\"56ef18\":{\"lock\":false,\"pos\":{\"x\":-36.8813,\"y\":1.6487,\"z\":7.614},\"rot\":{\"x\":359.9201,\"y\":270.0022,\"z\":180.0168}},\"5c3eef\":{\"lock\":false,\"pos\":{\"x\":-33.8928,\"y\":1.6297,\"z\":3.4873},\"rot\":{\"x\":0.0684,\"y\":135.0003,\"z\":0.0446}},\"5e8934\":{\"lock\":false,\"pos\":{\"x\":35.6586,\"y\":1.4707,\"z\":-26.3579},\"rot\":{\"x\":0.0169,\"y\":180.0107,\"z\":0.0819}},\"63341d\":{\"lock\":false,\"pos\":{\"x\":-2.6886,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":180.0319,\"z\":0.0803}},\"646a0f\":{\"lock\":false,\"pos\":{\"x\":-43.3701,\"y\":1.6578,\"z\":7.5696},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":180.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.3778,\"y\":1.6105,\"z\":2.2238},\"rot\":{\"x\":359.9554,\"y\":224.9946,\"z\":0.0684}},\"76ff17\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6293,\"z\":-11.51},\"rot\":{\"x\":0.0168,\"y\":180.0158,\"z\":0.0799}},\"77f364\":{\"lock\":false,\"pos\":{\"x\":-13.9762,\"y\":1.6128,\"z\":-5.8857},\"rot\":{\"x\":359.9201,\"y\":269.9994,\"z\":0.0168}},\"7de8a9\":{\"lock\":false,\"pos\":{\"x\":1.6792,\"y\":1.5584,\"z\":14.3254},\"rot\":{\"x\":359.9533,\"y\":226.4892,\"z\":0.0675}},\"81e9dd\":{\"lock\":false,\"pos\":{\"x\":-7.1624,\"y\":1.5881,\"z\":-11.4125},\"rot\":{\"x\":359.9197,\"y\":270.0004,\"z\":0.0168}},\"863e58\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6418,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.0019,\"z\":180.0168}},\"91d08c\":{\"lock\":false,\"pos\":{\"x\":-7.1624,\"y\":1.5876,\"z\":-13.1218},\"rot\":{\"x\":359.9197,\"y\":270.0006,\"z\":0.0168}},\"a2345b\":{\"lock\":false,\"pos\":{\"x\":-3.3388,\"y\":1.5818,\"z\":-14.7675},\"rot\":{\"x\":359.9197,\"y\":270.0251,\"z\":0.0168}},\"a78ab1\":{\"lock\":false,\"pos\":{\"x\":-36.7731,\"y\":1.6361,\"z\":11.46},\"rot\":{\"x\":0.0168,\"y\":180.0149,\"z\":0.0799}},\"aa4062\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4414},\"rot\":{\"x\":359.9197,\"y\":269.9997,\"z\":0.0168}},\"ac5f52\":{\"lock\":false,\"pos\":{\"x\":-8.2215,\"y\":1.4965,\"z\":-34.5062},\"rot\":{\"x\":0,\"y\":270.0227,\"z\":359.9601}},\"b4efbf\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6281,\"z\":-0.0298},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"b827a6\":{\"lock\":false,\"pos\":{\"x\":-7.1624,\"y\":1.5871,\"z\":-14.8311},\"rot\":{\"x\":359.9197,\"y\":270.0017,\"z\":0.0168}},\"b85392\":{\"lock\":false,\"pos\":{\"x\":-26.9335,\"y\":1.619,\"z\":0.0161},\"rot\":{\"x\":359.9201,\"y\":269.9741,\"z\":0.0169}},\"cc8bbb\":{\"lock\":false,\"pos\":{\"x\":-7.1624,\"y\":1.5886,\"z\":-9.7032},\"rot\":{\"x\":359.9197,\"y\":269.9966,\"z\":0.0168}},\"ea718b\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6508,\"z\":15.1901},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":180.0168}},\"eb234e\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6486,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":180.0168}},\"eb3956\":{\"lock\":false,\"pos\":{\"x\":-2.7247,\"y\":1.6208,\"z\":0.3732},\"rot\":{\"x\":359.9197,\"y\":270.0182,\"z\":0.0168}},\"efe16f\":{\"lock\":false,\"pos\":{\"x\":-39.9553,\"y\":1.6405,\"z\":11.3031},\"rot\":{\"x\":359.9554,\"y\":225.0038,\"z\":0.0684}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "cc8bbb",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.1623745,
"posY": 1.58864248,
"posZ": -9.7032,
"rotX": 359.919739,
"rotY": 269.996643,
"rotZ": 0.0168455187,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Eldritch",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1843673943717889146/2806FFB2264CF06A7C454B5500AAB66DB1BE9212/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "81e9dd",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.16237831,
"posY": 1.58814025,
"posZ": -11.4125147,
"rotX": 359.919739,
"rotY": 270.0004,
"rotZ": 0.0168421455,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Triangle",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1843673943717918706/011B27F1B9241A800CAB2E71D487BA4BCB23686A/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "91d08c",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.162434,
"posY": 1.587638,
"posZ": -13.1217966,
"rotX": 359.919739,
"rotY": 270.000641,
"rotZ": 0.0168386828,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Comet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1843673943717919480/D810E4DED165EEA68863C672EF0CE21FC1417A5F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b827a6",
"Name": "Custom_Tile",
"Transform": {
"posX": -7.16242933,
"posY": 1.58713579,
"posZ": -14.8311024,
"rotX": 359.919739,
"rotY": 270.0017,
"rotZ": 0.016841853,
"scaleX": 0.47372523,
"scaleY": 1.0,
"scaleZ": 0.47372523
},
"Nickname": "Ruin",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/1843673943717920201/A7ABFBDFB8246E539CE6961D5861163F25FEB618/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "026884",
"Name": "CardCustom",
"Transform": {
"posX": -36.7733,
"posY": 1.644075,
"posZ": -7.70000029,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streets of Brichester",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 745200,
"SidewaysCard": false,
"CustomDeck": {
"7452": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462235041/3217F4AEB1355E21A7923D12097EEB361261A10A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462235222/B01E61E398B3E59BFC184D39CA556361418E8B15/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0916a7",
"Name": "CardCustom",
"Transform": {
"posX": -39.8587,
"posY": 1.65571213,
"posZ": 17.3168011,
"rotX": 359.920258,
"rotY": 270.087555,
"rotZ": 0.0155382855,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Servant of the Black Goat",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 618200,
"SidewaysCard": false,
"CustomDeck": {
"6182": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462298030/3498CC360DDEACB495580F3C8C1DBDA0AD9C0945/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "102eed",
"Name": "CardCustom",
"Transform": {
"posX": -43.3701,
"posY": 1.65327382,
"posZ": -7.70000029,
"rotX": 359.9201,
"rotY": 270.000061,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mercy Hill",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 745300,
"SidewaysCard": false,
"CustomDeck": {
"7453": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462237241/FE30CDE3111AFE89D1EF00BA600E6AE07CC95E5E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462237421/85D4E8F65097520C090B5024B48EB55DB3C5C265/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14757f",
"Name": "Custom_Tile",
"Transform": {
"posX": -40.161705,
"posY": 1.63408494,
"posZ": -11.4772005,
"rotX": 0.06840639,
"rotY": 134.99826,
"rotZ": 0.04457966,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "1dae6f",
"Name": "CardCustom",
"Transform": {
"posX": -17.1199,
"posY": 1.62006712,
"posZ": 3.86040044,
"rotX": 359.9201,
"rotY": 270.000061,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Teatro Massimo",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 745400,
"SidewaysCard": false,
"CustomDeck": {
"7454": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462231650/300F5ED1E2735F18F4DC44BC689520CE2CD25283/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462232166/D93EC9C40404872E90CDE66096DEA9BB803E268A/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "20761e",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.359499,
"posY": 1.60920441,
"posZ": -2.1798,
"rotX": 0.0682475045,
"rotY": 135.207367,
"rotZ": 0.04483201,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "224719",
"Name": "CardCustom",
"Transform": {
"posX": -40.2157,
"posY": 1.64597178,
"posZ": -17.5792,
"rotX": 359.9201,
"rotY": 270.024719,
"rotZ": 0.01680382,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Veiled Venerator",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 746300,
"SidewaysCard": false,
"CustomDeck": {
"7463": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628338061/9628DC8487CCC653839D0B39DAEBF318FDFC6237/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "24ec75",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.864,
"posY": 1.62764192,
"posZ": -3.5193,
"rotX": 359.9554,
"rotY": 225.0005,
"rotZ": 0.06838112,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "26faf8",
"Name": "Deck",
"Transform": {
"posX": -3.92790055,
"posY": 1.70105231,
"posZ": 5.75640059,
"rotX": 359.919739,
"rotY": 269.9695,
"rotZ": 180.016876,
"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
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": [
266406,
266408,
746500,
615400,
747700,
746700,
266407,
614100,
266408,
618300,
613800,
746800,
745700,
747600,
746600,
266406,
266407,
609200,
266406
],
"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
},
"7465": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628340035/4B18E8C865363DFB8B011181362D90FC9C7707BC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6154": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462282318/ADE262299557773D28E78E36B27E8C6BB1E7DC1E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603017906/A4E5AFDCCDAF20FC0011EC2D4B85E1FD53ABE1B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7467": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628344406/2A4AC571D10804443AB760EC62D81E364AA9F57C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6141": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462263260/DE650990E766A1B07247C584A8216FBEF468E40A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6183": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462298612/E873A6B37BFE2DA2C0F69BBDA683E3E0AA3943BA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6138": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462261095/A9D27C47F1C3D49AABD5DD54BD4C80C2F707ACD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7468": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628344954/56E6F2150F06CE645BC5B13CBBE434D94381C380/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7457": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161254013/B95B605E9EC76D6533B6D839B8BF08C3460252EC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603017213/BE01A79E64CBF6F2BD36D81C1C7D5D1B482568F4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7466": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628343346/FF8EE924CECF3D65386DBD032BD83C379B839782/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6092": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161246466/EE1AE8344E12327B89BEC361F667B5878CD70211/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b05142",
"Name": "Card",
"Transform": {
"posX": -3.927688,
"posY": 1.817364,
"posZ": 5.757116,
"rotX": 359.9378,
"rotY": 269.9994,
"rotZ": 180.016022,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hellfire",
"Description": "Hazard.",
"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": 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": -11.0719595,
"posY": 1.60986745,
"posZ": -2.14969349,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "While They Sleep",
"Description": "Omen.",
"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": 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": "58cf2e",
"Name": "CardCustom",
"Transform": {
"posX": -3.92865849,
"posY": 1.96958613,
"posZ": 5.7561903,
"rotX": 0.0146631356,
"rotY": 270.008728,
"rotZ": 188.596924,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Veiled Venerator",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 746500,
"SidewaysCard": false,
"CustomDeck": {
"7465": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628340035/4B18E8C865363DFB8B011181362D90FC9C7707BC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "23a5f8",
"Name": "CardCustom",
"Transform": {
"posX": -9.289362,
"posY": 1.61095619,
"posZ": 9.989654,
"rotX": 359.920624,
"rotY": 269.999878,
"rotZ": 0.0173176583,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrouded Reality",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 615400,
"SidewaysCard": false,
"CustomDeck": {
"6154": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462282318/ADE262299557773D28E78E36B27E8C6BB1E7DC1E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "18c5d5",
"Name": "CardCustom",
"Transform": {
"posX": -4.341979,
"posY": 2.8219924,
"posZ": 5.407207,
"rotX": 359.9201,
"rotY": 270.023,
"rotZ": 0.0168075226,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cataclysm (Earthquake)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747700,
"SidewaysCard": false,
"CustomDeck": {
"7477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603017906/A4E5AFDCCDAF20FC0011EC2D4B85E1FD53ABE1B8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "333530",
"Name": "CardCustom",
"Transform": {
"posX": -9.08964,
"posY": 1.60809362,
"posZ": 1.19099462,
"rotX": 359.920929,
"rotY": 269.9997,
"rotZ": 0.0173304547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Offering",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 746700,
"SidewaysCard": false,
"CustomDeck": {
"7467": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628344406/2A4AC571D10804443AB760EC62D81E364AA9F57C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2564bc",
"Name": "Card",
"Transform": {
"posX": -11.0721312,
"posY": 1.6065979,
"posZ": -13.2755413,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ravages of War",
"Description": "Terror.",
"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": 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": "e87909",
"Name": "CardCustom",
"Transform": {
"posX": -13.6774311,
"posY": 1.521098,
"posZ": 23.48697,
"rotX": 359.920135,
"rotY": 270.002258,
"rotZ": 0.0168687347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flying Polyps",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 614100,
"SidewaysCard": false,
"CustomDeck": {
"6141": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462263260/DE650990E766A1B07247C584A8216FBEF468E40A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a0ce2",
"Name": "Card",
"Transform": {
"posX": -11.0718861,
"posY": 1.61117458,
"posZ": 2.29833555,
"rotX": 359.9201,
"rotY": 269.999939,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "While They Sleep",
"Description": "Omen.",
"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": 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": "527fee",
"Name": "CardCustom",
"Transform": {
"posX": -8.45245552,
"posY": 1.61141264,
"posZ": 15.4336224,
"rotX": 359.921661,
"rotY": 270.000031,
"rotZ": 0.0176077541,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Servant of the Black Goat",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 618300,
"SidewaysCard": false,
"CustomDeck": {
"6183": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462298612/E873A6B37BFE2DA2C0F69BBDA683E3E0AA3943BA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c25322",
"Name": "CardCustom",
"Transform": {
"posX": -13.676795,
"posY": 1.52043235,
"posZ": 21.229599,
"rotX": 359.920135,
"rotY": 269.998138,
"rotZ": 0.0168749038,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Siren of the Sphere",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 613800,
"SidewaysCard": false,
"CustomDeck": {
"6138": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462261095/A9D27C47F1C3D49AABD5DD54BD4C80C2F707ACD5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b382ec",
"Name": "CardCustom",
"Transform": {
"posX": -8.989487,
"posY": 1.60706079,
"posZ": -1.853116,
"rotX": 359.921082,
"rotY": 270.0,
"rotZ": 0.0173247233,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Offering",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 746800,
"SidewaysCard": false,
"CustomDeck": {
"7468": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628344954/56E6F2150F06CE645BC5B13CBBE434D94381C380/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "639738",
"Name": "CardCustom",
"Transform": {
"posX": -12.4518223,
"posY": 1.61535919,
"posZ": 9.989647,
"rotX": 359.9201,
"rotY": 269.999939,
"rotZ": 0.0168396533,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Yarkdao Brute",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 745700,
"SidewaysCard": false,
"CustomDeck": {
"6097": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161254013/B95B605E9EC76D6533B6D839B8BF08C3460252EC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fac4d5",
"Name": "CardCustom",
"Transform": {
"posX": -4.34337044,
"posY": 2.82264972,
"posZ": 8.052436,
"rotX": 359.9201,
"rotY": 270.014465,
"rotZ": 0.0168193951,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cataclysm (Tornado)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747600,
"SidewaysCard": false,
"CustomDeck": {
"7476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603017213/BE01A79E64CBF6F2BD36D81C1C7D5D1B482568F4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "faafb3",
"Name": "CardCustom",
"Transform": {
"posX": -8.931627,
"posY": 1.608541,
"posZ": 3.454594,
"rotX": 359.921173,
"rotY": 269.9994,
"rotZ": 0.0173163582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gof'nn Hupadgh",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 746600,
"SidewaysCard": false,
"CustomDeck": {
"7466": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628343346/FF8EE924CECF3D65386DBD032BD83C379B839782/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b27e86",
"Name": "Card",
"Transform": {
"posX": -11.0725451,
"posY": 1.50074744,
"posZ": -33.2913628,
"rotX": 359.920135,
"rotY": 270.000031,
"rotZ": 180.016861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hellfire",
"Description": "Hazard.",
"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": 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": "c57162",
"Name": "Card",
"Transform": {
"posX": -11.0717287,
"posY": 1.61378884,
"posZ": 11.1943913,
"rotX": 359.9201,
"rotY": 269.999939,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ravages of War",
"Description": "Terror.",
"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": 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": "1ac35c",
"Name": "CardCustom",
"Transform": {
"posX": -12.4518242,
"posY": 1.61469591,
"posZ": 7.7330246,
"rotX": 359.9201,
"rotY": 270.000122,
"rotZ": 0.016839454,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrouded Reality",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 609200,
"SidewaysCard": false,
"CustomDeck": {
"6092": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161246466/EE1AE8344E12327B89BEC361F667B5878CD70211/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d13cef",
"Name": "Card",
"Transform": {
"posX": -11.0721121,
"posY": 1.60725319,
"posZ": -11.0457506,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hellfire",
"Description": "Hazard.",
"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": 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": "324649",
"Name": "CardCustom",
"Transform": {
"posX": -30.2243,
"posY": 1.637197,
"posZ": -0.0297998544,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Selene",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 746900,
"SidewaysCard": false,
"CustomDeck": {
"7469": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462228918/07DEF58270DAD1B7FB113A4A2F23B548FDFA9660/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628345784/894971F822F591FB1461D92F88EFE989629A5F25/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35d78a",
"Name": "Deck",
"Transform": {
"posX": -0.26309976,
"posY": 1.61802042,
"posZ": 2.78249979,
"rotX": 359.919739,
"rotY": 270.0023,
"rotZ": 0.0168342274,
"scaleX": 0.6923038,
"scaleY": 1.0,
"scaleZ": 0.6923038
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": [
747100,
613000,
612900
],
"CustomDeck": {
"7471": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161189465/F4AFE1CDAFEDC0B14F5B9825EDE20699554BB85E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628348170/A71F89BB13160D81FCF725D1B63E8F4FC91C7461/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6130": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462248225/89DB620D005D0D027F9CA1B24786B605EF5AE9DD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161188904/E61F83B8377ECC2B179626A5995BAF9FAA557707/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6129": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161187945/A33E940B922B2FC0781973A910486F30223407F5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462247538/3069CB1359F23938A3EF7FCE639D34ACE892350C/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8ebbf1",
"Name": "CardCustom",
"Transform": {
"posX": -0.2630961,
"posY": 1.596312,
"posZ": 2.78249812,
"rotX": 359.919159,
"rotY": 270.00293,
"rotZ": 0.01942917,
"scaleX": 0.6923038,
"scaleY": 1.0,
"scaleZ": 0.6923038
},
"Nickname": "The Convulsion Nears Completion",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747100,
"SidewaysCard": false,
"CustomDeck": {
"7471": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161189465/F4AFE1CDAFEDC0B14F5B9825EDE20699554BB85E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628348170/A71F89BB13160D81FCF725D1B63E8F4FC91C7461/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14e8a5",
"Name": "CardCustom",
"Transform": {
"posX": 0.0703259259,
"posY": 1.63789868,
"posZ": 2.96932,
"rotX": 359.921478,
"rotY": 270.0006,
"rotZ": 0.0154642025,
"scaleX": 0.6923038,
"scaleY": 1.0,
"scaleZ": 0.6923038
},
"Nickname": "The Convulsion Progresses",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 613000,
"SidewaysCard": false,
"CustomDeck": {
"6130": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462248225/89DB620D005D0D027F9CA1B24786B605EF5AE9DD/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161188904/E61F83B8377ECC2B179626A5995BAF9FAA557707/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b5082",
"Name": "CardCustom",
"Transform": {
"posX": -0.42593354,
"posY": 1.67251837,
"posZ": 3.09341359,
"rotX": 359.919464,
"rotY": 270.0015,
"rotZ": 0.01663785,
"scaleX": 0.6923038,
"scaleY": 1.0,
"scaleZ": 0.6923038
},
"Nickname": "The Convulsion of Nature",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 612900,
"SidewaysCard": false,
"CustomDeck": {
"6129": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161187945/A33E940B922B2FC0781973A910486F30223407F5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462247538/3069CB1359F23938A3EF7FCE639D34ACE892350C/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "387a8c",
"Name": "Custom_Tile",
"Transform": {
"posX": -40.1074,
"posY": 1.63511252,
"posZ": -7.723101,
"rotX": 359.9201,
"rotY": 269.9951,
"rotZ": 0.0168737266,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "398981",
"Name": "Custom_Tile",
"Transform": {
"posX": -17.12,
"posY": 1.6053189,
"posZ": -0.0299997423,
"rotX": 0.01683959,
"rotY": 179.999741,
"rotZ": 0.0799407139,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "402dc8",
"Name": "CardCustom",
"Transform": {
"posX": -17.12,
"posY": 1.61780715,
"posZ": -3.82999969,
"rotX": 359.9201,
"rotY": 269.9997,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mount Etna",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 745900,
"SidewaysCard": false,
"CustomDeck": {
"7459": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462233649/1A13285BE27D802729D80D1B97A84A3570146D2D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462233883/7DAAB4AEADF4E5A1715AC043BA8EFD0F480FA57D/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4b54bb",
"Name": "CardCustom",
"Transform": {
"posX": -36.8624,
"posY": 1.66473,
"posZ": 15.2401018,
"rotX": 359.404022,
"rotY": 270.004669,
"rotZ": 180.016953,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Walpurga's Glade",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 746200,
"SidewaysCard": false,
"CustomDeck": {
"7462": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1843673943717930414/76481D94E32745E017C01F88888C5E82AAFD636C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462242353/8A94FDF88B31B917D306560C3C909C0CCC9D616F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4bf4a2",
"Name": "Deck",
"Transform": {
"posX": -5.27240038,
"posY": 1.62356651,
"posZ": -2.22180057,
"rotX": 359.919739,
"rotY": 269.9948,
"rotZ": 0.0168447513,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": [
747300,
613500,
613400
],
"CustomDeck": {
"7473": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462258922/535E38F8B7C467D117308F64EF69B4444143FE99/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628350313/7481872A75363CF30E5B4250963D5815837B8082/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6135": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462257700/446A790E667ADA5221CAB245C61392A92F6F98C9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462258221/9CA9E7AFA7DF789B95327383B0689ABFF7E85B66/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6134": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161270281/4E76A44394207EF57114C6BB2FF27815FF301630/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462256056/E0E53639F7491E49DD5794BEEA2B019E5E30551C/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b6da8a",
"Name": "CardCustom",
"Transform": {
"posX": -5.27245235,
"posY": 1.6017071,
"posZ": -2.22180128,
"rotX": 359.9211,
"rotY": 269.9944,
"rotZ": 0.0124075729,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "The Rebirth Nears Completion",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747300,
"SidewaysCard": false,
"CustomDeck": {
"7473": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462258922/535E38F8B7C467D117308F64EF69B4444143FE99/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628350313/7481872A75363CF30E5B4250963D5815837B8082/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ab980",
"Name": "CardCustom",
"Transform": {
"posX": -5.54705524,
"posY": 1.64396369,
"posZ": -2.590835,
"rotX": 359.929657,
"rotY": 269.9989,
"rotZ": 0.0167683326,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "The Rebirth Progresses",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 613500,
"SidewaysCard": false,
"CustomDeck": {
"6135": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462257700/446A790E667ADA5221CAB245C61392A92F6F98C9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462258221/9CA9E7AFA7DF789B95327383B0689ABFF7E85B66/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f38ab5",
"Name": "CardCustom",
"Transform": {
"posX": -5.39725256,
"posY": 1.677869,
"posZ": -2.53201342,
"rotX": 359.921082,
"rotY": 270.006958,
"rotZ": 0.01684507,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "The Rebirthing Ritual",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 613400,
"SidewaysCard": false,
"CustomDeck": {
"6134": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161270281/4E76A44394207EF57114C6BB2FF27815FF301630/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462256056/E0E53639F7491E49DD5794BEEA2B019E5E30551C/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "4cb4c7",
"Name": "Custom_Tile",
"Transform": {
"posX": -40.1502,
"posY": 1.63965058,
"posZ": 7.51509953,
"rotX": 359.9201,
"rotY": 269.983063,
"rotZ": 0.0168909226,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "551500",
"Name": "Custom_PDF",
"Transform": {
"posX": -8.302358,
"posY": 1.55387425,
"posZ": -24.3234882,
"rotX": 359.282532,
"rotY": 270.010864,
"rotZ": -0.000138775766,
"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
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "56ef18",
"Name": "CardCustom",
"Transform": {
"posX": -36.8813,
"posY": 1.64872622,
"posZ": 7.614001,
"rotX": 359.9201,
"rotY": 270.002167,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forests of Goatswood",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 612600,
"SidewaysCard": false,
"CustomDeck": {
"6126": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462240126/7E8BD629C69206134B304303D960471D4F1AEB5E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462240310/93B758AE40447E4A15C20058A22C5B99EA6D9B9D/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5c3eef",
"Name": "Custom_Tile",
"Transform": {
"posX": -33.8928,
"posY": 1.62974119,
"posZ": 3.48729968,
"rotX": 0.06840779,
"rotY": 135.00029,
"rotZ": 0.04458551,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "5e8934",
"Name": "Custom_Model",
"Transform": {
"posX": 35.6586,
"posY": 1.47072816,
"posZ": -26.3579,
"rotX": 0.0169199519,
"rotY": 180.010651,
"rotZ": 0.0819475651,
"scaleX": 0.3750004,
"scaleY": 0.3750004,
"scaleZ": 0.3750004
},
"Nickname": "Cosmic Pantheon Data Helper",
"Description": "Include this in custom content for clue spawning!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 0.646839857,
"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,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/",
"NormalURL": "",
"ColliderURL": "http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/",
"Convex": true,
"MaterialIndex": 2,
"TypeIndex": 0,
"CustomShader": {
"SpecularColor": {
"r": 0.7222887,
"g": 0.507659256,
"b": 0.339915335
},
"SpecularIntensity": 0.4,
"SpecularSharpness": 7.0,
"FresnelStrength": 0.0
},
"CastShadows": true
},
"LuaScript": "-- set true to enable debug logging\r\nDEBUG = false\r\n\r\nfunction log(message)\r\n if DEBUG then\r\n print(message)\r\n end\r\nend\r\n\r\n--[[\r\nKnown locations and clues. We check this to determine if we should\r\natttempt to spawn clues, first we look for <LOCATION_NAME>_<GUID> and if\r\nwe find nothing we look for <LOCATION_NAME>\r\nformat is [location_guid -> clueCount]\r\n]]\r\nLOCATIONS_DATA_JSON = [[\r\n{\r\n \"San Francisco\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"\tArkham\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"back\"},\r\n \"Buenos Aires\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"\tLondon\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Rome\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Istanbul\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"front\"},\r\n \"Tokyo_123abc\": {\"type\": \"perPlayer\", \"value\": 0, \"clueSide\": \"back\"},\r\n \"Tokyo_456efg\": {\"type\": \"perPlayer\", \"value\": 4, \"clueSide\": \"back\"},\r\n \"Tokyo\": {\"type\": \"fixed\", \"value\": 2, \"clueSide\": \"back\"},\r\n \"Shanghai_123\": {\"type\": \"fixed\", \"value\": 12, \"clueSide\": \"front\"},\r\n \"Sydney\": {\"type\": \"fixed\", \"value\": 0, \"clueSide\": \"front\"},\r\n \"The Selene\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Mount Etna\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Streets of Palermo\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Teatro Massimo\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Forests of Goatswood\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Walpurga's Glade\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Enchanted Tree\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Streets of Brichester\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Lakeside Terrace\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Mercy Hill\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"}\r\n}\r\n]]\r\n\r\n\r\nPLAYER_CARD_DATA_JSON = [[\r\n{\r\r\n \"xxx\": {\r\n \"tokenType\": \"resource\",\r\n \"tokenCount\": 3\r\n }\r\n}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Unpleasant Card (Doom)\",\r\n \"Unpleasant Card (Gloom)\",\r\n \"The Case of the Scarlet DOOOOOM!\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON)\r\nPLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON)\r\n\r\nfunction onload(save_state)\r\n local playArea = getObjectFromGUID('721ba2')\r\n playArea.call(\"updateLocations\", {self.getGUID()})\r\n local playerMatWhite = getObjectFromGUID('8b081b')\r\n playerMatWhite.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatOrange = getObjectFromGUID('bd0ff4')\r\n playerMatOrange.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatGreen = getObjectFromGUID('383d8b')\r\n playerMatGreen.call(\"updatePlayerCards\", {self.getGUID()})\r\n local playerMatRed = getObjectFromGUID('0840d5')\r\n playerMatRed.call(\"updatePlayerCards\", {self.getGUID()})\r\n local dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "63341d",
"Name": "Deck",
"Transform": {
"posX": -2.6886,
"posY": 1.61911666,
"posZ": -5.0485,
"rotX": 0.0167909134,
"rotY": 180.0319,
"rotZ": 0.08026522,
"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
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "",
"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": 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": "",
"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": 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": "",
"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": 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": "646a0f",
"Name": "CardCustom",
"Transform": {
"posX": -43.3701,
"posY": 1.65776145,
"posZ": 7.5696,
"rotX": 359.9201,
"rotY": 270.0004,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Enchanted Tree",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 612700,
"SidewaysCard": false,
"CustomDeck": {
"6127": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462241051/791BFD7DD32A44D681EAEA60199D857C0E39B05E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462241308/FCA4F3CB8CDD3513D064593DAE86F6B46B003531/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.3778,
"posY": 1.61052418,
"posZ": 2.22380018,
"rotX": 359.9554,
"rotY": 224.994537,
"rotZ": 0.06838363,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "76ff17",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7731,
"posY": 1.62935,
"posZ": -11.5100012,
"rotX": 0.0168171581,
"rotY": 180.015854,
"rotZ": 0.07995707,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "77f364",
"Name": "CardCustom",
"Transform": {
"posX": -13.9761992,
"posY": 1.61281919,
"posZ": -5.885702,
"rotX": 359.9201,
"rotY": 269.999359,
"rotZ": 0.0168405734,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Siren of the Sphere",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 613700,
"SidewaysCard": false,
"CustomDeck": {
"6137": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462260563/57FD3CB1A52ED49E5991E1E5225D6E78F9BBBAB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7de8a9",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.67920053,
"posY": 1.55835462,
"posZ": 14.3254032,
"rotX": 359.953369,
"rotY": 226.4892,
"rotZ": 0.06748214,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-Aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.02148666,
"g": 0.00100758043,
"b": 0.02148666
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
},
"ContainedObjects": [
{
"GUID": "377fcf",
"Name": "Card",
"Transform": {
"posX": -0.438440621,
"posY": 3.6596787,
"posZ": 13.5091858,
"rotX": 0.4004238,
"rotY": 270.00116,
"rotZ": 0.497655958,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hub Dimension",
"Description": "Portal.",
"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": 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": "9629a6",
"Name": "Deck",
"Transform": {
"posX": 1.69555187,
"posY": 3.715698,
"posZ": 14.2747049,
"rotX": 359.94812,
"rotY": 224.995087,
"rotZ": 0.05831142,
"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": [
747830,
747829,
747828,
614200,
614300,
614400,
747827,
747826
],
"CustomDeck": {
"7478": {
"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
},
"6142": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462266057/8A530F3C930E68889B0CA8FC97C918D47841F240/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462266553/F344253BB586EB3F4A7EFD5C68E7C6FFAA229F0C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6144": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462267101/653AE9F4119FCC1AD9F28B72D9198A4730B94BBE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"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": "",
"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": true,
"CardID": 747830,
"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": "",
"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": true,
"CardID": 747829,
"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": "",
"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": true,
"CardID": 747828,
"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": "35640e",
"Name": "CardCustom",
"Transform": {
"posX": -15.7050629,
"posY": 1.538682,
"posZ": 23.4671211,
"rotX": 359.377,
"rotY": 269.9909,
"rotZ": 0.01795939,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Genesis Glyphs",
"Description": "Deus ex machina",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 614200,
"SidewaysCard": false,
"CustomDeck": {
"6142": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462266057/8A530F3C930E68889B0CA8FC97C918D47841F240/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "387c6c",
"Name": "CardCustom",
"Transform": {
"posX": -15.6136465,
"posY": 1.57725275,
"posZ": 23.3214626,
"rotX": 359.3712,
"rotY": 269.995972,
"rotZ": 0.0239841044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daoloth Formula",
"Description": "Veritas vos liberabit",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 614300,
"SidewaysCard": false,
"CustomDeck": {
"6143": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462266553/F344253BB586EB3F4A7EFD5C68E7C6FFAA229F0C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3cb06f",
"Name": "CardCustom",
"Transform": {
"posX": -15.5866041,
"posY": 1.68184161,
"posZ": 22.9961872,
"rotX": 359.664185,
"rotY": 269.9893,
"rotZ": 356.812347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "World Tree",
"Description": "Natura non facit saltum",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 614400,
"SidewaysCard": false,
"CustomDeck": {
"6144": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462267101/653AE9F4119FCC1AD9F28B72D9198A4730B94BBE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648842893716351530/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "35e8e2",
"Name": "Card",
"Transform": {
"posX": -9.582685,
"posY": 1.636937,
"posZ": 20.26409,
"rotX": 358.477936,
"rotY": 270.004578,
"rotZ": 359.9851,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pocket Portal",
"Description": "Doorway to Another World",
"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": true,
"CardID": 747827,
"SidewaysCard": false,
"CustomDeck": {
"7478": {
"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.704731,
"posY": 1.60993493,
"posZ": 20.21446,
"rotX": 359.921234,
"rotY": 270.027832,
"rotZ": 0.0159011167,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cloak of the Outer Realm",
"Description": "Interwoven Distortion",
"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": true,
"CardID": 747826,
"SidewaysCard": false,
"CustomDeck": {
"7478": {
"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": "80c802",
"Name": "CardCustom",
"Transform": {
"posX": 3.42584133,
"posY": 2.799581,
"posZ": -7.87138128,
"rotX": 359.9201,
"rotY": 269.974884,
"rotZ": 0.01689293,
"scaleX": 0.671085536,
"scaleY": 1.0,
"scaleZ": 0.671085536
},
"Nickname": "A Thousand Births",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 748200,
"SidewaysCard": false,
"CustomDeck": {
"7482": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603024418/18CB04168BAE7803591AF22D79749745477D710C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603024810/0AA1139BD3004F624329D8CCF0906D114BC2EDBF/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a443e2",
"Name": "Deck",
"Transform": {
"posX": 5.25230551,
"posY": 2.6463294,
"posZ": -5.13811874,
"rotX": 359.920135,
"rotY": 270.009338,
"rotZ": 0.0168621559,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cult of Shub-Niggurath",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": [
616600,
747600,
619000,
616800,
618900,
747900,
747800,
747700
],
"CustomDeck": {
"6166": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161493966/51E78E6950ACA8B3344D84DD31BE506ECF98486D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628373107/242BD4A6A9BCFF2021280D05A47ED17779970554/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6190": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462303111/F39154AA1A5B0089A59231C74F44E5AF5CFF0E19/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6168": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161278045/90BD71DAC6190EE111331AF4A240B592A2C45E7F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6189": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462302301/35FA13CDB8AEDC25DC58659FB69EC654F1E5C4AC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628375728/085E8D7EA7143E7067D5DD140947D6A42362DD50/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628375051/E34FA77D94AD018EE3716E6F5BFC608CF22A4CB7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628374344/2080FF3757C02D4848031415677FD8CE83F2CE54/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d04015",
"Name": "CardCustom",
"Transform": {
"posX": -9.686376,
"posY": 1.61493039,
"posZ": 17.8861351,
"rotX": 359.920074,
"rotY": 269.987732,
"rotZ": 359.911835,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shub-Niggurath",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 616600,
"SidewaysCard": false,
"CustomDeck": {
"6166": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161493966/51E78E6950ACA8B3344D84DD31BE506ECF98486D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ad4603",
"Name": "CardCustom",
"Transform": {
"posX": -9.845311,
"posY": 1.59103644,
"posZ": 19.6610737,
"rotX": 359.9298,
"rotY": 270.0032,
"rotZ": 355.96524,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baleful Dark Young",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747600,
"SidewaysCard": false,
"CustomDeck": {
"7476": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628373107/242BD4A6A9BCFF2021280D05A47ED17779970554/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "148a2e",
"Name": "CardCustom",
"Transform": {
"posX": -12.5239143,
"posY": 1.589707,
"posZ": 41.75344,
"rotX": 359.98407,
"rotY": 270.001923,
"rotZ": 0.0032287857,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Black Goat's Milk",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 619000,
"SidewaysCard": false,
"CustomDeck": {
"6190": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462303111/F39154AA1A5B0089A59231C74F44E5AF5CFF0E19/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3d3ae",
"Name": "CardCustom",
"Transform": {
"posX": -12.5715246,
"posY": 1.599339,
"posZ": 41.87971,
"rotX": 359.9841,
"rotY": 269.973022,
"rotZ": 0.00314937043,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Black Goat's Milk",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 616800,
"SidewaysCard": false,
"CustomDeck": {
"6168": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161278045/90BD71DAC6190EE111331AF4A240B592A2C45E7F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7595e0",
"Name": "CardCustom",
"Transform": {
"posX": -12.1533709,
"posY": 1.60896289,
"posZ": 42.1486244,
"rotX": 359.983765,
"rotY": 270.021057,
"rotZ": 0.0027140493,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dark Sargassum",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 618900,
"SidewaysCard": false,
"CustomDeck": {
"6189": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462302301/35FA13CDB8AEDC25DC58659FB69EC654F1E5C4AC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3582eb",
"Name": "CardCustom",
"Transform": {
"posX": -9.550863,
"posY": 1.61976707,
"posZ": 21.5311985,
"rotX": 359.920746,
"rotY": 270.008057,
"rotZ": 0.0161278453,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gof'nn Hupadgh",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747900,
"SidewaysCard": false,
"CustomDeck": {
"7479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628375728/085E8D7EA7143E7067D5DD140947D6A42362DD50/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6f1abd",
"Name": "CardCustom",
"Transform": {
"posX": -9.593862,
"posY": 1.62937355,
"posZ": 21.3166,
"rotX": 359.920044,
"rotY": 270.007477,
"rotZ": 0.0165993925,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gof'nn Hupadgh",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747800,
"SidewaysCard": false,
"CustomDeck": {
"7478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628375051/E34FA77D94AD018EE3716E6F5BFC608CF22A4CB7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb4f6c",
"Name": "CardCustom",
"Transform": {
"posX": -9.702543,
"posY": 1.63934517,
"posZ": 21.7127056,
"rotX": 359.932953,
"rotY": 270.002319,
"rotZ": 0.0133299381,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gof'nn Hupadgh",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747700,
"SidewaysCard": false,
"CustomDeck": {
"7477": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628374344/2080FF3757C02D4848031415677FD8CE83F2CE54/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "04b055",
"Name": "CardCustom",
"Transform": {
"posX": 5.590091,
"posY": 2.591535,
"posZ": -6.17869425,
"rotX": 354.926147,
"rotY": 269.996277,
"rotZ": 359.916626,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "Daoloth Descends",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 748100,
"SidewaysCard": false,
"CustomDeck": {
"7481": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603023174/B23317FC29C8AD8492B6DAD4618391B1E68C3934/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603023510/687A5AC2FC4E7EBC3152E3AE3A237F77DDEBA0C5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e78981",
"Name": "Deck",
"Transform": {
"posX": 1.69642317,
"posY": 3.715786,
"posZ": 14.2788363,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.05831152,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cult of Daoloth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": [
616000,
615900,
615800,
615700,
609300,
609800,
615600,
615500
],
"CustomDeck": {
"6160": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462287788/1F340F71526E52C0F868E83D7AE876CA45C2E921/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6159": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462287249/C88EA222A59E34ADE755CFDDEA3C767500DA21D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6158": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462286255/059444B6342ACA53C5C1EC98B1308A854BBB8E6C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6157": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462285614/EC08ADA65F88EABE1042436C96F1B1AB224BF253/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6093": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161247023/B52B70097E4F1EF81AA399765E7B308AF2464B1E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6098": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161254719/1B2B3EAD3F1F65BFD347596A677F4DF485CDD67C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6156": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462284314/9226F5BE762F31BFAA51AB00BAFA3198295B6EBA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6155": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462283606/FE9C0EF76DB0C8FE3C8DFFE9333C922CE80E0FF0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7ea44c",
"Name": "CardCustom",
"Transform": {
"posX": -11.0547047,
"posY": 1.51925254,
"posZ": 40.420475,
"rotX": 359.919556,
"rotY": 269.995575,
"rotZ": 359.797058,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Daoloth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 616000,
"SidewaysCard": false,
"CustomDeck": {
"6160": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462287788/1F340F71526E52C0F868E83D7AE876CA45C2E921/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6a4d88",
"Name": "CardCustom",
"Transform": {
"posX": -10.9115562,
"posY": 1.56154084,
"posZ": 40.3373871,
"rotX": 359.910553,
"rotY": 269.993,
"rotZ": 359.83078,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Veiled Priestess",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 615900,
"SidewaysCard": false,
"CustomDeck": {
"6159": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462287249/C88EA222A59E34ADE755CFDDEA3C767500DA21D7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7f8fb0",
"Name": "CardCustom",
"Transform": {
"posX": -11.0553923,
"posY": 1.51873314,
"posZ": 31.6493187,
"rotX": 359.9309,
"rotY": 270.0077,
"rotZ": 359.942444,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sensory Overload",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 615800,
"SidewaysCard": false,
"CustomDeck": {
"6158": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462286255/059444B6342ACA53C5C1EC98B1308A854BBB8E6C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "45d989",
"Name": "CardCustom",
"Transform": {
"posX": -11.2265491,
"posY": 1.5794735,
"posZ": 31.5761662,
"rotX": 0.998137951,
"rotY": 270.0099,
"rotZ": 0.3965749,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sensory Overload",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 615700,
"SidewaysCard": false,
"CustomDeck": {
"6157": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462285614/EC08ADA65F88EABE1042436C96F1B1AB224BF253/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3a0c0c",
"Name": "CardCustom",
"Transform": {
"posX": -11.0627518,
"posY": 1.5957849,
"posZ": 31.0007668,
"rotX": 359.9201,
"rotY": 270.005249,
"rotZ": 0.0158328414,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Imperceptible",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 609300,
"SidewaysCard": false,
"CustomDeck": {
"6093": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161247023/B52B70097E4F1EF81AA399765E7B308AF2464B1E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a0ba0",
"Name": "CardCustom",
"Transform": {
"posX": -11.0912876,
"posY": 1.60567069,
"posZ": 31.8156662,
"rotX": 359.919739,
"rotY": 270.011261,
"rotZ": 0.0164707247,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Splinter of Daoloth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 609800,
"SidewaysCard": false,
"CustomDeck": {
"6098": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161254719/1B2B3EAD3F1F65BFD347596A677F4DF485CDD67C/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33e690",
"Name": "CardCustom",
"Transform": {
"posX": -11.414628,
"posY": 1.61551213,
"posZ": 31.1018867,
"rotX": 359.920258,
"rotY": 270.008423,
"rotZ": 0.01617871,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Yarkdao Brute",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 615600,
"SidewaysCard": false,
"CustomDeck": {
"6156": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462284314/9226F5BE762F31BFAA51AB00BAFA3198295B6EBA/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5b9532",
"Name": "CardCustom",
"Transform": {
"posX": -11.1206942,
"posY": 1.62479651,
"posZ": 31.2723885,
"rotX": 359.9212,
"rotY": 270.007751,
"rotZ": 0.0169885065,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Yarkdao Brute",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 615500,
"SidewaysCard": false,
"CustomDeck": {
"6155": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462283606/FE9C0EF76DB0C8FE3C8DFFE9333C922CE80E0FF0/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "5bf801",
"Name": "Deck",
"Transform": {
"posX": 1.69642472,
"posY": 3.72034121,
"posZ": 14.2788353,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.0583112463,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil Cards",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": [
616500,
610600,
616400,
616300,
610500,
616200,
610300,
610200,
616100
],
"CustomDeck": {
"6165": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462294073/C7852E6F8EEA4232F16593C93D69CDB07DC2D49D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6106": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161260830/9BA130D02A6DFC19767B25C6ACDE83D51E558F41/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6164": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462293265/B987896606CA6893212505A963DDFAB1F7E7AC62/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6163": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462292700/CC219205372EA27309E892AD50A9C7C165789CA5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6105": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161260046/0BF88E7701299063126A1F9013F806D075ACA704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6162": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462291904/86E91F831641393F1009A2A204DB1348A4C094D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6103": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161258508/3A2CAF1A06F2F5B6545B6C626F08520913310B5F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6102": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161257911/165C0FB8C8841B741AD6FE8E6F26C574F3F2B94D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462290943/8AAF8C2C23E7C312179ACF18FF93822720343E7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "5cf8a3",
"Name": "CardCustom",
"Transform": {
"posX": -12.6794758,
"posY": 1.46321917,
"posZ": 43.1334152,
"rotX": 0.0042031277,
"rotY": 270.049347,
"rotZ": 350.598969,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (4)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 616500,
"SidewaysCard": false,
"CustomDeck": {
"6165": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462294073/C7852E6F8EEA4232F16593C93D69CDB07DC2D49D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b87cb2",
"Name": "CardCustom",
"Transform": {
"posX": -12.4626083,
"posY": 1.60111284,
"posZ": 43.31536,
"rotX": 0.00167168886,
"rotY": 269.9996,
"rotZ": 357.7283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (4)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 610600,
"SidewaysCard": false,
"CustomDeck": {
"6106": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161260830/9BA130D02A6DFC19767B25C6ACDE83D51E558F41/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "052ec7",
"Name": "CardCustom",
"Transform": {
"posX": -12.9565468,
"posY": 1.71363974,
"posZ": 42.8584366,
"rotX": 359.991577,
"rotY": 270.023743,
"rotZ": 359.3507,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (3)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 616400,
"SidewaysCard": false,
"CustomDeck": {
"6164": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462293265/B987896606CA6893212505A963DDFAB1F7E7AC62/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "060e92",
"Name": "CardCustom",
"Transform": {
"posX": -12.6805305,
"posY": 1.63134134,
"posZ": 43.7841644,
"rotX": 359.9201,
"rotY": 270.022125,
"rotZ": 0.0168391429,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (3)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 616300,
"SidewaysCard": false,
"CustomDeck": {
"6163": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462292700/CC219205372EA27309E892AD50A9C7C165789CA5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a4985",
"Name": "CardCustom",
"Transform": {
"posX": -12.527648,
"posY": 1.65915263,
"posZ": 43.3782463,
"rotX": -0.005232779,
"rotY": 270.02478,
"rotZ": 358.082428,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (3)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 610500,
"SidewaysCard": false,
"CustomDeck": {
"6105": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161260046/0BF88E7701299063126A1F9013F806D075ACA704/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d54b5",
"Name": "CardCustom",
"Transform": {
"posX": -13.0089159,
"posY": 1.74619961,
"posZ": 42.5883827,
"rotX": 359.993256,
"rotY": 270.020081,
"rotZ": 359.4464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (2 Elder Sign)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 616200,
"SidewaysCard": false,
"CustomDeck": {
"6162": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462291904/86E91F831641393F1009A2A204DB1348A4C094D6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b15df0",
"Name": "CardCustom",
"Transform": {
"posX": -12.8148584,
"posY": 1.75380731,
"posZ": 42.8536453,
"rotX": 359.992218,
"rotY": 270.0117,
"rotZ": 359.3497,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (2 Resource)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 610300,
"SidewaysCard": false,
"CustomDeck": {
"6103": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161258508/3A2CAF1A06F2F5B6545B6C626F08520913310B5F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a2699e",
"Name": "CardCustom",
"Transform": {
"posX": -12.653019,
"posY": 1.57506847,
"posZ": 44.0351524,
"rotX": 359.991516,
"rotY": 269.999878,
"rotZ": 358.152924,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (2 Commit)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 610200,
"SidewaysCard": false,
"CustomDeck": {
"6102": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161257911/165C0FB8C8841B741AD6FE8E6F26C574F3F2B94D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3a3bbe",
"Name": "CardCustom",
"Transform": {
"posX": -12.8032389,
"posY": 1.77427864,
"posZ": 43.15011,
"rotX": 359.991943,
"rotY": 269.986267,
"rotZ": 359.4302,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cosmic Veil (1)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 616100,
"SidewaysCard": false,
"CustomDeck": {
"6161": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462290943/8AAF8C2C23E7C312179ACF18FF93822720343E7B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "153d37",
"Name": "CardCustom",
"Transform": {
"posX": 4.95160627,
"posY": 3.436298,
"posZ": 1.16625547,
"rotX": 359.9201,
"rotY": 270.020264,
"rotZ": 0.016809864,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "Ghroth Arrives",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 748000,
"SidewaysCard": false,
"CustomDeck": {
"7480": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603022160/083A4423FFDB50A74C2AF6F6F151854542EC6E4D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603022525/4B5D24E3D3C45D481B1DC4D5467729FB5E19A814/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "98ef2d",
"Name": "Deck",
"Transform": {
"posX": 3.52118468,
"posY": 3.48308,
"posZ": 0.341987163,
"rotX": 359.919739,
"rotY": 269.99118,
"rotZ": 0.0168526713,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cult of Ghroth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": [
608600,
747500,
614900,
747900,
747800,
615000,
614600,
614500
],
"CustomDeck": {
"6086": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161229281/1566789087AD361B82E5205C4EFEDD51617A5B07/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7475": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628370808/3FAFEE2CCAFFA855184B1772F42B8BF7945F934B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6149": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462272430/5C70B965C608473DE98FF9C6FFB75FF116AB8AC4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603019671/8E217AFC2BE8C93B3D71CCA514897730E7224C14/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"7478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603019115/3700335DB2AEFF196F9019C0FB5C2B47E6015A13/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6150": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462272973/7C8D3344A1EA164FBFD0C179EF9D327BEA7ACAE9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6146": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462270374/7273185144A30A57E839DDF1545714ADD16C7CB7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6145": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462269714/22AF54BD78BF2EAF0170B7184E955147FFB2DF41/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "9abb27",
"Name": "CardCustom",
"Transform": {
"posX": -9.940825,
"posY": 1.51777875,
"posZ": 29.9598541,
"rotX": 359.9203,
"rotY": 269.965546,
"rotZ": 0.0158330072,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ghroth",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 608600,
"SidewaysCard": false,
"CustomDeck": {
"6086": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161229281/1566789087AD361B82E5205C4EFEDD51617A5B07/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "429a7e",
"Name": "CardCustom",
"Transform": {
"posX": -9.887643,
"posY": 1.55987024,
"posZ": 30.0111446,
"rotX": 359.9231,
"rotY": 269.996277,
"rotZ": 0.0149149206,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Servitor of the Outer Gods",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747500,
"SidewaysCard": false,
"CustomDeck": {
"7475": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628370808/3FAFEE2CCAFFA855184B1772F42B8BF7945F934B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9dc749",
"Name": "CardCustom",
"Transform": {
"posX": -14.4827337,
"posY": 1.597484,
"posZ": 20.7190018,
"rotX": 359.9211,
"rotY": 270.015564,
"rotZ": 0.0155530311,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "\"Lightning Never Strikes Twice\"",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 614900,
"SidewaysCard": false,
"CustomDeck": {
"6149": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462272430/5C70B965C608473DE98FF9C6FFB75FF116AB8AC4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eaec7f",
"Name": "CardCustom",
"Transform": {
"posX": -5.03443861,
"posY": 2.61958218,
"posZ": 14.0033569,
"rotX": 359.920135,
"rotY": 269.996918,
"rotZ": 0.0168767646,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cataclysm (Eruption)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747900,
"SidewaysCard": false,
"CustomDeck": {
"7479": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603019671/8E217AFC2BE8C93B3D71CCA514897730E7224C14/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "92186e",
"Name": "CardCustom",
"Transform": {
"posX": -5.769172,
"posY": 2.61841,
"posZ": 16.2336578,
"rotX": 359.983948,
"rotY": 269.999359,
"rotZ": 0.00339019555,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cataclysm (Tidal Wave)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747800,
"SidewaysCard": false,
"CustomDeck": {
"7478": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1790767795603019115/3700335DB2AEFF196F9019C0FB5C2B47E6015A13/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fa0abb",
"Name": "CardCustom",
"Transform": {
"posX": -14.7139883,
"posY": 1.56211674,
"posZ": 22.2865925,
"rotX": 359.9266,
"rotY": 270.004822,
"rotZ": 357.985474,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Baoht Z'uqqa-mogg",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 615000,
"SidewaysCard": false,
"CustomDeck": {
"6150": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462272973/7C8D3344A1EA164FBFD0C179EF9D327BEA7ACAE9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e62259",
"Name": "CardCustom",
"Transform": {
"posX": -14.5250072,
"posY": 1.52272809,
"posZ": 25.063446,
"rotX": 359.9203,
"rotY": 270.002625,
"rotZ": 0.0158003457,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flying Polyps",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 614600,
"SidewaysCard": false,
"CustomDeck": {
"6146": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462270374/7273185144A30A57E839DDF1545714ADD16C7CB7/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "290eb4",
"Name": "CardCustom",
"Transform": {
"posX": -14.3654013,
"posY": 1.564704,
"posZ": 24.8326263,
"rotX": 359.934021,
"rotY": 270.000671,
"rotZ": 0.0121612735,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Flying Polyps",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 614500,
"SidewaysCard": false,
"CustomDeck": {
"6145": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462269714/22AF54BD78BF2EAF0170B7184E955147FFB2DF41/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1648843119262549591/A372A735C4BCA35FE128AD9388BD116ECDC282F0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "863e58",
"Name": "CardCustom",
"Transform": {
"posX": -36.7733,
"posY": 1.64184713,
"posZ": -15.2800007,
"rotX": 359.9201,
"rotY": 270.0019,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lakeside Terrace",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 612500,
"SidewaysCard": false,
"CustomDeck": {
"6125": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462236561/726793DC1417CEE97D78608404E8F174700AD62E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462236790/E57FBA3BF49FB3FEB9178D5CFE61F2219645F697/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a2345b",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.33880019,
"posY": 1.581799,
"posZ": -14.7675028,
"rotX": 359.919739,
"rotY": 270.0251,
"rotZ": 0.0168027878,
"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
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": "a78ab1",
"Name": "Custom_Tile",
"Transform": {
"posX": -36.7731,
"posY": 1.63610053,
"posZ": 11.4600019,
"rotX": 0.0168183781,
"rotY": 180.014862,
"rotZ": 0.07994373,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "aa4062",
"Name": "CardCustom",
"Transform": {
"posX": -3.95600057,
"posY": 1.59753942,
"posZ": -10.4414005,
"rotX": 359.919739,
"rotY": 269.999664,
"rotZ": 0.0168376882,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747400,
"SidewaysCard": false,
"CustomDeck": {
"7474": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628351341/5B3B33AC5763BE9E88B14B8DC8F322098AB23898/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628351768/5A73C98342A7FE1D5C1D9424D727A738C5FBC6E5/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ac5f52",
"Name": "Custom_PDF",
"Transform": {
"posX": -8.222119,
"posY": 1.560351,
"posZ": -34.506,
"rotX": 359.395569,
"rotY": 270.0194,
"rotZ": -0.0007654506,
"scaleX": 2.8645525,
"scaleY": 1.0,
"scaleZ": 2.8645525
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1790767795603002571/5A6667F351D42071437DFB2A8DCEA34A3D724BD2/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b4efbf",
"Name": "CardCustom",
"Transform": {
"posX": -23.6766,
"posY": 1.62806678,
"posZ": -0.0297997911,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Streets of Palermo",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 746100,
"SidewaysCard": false,
"CustomDeck": {
"7461": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462230581/8BA5E1EE01A2BF367336E899C34241A1F0F54F68/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462230829/0E9A7A9ACA7A7B10F87F09F474F83159128890DB/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b85392",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.9335,
"posY": 1.61901689,
"posZ": 0.0160997,
"rotX": 359.9201,
"rotY": 269.9741,
"rotZ": 0.0169034656,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "eb3956",
"Name": "Deck",
"Transform": {
"posX": -2.7247,
"posY": 1.62076044,
"posZ": 0.373199463,
"rotX": 359.919739,
"rotY": 270.0182,
"rotZ": 0.0168119632,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 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": [
747200,
613200,
613100
],
"CustomDeck": {
"7472": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462253257/3FE82EA7EACC33EE4B17B8C1B1106D6BABCD012F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628349413/E066D6B6ADB6EC11D95AD43FE90430F89EF2CA28/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462251965/68CA66ADE57FC87033175992AF1619CCD0D22C61/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462252313/87D7472FECC5BF8A65C1913D8D99ECFD0CE707CF/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"6131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161231502/73530CC311E11E5808E48DD5E6DE94BF5B71EB28/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462251124/F513E12722FC4F21F7813744F154F6BE1A23C096/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f845cf",
"Name": "CardCustom",
"Transform": {
"posX": -2.72468114,
"posY": 1.598394,
"posZ": 0.373156667,
"rotX": 359.928284,
"rotY": 270.018951,
"rotZ": 359.9879,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "The Parting Nears Completion",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 747200,
"SidewaysCard": false,
"CustomDeck": {
"7472": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462253257/3FE82EA7EACC33EE4B17B8C1B1106D6BABCD012F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1796396661628349413/E066D6B6ADB6EC11D95AD43FE90430F89EF2CA28/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c65f43",
"Name": "CardCustom",
"Transform": {
"posX": -2.724728,
"posY": 1.63019335,
"posZ": 0.373342484,
"rotX": 359.945984,
"rotY": 270.0025,
"rotZ": -0.003411042,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "The Parting Progresses",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 613200,
"SidewaysCard": false,
"CustomDeck": {
"6132": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462251965/68CA66ADE57FC87033175992AF1619CCD0D22C61/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462252313/87D7472FECC5BF8A65C1913D8D99ECFD0CE707CF/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d2f4f1",
"Name": "CardCustom",
"Transform": {
"posX": -2.72471356,
"posY": 1.66388416,
"posZ": 0.373314947,
"rotX": 359.9203,
"rotY": 270.003967,
"rotZ": 0.0162399933,
"scaleX": 0.6925857,
"scaleY": 1.0,
"scaleZ": 0.6925857
},
"Nickname": "The Parting of the Veil",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 613100,
"SidewaysCard": false,
"CustomDeck": {
"6131": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1844797164161231502/73530CC311E11E5808E48DD5E6DE94BF5B71EB28/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1844798400462251124/F513E12722FC4F21F7813744F154F6BE1A23C096/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "efe16f",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.9553,
"posY": 1.640492,
"posZ": 11.3031015,
"rotX": 359.9554,
"rotY": 225.00383,
"rotZ": 0.06837367,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"Tags": [
"cosmo_memory_object"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"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
}
}
]
}