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

4568 lines
161 KiB
JSON

{
"GUID": "9d3083",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 0.9927932,
"posY": 1.27037621,
"posZ": 85.40328,
"rotX": 0.02080864,
"rotY": 270.000122,
"rotZ": 0.0167710464,
"scaleX": 2.21,
"scaleY": 0.3,
"scaleZ": 2.46
},
"Nickname": "The Nameless City",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1797477398306699180/7C5363FFCCDCD4A1AF2A0C71B2A7E5F96D5ACCA4/",
"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\":{\"164a39\":{\"lock\":false,\"pos\":{\"x\":-3.95620059967041,\"y\":1.59753966331482,\"z\":-10.4415016174316},\"rot\":{\"x\":359.919738769531,\"y\":269.998657226563,\"z\":0.0168390870094299}},\"1a1506\":{\"lock\":false,\"pos\":{\"x\":-12.104998588562,\"y\":1.59499669075012,\"z\":-11.3583011627197},\"rot\":{\"x\":359.920104980469,\"y\":269.973022460938,\"z\":0.0168796647340059}},\"6e906f\":{\"lock\":false,\"pos\":{\"x\":-3.9279,\"y\":1.7203,\"z\":5.7572},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"7d6103\":{\"lock\":false,\"pos\":{\"x\":-12.0929002761841,\"y\":1.59430456161499,\"z\":-13.6558017730713},\"rot\":{\"x\":359.920104980469,\"y\":269.989196777344,\"z\":0.0168482903391123}},\"7e3c60\":{\"lock\":false,\"pos\":{\"x\":-16.4165992736816,\"y\":1.67012298107147,\"z\":9.44509983062744},\"rot\":{\"x\":0.0799057334661484,\"y\":90.030403137207,\"z\":359.983215332031}},\"8067ce\":{\"lock\":false,\"pos\":{\"x\":-2.7245,\"y\":1.6208,\"z\":0.3732},\"rot\":{\"x\":359.9197,\"y\":269.9814,\"z\":0.0169}},\"8beeb8\":{\"lock\":false,\"pos\":{\"x\":-30.2243003845215,\"y\":1.63719701766968,\"z\":-0.0299998410046101},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016830444336}},\"8fb06e\":{\"lock\":false,\"pos\":{\"x\":-11.5186023712158,\"y\":1.48982048034668,\"z\":-26.3105010986328},\"rot\":{\"x\":359.920227050781,\"y\":269.659973144531,\"z\":0.0173455532640219}},\"96f7e5\":{\"lock\":false,\"pos\":{\"x\":-3.9277,\"y\":1.7203,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270.0125,\"z\":180.0168}},\"a0b3c1\":{\"lock\":false,\"pos\":{\"x\":-12.7744,\"y\":1.6368,\"z\":7.2866},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"a66270\":{\"lock\":false,\"pos\":{\"x\":-12.6184,\"y\":1.6367,\"z\":7.5768},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"b07c45\":{\"lock\":false,\"pos\":{\"x\":-2.7248,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":359.9197,\"y\":270.0002,\"z\":0.0168}},\"b3b462\":{\"lock\":false,\"pos\":{\"x\":-2.68862700462341,\"y\":1.62393081188202,\"z\":-5.04849576950073},\"rot\":{\"x\":359.919738769531,\"y\":270.000061035156,\"z\":0.0168373957276344}},\"b6da68\":{\"lock\":false,\"pos\":{\"x\":1.7024005651474,\"y\":1.55830836296082,\"z\":14.2777013778687},\"rot\":{\"x\":359.955139160156,\"y\":224.997863769531,\"z\":0.068672813475132}},\"c0dc73\":{\"lock\":true,\"pos\":{\"x\":0.0874999985098839,\"y\":1.61240005493164,\"z\":-9.4350004196167},\"rot\":{\"x\":359.919799804688,\"y\":269.9873046875,\"z\":0.0169000010937452}},\"cc8bbb\":{\"lock\":false,\"pos\":{\"x\":-12.033501625061,\"y\":1.59552979469299,\"z\":-9.2046012878418},\"rot\":{\"x\":359.920104980469,\"y\":270.011779785156,\"z\":0.0168169923126698}},\"cdea43\":{\"lock\":false,\"pos\":{\"x\":-12.6030263900757,\"y\":1.64734363555908,\"z\":11.2748069763184},\"rot\":{\"x\":359.920104980469,\"y\":270.000061035156,\"z\":180.016830444336}},\"d3d96a\":{\"lock\":false,\"pos\":{\"x\":-11.9824981689453,\"y\":1.59610056877136,\"z\":-7.02070093154907},\"rot\":{\"x\":359.920104980469,\"y\":270.021118164063,\"z\":0.0168036427348852}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "164a39",
"Name": "CardCustom",
"Transform": {
"posX": -3.9562006,
"posY": 1.59753966,
"posZ": -10.4415016,
"rotX": 359.919739,
"rotY": 269.998657,
"rotZ": 0.0168390833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "",
"GMNotes": "",
"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": 500,
"SidewaysCard": false,
"CustomDeck": {
"5": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556331624/39B98823E691C8D20A08864B242319D6F5138909/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556332068/7B77349451DF2BD6458211872D872F2628F761F8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1a1506",
"Name": "Custom_Tile",
"Transform": {
"posX": -12.1049986,
"posY": 1.59499669,
"posZ": -11.3583012,
"rotX": 359.9201,
"rotY": 269.973022,
"rotZ": 0.016879674,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Key",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/1plY463.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7d6103",
"Name": "Custom_Tile",
"Transform": {
"posX": -12.0929,
"posY": 1.59430456,
"posZ": -13.6558018,
"rotX": 359.9201,
"rotY": 269.989166,
"rotZ": 0.01684829,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Key",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/VzhJJaH.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7e3c60",
"Name": "Notecard",
"Transform": {
"posX": -16.4166,
"posY": 1.670123,
"posZ": 9.4451,
"rotX": 0.07990574,
"rotY": 90.0304,
"rotZ": 359.983215,
"scaleX": 0.9000003,
"scaleY": 0.9000003,
"scaleZ": 0.9000003
},
"Nickname": "",
"Description": "1) Left deck: Choose 2 of the Upper City locations randomly, and remove the other 3 from the game.\n\n2) Right deck: Shuffle the Elder's vault, Incomprehensible Glyphs and Forsaken Circle (on their concealed side: Upper City) with the 2 randomly chosen Upper City locations and put them into play.\n",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": false,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8beeb8",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.637197,
"posZ": -0.029999841,
"rotX": 359.9201,
"rotY": 270.000061,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Entrance Hall",
"Description": "",
"GMNotes": "",
"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": 270606,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8fb06e",
"Name": "Custom_PDF",
"Transform": {
"posX": -11.5186024,
"posY": 1.48982048,
"posZ": -26.3105011,
"rotX": 359.920227,
"rotY": 269.659973,
"rotZ": 0.017345557,
"scaleX": 2.36214733,
"scaleY": 1.0,
"scaleZ": 2.36214733
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"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/1797477352556411966/9DFB5FA7068819FDE960DD412B2D481E69FFB12B/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "96f7e5",
"Name": "Deck",
"Transform": {
"posX": -3.9277,
"posY": 1.77029991,
"posZ": 5.7571,
"rotX": 359.9197,
"rotY": 270.0125,
"rotZ": 180.0168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
266407,
271000,
266417,
266421,
266420,
266413,
266408,
266423,
266429,
271000,
266412,
266418,
266436,
266416,
266401,
266422,
266419,
266400,
266424,
266430,
271000,
266415,
266414
],
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
},
"2710": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320359166/08A20E348EB27E618F9701EFEDB3676DE0E6949F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320359661/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d90c78",
"Name": "Card",
"Transform": {
"posX": 7.57422543,
"posY": 1.10699952,
"posZ": -4.30367661,
"rotX": 0.000390836358,
"rotY": 180.00116,
"rotZ": -0.000167449281,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trial by Insanity",
"Description": "",
"GMNotes": "",
"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/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "33138e",
"Name": "CardCustom",
"Transform": {
"posX": 8.128322,
"posY": 1.23213029,
"posZ": -4.21395874,
"rotX": -0.00106717122,
"rotY": 180.001358,
"rotZ": 0.00197155168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadow from Beyond",
"Description": "",
"GMNotes": "",
"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": 271000,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320359166/08A20E348EB27E618F9701EFEDB3676DE0E6949F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320359661/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c1b907",
"Name": "Card",
"Transform": {
"posX": 8.205825,
"posY": 1.21291554,
"posZ": -3.79994583,
"rotX": 0.000160419135,
"rotY": 180.001266,
"rotZ": -9.658043E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Curse of the Eons",
"Description": "",
"GMNotes": "",
"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": 266417,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "90bfba",
"Name": "Card",
"Transform": {
"posX": 7.34173965,
"posY": 1.20378876,
"posZ": -5.249259,
"rotX": 0.002219377,
"rotY": 180.001266,
"rotZ": -0.00232874,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Desecrated Ritual",
"Description": "",
"GMNotes": "",
"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": 266421,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ded4a9",
"Name": "Card",
"Transform": {
"posX": 7.49897957,
"posY": 1.16496766,
"posZ": -4.32837057,
"rotX": 9.393435E-05,
"rotY": 180.00119,
"rotZ": 1.47237815E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dead End",
"Description": "",
"GMNotes": "",
"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": 266420,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4adfa0",
"Name": "Card",
"Transform": {
"posX": 8.014003,
"posY": 1.05882144,
"posZ": -4.18903732,
"rotX": -0.00108441582,
"rotY": 180.000046,
"rotZ": 0.00220700772,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wrong Tunnel",
"Description": "",
"GMNotes": "",
"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": 266413,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1402bf",
"Name": "Card",
"Transform": {
"posX": 7.5816617,
"posY": 1.01525533,
"posZ": -4.73368025,
"rotX": 0.00361355324,
"rotY": 180.0,
"rotZ": -0.00169255212,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Trial by Insanity",
"Description": "",
"GMNotes": "",
"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/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e32e0e",
"Name": "Card",
"Transform": {
"posX": 7.59122372,
"posY": 1.07809877,
"posZ": -4.16309834,
"rotX": 0.000132944129,
"rotY": 180.001175,
"rotZ": 0.000136584407,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Desecrated Ritual",
"Description": "",
"GMNotes": "",
"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": 266423,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "94d6fa",
"Name": "Card",
"Transform": {
"posX": 7.99788666,
"posY": 1.17462933,
"posZ": -4.408853,
"rotX": 8.70484E-05,
"rotY": 180.0012,
"rotZ": -0.000391928683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunted by the Unknown",
"Description": "",
"GMNotes": "",
"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": 266429,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aede84",
"Name": "CardCustom",
"Transform": {
"posX": 7.562041,
"posY": 1.2844094,
"posZ": -4.727466,
"rotX": 1.3695693,
"rotY": 179.884308,
"rotZ": 358.4234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadow from Beyond",
"Description": "",
"GMNotes": "",
"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": 271000,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320359166/08A20E348EB27E618F9701EFEDB3676DE0E6949F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320359661/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af4030",
"Name": "Card",
"Transform": {
"posX": 7.779172,
"posY": 1.13587093,
"posZ": -3.994271,
"rotX": 0.000111794587,
"rotY": 180.001175,
"rotZ": -0.000338453741,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wrong Tunnel",
"Description": "",
"GMNotes": "",
"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": 266412,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e31270",
"Name": "Card",
"Transform": {
"posX": 8.125211,
"posY": 1.18505454,
"posZ": -3.96912074,
"rotX": 5.89967567E-05,
"rotY": 180.001221,
"rotZ": -0.000108418506,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Curse of the Eons",
"Description": "",
"GMNotes": "",
"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": 266418,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "609d27",
"Name": "Card",
"Transform": {
"posX": 7.736855,
"posY": 0.973599255,
"posZ": -4.37144041,
"rotX": 7.498771E-05,
"rotY": 180.000031,
"rotZ": 0.000417636184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pit Trap",
"Description": "",
"GMNotes": "",
"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": 266436,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f131d6",
"Name": "Card",
"Transform": {
"posX": 7.790617,
"posY": 1.097363,
"posZ": -4.58750534,
"rotX": 0.000509228557,
"rotY": 180.00116,
"rotZ": 0.0006619,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Astral Boon",
"Description": "",
"GMNotes": "",
"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": 266416,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ecee9",
"Name": "Card",
"Transform": {
"posX": 7.817803,
"posY": 1.11656725,
"posZ": -4.25172853,
"rotX": 0.0002288567,
"rotY": 180.001175,
"rotZ": -0.0002611196,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pit Trap",
"Description": "",
"GMNotes": "",
"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": 266401,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0247d6",
"Name": "Card",
"Transform": {
"posX": 7.890356,
"posY": 1.14568841,
"posZ": -4.26954651,
"rotX": 0.0002130151,
"rotY": 180.00116,
"rotZ": 0.000200623137,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Desecrated Ritual",
"Description": "",
"GMNotes": "",
"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": 266422,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e40095",
"Name": "Card",
"Transform": {
"posX": 8.227083,
"posY": 1.12628007,
"posZ": -3.72494435,
"rotX": -0.000134602582,
"rotY": 180.00116,
"rotZ": 0.000880021253,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dead End",
"Description": "",
"GMNotes": "",
"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": 266419,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "81e30b",
"Name": "Card",
"Transform": {
"posX": 8.178178,
"posY": 1.068394,
"posZ": -4.221488,
"rotX": 0.000386753585,
"rotY": 180.000046,
"rotZ": -0.000486984238,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pit Trap",
"Description": "",
"GMNotes": "",
"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": 266400,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "be11d3",
"Name": "Card",
"Transform": {
"posX": 7.878548,
"posY": 1.19411778,
"posZ": -4.68580866,
"rotX": 0.0004090031,
"rotY": 180.001236,
"rotZ": 0.000196791632,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Desecrated Ritual",
"Description": "",
"GMNotes": "",
"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": 266424,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "72e5a8",
"Name": "Card",
"Transform": {
"posX": 7.65985155,
"posY": 1.08774173,
"posZ": -4.2600913,
"rotX": 0.000221995666,
"rotY": 180.00116,
"rotZ": 0.000273403071,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hunted by the Unknown",
"Description": "",
"GMNotes": "",
"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": 266430,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4f1551",
"Name": "CardCustom",
"Transform": {
"posX": 7.542748,
"posY": 1.22253215,
"posZ": -4.487019,
"rotX": -0.000162503857,
"rotY": 180.001343,
"rotZ": -0.0001247901,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shadow from Beyond",
"Description": "",
"GMNotes": "",
"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": 271000,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320359166/08A20E348EB27E618F9701EFEDB3676DE0E6949F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320359661/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ee098f",
"Name": "Card",
"Transform": {
"posX": 7.46760845,
"posY": 1.15532637,
"posZ": -4.400997,
"rotX": -0.000218966656,
"rotY": 180.001175,
"rotZ": -0.000179673283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Astral Boon",
"Description": "",
"GMNotes": "",
"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": 266415,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fff5ef",
"Name": "Card",
"Transform": {
"posX": 7.7385335,
"posY": 1.0492326,
"posZ": -4.36788,
"rotX": 0.000379826524,
"rotY": 180.000061,
"rotZ": 4.12771042E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Wrong Tunnel",
"Description": "",
"GMNotes": "",
"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": 266414,
"SidewaysCard": false,
"CustomDeck": {
"2664": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a66270",
"Name": "Deck",
"Transform": {
"posX": -12.6184,
"posY": 1.6867,
"posZ": 7.5768,
"rotX": 359.9201,
"rotY": 269.9999,
"rotZ": 0.0168000031,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270800,
270900,
300
],
"CustomDeck": {
"2708": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320349057/99D7D774B3142E78285A64EE8D635A70604E575D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320335028/C500E502497FF625DB07379200E1C16CC2D425B8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2709": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320341492/239F58746E05F9E5AB1CB9FDC934A6BA3B669DE4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320335028/C500E502497FF625DB07379200E1C16CC2D425B8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320331804/0584046FB30367C9840330A40192CB258CEA93B4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320335028/C500E502497FF625DB07379200E1C16CC2D425B8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "d0999c",
"Name": "CardCustom",
"Transform": {
"posX": 7.233611,
"posY": 0.9735947,
"posZ": -1.92211175,
"rotX": -0.0005764946,
"rotY": 180.000046,
"rotZ": 0.000288231531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Incomprehensible Glyphs",
"Description": "",
"GMNotes": "",
"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": 270800,
"SidewaysCard": false,
"CustomDeck": {
"2695": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320349057/99D7D774B3142E78285A64EE8D635A70604E575D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320335028/C500E502497FF625DB07379200E1C16CC2D425B8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3b076e",
"Name": "CardCustom",
"Transform": {
"posX": 7.22096872,
"posY": 1.01529288,
"posZ": -2.24232316,
"rotX": -0.002359444,
"rotY": 180.000031,
"rotZ": 0.0017870093,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forsaken Circle",
"Description": "",
"GMNotes": "",
"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": 270900,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320341492/239F58746E05F9E5AB1CB9FDC934A6BA3B669DE4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320335028/C500E502497FF625DB07379200E1C16CC2D425B8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88038e",
"Name": "CardCustom",
"Transform": {
"posX": 7.461097,
"posY": 1.04922616,
"posZ": -1.69457245,
"rotX": 0.000341495121,
"rotY": 180.000076,
"rotZ": -0.000460171548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Elder's Vault",
"Description": "",
"GMNotes": "",
"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": 300,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320331804/0584046FB30367C9840330A40192CB258CEA93B4/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320335028/C500E502497FF625DB07379200E1C16CC2D425B8/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b07c45",
"Name": "Deck",
"Transform": {
"posX": -2.7248,
"posY": 1.6708,
"posZ": 0.3733,
"rotX": 359.9197,
"rotY": 270.0002,
"rotZ": 0.0168,
"scaleX": 0.876684368,
"scaleY": 1.0,
"scaleZ": 0.876684368
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": [
1002,
269400,
1000
],
"CustomDeck": {
"10": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556361060/AAB24817ADEA77728D632FA255C96365FC7CBB6F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556361295/40CA2E6DA42BCF6B45448EFB5C9C8FD3886B9234/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
},
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320375665/ABF888455B902082B6B88F6031B72BF522A2FECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320377355/BFE5A20AC88E20D99F6585AEB6E28AF4492ED422/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b8934a",
"Name": "Card",
"Transform": {
"posX": -2.72453523,
"posY": 1.59882283,
"posZ": 0.373502165,
"rotX": 359.921661,
"rotY": 270.000122,
"rotZ": 0.0102948509,
"scaleX": 0.876684368,
"scaleY": 1.0,
"scaleZ": 0.876684368
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 1002,
"SidewaysCard": false,
"CustomDeck": {
"10": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556361060/AAB24817ADEA77728D632FA255C96365FC7CBB6F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556361295/40CA2E6DA42BCF6B45448EFB5C9C8FD3886B9234/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e2f7a",
"Name": "CardCustom",
"Transform": {
"posX": -2.72472572,
"posY": 1.6293323,
"posZ": 0.373330951,
"rotX": 359.980621,
"rotY": 270.000153,
"rotZ": -0.00210873177,
"scaleX": 0.876684368,
"scaleY": 1.0,
"scaleZ": 0.876684368
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 269400,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320375665/ABF888455B902082B6B88F6031B72BF522A2FECC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320377355/BFE5A20AC88E20D99F6585AEB6E28AF4492ED422/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "975c38",
"Name": "Card",
"Transform": {
"posX": -2.7247107,
"posY": 1.66390347,
"posZ": 0.373333424,
"rotX": 359.919373,
"rotY": 270.000458,
"rotZ": 0.0160344169,
"scaleX": 0.876684368,
"scaleY": 1.0,
"scaleZ": 0.876684368
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 1000,
"SidewaysCard": false,
"CustomDeck": {
"10": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556361060/AAB24817ADEA77728D632FA255C96365FC7CBB6F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556361295/40CA2E6DA42BCF6B45448EFB5C9C8FD3886B9234/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b3b462",
"Name": "Deck",
"Transform": {
"posX": -2.688627,
"posY": 1.67393076,
"posZ": -5.048496,
"rotX": 359.919739,
"rotY": 270.000061,
"rotZ": 0.0168373957,
"scaleX": 0.876452148,
"scaleY": 1.0,
"scaleZ": 0.876452148
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": [
266602,
266601,
266600,
266500
],
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440318976215/33C02039C82F9A9BDF53452B5A331BE77ABC7FF2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440318976657/502B4A1BDF8528CE3C2C790A7119893073FFC720/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
},
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556554595/24331DC69116C110D7A368BCC2D27AE7239214DC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556555638/46A6A290047E8BBE8FD12A62A8774C575C47154F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "8d2686",
"Name": "Card",
"Transform": {
"posX": -2.68857884,
"posY": 1.59725261,
"posZ": -5.04862738,
"rotX": 359.920776,
"rotY": 269.9996,
"rotZ": 0.0135703431,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 266602,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440318976215/33C02039C82F9A9BDF53452B5A331BE77ABC7FF2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440318976657/502B4A1BDF8528CE3C2C790A7119893073FFC720/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a06c1",
"Name": "Card",
"Transform": {
"posX": -2.6883285,
"posY": 1.63056719,
"posZ": -5.04851,
"rotX": 0.0330005251,
"rotY": 270.000671,
"rotZ": 0.01837887,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 266601,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440318976215/33C02039C82F9A9BDF53452B5A331BE77ABC7FF2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440318976657/502B4A1BDF8528CE3C2C790A7119893073FFC720/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "846979",
"Name": "Card",
"Transform": {
"posX": -2.688531,
"posY": 1.66225,
"posZ": -5.048544,
"rotX": 359.917664,
"rotY": 269.999725,
"rotZ": 0.0163720548,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 266600,
"SidewaysCard": false,
"CustomDeck": {
"2666": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440318976215/33C02039C82F9A9BDF53452B5A331BE77ABC7FF2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440318976657/502B4A1BDF8528CE3C2C790A7119893073FFC720/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "eceae1",
"Name": "CardCustom",
"Transform": {
"posX": -2.68853188,
"posY": 1.67199123,
"posZ": -5.048544,
"rotX": 359.9178,
"rotY": 269.999878,
"rotZ": 0.0164173171,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"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": 266500,
"SidewaysCard": true,
"CustomDeck": {
"2665": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556554595/24331DC69116C110D7A368BCC2D27AE7239214DC/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556555638/46A6A290047E8BBE8FD12A62A8774C575C47154F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b6da68",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.70240057,
"posY": 1.55830836,
"posZ": 14.2777014,
"rotX": 359.955139,
"rotY": 224.997864,
"rotZ": 0.06867281,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.02148666,
"g": 0.00100758043,
"b": 0.02148666
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
},
"ContainedObjects": [
{
"GUID": "cca455",
"Name": "Card",
"Transform": {
"posX": 4.88074064,
"posY": 2.337322,
"posZ": -58.1245422,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.0168721862,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Forgotten Map",
"Description": "",
"GMNotes": "",
"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": 301,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556320710/502F421ED89481860708AEB1F1671F997392CC3B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556322130/3949CF0A86F684D7C71A0EE62CC71C26A7EDC49A/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c89ddd",
"Name": "Card",
"Transform": {
"posX": 5.969988,
"posY": 2.33750987,
"posZ": -55.8879623,
"rotX": 359.920135,
"rotY": 269.999969,
"rotZ": 0.0168721527,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Priceless Statuette",
"Description": "",
"GMNotes": "",
"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": 303,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556320710/502F421ED89481860708AEB1F1671F997392CC3B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556322130/3949CF0A86F684D7C71A0EE62CC71C26A7EDC49A/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dec5a4",
"Name": "Card",
"Transform": {
"posX": 9.761869,
"posY": 2.341628,
"posZ": -48.8656273,
"rotX": 359.920135,
"rotY": 269.999939,
"rotZ": 0.016870195,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Globe of Darkness",
"Description": "",
"GMNotes": "",
"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": 302,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556320710/502F421ED89481860708AEB1F1671F997392CC3B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556322130/3949CF0A86F684D7C71A0EE62CC71C26A7EDC49A/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a64dec",
"Name": "Card",
"Transform": {
"posX": 19.2318077,
"posY": 2.30198145,
"posZ": -70.47136,
"rotX": 359.920135,
"rotY": 269.999969,
"rotZ": 0.0168732014,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Demonic Stele",
"Description": "",
"GMNotes": "",
"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": 300,
"SidewaysCard": false,
"CustomDeck": {
"3": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556320710/502F421ED89481860708AEB1F1671F997392CC3B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556322130/3949CF0A86F684D7C71A0EE62CC71C26A7EDC49A/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ab2ca",
"Name": "Card",
"Transform": {
"posX": 27.3472538,
"posY": 1.98474,
"posZ": 7.24242067,
"rotX": 6.60499563E-06,
"rotY": 60.0100479,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Secret Passage.",
"Description": "",
"GMNotes": "",
"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": 211,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4eb8f5",
"Name": "CardCustom",
"Transform": {
"posX": 26.7766972,
"posY": 1.98474121,
"posZ": 5.266592,
"rotX": -4.17147821E-05,
"rotY": 120.002693,
"rotZ": -1.65095644E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pocket Dimension",
"Description": "",
"GMNotes": "",
"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": 269400,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320339079/8C4DE5021A905FE2308DC7428A0B5A56DEB4C285/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440319158130/227EB01088A34B1C44720D18D5F529AC6AB99B39/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "04bd4f",
"Name": "CardCustom",
"Transform": {
"posX": 37.5944481,
"posY": 1.98474,
"posZ": 11.89591,
"rotX": 6.89819626E-06,
"rotY": 60.0227547,
"rotZ": 1.26442944E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Imdugud",
"Description": "",
"GMNotes": "",
"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": 269400,
"SidewaysCard": false,
"CustomDeck": {
"2694": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320352889/C1659D4BA12D1F413CB23AB5B19F787561DF9593/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440319209232/6A23B8169B20603248167EE57C3A90E7D5E8B1D2/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bf21c1",
"Name": "Card",
"Transform": {
"posX": 25.1908321,
"posY": 2.3022573,
"posZ": -76.66981,
"rotX": 359.920135,
"rotY": 269.978424,
"rotZ": 0.016934298,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Guardian Golem",
"Description": "Golem",
"GMNotes": "",
"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": 228,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "30abdf",
"Name": "Deck",
"Transform": {
"posX": 30.207983,
"posY": 2.01613736,
"posZ": 14.3968611,
"rotX": -1.70550211E-05,
"rotY": 179.999847,
"rotZ": 180.000046,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unknown Ruins",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270012,
270009,
270000,
270001,
270600
],
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
},
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320388779/F515F311B93BBD0250C39A75630B41D25E21A494/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320390662/4FA2A677CB683A3ADB994F79D9C4A5D45FB99145/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "60e3e4",
"Name": "Card",
"Transform": {
"posX": 7.28220272,
"posY": 1.058855,
"posZ": -3.449851,
"rotX": -9.878463E-05,
"rotY": 180.0,
"rotZ": 0.0001282815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Monolith",
"Description": "",
"GMNotes": "",
"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": 270012,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "117ad0",
"Name": "Card",
"Transform": {
"posX": 7.090013,
"posY": 1.04922092,
"posZ": -3.11856842,
"rotX": -0.000176786576,
"rotY": 180.000122,
"rotZ": -0.0006920712,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Otherworldly Web",
"Description": "",
"GMNotes": "",
"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": 270009,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9ae192",
"Name": "Card",
"Transform": {
"posX": 7.153921,
"posY": 1.06843388,
"posZ": -3.09204125,
"rotX": 0.001606257,
"rotY": 180.0001,
"rotZ": -0.0029422096,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Altar of Sacrifice",
"Description": "",
"GMNotes": "",
"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": 270000,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0aae92",
"Name": "Card",
"Transform": {
"posX": 7.52604246,
"posY": 0.9735089,
"posZ": -3.01268029,
"rotX": 0.0011506835,
"rotY": 180.000061,
"rotZ": 359.993347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Black Ziggurat",
"Description": "",
"GMNotes": "",
"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": 270001,
"SidewaysCard": false,
"CustomDeck": {
"2700": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c1fcdd",
"Name": "CardCustom",
"Transform": {
"posX": 7.58774137,
"posY": 1.0093658,
"posZ": -3.124239,
"rotX": 0.0150025543,
"rotY": 180.000336,
"rotZ": 359.99234,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Nest",
"Description": "",
"GMNotes": "",
"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": 270600,
"SidewaysCard": false,
"CustomDeck": {
"2706": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320388779/F515F311B93BBD0250C39A75630B41D25E21A494/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477440320390662/4FA2A677CB683A3ADB994F79D9C4A5D45FB99145/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "28ab0a",
"Name": "Deck",
"Transform": {
"posX": 7.150338,
"posY": 3.59811878,
"posZ": 19.5909767,
"rotX": 359.920166,
"rotY": 269.9815,
"rotZ": 0.0169930961,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hellish Guests",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
205,
209,
231,
232,
210,
211
],
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "1664f2",
"Name": "Card",
"Transform": {
"posX": -1.46535146,
"posY": 1.54473364,
"posZ": -26.9313965,
"rotX": 1.99787581,
"rotY": 269.995056,
"rotZ": 0.0168858469,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Son of the Ruinstorm",
"Description": "",
"GMNotes": "",
"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": 205,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6654bd",
"Name": "Card",
"Transform": {
"posX": -2.14735937,
"posY": 1.48940289,
"posZ": -29.5620136,
"rotX": 359.920135,
"rotY": 269.997162,
"rotZ": 0.0168781988,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Visions of Brutality",
"Description": "",
"GMNotes": "",
"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": 209,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "391947",
"Name": "Card",
"Transform": {
"posX": -5.781549,
"posY": 1.6168201,
"posZ": -26.9856834,
"rotX": 355.363,
"rotY": 269.991882,
"rotZ": 0.0159329791,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infernal Gaze",
"Description": "",
"GMNotes": "",
"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": 231,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "806ccd",
"Name": "Card",
"Transform": {
"posX": -5.874982,
"posY": 1.62121165,
"posZ": -29.6659756,
"rotX": 355.174561,
"rotY": 270.01004,
"rotZ": 0.0161716547,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Infernal Gaze",
"Description": "",
"GMNotes": "",
"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": 232,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "904f97",
"Name": "Card",
"Transform": {
"posX": -2.679625,
"posY": 1.4893198,
"posZ": -32.3639565,
"rotX": 359.920135,
"rotY": 269.99942,
"rotZ": 0.0168751683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Visions of Brutality",
"Description": "",
"GMNotes": "",
"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": 210,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "303004",
"Name": "Card",
"Transform": {
"posX": -2.34655738,
"posY": 1.488097,
"posZ": -34.93987,
"rotX": 359.920135,
"rotY": 269.999329,
"rotZ": 0.0168748815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Visions of Brutality",
"Description": "",
"GMNotes": "",
"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": 211,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7e2e58",
"Name": "Deck",
"Transform": {
"posX": 5.920501,
"posY": 3.6042757,
"posZ": 18.7311249,
"rotX": 359.919952,
"rotY": 269.9918,
"rotZ": 0.0202987529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nameless Citizen",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
206,
225,
226,
233,
234,
235,
227
],
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "064044",
"Name": "Card",
"Transform": {
"posX": -1.689626,
"posY": 1.49025834,
"posZ": -24.4895725,
"rotX": 359.920135,
"rotY": 269.995,
"rotZ": 0.0168811344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Monster of SanSan",
"Description": "",
"GMNotes": "",
"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": 206,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "88fbcf",
"Name": "Card",
"Transform": {
"posX": -1.465691,
"posY": 1.48922718,
"posZ": -26.9312019,
"rotX": 359.920135,
"rotY": 269.992371,
"rotZ": 0.0168834683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Denizen",
"Description": "",
"GMNotes": "",
"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": 225,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d3b19",
"Name": "Card",
"Transform": {
"posX": -1.80598891,
"posY": 1.488882,
"posZ": -29.8189373,
"rotX": 359.921082,
"rotY": 269.9982,
"rotZ": 0.0171575435,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Denizen",
"Description": "",
"GMNotes": "",
"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": 226,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "83b6d9",
"Name": "Card",
"Transform": {
"posX": -4.85732,
"posY": 1.4946425,
"posZ": -24.598238,
"rotX": 359.920135,
"rotY": 269.989777,
"rotZ": 0.0168877877,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nameless Inhabitant",
"Description": "",
"GMNotes": "",
"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": 233,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "67cfbc",
"Name": "Card",
"Transform": {
"posX": -4.856873,
"posY": 1.49378061,
"posZ": -27.5232315,
"rotX": 359.920135,
"rotY": 269.9984,
"rotZ": 0.01687477,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nameless Inhabitant",
"Description": "",
"GMNotes": "",
"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": 234,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "75847d",
"Name": "Card",
"Transform": {
"posX": -4.67296171,
"posY": 1.50692093,
"posZ": -30.798111,
"rotX": 0.457017779,
"rotY": 269.992981,
"rotZ": 0.0173618384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nameless Inhabitant",
"Description": "",
"GMNotes": "",
"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": 235,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f881f9",
"Name": "Card",
"Transform": {
"posX": -1.70618415,
"posY": 1.48786628,
"posZ": -32.6916924,
"rotX": 359.920166,
"rotY": 269.998566,
"rotZ": 0.016867904,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Frenzied Denizen",
"Description": "",
"GMNotes": "",
"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": 227,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556313191/A90403E6AA8C6450E38485477328F6612C69D5DE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556315013/0E972160F708B8FCF8AC87C02EA2FE15EBC60A66/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": false,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "c0dc73",
"Name": "Custom_Model",
"Transform": {
"posX": 0.0875,
"posY": 1.6124,
"posZ": -9.435,
"rotX": 359.9198,
"rotY": 269.9873,
"rotZ": 0.0169000011,
"scaleX": 0.325000376,
"scaleY": 0.325000376,
"scaleZ": 0.325000376
},
"Nickname": "The Nameless City Custom Data Helper",
"Description": "Include this in custom content for clue spawning!",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": true,
"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 \"Unholy Chamber\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"The Monolith\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Unspeakable Nest\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Altar of Sacrifice\": {\"type\": \"perPlayer\", \"value\": 3, \"clueSide\": \"front\"},\r\n \"Buried Archway\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Cacophonic Corridor\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Entrance Hall\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Forsaken Circle\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\r\n \"Twisted Pyramid\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Elder's Vault\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\r\n \"Incomprehensible Glyphs\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Pocket Dimension\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Otherworldly Web\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Pathway to Nowhere\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"}\n\r}\r\n]]\r\n\r\nHIDDEN_CARD_DATA = {\r\n \"Hallucinatory Holograms\",\r\n \"Reminiscence (Secrets)\",\r\n \"Reminiscence (Pledge)\",\r\n \"Reminiscence (Covenant)\",\r\n \"Cabin Pressure\",\r\n \"Remember Me?\",\r\n \"Manifested Whispers\",\r\n \"Dark Reflections (Zealot)\",\r\n \"Dark Reflections (Murderer)\",\r\n \"Dark Reflections (Malingnerer)\",\r\n \"Dark Reflections (Sycophant)\",\r\n \"Perspective Switch\",\r\n \"Echoes of Tassilda (Mind)\",\r\n \"Echoes of Tassilda (Matter)\",\r\n \"Madness of Carcosa\"\r\n}\r\n\r\nLOCATIONS_DATA = JSON.decode(LOCATIONS_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 dataHelper = getObjectFromGUID('708279')\r\n dataHelper.call(\"updateHiddenCards\", {self.getGUID()})\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cc8bbb",
"Name": "Custom_Tile",
"Transform": {
"posX": -12.0335016,
"posY": 1.59552979,
"posZ": -9.204601,
"rotX": 359.9201,
"rotY": 270.01178,
"rotZ": 0.0168169923,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Key",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/stbBxtx.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdea43",
"Name": "Deck",
"Transform": {
"posX": -12.6030264,
"posY": 1.69734359,
"posZ": 11.274807,
"rotX": 359.9201,
"rotY": 270.000061,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
270704,
270703,
270714,
270713,
270710
],
"CustomDeck": {
"2707": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "422834",
"Name": "Card",
"Transform": {
"posX": -17.1200047,
"posY": 1.704376,
"posZ": 3.860007,
"rotX": 359.922272,
"rotY": 269.999878,
"rotZ": 180.019592,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cacophonic Corridor",
"Description": "",
"GMNotes": "",
"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": 270704,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "efb5de",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.69470358,
"posZ": 3.86000752,
"rotX": 359.9206,
"rotY": 269.99942,
"rotZ": 180.019012,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Buried Archway",
"Description": "",
"GMNotes": "",
"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": 270703,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f595b6",
"Name": "Card",
"Transform": {
"posX": -17.1199226,
"posY": 1.68506289,
"posZ": 3.85999441,
"rotX": 359.8524,
"rotY": 269.999725,
"rotZ": 180.0131,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unholy Chamber",
"Description": "",
"GMNotes": "",
"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": 270714,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "088542",
"Name": "Card",
"Transform": {
"posX": -17.1200371,
"posY": 1.65033042,
"posZ": 3.859961,
"rotX": 359.96283,
"rotY": 270.000519,
"rotZ": 180.04512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Twisted Pyramid",
"Description": "",
"GMNotes": "",
"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": 270713,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a47c6f",
"Name": "Card",
"Transform": {
"posX": -17.1200256,
"posY": 1.61989415,
"posZ": 3.86001086,
"rotX": 359.9218,
"rotY": 270.0004,
"rotZ": 180.0283,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Pathway to Nowhere",
"Description": "",
"GMNotes": "",
"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": 270710,
"SidewaysCard": false,
"CustomDeck": {
"2": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556303932/8C3B2553692CE413690F948C29630DD9CA595EC2/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1797477352556305374/DE3E6962B34178ADFE3043C889F67EA0FE29E787/",
"NumWidth": 10,
"NumHeight": 7,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "d3d96a",
"Name": "Custom_Tile",
"Transform": {
"posX": -11.9824982,
"posY": 1.59610057,
"posZ": -7.020701,
"rotX": 359.9201,
"rotY": 270.021118,
"rotZ": 0.01680364,
"scaleX": 0.81,
"scaleY": 1.0,
"scaleZ": 0.81
},
"Nickname": "Key",
"Description": "",
"GMNotes": "",
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/ttnspKt.png",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 2,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"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
}
}
]
}