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

5716 lines
188 KiB
JSON

{
"GUID": "18aa54",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 15.2301826,
"posY": 1.4814992,
"posZ": -20.5980759,
"rotX": 2.11100343E-07,
"rotY": 270.0031,
"rotZ": -2.31346871E-08,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "The Symphony of Erich Zann",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1254763972105175718/5A09C7E8EBCC79DD9E405FF6F83E49C2C27D5F29/",
"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\":{\"025ede\":{\"lock\":false,\"pos\":{\"x\":-2.7253,\"y\":1.6208,\"z\":0.3733},\"rot\":{\"x\":0.0168,\"y\":180.0004,\"z\":0.0803}},\"0b6540\":{\"lock\":false,\"pos\":{\"x\":-3.9276,\"y\":1.7299,\"z\":5.7571},\"rot\":{\"x\":359.9197,\"y\":270,\"z\":180.0168}},\"1d53b9\":{\"lock\":false,\"pos\":{\"x\":-27.1699,\"y\":1.8197,\"z\":3.4176},\"rot\":{\"x\":359.9356,\"y\":315.0006,\"z\":359.9502}},\"267216\":{\"lock\":false,\"pos\":{\"x\":-9.3367,\"y\":1.5512,\"z\":22.848},\"rot\":{\"x\":359.9201,\"y\":270.025,\"z\":359.3601}},\"28cca1\":{\"lock\":false,\"pos\":{\"x\":-2.6882,\"y\":1.6191,\"z\":-5.0485},\"rot\":{\"x\":0.0168,\"y\":179.9995,\"z\":0.0803}},\"3f8eb4\":{\"lock\":false,\"pos\":{\"x\":-0.5821,\"y\":1.7292,\"z\":-10.4126},\"rot\":{\"x\":359.9831,\"y\":0.0036,\"z\":359.9193}},\"4dc9bc\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.8299,\"z\":7.57},\"rot\":{\"x\":359.9226,\"y\":270.0023,\"z\":180.0177}},\"5abb04\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.8153,\"z\":3.86},\"rot\":{\"x\":359.9842,\"y\":-0.0045,\"z\":359.9166}},\"5bd64c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.8389,\"z\":7.5702},\"rot\":{\"x\":359.9229,\"y\":270.0232,\"z\":180.0172}},\"67cf63\":{\"lock\":false,\"pos\":{\"x\":-12.1989,\"y\":1.522,\"z\":33.707},\"rot\":{\"x\":359.9201,\"y\":269.9904,\"z\":0.0169}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-20.2811,\"y\":1.8097,\"z\":0.1027},\"rot\":{\"x\":359.9218,\"y\":269.9872,\"z\":0.0165}},\"90ad8b\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.8278,\"z\":-0.03},\"rot\":{\"x\":359.9224,\"y\":269.9854,\"z\":180.0177}},\"95dc3d\":{\"lock\":false,\"pos\":{\"x\":-12.1893,\"y\":1.5207,\"z\":29.2011},\"rot\":{\"x\":359.9201,\"y\":269.9885,\"z\":0.0169}},\"b6da68\":{\"lock\":false,\"pos\":{\"x\":1.6955,\"y\":1.5583,\"z\":14.2792},\"rot\":{\"x\":359.9552,\"y\":224.9335,\"z\":0.0687}},\"c582af\":{\"lock\":false,\"pos\":{\"x\":-26.9427,\"y\":1.821,\"z\":7.6022},\"rot\":{\"x\":359.9223,\"y\":270.0273,\"z\":0.0159}},\"c9d140\":{\"lock\":false,\"pos\":{\"x\":-12.2295,\"y\":1.5215,\"z\":31.5404},\"rot\":{\"x\":359.9201,\"y\":269.9884,\"z\":0.0169}},\"de583f\":{\"lock\":false,\"pos\":{\"x\":-3.956,\"y\":1.5975,\"z\":-10.4413},\"rot\":{\"x\":359.9197,\"y\":270.002,\"z\":0.0168}},\"edd0d4\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.8189,\"z\":-0.03},\"rot\":{\"x\":359.922,\"y\":270.0099,\"z\":180.0162}},\"f4c93e\":{\"lock\":false,\"pos\":{\"x\":-3.9584,\"y\":1.5827,\"z\":-14.7436},\"rot\":{\"x\":359.9197,\"y\":270.0297,\"z\":0.0168}},\"f5f35d\":{\"lock\":false,\"pos\":{\"x\":-9.207,\"y\":1.5169,\"z\":30.3654},\"rot\":{\"x\":0.0169,\"y\":180,\"z\":0.0799}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "025ede",
"Name": "Deck",
"Transform": {
"posX": -2.72529817,
"posY": 1.62076128,
"posZ": 0.373309165,
"rotX": 0.0168351009,
"rotY": 180.0004,
"rotZ": 0.0802560747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Agenda Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
278100,
278000,
277800
],
"CustomDeck": {
"2781": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653673257/29C99A40CEB0E50B23650A2F2CFFAAA32A6D695D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653673420/0F02A44E1A4C05D3C4FDF8EDBB9D30F61969E625/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653672083/1BC12B00DF195E8F97694AB3D3FE1D0990FB413F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653672271/37EE8C60E0E7CBE31CEB214CBD8FD049D45D49DA/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2778": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653671385/B91836D7A315F152EA606F22F6C2698FFF5920F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653671529/68B2F04C78290216620977173701B8B770D9052A/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "254a77",
"Name": "CardCustom",
"Transform": {
"posX": -2.72526741,
"posY": 1.59898567,
"posZ": 0.373338521,
"rotX": 0.0169148557,
"rotY": 180.000381,
"rotZ": 0.07973873,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278100,
"SidewaysCard": true,
"CustomDeck": {
"2781": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653673257/29C99A40CEB0E50B23650A2F2CFFAAA32A6D695D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653673420/0F02A44E1A4C05D3C4FDF8EDBB9D30F61969E625/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "944d06",
"Name": "CardCustom",
"Transform": {
"posX": -2.72471619,
"posY": 1.64481938,
"posZ": 0.3733226,
"rotX": 0.0193027239,
"rotY": 180.116333,
"rotZ": 0.07800098,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278000,
"SidewaysCard": true,
"CustomDeck": {
"2780": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653672083/1BC12B00DF195E8F97694AB3D3FE1D0990FB413F/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653672271/37EE8C60E0E7CBE31CEB214CBD8FD049D45D49DA/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "509815",
"Name": "CardCustom",
"Transform": {
"posX": -2.72472119,
"posY": 1.70601475,
"posZ": 0.373323679,
"rotX": 0.0100413347,
"rotY": 179.99971,
"rotZ": 1.60240471,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277800,
"SidewaysCard": true,
"CustomDeck": {
"2778": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653671385/B91836D7A315F152EA606F22F6C2698FFF5920F6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653671529/68B2F04C78290216620977173701B8B770D9052A/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "28cca1",
"Name": "Deck",
"Transform": {
"posX": -2.6882,
"posY": 1.61911607,
"posZ": -5.0485,
"rotX": 0.0168363973,
"rotY": 179.9995,
"rotZ": 0.0802558661,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Act Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": true,
"DeckIDs": [
536800,
278300,
278200
],
"CustomDeck": {
"5368": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653675672/43689598136C351AAB7853885777115589A2D6FE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010592205794604/24FDBD44FE65F565D68D4FF102CB93103CE2711D/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2783": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653674971/AD80859467E5451F5BCDFA1295DB2CB51856FD15/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653675139/DF7479F1673BEBA7D58EA4F90DFB8B7549A4DFCB/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2782": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653674248/54599317B80F49A9B587B0E7E147279DBFEEFB6B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653674429/3B2D751B43A0CD2602ACEDE43591CEBCC35F45A6/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "81d6a8",
"Name": "CardCustom",
"Transform": {
"posX": -2.68827462,
"posY": 1.597337,
"posZ": -5.04850864,
"rotX": 0.016950693,
"rotY": 179.999954,
"rotZ": 0.0794979,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 536800,
"SidewaysCard": true,
"CustomDeck": {
"5368": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653675672/43689598136C351AAB7853885777115589A2D6FE/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010592205794604/24FDBD44FE65F565D68D4FF102CB93103CE2711D/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f08af9",
"Name": "CardCustom",
"Transform": {
"posX": -2.68853283,
"posY": 1.64277112,
"posZ": -5.048532,
"rotX": 0.018838007,
"rotY": 180.000031,
"rotZ": 0.08607274,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278300,
"SidewaysCard": true,
"CustomDeck": {
"2783": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653674971/AD80859467E5451F5BCDFA1295DB2CB51856FD15/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653675139/DF7479F1673BEBA7D58EA4F90DFB8B7549A4DFCB/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "abf5b8",
"Name": "CardCustom",
"Transform": {
"posX": -2.6885345,
"posY": 1.70190823,
"posZ": -5.048532,
"rotX": 0.0168306865,
"rotY": 180.000839,
"rotZ": 1.67665553,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278200,
"SidewaysCard": false,
"CustomDeck": {
"2782": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653674248/54599317B80F49A9B587B0E7E147279DBFEEFB6B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653674429/3B2D751B43A0CD2602ACEDE43591CEBCC35F45A6/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "de583f",
"Name": "CardCustom",
"Transform": {
"posX": -3.95600057,
"posY": 1.59753942,
"posZ": -10.4413013,
"rotX": 359.919739,
"rotY": 270.002,
"rotZ": 0.0168343913,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario Reference Card",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 277700,
"SidewaysCard": false,
"CustomDeck": {
"2777": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653670482/517AAC81B6D9700C176437D21AFBB8AD0178A543/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653670585/E9370507C2BA95D83CB565DF7CE5642144B913D0/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f4c93e",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.9584,
"posY": 1.58267379,
"posZ": -14.7436028,
"rotX": 359.919739,
"rotY": 270.0297,
"rotZ": 0.0167963468,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "The Symphony of Erich Zann",
"Description": "click to set chaos token difficulty",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/",
"ImageSecondaryURL": "http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "name = 'Erich Zann'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\r\nend\r\n\r\nfunction easyClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='easy'})\r\nend\r\n\r\nfunction normalClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='normal'})\r\nend\r\n\r\nfunction hardClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='hard'})\r\nend\r\n\r\nfunction expertClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='expert'})\r\nend\r\n\r\nfunction standaloneClick()\r\n Global.call('fillContainer', {object=self, key=name, mode='standalone'})\r\nend\r\n",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "0b6540",
"Name": "Deck",
"Transform": {
"posX": -3.92760015,
"posY": 1.72993624,
"posZ": 5.757101,
"rotX": 359.919739,
"rotY": 270.0,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
281400,
282200,
281300,
281400,
282400,
281600,
282600,
281300,
281600,
282300,
281100,
281800,
281900,
281000,
282400,
282100,
282600,
281700,
281800,
281900,
282000,
281000,
281700,
282000,
281100
],
"CustomDeck": {
"2814": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653719657/DE09DCF075879621F6A56EB4F229D9FBE165540B/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2822": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653730107/2B19817571F1C9122019C2A27AE0F1F02A254E7D/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2813": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653715674/671A485D728B1F56FB78A1503FE23BEDAF980FFE/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2824": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653733115/940B5DC78DC65738D93BC26C41DDF266FC18D892/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2816": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653722484/891B225A55ECAE96F360613DD139024C0837DE32/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2826": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653735216/BA4261CDF91851BB0D5C9F3A2D8042AC5785A882/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2823": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653731848/A62E84FA11BE34B6D838F85584A99475878CD98C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2811": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653713745/46CC0B47F41A61C63EF41D282723AF8219C48963/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2818": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653724735/1091320A6BF57B6D0922F2F84069CBC426F28DCC/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2819": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653726228/FFAE8FCD15C645BAE416975FDDC36791F4BB0DE1/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2810": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653712998/4FFD79164489B2BE37FACA722BA6BF67B6F29C5C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2821": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653728924/61139A3A73550C22E4153CC65F3E8211AE0B7344/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2817": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653723547/82C4646ACFA886DAC19401F4F2EE3CEF77EB01BD/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2820": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653727607/3D8AA39343DB8CA74E2AFE1CEC3239790BB82C82/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "79aa00",
"Name": "CardCustom",
"Transform": {
"posX": -43.36996,
"posY": 1.69804406,
"posZ": -11.5100088,
"rotX": 359.9159,
"rotY": 270.0041,
"rotZ": 0.0147019625,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Melody",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281400,
"SidewaysCard": false,
"CustomDeck": {
"2814": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653719657/DE09DCF075879621F6A56EB4F229D9FBE165540B/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8c1333",
"Name": "CardCustom",
"Transform": {
"posX": -43.8916435,
"posY": 1.66150534,
"posZ": -19.27703,
"rotX": 359.904724,
"rotY": 270.050171,
"rotZ": 4.58399773,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dancing Rats (Romantic Harmony)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282200,
"SidewaysCard": false,
"CustomDeck": {
"2822": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653730107/2B19817571F1C9122019C2A27AE0F1F02A254E7D/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d6c151",
"Name": "CardCustom",
"Transform": {
"posX": -39.97708,
"posY": 1.68109369,
"posZ": -16.6168232,
"rotX": 359.9546,
"rotY": 269.999939,
"rotZ": 359.969971,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Endless Echo",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281300,
"SidewaysCard": false,
"CustomDeck": {
"2813": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653715674/671A485D728B1F56FB78A1503FE23BEDAF980FFE/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b7067",
"Name": "CardCustom",
"Transform": {
"posX": -43.370018,
"posY": 1.6521275,
"posZ": -11.5099993,
"rotX": 359.92038,
"rotY": 270.004028,
"rotZ": 0.01505346,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ethereal Melody",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281400,
"SidewaysCard": false,
"CustomDeck": {
"2814": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653719657/DE09DCF075879621F6A56EB4F229D9FBE165540B/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fc3d9f",
"Name": "CardCustom",
"Transform": {
"posX": -46.65921,
"posY": 1.71375155,
"posZ": -26.1259,
"rotX": 3.94545364,
"rotY": 269.9007,
"rotZ": 0.0176509153,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Waltz of the Spheres",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282400,
"SidewaysCard": false,
"CustomDeck": {
"2824": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653733115/940B5DC78DC65738D93BC26C41DDF266FC18D892/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c6c149",
"Name": "CardCustom",
"Transform": {
"posX": -43.3701363,
"posY": 1.65316927,
"posZ": -7.70143747,
"rotX": 359.9212,
"rotY": 270.000549,
"rotZ": 0.009838996,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hissing Noise",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281600,
"SidewaysCard": false,
"CustomDeck": {
"2816": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653722484/891B225A55ECAE96F360613DD139024C0837DE32/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "62cfe9",
"Name": "CardCustom",
"Transform": {
"posX": -47.24088,
"posY": 1.551259,
"posZ": -32.83001,
"rotX": 359.920624,
"rotY": 269.896118,
"rotZ": 0.013920689,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Turnaround",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282600,
"SidewaysCard": false,
"CustomDeck": {
"2826": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653735216/BA4261CDF91851BB0D5C9F3A2D8042AC5785A882/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b7067",
"Name": "CardCustom",
"Transform": {
"posX": -39.93352,
"posY": 1.6457901,
"posZ": -16.68018,
"rotX": 359.920654,
"rotY": 270.0036,
"rotZ": 0.0133307464,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Endless Echo",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281300,
"SidewaysCard": false,
"CustomDeck": {
"2813": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653715674/671A485D728B1F56FB78A1503FE23BEDAF980FFE/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4c8e65",
"Name": "CardCustom",
"Transform": {
"posX": -43.3700142,
"posY": 1.70984471,
"posZ": -7.700011,
"rotX": 359.9068,
"rotY": 270.000549,
"rotZ": 0.598960936,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hissing Noise",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281600,
"SidewaysCard": false,
"CustomDeck": {
"2816": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653722484/891B225A55ECAE96F360613DD139024C0837DE32/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2a3b93",
"Name": "CardCustom",
"Transform": {
"posX": -41.22762,
"posY": 1.63858211,
"posZ": -20.0670261,
"rotX": 359.703461,
"rotY": 269.9873,
"rotZ": 3.4639132,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dancing Rats (Sonorous Fanfare)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282300,
"SidewaysCard": false,
"CustomDeck": {
"2823": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653731848/A62E84FA11BE34B6D838F85584A99475878CD98C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "42e303",
"Name": "CardCustom",
"Transform": {
"posX": -39.8684425,
"posY": 1.679712,
"posZ": -9.765068,
"rotX": 359.7802,
"rotY": 269.946533,
"rotZ": 359.840363,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dies Irae",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281100,
"SidewaysCard": false,
"CustomDeck": {
"2811": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653713745/46CC0B47F41A61C63EF41D282723AF8219C48963/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fcc9d3",
"Name": "CardCustom",
"Transform": {
"posX": -47.0136642,
"posY": 1.64659691,
"posZ": -10.76999,
"rotX": 3.25772071,
"rotY": 270.034851,
"rotZ": 0.0166760683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overwhelm",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281800,
"SidewaysCard": false,
"CustomDeck": {
"2818": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653724735/1091320A6BF57B6D0922F2F84069CBC426F28DCC/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6e3b93",
"Name": "CardCustom",
"Transform": {
"posX": -47.10687,
"posY": 1.65426278,
"posZ": -14.6805849,
"rotX": 0.367429227,
"rotY": 270.01297,
"rotZ": 0.01666754,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rhythm from Beyond",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281900,
"SidewaysCard": false,
"CustomDeck": {
"2819": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653726228/FFAE8FCD15C645BAE416975FDDC36791F4BB0DE1/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9b7067",
"Name": "CardCustom",
"Transform": {
"posX": -40.007576,
"posY": 1.72544038,
"posZ": -9.596239,
"rotX": 359.806976,
"rotY": 270.002625,
"rotZ": 0.01596543,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Brass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281000,
"SidewaysCard": false,
"CustomDeck": {
"2810": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653712998/4FFD79164489B2BE37FACA722BA6BF67B6F29C5C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9aa2dc",
"Name": "CardCustom",
"Transform": {
"posX": -46.79669,
"posY": 1.66011035,
"posZ": -26.0363064,
"rotX": 3.943495,
"rotY": 269.9008,
"rotZ": 0.0173838623,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Waltz of the Spheres",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282400,
"SidewaysCard": false,
"CustomDeck": {
"2824": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653733115/940B5DC78DC65738D93BC26C41DDF266FC18D892/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f03216",
"Name": "CardCustom",
"Transform": {
"posX": -43.90037,
"posY": 1.63779843,
"posZ": -18.7218323,
"rotX": 359.920715,
"rotY": 270.016846,
"rotZ": 4.581781,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dancing Rats (Reqiem Mass)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282100,
"SidewaysCard": false,
"CustomDeck": {
"2821": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653728924/61139A3A73550C22E4153CC65F3E8211AE0B7344/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "69a4f2",
"Name": "CardCustom",
"Transform": {
"posX": -47.288765,
"posY": 1.59705651,
"posZ": -33.079628,
"rotX": 359.9257,
"rotY": 269.896057,
"rotZ": 0.0164855458,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Turnaround",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282600,
"SidewaysCard": false,
"CustomDeck": {
"2826": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653735216/BA4261CDF91851BB0D5C9F3A2D8042AC5785A882/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "911be0",
"Name": "CardCustom",
"Transform": {
"posX": -43.3696976,
"posY": 1.70291317,
"posZ": -3.83050013,
"rotX": 0.129773483,
"rotY": 270.295227,
"rotZ": 2.26463366,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Macabre Dancers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281700,
"SidewaysCard": false,
"CustomDeck": {
"2817": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653723547/82C4646ACFA886DAC19401F4F2EE3CEF77EB01BD/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6a3bd0",
"Name": "CardCustom",
"Transform": {
"posX": -47.0030174,
"posY": 1.64805794,
"posZ": -7.35266447,
"rotX": 3.273613,
"rotY": 269.999634,
"rotZ": 0.0153611889,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Overwhelm",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281800,
"SidewaysCard": false,
"CustomDeck": {
"2818": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653724735/1091320A6BF57B6D0922F2F84069CBC426F28DCC/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "557e07",
"Name": "CardCustom",
"Transform": {
"posX": -46.6026955,
"posY": 1.70570648,
"posZ": -14.7777567,
"rotX": 0.366790384,
"rotY": 270.0136,
"rotZ": 0.016680425,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rhythm from Beyond",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281900,
"SidewaysCard": false,
"CustomDeck": {
"2819": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653726228/FFAE8FCD15C645BAE416975FDDC36791F4BB0DE1/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dcabac",
"Name": "CardCustom",
"Transform": {
"posX": -47.769455,
"posY": 1.65083826,
"posZ": -18.5415134,
"rotX": 0.24880293,
"rotY": 270.015717,
"rotZ": 0.0168580785,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrieking Violin",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282000,
"SidewaysCard": false,
"CustomDeck": {
"2820": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653727607/3D8AA39343DB8CA74E2AFE1CEC3239790BB82C82/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "67a4c4",
"Name": "CardCustom",
"Transform": {
"posX": -40.65715,
"posY": 1.7333045,
"posZ": -9.285283,
"rotX": 359.921967,
"rotY": 270.0039,
"rotZ": 0.00329492567,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Deafening Brass",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281000,
"SidewaysCard": false,
"CustomDeck": {
"2810": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653712998/4FFD79164489B2BE37FACA722BA6BF67B6F29C5C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2b9280",
"Name": "CardCustom",
"Transform": {
"posX": -43.3699951,
"posY": 1.76655924,
"posZ": -3.83000135,
"rotX": 0.130297676,
"rotY": 269.991241,
"rotZ": 1.0075326,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Macabre Dancers",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281700,
"SidewaysCard": false,
"CustomDeck": {
"2817": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653723547/82C4646ACFA886DAC19401F4F2EE3CEF77EB01BD/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "19d11a",
"Name": "CardCustom",
"Transform": {
"posX": -47.7696152,
"posY": 1.69753873,
"posZ": -18.5415363,
"rotX": 0.248678252,
"rotY": 270.015717,
"rotZ": 0.0135121224,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Shrieking Violin",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282000,
"SidewaysCard": false,
"CustomDeck": {
"2820": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653727607/3D8AA39343DB8CA74E2AFE1CEC3239790BB82C82/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "edc8f2",
"Name": "CardCustom",
"Transform": {
"posX": -40.1544838,
"posY": 1.64847755,
"posZ": -9.987878,
"rotX": 359.919159,
"rotY": 269.997162,
"rotZ": 0.0396243632,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dies Irae",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281100,
"SidewaysCard": false,
"CustomDeck": {
"2811": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653713745/46CC0B47F41A61C63EF41D282723AF8219C48963/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "3f8eb4",
"Name": "BlockSquare",
"Transform": {
"posX": -0.5820994,
"posY": 1.72921777,
"posZ": -10.4126005,
"rotX": 359.983032,
"rotY": 0.00371618313,
"rotZ": 359.9193,
"scaleX": 0.300000429,
"scaleY": 0.300000429,
"scaleZ": 0.300000429
},
"Nickname": "Custom Data Helper",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"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 \"Entrance Hall\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Main Lobby\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Gallery\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Auditorium\": {\"type\": \"perPlayer\", \"value\": 2, \"clueSide\": \"front\"},\r\n \"Anechoic Chamber\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Instrument Closet\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Recording Studio\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Rehearsal Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Scene Shop\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Tiring Room\": {\"type\": \"perPlayer\", \"value\": 1, \"clueSide\": \"front\"},\r\n \"Stage Hall\": {\"type\": \"fixed\", \"value\": 1, \"clueSide\": \"front\"}\r\n}\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\nend\r\n",
"LuaScriptState": "[]",
"XmlUI": ""
},
{
"GUID": "b6da68",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69550085,
"posY": 1.5583185,
"posZ": 14.2792025,
"rotX": 359.9552,
"rotY": 224.933487,
"rotZ": 0.0687221661,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.02148666,
"g": 0.00100758043,
"b": 0.02148666
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/764975951334964971/3078F312706FC974833ECD2A359B87FD4F283509/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"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": "9bf806",
"Name": "CardCustom",
"Transform": {
"posX": -1.58342063,
"posY": 2.788801,
"posZ": -8.71708,
"rotX": 359.95517,
"rotY": 224.999939,
"rotZ": 0.0686534345,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "The Piano",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 536900,
"SidewaysCard": false,
"CustomDeck": {
"5369": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653738551/61113BF5D74ECEE953C08732F9BB994FD0F2A1E3/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653738329/E145AC2840260E438DA46D6D2119B36EC50578CE/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "997b25",
"Name": "Deck",
"Transform": {
"posX": 1.69643223,
"posY": 3.69642949,
"posZ": 14.2788343,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.0582834855,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stuck in your Head",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
280900,
280900,
280900,
280900
],
"CustomDeck": {
"2809": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653711369/2CFF06ABFA811BAE8EBB3332F4A1D299F667CB6D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "f138a9",
"Name": "CardCustom",
"Transform": {
"posX": -11.2410545,
"posY": 1.61311817,
"posZ": 8.105895,
"rotX": 359.920074,
"rotY": 270.080444,
"rotZ": 0.0167271458,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stuck in your Head",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 280900,
"SidewaysCard": false,
"CustomDeck": {
"2809": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653711369/2CFF06ABFA811BAE8EBB3332F4A1D299F667CB6D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8d366f",
"Name": "CardCustom",
"Transform": {
"posX": -11.3259287,
"posY": 1.6145345,
"posZ": 12.5313807,
"rotX": 359.920135,
"rotY": 269.9906,
"rotZ": 180.016983,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stuck in your Head",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 280900,
"SidewaysCard": false,
"CustomDeck": {
"2809": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653711369/2CFF06ABFA811BAE8EBB3332F4A1D299F667CB6D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fd897a",
"Name": "CardCustom",
"Transform": {
"posX": -11.2624216,
"posY": 1.66425729,
"posZ": 11.5162249,
"rotX": 0.08393829,
"rotY": 269.990662,
"rotZ": 179.99884,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stuck in your Head",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 280900,
"SidewaysCard": false,
"CustomDeck": {
"2809": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653711369/2CFF06ABFA811BAE8EBB3332F4A1D299F667CB6D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5d7685",
"Name": "CardCustom",
"Transform": {
"posX": -12.00173,
"posY": 1.71479893,
"posZ": 11.9529371,
"rotX": 0.0905676857,
"rotY": 269.990723,
"rotZ": 179.997025,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stuck in your Head",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 280900,
"SidewaysCard": false,
"CustomDeck": {
"2809": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653711369/2CFF06ABFA811BAE8EBB3332F4A1D299F667CB6D/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f5f35d",
"Name": "CardCustom",
"Transform": {
"posX": 1.696433,
"posY": 3.66968346,
"posZ": 14.2788343,
"rotX": 359.948151,
"rotY": 224.998062,
"rotZ": 0.05830008,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Yin's Drumsticks",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 280500,
"SidewaysCard": false,
"CustomDeck": {
"2805": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653704559/C3F0A3CC04E00B3D772F6C5D1B1F068F4E44BE52/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d9ef9f",
"Name": "CardCustom",
"Transform": {
"posX": 1.69643223,
"posY": 3.66983747,
"posZ": 14.2788343,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.0583232529,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Page's Violin",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 280600,
"SidewaysCard": false,
"CustomDeck": {
"2806": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653706726/71BCA0F1C9561CE90FE70BDB1C7F9229E15ADDEA/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "731279",
"Name": "CardCustom",
"Transform": {
"posX": 1.6964339,
"posY": 3.66970134,
"posZ": 14.2788334,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.058319658,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "La Fratta's Piano Key",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 280700,
"SidewaysCard": false,
"CustomDeck": {
"2807": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653707888/CDBEE9A80018609B1E2EB193C692080D37938EAD/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "315825",
"Name": "CardCustom",
"Transform": {
"posX": 1.69643307,
"posY": 3.669703,
"posZ": 14.2788343,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.05831809,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Walker's Trumpet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 280800,
"SidewaysCard": false,
"CustomDeck": {
"2808": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653708813/ED57F4CCC62BBFF9732931F0921C3EC5890C4834/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a69ae3",
"Name": "Deck",
"Transform": {
"posX": 1.69643509,
"posY": 3.69586921,
"posZ": 14.2788334,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.0583036169,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Musicians",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
282700,
282800,
283000,
282900
],
"CustomDeck": {
"2827": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653698929/25EFD28BE8AB75C0866A698B9B09CDD599744100/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653698694/2EC7BA2C645A0751CD4DB2B20787C0A0B9AB86D1/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2828": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653703540/700E55711013A556E2FC96FAF0E20070FB03E4A5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653703316/30B359F1378B9E9E9A8A3C5BD0E2521B6AE4A520/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2830": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653700298/76D35CB6093F9ADF5B12BD2BDC9F134ABE17A87B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653699936/83BEE96948471EA6B38E415A9F2FEBAB164EA221/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2829": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653698008/778015BCE9FB17797C8A804FCD755CDC5A51C51E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653697789/0D1DEE903A9849B01158E65D63654564EADF8714/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "53616d",
"Name": "CardCustom",
"Transform": {
"posX": -10.5092049,
"posY": 1.69417441,
"posZ": 4.48265,
"rotX": 359.9239,
"rotY": 269.999878,
"rotZ": 180.046783,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Isabel La Fratta",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282700,
"SidewaysCard": false,
"CustomDeck": {
"2827": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653698929/25EFD28BE8AB75C0866A698B9B09CDD599744100/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653698694/2EC7BA2C645A0751CD4DB2B20787C0A0B9AB86D1/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5de862",
"Name": "CardCustom",
"Transform": {
"posX": -10.9309559,
"posY": 1.68667531,
"posZ": 4.96427345,
"rotX": 359.919739,
"rotY": 270.0,
"rotZ": 180.017914,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Song Yin",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282800,
"SidewaysCard": false,
"CustomDeck": {
"2828": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653703540/700E55711013A556E2FC96FAF0E20070FB03E4A5/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653703316/30B359F1378B9E9E9A8A3C5BD0E2521B6AE4A520/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27449f",
"Name": "CardCustom",
"Transform": {
"posX": -10.6668568,
"posY": 1.65235019,
"posZ": 5.47425556,
"rotX": 359.9151,
"rotY": 269.999969,
"rotZ": 180.017731,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nicole Page",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 283000,
"SidewaysCard": false,
"CustomDeck": {
"2830": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653700298/76D35CB6093F9ADF5B12BD2BDC9F134ABE17A87B/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653699936/83BEE96948471EA6B38E415A9F2FEBAB164EA221/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "70f23f",
"Name": "CardCustom",
"Transform": {
"posX": -10.8369427,
"posY": 1.61171079,
"posZ": 5.351615,
"rotX": 359.920471,
"rotY": 269.999878,
"rotZ": 180.019089,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arnold Walker",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282900,
"SidewaysCard": false,
"CustomDeck": {
"2829": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653698008/778015BCE9FB17797C8A804FCD755CDC5A51C51E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653697789/0D1DEE903A9849B01158E65D63654564EADF8714/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "01827f",
"Name": "Deck",
"Transform": {
"posX": 1.696434,
"posY": 3.705738,
"posZ": 14.2788334,
"rotX": 359.960754,
"rotY": 224.998,
"rotZ": 180.055679,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Backstage Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
279800,
279300,
279700,
279600,
279400,
279500
],
"CustomDeck": {
"2798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653694343/585B31915845E51A1D27B06892D8D6AB485D878D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653694552/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2793": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653688237/FCB65B76193286A27E3A0E40286640F4977CD1B6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653688422/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653693121/4340F4B3FB39D620E0E9E23408EB3D90CA394C86/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653693399/9970C802EC2522DC904CAE1B475FA2352F7AB5FE/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653691978/5FE588E7AF8BFCF35DDA7B17E1A9E8CB6AB6567A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653692337/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2794": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653689314/503EF71936491693073F63F7B07F598132DBEA3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653689587/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
},
"2795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653690636/E29EA2ADF266EBF03DC4AACC3A2A19098F534EC8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653690844/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "da800b",
"Name": "CardCustom",
"Transform": {
"posX": -26.6459846,
"posY": 1.73374832,
"posZ": -8.041259,
"rotX": 359.9206,
"rotY": 270.000061,
"rotZ": 180.017517,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tiring Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279800,
"SidewaysCard": false,
"CustomDeck": {
"2798": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653694343/585B31915845E51A1D27B06892D8D6AB485D878D/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653694552/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "6d48c9",
"Name": "CardCustom",
"Transform": {
"posX": -26.9758034,
"posY": 1.72445166,
"posZ": -7.714711,
"rotX": 359.92,
"rotY": 270.0,
"rotZ": 180.017471,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anechoic Chamber",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279300,
"SidewaysCard": false,
"CustomDeck": {
"2793": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653688237/FCB65B76193286A27E3A0E40286640F4977CD1B6/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653688422/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "815c2e",
"Name": "CardCustom",
"Transform": {
"posX": -26.80058,
"posY": 1.67160559,
"posZ": -7.922202,
"rotX": 359.9182,
"rotY": 270.0003,
"rotZ": 179.992325,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scene Shop",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279700,
"SidewaysCard": false,
"CustomDeck": {
"2797": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653693121/4340F4B3FB39D620E0E9E23408EB3D90CA394C86/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653693399/9970C802EC2522DC904CAE1B475FA2352F7AB5FE/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "78b91f",
"Name": "CardCustom",
"Transform": {
"posX": -26.8021584,
"posY": 1.70730221,
"posZ": -8.12252,
"rotX": 0.02382786,
"rotY": 269.994751,
"rotZ": 180.017487,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Rehearsal Room",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279600,
"SidewaysCard": false,
"CustomDeck": {
"2796": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653691978/5FE588E7AF8BFCF35DDA7B17E1A9E8CB6AB6567A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653692337/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c27a76",
"Name": "CardCustom",
"Transform": {
"posX": -26.3807831,
"posY": 1.7139349,
"posZ": -8.302199,
"rotX": 359.920471,
"rotY": 270.0,
"rotZ": 180.0173,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Instrument Closet",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279400,
"SidewaysCard": false,
"CustomDeck": {
"2794": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653689314/503EF71936491693073F63F7B07F598132DBEA3A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653689587/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "bcda0e",
"Name": "CardCustom",
"Transform": {
"posX": -26.892334,
"posY": 1.63011456,
"posZ": -8.166413,
"rotX": 359.920563,
"rotY": 269.999969,
"rotZ": 180.019852,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Recording Studio",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279500,
"SidewaysCard": false,
"CustomDeck": {
"2795": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653690636/E29EA2ADF266EBF03DC4AACC3A2A19098F534EC8/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653690844/254CF2F3EBF07264B4E752CD753A1E18B7516A70/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a09429",
"Name": "CardCustom",
"Transform": {
"posX": 1.69643331,
"posY": 3.66965938,
"posZ": 14.2788343,
"rotX": 359.948151,
"rotY": 224.998062,
"rotZ": 180.058319,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Stage Hall",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 280000,
"SidewaysCard": false,
"CustomDeck": {
"2800": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653695999/827E0B4ABAE107600D62F3924157904BCEF86248/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653696206/E4EA7B3F0FCE4BEB36DB344217DAB3C1F1478E54/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a21c1d",
"Name": "CardCustom",
"Transform": {
"posX": 1.69643223,
"posY": 3.66983962,
"posZ": 14.2788343,
"rotX": 359.9483,
"rotY": 224.998062,
"rotZ": 0.05825586,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Auguste Gaudin (Maestro of Symphonies)",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282700,
"SidewaysCard": false,
"CustomDeck": {
"2827": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653736236/269E8C9A36B3E76F82AA0CC9959028DD1796AB55/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cdb1ec",
"Name": "CardCustom",
"Transform": {
"posX": 1.69643307,
"posY": 3.66970015,
"posZ": 14.2788343,
"rotX": 359.948059,
"rotY": 224.998062,
"rotZ": 0.0583225861,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Beyond the Curtain",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278700,
"SidewaysCard": false,
"CustomDeck": {
"2787": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653677948/2763A8EC8C0F03EEC1EBE9382873BD6EB414357A/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653677364/9AEA0FECF5B3ACCBF4980B1628502CA04E00E5FB/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "9aa2dc",
"Name": "CardCustom",
"Transform": {
"posX": 1.69643211,
"posY": 3.66972446,
"posZ": 14.2788334,
"rotX": 359.948151,
"rotY": 224.998062,
"rotZ": 0.0583527163,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Young Nightingale",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 282500,
"SidewaysCard": false,
"CustomDeck": {
"2825": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653734130/EEC520D97972618C415C9B7C451D6975ADA504B0/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "646343",
"Name": "Deck",
"Transform": {
"posX": 1.696435,
"posY": 3.691177,
"posZ": 14.2788334,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.0582998358,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heard by Something",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
281500,
281500,
281500
],
"CustomDeck": {
"2815": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653720659/82CD47B954BD19BF0DE31B90F944A864E064A29C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "37f056",
"Name": "CardCustom",
"Transform": {
"posX": -43.3701477,
"posY": 1.65101945,
"posZ": -15.279994,
"rotX": 359.92038,
"rotY": 270.004028,
"rotZ": 0.0150362384,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heard by Something",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281500,
"SidewaysCard": false,
"CustomDeck": {
"2815": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653720659/82CD47B954BD19BF0DE31B90F944A864E064A29C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5ad662",
"Name": "CardCustom",
"Transform": {
"posX": -43.3700829,
"posY": 1.69686329,
"posZ": -15.2800083,
"rotX": 359.915833,
"rotY": 270.0041,
"rotZ": 0.014681262,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heard by Something",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281500,
"SidewaysCard": false,
"CustomDeck": {
"2815": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653720659/82CD47B954BD19BF0DE31B90F944A864E064A29C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c04fd8",
"Name": "CardCustom",
"Transform": {
"posX": -43.3700447,
"posY": 1.72407591,
"posZ": -15.2800159,
"rotX": 359.9184,
"rotY": 270.0041,
"rotZ": 0.0160913337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Heard by Something",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281500,
"SidewaysCard": false,
"CustomDeck": {
"2815": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653720659/82CD47B954BD19BF0DE31B90F944A864E064A29C/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "09cef7",
"Name": "Deck",
"Transform": {
"posX": 1.69643486,
"posY": 3.686342,
"posZ": 14.2788334,
"rotX": 359.94812,
"rotY": 224.998062,
"rotZ": 0.0583034977,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ears of the Void",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
281200,
281200
],
"CustomDeck": {
"2812": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653714888/F6429100F9F43BDF9D4D423BAF40C001AF572F3F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "818dd5",
"Name": "CardCustom",
"Transform": {
"posX": -40.1187744,
"posY": 1.64705467,
"posZ": -13.239769,
"rotX": 359.9207,
"rotY": 270.003418,
"rotZ": 0.0130066769,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ears of the Void",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281200,
"SidewaysCard": false,
"CustomDeck": {
"2812": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653714888/F6429100F9F43BDF9D4D423BAF40C001AF572F3F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "3590c3",
"Name": "CardCustom",
"Transform": {
"posX": -39.9311447,
"posY": 1.68750679,
"posZ": -13.53832,
"rotX": 359.914368,
"rotY": 270.000732,
"rotZ": 0.0179020874,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ears of the Void",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 281200,
"SidewaysCard": false,
"CustomDeck": {
"2812": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653714888/F6429100F9F43BDF9D4D423BAF40C001AF572F3F/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "267216",
"Name": "Custom_PDF",
"Transform": {
"posX": -9.336701,
"posY": 1.55122817,
"posZ": 22.8480015,
"rotX": 359.9201,
"rotY": 270.025024,
"rotZ": 359.3601,
"scaleX": 2.18,
"scaleY": 1.0,
"scaleZ": 2.18
},
"Nickname": "The Symphony of Erich Zann Scenario Guide",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1552010496653666753/5AA26421C30A303E824D1EA5B28F391A7F74F5FB/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f5f35d",
"Name": "CardCustom",
"Transform": {
"posX": -9.207002,
"posY": 1.51689112,
"posZ": 30.3654079,
"rotX": 0.0168708526,
"rotY": 180.000031,
"rotZ": 0.07987759,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Isabel La Fratta",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 535800,
"SidewaysCard": true,
"CustomDeck": {
"5358": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010592205698268/B864CCF6B885B2F91C0903F940D9B07C9B0B978E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1496838227122971724/3149AB76855E5DD878371B41E7465C25A1319724/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "67cf63",
"Name": "CardCustom",
"Transform": {
"posX": -12.1989021,
"posY": 1.52204621,
"posZ": 33.7070045,
"rotX": 359.920135,
"rotY": 269.990234,
"rotZ": 0.0168895815,
"scaleX": 0.6,
"scaleY": 1.0,
"scaleZ": 0.6
},
"Nickname": "Isabel La Fratta",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 283200,
"SidewaysCard": false,
"CustomDeck": {
"2832": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010592205692262/0120B759F9B2591BBF8523244947537F09133408/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010592205692413/B63835760716058CD9088238B65266C2FF81AE9C/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c9d140",
"Name": "CardCustom",
"Transform": {
"posX": -12.2295017,
"posY": 1.52145088,
"posZ": 31.5404053,
"rotX": 359.920135,
"rotY": 269.988373,
"rotZ": 0.0168888215,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Cadenza",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 283000,
"SidewaysCard": false,
"CustomDeck": {
"2830": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010592205691065/EC64D21F34C62DA45C5FEB84D0C4C4AE55BCA488/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "95dc3d",
"Name": "CardCustom",
"Transform": {
"posX": -12.1893,
"posY": 1.520706,
"posZ": 29.2011032,
"rotX": 359.920135,
"rotY": 269.988464,
"rotZ": 0.0168888289,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Erlkonig",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 283100,
"SidewaysCard": false,
"CustomDeck": {
"2831": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010592205691622/ADE398C22A75F51ED74AE37A97848CEDB3730758/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5abb04",
"Name": "Custom_Tile",
"Transform": {
"posX": -23.6766434,
"posY": 1.61560535,
"posZ": 3.86000967,
"rotX": 359.983154,
"rotY": -0.004431618,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "4dc9bc",
"Name": "CardCustom",
"Transform": {
"posX": -23.6766415,
"posY": 1.63030028,
"posZ": 7.57001162,
"rotX": 359.9201,
"rotY": 270.002319,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Gallery",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279100,
"SidewaysCard": false,
"CustomDeck": {
"2791": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653686182/3004159F2527B56CC4DE9F9CE72C264BC42F4D4E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653686428/690A44C690C407FA37EAA29032F26305C80D93C3/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c582af",
"Name": "Custom_Tile",
"Transform": {
"posX": -26.9427414,
"posY": 1.62125921,
"posZ": 7.602209,
"rotX": 359.9201,
"rotY": 270.027222,
"rotZ": 0.0168283116,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "5bd64c",
"Name": "CardCustom",
"Transform": {
"posX": -30.22434,
"posY": 1.63943076,
"posZ": 7.570209,
"rotX": 359.9201,
"rotY": 270.023224,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Auditorium",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279200,
"SidewaysCard": false,
"CustomDeck": {
"2792": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653687225/8954B187DD1FE042C394F7F60552D6C53652350E/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653687382/EC23262B71FCD9C257AD1A1B3916EEC12BF3D80A/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d53b9",
"Name": "Custom_Tile",
"Transform": {
"posX": -27.1699448,
"posY": 1.62034655,
"posZ": 3.41760588,
"rotX": 359.93158,
"rotY": 315.000641,
"rotZ": 359.9554,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "90ad8b",
"Name": "CardCustom",
"Transform": {
"posX": -23.67654,
"posY": 1.62806666,
"posZ": -0.0299896449,
"rotX": 359.9201,
"rotY": 269.985443,
"rotZ": 180.016846,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Main Lobby",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 279000,
"SidewaysCard": false,
"CustomDeck": {
"2790": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653684797/D8E5199805524AEB75011864660B639EED616BEB/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653685003/B60DBC99BD4FA13CE5E867A021DE3CDFFF84C40F/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7234af",
"Name": "Custom_Tile",
"Transform": {
"posX": -20.2811432,
"posY": 1.60976613,
"posZ": 0.102708,
"rotX": 359.9201,
"rotY": 269.987152,
"rotZ": 0.016884977,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/vppt2my.png",
"ImageSecondaryURL": "https://i.imgur.com/vppt2my.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "44b0c5",
"Name": "Custom_Tile",
"Transform": {
"posX": -39.7933121,
"posY": 1.63758957,
"posZ": 2.038383,
"rotX": 359.9201,
"rotY": 269.9961,
"rotZ": 0.0168742146,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/HyfE8m8.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "5b38c6",
"Name": "Custom_Tile",
"Transform": {
"posX": -38.8217163,
"posY": 1.99356019,
"posZ": 0.4159239,
"rotX": 359.9201,
"rotY": 272.9828,
"rotZ": 0.01687373,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.6045295,
"g": 0.6045295,
"b": 0.6045295
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomImage": {
"ImageURL": "https://i.imgur.com/dHKBLoD.png",
"ImageSecondaryURL": "https://i.imgur.com/HyfE8m8.png",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomTile": {
"Type": 3,
"Thickness": 0.1,
"Stackable": false,
"Stretch": true
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
},
{
"GUID": "edd0d4",
"Name": "CardCustom",
"Transform": {
"posX": -17.1200428,
"posY": 1.618924,
"posZ": -0.02999064,
"rotX": 359.9201,
"rotY": 270.009949,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Entrance Hall",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 278900,
"SidewaysCard": false,
"CustomDeck": {
"2789": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653683560/F4E77FBC7013D6186943AD65B156478A099C8C48/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1552010496653683749/3EE26EC45BC45380597EB2D49056025288D3D15E/",
"NumWidth": 1,
"NumHeight": 1,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
],
"AttachedDecals": [
{
"Transform": {
"posX": -0.0021877822,
"posY": -0.08963572,
"posZ": -0.00288731651,
"rotX": 270.0,
"rotY": 359.869568,
"rotZ": 0.0,
"scaleX": 2.00000215,
"scaleY": 2.00000238,
"scaleZ": 2.00000262
},
"CustomDecal": {
"Name": "dunwich_back",
"ImageURL": "http://cloud-3.steamusercontent.com/ugc/959719855119695911/931B9829687A20F4DEADB36DA57B7E6D76792231/",
"Size": 7.4
}
}
]
}