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

13357 lines
538 KiB
JSON

{
"GUID": "3c4f3c",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 12.251,
"posY": 1.481499,
"posZ": -20.014,
"rotX": -7.94019128E-10,
"rotY": 269.9867,
"rotZ": 4.719549E-08,
"scaleX": 2.21,
"scaleY": 0.46,
"scaleZ": 2.42
},
"Nickname": "Machinations Through Time",
"Description": "Scenario Pack",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/2038486957003418380/DF6A5FFEDF8AEE8308101944F2045A092F134BF5/",
"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\":{\"155c81\":{\"lock\":false,\"pos\":{\"x\":-0.750473082065582,\"y\":1.28760957717896,\"z\":-33.6590194702148},\"rot\":{\"x\":0.0799646377563477,\"y\":89.9994659423828,\"z\":359.983093261719}},\"285631\":{\"lock\":false,\"pos\":{\"x\":-0.839262664318085,\"y\":1.28675448894501,\"z\":-36.9837074279785},\"rot\":{\"x\":0.0799594968557358,\"y\":89.9996185302734,\"z\":359.983062744141}},\"4eaf63\":{\"lock\":false,\"pos\":{\"x\":-0.104490891098976,\"y\":1.47463750839233,\"z\":-23.8319664001465},\"rot\":{\"x\":359.920135498047,\"y\":269.976531982422,\"z\":0.0169046204537153}},\"5140fa\":{\"lock\":false,\"pos\":{\"x\":-11.8026094436646,\"y\":1.60706281661987,\"z\":-15.1593103408813},\"rot\":{\"x\":359.920104980469,\"y\":269.999938964844,\"z\":0.0168397035449743}},\"51589f\":{\"lock\":false,\"pos\":{\"x\":-3.95598435401917,\"y\":1.59753942489624,\"z\":-10.4411640167236},\"rot\":{\"x\":359.919738769531,\"y\":269.999938964844,\"z\":0.0168372616171837}},\"58e74a\":{\"lock\":false,\"pos\":{\"x\":3.6904559135437,\"y\":1.28134393692017,\"z\":-33.9125823974609},\"rot\":{\"x\":0.079959973692894,\"y\":89.9992828369141,\"z\":359.983062744141}},\"7039ea\":{\"lock\":false,\"pos\":{\"x\":-11.8224458694458,\"y\":1.6308296918869,\"z\":-8.45153331756592},\"rot\":{\"x\":359.920104980469,\"y\":270.012725830078,\"z\":0.0168239790946245}},\"84bdea\":{\"lock\":false,\"pos\":{\"x\":-0.869694948196411,\"y\":1.28884172439575,\"z\":-30.0372486114502},\"rot\":{\"x\":0.0799645334482193,\"y\":89.999382019043,\"z\":359.983093261719}},\"8e3380\":{\"lock\":false,\"pos\":{\"x\":-15.4114227294922,\"y\":1.41494536399841,\"z\":-10.0902404785156},\"rot\":{\"x\":359.983154296875,\"y\":0.000817795924376696,\"z\":359.920043945313}},\"a3def6\":{\"lock\":false,\"pos\":{\"x\":-3.92789721488953,\"y\":1.76844906806946,\"z\":5.75719165802002},\"rot\":{\"x\":359.919738769531,\"y\":269.999816894531,\"z\":180.016815185547}},\"b45b47\":{\"lock\":false,\"pos\":{\"x\":-2.72477197647095,\"y\":1.61594653129578,\"z\":0.373337954282761},\"rot\":{\"x\":0.0167098976671696,\"y\":180.089614868164,\"z\":0.0802827402949333}},\"ba2e05\":{\"lock\":false,\"pos\":{\"x\":-2.68847465515137,\"y\":1.59734869003296,\"z\":-5.04841661453247},\"rot\":{\"x\":0.0167973190546036,\"y\":180.027603149414,\"z\":0.0802631750702858}},\"c1186b\":{\"lock\":false,\"pos\":{\"x\":-11.8445987701416,\"y\":1.62985110282898,\"z\":-11.8866605758667},\"rot\":{\"x\":359.920104980469,\"y\":270.022918701172,\"z\":0.0168105401098728}},\"c56b51\":{\"lock\":false,\"pos\":{\"x\":-15.329158782959,\"y\":1.41371214389801,\"z\":-13.8969564437866},\"rot\":{\"x\":359.983154296875,\"y\":0.000848185329232365,\"z\":359.920013427734}},\"da395e\":{\"lock\":false,\"pos\":{\"x\":-3.59795022010803,\"y\":1.58207070827484,\"z\":-15.0785627365112},\"rot\":{\"x\":359.919738769531,\"y\":270.030242919922,\"z\":0.0167959574609995}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "155c81",
"Name": "Bag",
"Transform": {
"posX": -0.7502025,
"posY": 1.29646492,
"posZ": -33.6590767,
"rotX": -2.10472513E-06,
"rotY": 89.99942,
"rotZ": 6.119735E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Epic Multiplayer Mode (Present)",
"Description": "Machinations Through Time",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "function 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 onload(saved_data)\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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"161b96\":{\"lock\":false,\"pos\":{\"x\":-12.8861,\"y\":1.4116,\"z\":-9.3924},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.92}},\"1d52ec\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6156,\"z\":-11.51},\"rot\":{\"x\":359.9201,\"y\":269.9993,\"z\":0.0168}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"1f0788\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6144,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":180.0168}},\"3040ec\":{\"lock\":false,\"pos\":{\"x\":-19.8558,\"y\":1.6091,\"z\":-0.021},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":0.0169}},\"405fe5\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":0.0168}},\"59116b\":{\"lock\":false,\"pos\":{\"x\":-26.713,\"y\":1.6187,\"z\":-0.0763},\"rot\":{\"x\":359.9201,\"y\":270.0099,\"z\":0.0169}},\"66a3d9\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6212,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9999,\"z\":0.0168}},\"689545\":{\"lock\":false,\"pos\":{\"x\":-27.0286,\"y\":1.6203,\"z\":3.77},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.6377,\"y\":1.6284,\"z\":-0.0231},\"rot\":{\"x\":359.9201,\"y\":270.01,\"z\":0.0169}},\"7f1170\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":179.9997,\"z\":0.0799}},\"8577aa\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9998,\"z\":180.0168}},\"87790a\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6167,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0168}},\"8ba8c8\":{\"lock\":false,\"pos\":{\"x\":-27.1053,\"y\":1.6181,\"z\":-4.0201},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"a65da3\":{\"lock\":false,\"pos\":{\"x\":-19.6408,\"y\":1.6076,\"z\":-4.0813},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"b53f71\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.08}},\"b6c3a5\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9996,\"z\":0.0168}},\"c3cd55\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.0303},\"rot\":{\"x\":359.9201,\"y\":269.9904,\"z\":0.0169}},\"c63a71\":{\"lock\":false,\"pos\":{\"x\":-13.1372,\"y\":1.411,\"z\":-12.8015},\"rot\":{\"x\":359.92,\"y\":270.0016,\"z\":0.0169}},\"d4e653\":{\"lock\":false,\"pos\":{\"x\":-15.0154,\"y\":1.6296,\"z\":-2.1231},\"rot\":{\"x\":359.92,\"y\":269.9978,\"z\":0.7596}},\"e52b9c\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9997,\"z\":0.0168}},\"f22874\":{\"lock\":false,\"pos\":{\"x\":-20.3723,\"y\":1.6109,\"z\":3.5643},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"fd6c1b\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6189,\"z\":-0.0301},\"rot\":{\"x\":359.9202,\"y\":269.9982,\"z\":0.0163}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "66a3d9",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.62115753,
"posZ": 7.56999969,
"rotX": 359.9201,
"rotY": 269.999878,
"rotZ": 0.0168398675,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Noble Legacy (Present)",
"Description": "",
"GMNotes": "{\n \"id\": \"87015\",\n \"type\": \"Story\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558111,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e52b9c",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.63030028,
"posZ": 7.56999969,
"rotX": 359.9201,
"rotY": 269.999573,
"rotZ": 0.0168401487,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Docks",
"Description": "Arkham. Portal. Present.",
"GMNotes": "{\n \"id\": \"87018\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Present.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Clover|Portal\",\n \"connections\": \"SlantedEquals|Circle|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Clover|Portal\",\n \"connections\": \"SlantedEquals|Circle|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558114,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fd6c1b",
"Name": "Card",
"Transform": {
"posX": -17.1200962,
"posY": 1.61891663,
"posZ": -0.03009307,
"rotX": 359.9202,
"rotY": 269.9983,
"rotZ": 0.0163254272,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham Advertiser",
"Description": "Arkham. Portal. Present.",
"GMNotes": "{\n \"id\": \"87016\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Present.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals|Portal\",\n \"connections\": \"Clover|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals|Portal\",\n \"connections\": \"Clover|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558112,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "405fe5",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.62581253,
"posZ": -7.700001,
"rotX": 359.9201,
"rotY": 269.9997,
"rotZ": 0.0168400332,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tick-Tock Club",
"Description": "Arkham. Portal. Present.",
"GMNotes": "{\n \"id\": \"87017\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Present.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Clover|Portal\",\n \"connections\": \"SlantedEquals|Circle|Tindalos\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Clover|Portal\",\n \"connections\": \"SlantedEquals|Circle|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558113,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d4e653",
"Name": "Card",
"Transform": {
"posX": -15.0154,
"posY": 1.62956131,
"posZ": -2.12310719,
"rotX": 359.9201,
"rotY": 269.998047,
"rotZ": 0.76012814,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ezra Graves",
"Description": "Professor of the Arcane",
"GMNotes": "{\n \"id\": \"87023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Scientist. Ally. Present.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558005,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8577aa",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.62806654,
"posZ": -0.0299998764,
"rotX": 359.9201,
"rotY": 269.999817,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tindalos",
"Description": "Past. Present. Future.",
"GMNotes": "{\n \"id\": \"87005\",\n \"type\": \"Location\",\n \"traits\": \"Past. Present. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tindalos\",\n \"connections\": \"Portal\"\n },\n \"locationBack\": {\n \"icons\": \"Tindalos\",\n \"connections\": \"Portal\"\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558104,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b6c3a5",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.637197,
"posZ": -0.0300003439,
"rotX": 359.9201,
"rotY": 269.999542,
"rotZ": 0.0168402977,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miskatonic University",
"Description": "Arkham. Portal. Present.",
"GMNotes": "{\n \"id\": \"87019\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Present.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle|Portal\",\n \"connections\": \"Clover|Crescent|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Circle|Portal\",\n \"connections\": \"Clover|Crescent|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558115,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c3cd55",
"Name": "Card",
"Transform": {
"posX": -36.7732,
"posY": 1.64632893,
"posZ": -0.0303003248,
"rotX": 359.9201,
"rotY": 269.990326,
"rotZ": 0.0168531165,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ye Olde Magick Shoppe",
"Description": "Arkham. Present.",
"GMNotes": "{\n \"id\": \"87020\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Present.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Circle\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Circle\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558116,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87790a",
"Name": "Card",
"Transform": {
"posX": -17.1201,
"posY": 1.61666989,
"posZ": -7.70000029,
"rotX": 359.9201,
"rotY": 269.99942,
"rotZ": 0.0168406833,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mary Zielinski",
"Description": "Distinguished Chemist",
"GMNotes": "{\n \"id\": \"87022\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Present.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558304,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d52ec",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.61555,
"posZ": -11.51,
"rotX": 359.9201,
"rotY": 269.999268,
"rotZ": 0.0168408062,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thomas Corrigan",
"Description": "Preeminent Astrophysicist",
"GMNotes": "{\n \"id\": \"87021\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Present.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558303,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1f0788",
"Name": "Card",
"Transform": {
"posX": -17.1201,
"posY": 1.61444223,
"posZ": -15.28,
"rotX": 359.9201,
"rotY": 270.01,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edwin Bennet",
"Description": "",
"GMNotes": "{\n \"id\": \"87037\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558127,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c63a71",
"Name": "Bag",
"Transform": {
"posX": -13.1371994,
"posY": 1.4109776,
"posZ": -12.8015013,
"rotX": 359.92,
"rotY": 270.001251,
"rotZ": 0.0168685,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Machinations",
"Description": "Be sure to use the announced one!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e0fb02",
"Name": "Card",
"Transform": {
"posX": 3.87712884,
"posY": 3.63323021,
"posZ": -3.03211331,
"rotX": 357.737762,
"rotY": 269.989441,
"rotZ": 0.6550677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Bitter Rivalry",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87033\",\n \"type\": \"Story\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558123,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "746c67",
"Name": "Card",
"Transform": {
"posX": -12.8434477,
"posY": 3.69438052,
"posZ": -12.6796064,
"rotX": 359.597473,
"rotY": 270.0005,
"rotZ": 359.825531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Uneasy Alliance",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87035\",\n \"type\": \"Story\",\n \"traits\": \"Machination.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558125,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d974ae",
"Name": "Card",
"Transform": {
"posX": -12.9278126,
"posY": 3.69414663,
"posZ": -12.616766,
"rotX": 359.699646,
"rotY": 270.015564,
"rotZ": 359.592041,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Redeem a Former Colleague",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87034\",\n \"type\": \"Story\",\n \"traits\": \"Machination.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558124,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "161b96",
"Name": "Bag",
"Transform": {
"posX": -12.8860989,
"posY": 1.41162992,
"posZ": -9.3924,
"rotX": 359.983154,
"rotY": 0.0007472507,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Plots",
"Description": "Be sure to use the announced one!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "4648d1",
"Name": "Bag",
"Transform": {
"posX": -12.7327986,
"posY": 3.48363733,
"posZ": -10.2185755,
"rotX": 359.101379,
"rotY": 0.0126858847,
"rotZ": 359.822784,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Troubles",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dbf09c",
"Name": "Deck",
"Transform": {
"posX": 8.816529,
"posY": 3.57813263,
"posZ": -6.507375,
"rotX": 359.541779,
"rotY": 269.97467,
"rotZ": 358.976654,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gangs",
"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": [
558310,
558310,
558310
],
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c330c3",
"Name": "Card",
"Transform": {
"posX": 8.227613,
"posY": 1.516042,
"posZ": 4.87732935,
"rotX": 358.9031,
"rotY": 269.9687,
"rotZ": 0.214684114,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d28f0f",
"Name": "Card",
"Transform": {
"posX": 8.301361,
"posY": 1.57807636,
"posZ": 5.08355856,
"rotX": 359.642639,
"rotY": 269.999817,
"rotZ": 0.18169032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af3173",
"Name": "Card",
"Transform": {
"posX": 7.88701439,
"posY": 1.61188483,
"posZ": 4.97303629,
"rotX": 359.51004,
"rotY": 270.000183,
"rotZ": 0.184052512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a0dc53",
"Name": "Card",
"Transform": {
"posX": 8.774647,
"posY": 3.563054,
"posZ": -6.963924,
"rotX": 357.9572,
"rotY": 270.0186,
"rotZ": 1.36968613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Sadie Sheldon",
"Description": "Bootlegging Kingpin",
"GMNotes": "{\n \"id\": \"87040\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558309,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "114e6d",
"Name": "Card",
"Transform": {
"posX": -11.6782608,
"posY": 3.69640017,
"posZ": -1.74573541,
"rotX": 359.850342,
"rotY": 269.9991,
"rotZ": 0.473690122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Troubles",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87039\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558129,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "db1382",
"Name": "Bag",
"Transform": {
"posX": -12.4375505,
"posY": 3.49174666,
"posZ": -9.556903,
"rotX": 359.778473,
"rotY": 0.0108813373,
"rotZ": 359.289337,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Abomination",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "969e90",
"Name": "Card",
"Transform": {
"posX": 10.172575,
"posY": 3.55303621,
"posZ": -10.7987614,
"rotX": 359.8438,
"rotY": 270.0051,
"rotZ": 359.246582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tyr'thrha",
"Description": "Arch-Lord of Tindalos",
"GMNotes": "{\n \"id\": \"87043\",\n \"type\": \"Enemy\",\n \"traits\": \"Ancient One. Tindalos. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558311,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ed625",
"Name": "Card",
"Transform": {
"posX": -13.5271053,
"posY": 3.69311619,
"posZ": -4.279647,
"rotX": 359.849152,
"rotY": 270.00058,
"rotZ": 359.2451,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Abomination",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87042\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558130,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e37073",
"Name": "Bag",
"Transform": {
"posX": -12.715826,
"posY": 3.49494529,
"posZ": -9.477732,
"rotX": 359.901,
"rotY": 0.00724928454,
"rotZ": 359.4709,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anomalies in Spacetime",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "670d4e",
"Name": "Custom_Model_Infinite_Bag",
"Transform": {
"posX": 12.5681572,
"posY": 3.640144,
"posZ": -15.9976635,
"rotX": 359.2146,
"rotY": 270.004272,
"rotZ": 359.4252,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "Horror tokens",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.192488372,
"g": 0.248136282,
"b": 0.4512195
},
"LayoutGroupSortIndex": 0,
"Value": 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://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068501357109766/6D35F3D98A4C89696895FACA788F54005B1688D3/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 7,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "36be72",
"Name": "Custom_Token",
"Transform": {
"posX": -26.4036713,
"posY": 1.41001534,
"posZ": 15.7281322,
"rotX": 5.372964E-06,
"rotY": 0.0300562512,
"rotZ": 1.32273317E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5c2361",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.210006,
"posZ": 15.9442654,
"rotX": -2.02706469E-05,
"rotY": 270.015259,
"rotZ": 2.20759175E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163230/ED46F8BBAEDB4D3C96C654D48C56110D35F3F54F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "3a3415",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.210006,
"posZ": 15.9442368,
"rotX": -1.04253941E-05,
"rotY": 270.015137,
"rotZ": 1.02804506E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357162977/E5D453CC14394519E004B4F8703FC425A7AE3D6C/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "4a91a8",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.9442348,
"rotX": 1.89065361E-06,
"rotY": 270.01532,
"rotZ": 1.59575811E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164483/5E22FEAE253AE65BDE3FA09E4EE7133569F7E194/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "887aae",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.9442024,
"rotX": -3.432232E-05,
"rotY": 270.016,
"rotZ": -3.73151761E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164251/34DC7172A2B433047DA853796DB52AECE019F99F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"6": {
"GUID": "baa831",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000624,
"posZ": 15.94415,
"rotX": -2.49414188E-05,
"rotY": 270.0157,
"rotZ": 2.92043842E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164030/0A12FD352F28A560EA7E7952D8CA618A5245F1E0/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"7": {
"GUID": "da94da",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.944108,
"rotX": -2.33948358E-05,
"rotY": 270.015656,
"rotZ": 2.18774017E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357114485/8B2B8A9F61CC2D8C1F10977ABDB4BA2423AD143F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2e1687",
"Name": "Custom_Token",
"Transform": {
"posX": -27.753376,
"posY": 1.210006,
"posZ": 15.9440966,
"rotX": -1.57902083E-08,
"rotY": 270.016541,
"rotZ": -2.19759459E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163806/F397C22A8DDB8F22E08E42E6449C3B5D8CFDB313/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "a6f1e0",
"Name": "Custom_Token",
"Transform": {
"posX": -27.753376,
"posY": 1.21000612,
"posZ": 15.9440622,
"rotX": -2.09277514E-05,
"rotY": 270.016724,
"rotZ": 4.970206E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357110165/AD791E6817304851C0ABD7AE97AA60326AC14538/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "91c720",
"Name": "Card",
"Transform": {
"posX": -10.0845184,
"posY": 3.680854,
"posZ": -7.51579046,
"rotX": 359.858368,
"rotY": 269.998962,
"rotZ": 0.82205075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anomalies in Spacetime",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87038\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558128,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69,
"posY": 1.56,
"posZ": 14.24,
"rotX": 0,
"rotY": 225,
"rotZ": 0,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/2038485431565955058/F72FECE5488594A28292C06997A2E28A8B8961C5/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
}
}
]
},
{
"GUID": "285631",
"Name": "Bag",
"Transform": {
"posX": -0.8389909,
"posY": 1.2964654,
"posZ": -36.9837646,
"rotX": 1.60949833E-06,
"rotY": 89.99957,
"rotZ": 1.00219076E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Epic Multiplayer Mode (Future)",
"Description": "Machinations Through Time",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "function 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 onload(saved_data)\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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"030731\":{\"lock\":false,\"pos\":{\"x\":-20.4475,\"y\":1.6088,\"z\":-3.9067},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0684}},\"26f1b0\":{\"lock\":false,\"pos\":{\"x\":-13.4322,\"y\":1.6112,\"z\":-8.7741},\"rot\":{\"x\":359.9201,\"y\":269.9744,\"z\":0.0169}},\"29504c\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.08}},\"2d3e06\":{\"lock\":false,\"pos\":{\"x\":-13.3626,\"y\":1.6102,\"z\":-11.9109},\"rot\":{\"x\":359.9201,\"y\":270.023,\"z\":0.0168}},\"389723\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0029,\"z\":0.0168}},\"585fac\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-27.0157,\"y\":1.6191,\"z\":-0.1727},\"rot\":{\"x\":359.9201,\"y\":270.0122,\"z\":0.0169}},\"730916\":{\"lock\":false,\"pos\":{\"x\":-27.315,\"y\":1.6184,\"z\":-3.8941},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"83a5a0\":{\"lock\":false,\"pos\":{\"x\":-10.3411,\"y\":1.4078,\"z\":-10.4304},\"rot\":{\"x\":359.9832,\"y\":0.0004,\"z\":359.92}},\"8f998b\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0004,\"z\":0.0168}},\"a98b42\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9963,\"z\":0.0168}},\"aadeda\":{\"lock\":false,\"pos\":{\"x\":-13.3516,\"y\":1.6092,\"z\":-15.0842},\"rot\":{\"x\":359.9201,\"y\":270.0102,\"z\":180.0168}},\"d32649\":{\"lock\":false,\"pos\":{\"x\":-10.3809,\"y\":1.4068,\"z\":-13.9946},\"rot\":{\"x\":359.92,\"y\":270.0005,\"z\":0.0169}},\"e1116a\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0023,\"z\":0.0168}},\"e50e9d\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6212,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9995,\"z\":0.0168}},\"e57301\":{\"lock\":false,\"pos\":{\"x\":-20.2789,\"y\":1.6097,\"z\":-0.0602},\"rot\":{\"x\":359.9201,\"y\":270.0122,\"z\":0.0169}},\"eef3c8\":{\"lock\":false,\"pos\":{\"x\":-20.162,\"y\":1.6107,\"z\":3.8357},\"rot\":{\"x\":0.0684,\"y\":135.0001,\"z\":0.0446}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"fb6a7c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270.0035,\"z\":0.0168}},\"fdfe1d\":{\"lock\":false,\"pos\":{\"x\":-27.1632,\"y\":1.6205,\"z\":3.8648},\"rot\":{\"x\":359.9554,\"y\":225,\"z\":0.0684}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "26f1b0",
"Name": "Card",
"Transform": {
"posX": -13.4321995,
"posY": 1.61121178,
"posZ": -8.774101,
"rotX": 359.9201,
"rotY": 269.9742,
"rotZ": 0.0168755818,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thomas Corrigan",
"Description": "Cofounder of Corrigan Industries",
"GMNotes": "{\n \"id\": \"87030\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Future.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558306,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2d3e06",
"Name": "Card",
"Transform": {
"posX": -13.3626013,
"posY": 1.61019278,
"posZ": -11.9109011,
"rotX": 359.9201,
"rotY": 270.02298,
"rotZ": 0.016807504,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mary Zielinski",
"Description": "Cofounder of Corrigan Industries",
"GMNotes": "{\n \"id\": \"87031\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Future.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558307,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "aadeda",
"Name": "Card",
"Transform": {
"posX": -13.3516,
"posY": 1.60924482,
"posZ": -15.0842009,
"rotX": 359.9201,
"rotY": 270.0102,
"rotZ": 180.016815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edwin Bennet",
"Description": "",
"GMNotes": "{\n \"id\": \"87037\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558127,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d32649",
"Name": "Bag",
"Transform": {
"posX": -10.3808994,
"posY": 1.40678334,
"posZ": -13.9946012,
"rotX": 359.92,
"rotY": 270.001556,
"rotZ": 0.0168774184,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Machinations",
"Description": "Be sure to use the announced one!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e0fb02",
"Name": "Card",
"Transform": {
"posX": 3.87712884,
"posY": 3.63323021,
"posZ": -3.03211331,
"rotX": 357.737762,
"rotY": 269.989441,
"rotZ": 0.6550677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Bitter Rivalry",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87033\",\n \"type\": \"Story\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558123,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "746c67",
"Name": "Card",
"Transform": {
"posX": -12.8434477,
"posY": 3.69438052,
"posZ": -12.6796064,
"rotX": 359.597473,
"rotY": 270.0005,
"rotZ": 359.825531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Uneasy Alliance",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87035\",\n \"type\": \"Story\",\n \"traits\": \"Machination.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558125,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d974ae",
"Name": "Card",
"Transform": {
"posX": -9.637947,
"posY": 3.7023344,
"posZ": -14.1068316,
"rotX": 1.90186512,
"rotY": 270.231873,
"rotZ": 3.6467216,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Redeem a Former Colleague",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87034\",\n \"type\": \"Story\",\n \"traits\": \"Machination.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558124,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "83a5a0",
"Name": "Bag",
"Transform": {
"posX": -10.3410988,
"posY": 1.40777516,
"posZ": -10.4304008,
"rotX": 359.983154,
"rotY": 0.00074935786,
"rotZ": 359.92,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Plots",
"Description": "Be sure to use the announced one!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e37073",
"Name": "Bag",
"Transform": {
"posX": -10.4290981,
"posY": 3.49069881,
"posZ": -10.7596531,
"rotX": 359.403839,
"rotY": 0.00436423533,
"rotZ": 0.124904014,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anomalies in Spacetime",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "670d4e",
"Name": "Custom_Model_Infinite_Bag",
"Transform": {
"posX": 12.5681572,
"posY": 3.640144,
"posZ": -15.9976635,
"rotX": 359.2146,
"rotY": 270.004272,
"rotZ": 359.4252,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "Horror tokens",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.192488372,
"g": 0.248136282,
"b": 0.4512195
},
"LayoutGroupSortIndex": 0,
"Value": 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://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068501357109766/6D35F3D98A4C89696895FACA788F54005B1688D3/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 7,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "36be72",
"Name": "Custom_Token",
"Transform": {
"posX": -26.4036713,
"posY": 1.41001534,
"posZ": 15.7281322,
"rotX": 5.372964E-06,
"rotY": 0.0300562512,
"rotZ": 1.32273317E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5c2361",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.210006,
"posZ": 15.9442654,
"rotX": -2.02706469E-05,
"rotY": 270.015259,
"rotZ": 2.20759175E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163230/ED46F8BBAEDB4D3C96C654D48C56110D35F3F54F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "3a3415",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.210006,
"posZ": 15.9442368,
"rotX": -1.04253941E-05,
"rotY": 270.015137,
"rotZ": 1.02804506E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357162977/E5D453CC14394519E004B4F8703FC425A7AE3D6C/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "4a91a8",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.9442348,
"rotX": 1.89065361E-06,
"rotY": 270.01532,
"rotZ": 1.59575811E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164483/5E22FEAE253AE65BDE3FA09E4EE7133569F7E194/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "887aae",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.9442024,
"rotX": -3.432232E-05,
"rotY": 270.016,
"rotZ": -3.73151761E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164251/34DC7172A2B433047DA853796DB52AECE019F99F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"6": {
"GUID": "baa831",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000624,
"posZ": 15.94415,
"rotX": -2.49414188E-05,
"rotY": 270.0157,
"rotZ": 2.92043842E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164030/0A12FD352F28A560EA7E7952D8CA618A5245F1E0/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"7": {
"GUID": "da94da",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.944108,
"rotX": -2.33948358E-05,
"rotY": 270.015656,
"rotZ": 2.18774017E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357114485/8B2B8A9F61CC2D8C1F10977ABDB4BA2423AD143F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2e1687",
"Name": "Custom_Token",
"Transform": {
"posX": -27.753376,
"posY": 1.210006,
"posZ": 15.9440966,
"rotX": -1.57902083E-08,
"rotY": 270.016541,
"rotZ": -2.19759459E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163806/F397C22A8DDB8F22E08E42E6449C3B5D8CFDB313/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "a6f1e0",
"Name": "Custom_Token",
"Transform": {
"posX": -27.753376,
"posY": 1.21000612,
"posZ": 15.9440622,
"rotX": -2.09277514E-05,
"rotY": 270.016724,
"rotZ": 4.970206E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357110165/AD791E6817304851C0ABD7AE97AA60326AC14538/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "91c720",
"Name": "Card",
"Transform": {
"posX": -10.0845184,
"posY": 3.680854,
"posZ": -7.51579046,
"rotX": 359.858368,
"rotY": 269.998962,
"rotZ": 0.82205075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anomalies in Spacetime",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87038\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558128,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "db1382",
"Name": "Bag",
"Transform": {
"posX": -9.972585,
"posY": 3.48433685,
"posZ": -10.8565235,
"rotX": 359.32843,
"rotY": 0.017443398,
"rotZ": 359.354645,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Abomination",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "969e90",
"Name": "Card",
"Transform": {
"posX": 10.172575,
"posY": 3.55303621,
"posZ": -10.7987614,
"rotX": 359.8438,
"rotY": 270.0051,
"rotZ": 359.246582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tyr'thrha",
"Description": "Arch-Lord of Tindalos",
"GMNotes": "{\n \"id\": \"87043\",\n \"type\": \"Enemy\",\n \"traits\": \"Ancient One. Tindalos. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558311,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ed625",
"Name": "Card",
"Transform": {
"posX": -13.5271053,
"posY": 3.69311619,
"posZ": -4.279647,
"rotX": 359.849152,
"rotY": 270.00058,
"rotZ": 359.2451,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Abomination",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87042\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558130,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "4648d1",
"Name": "Bag",
"Transform": {
"posX": -10.1141834,
"posY": 3.478834,
"posZ": -10.936389,
"rotX": 358.8574,
"rotY": 0.0237064958,
"rotZ": 359.42688,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Troubles",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dbf09c",
"Name": "Deck",
"Transform": {
"posX": 8.816529,
"posY": 3.57813263,
"posZ": -6.507375,
"rotX": 359.541779,
"rotY": 269.97467,
"rotZ": 358.976654,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gangs",
"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": [
558310,
558310,
558310
],
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c330c3",
"Name": "Card",
"Transform": {
"posX": 8.227613,
"posY": 1.516042,
"posZ": 4.87732935,
"rotX": 358.9031,
"rotY": 269.9687,
"rotZ": 0.214684114,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d28f0f",
"Name": "Card",
"Transform": {
"posX": 8.301361,
"posY": 1.57807636,
"posZ": 5.08355856,
"rotX": 359.642639,
"rotY": 269.999817,
"rotZ": 0.18169032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af3173",
"Name": "Card",
"Transform": {
"posX": 7.88701439,
"posY": 1.61188483,
"posZ": 4.97303629,
"rotX": 359.51004,
"rotY": 270.000183,
"rotZ": 0.184052512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a0dc53",
"Name": "Card",
"Transform": {
"posX": 8.774647,
"posY": 3.563054,
"posZ": -6.963924,
"rotX": 357.9572,
"rotY": 270.0186,
"rotZ": 1.36968613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Sadie Sheldon",
"Description": "Bootlegging Kingpin",
"GMNotes": "{\n \"id\": \"87040\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558309,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "114e6d",
"Name": "Card",
"Transform": {
"posX": -11.6782608,
"posY": 3.69640017,
"posZ": -1.74573541,
"rotX": 359.850342,
"rotY": 269.9991,
"rotZ": 0.473690122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Troubles",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87039\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558129,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69,
"posY": 1.56,
"posZ": 14.24,
"rotX": 0,
"rotY": 225,
"rotZ": 0,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/2038485431565955058/F72FECE5488594A28292C06997A2E28A8B8961C5/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
},
"ContainedObjects": [
{
"GUID": "8c9900",
"Name": "Card",
"Transform": {
"posX": 1.69641542,
"posY": 3.79591584,
"posZ": 14.2788372,
"rotX": 359.966644,
"rotY": 224.999832,
"rotZ": 353.437531,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dimensional Beam Machine",
"Description": "",
"GMNotes": "{\n \"id\": \"87032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science. Tool. Future.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558008,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df5ca4",
"Name": "Card",
"Transform": {
"posX": 1.69642508,
"posY": 3.65653276,
"posZ": 14.27884,
"rotX": 359.9549,
"rotY": 224.99939,
"rotZ": 0.06884812,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Corrigan Industries",
"Description": "Arkham. Future.",
"GMNotes": "{\n \"id\": \"87029\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Apostrophe\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Apostrophe\",\n \"connections\": \"Diamond\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558122,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "e50e9d",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.62115753,
"posZ": 7.56999969,
"rotX": 359.9201,
"rotY": 269.999451,
"rotZ": 0.0168403815,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Noble Legacy (Future)",
"Description": "",
"GMNotes": "{\n \"id\": \"87024\",\n \"type\": \"Story\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558117,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8f998b",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.6189239,
"posZ": -0.0300004426,
"rotX": 359.9201,
"rotY": 270.000427,
"rotZ": 0.0168389827,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham Advertiser",
"Description": "Arkham. Portal. Future.",
"GMNotes": "{\n \"id\": \"87025\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Plus|Portal\",\n \"connections\": \"Spade|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Plus|Portal\",\n \"connections\": \"Spade|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558118,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a98b42",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.62806654,
"posZ": -0.030000452,
"rotX": 359.9201,
"rotY": 269.996338,
"rotZ": 0.0168447383,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tindalos",
"Description": "Past. Present. Future.",
"GMNotes": "{\n \"id\": \"87005\",\n \"type\": \"Location\",\n \"traits\": \"Past. Present. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tindalos\",\n \"connections\": \"Portal\"\n },\n \"locationBack\": {\n \"icons\": \"Tindalos\",\n \"connections\": \"Portal\"\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558604,
"SidewaysCard": false,
"CustomDeck": {
"5586": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "389723",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.63030028,
"posZ": 7.56999874,
"rotX": 359.9201,
"rotY": 270.0028,
"rotZ": 0.0168357119,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Docks",
"Description": "Arkham. Portal. Future.",
"GMNotes": "{\n \"id\": \"87027\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Spade|Portal\",\n \"connections\": \"Plus|Diamond|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Spade|Portal\",\n \"connections\": \"Plus|Diamond|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558120,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e1116a",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.62581253,
"posZ": -7.70000029,
"rotX": 359.9201,
"rotY": 270.002258,
"rotZ": 0.0168364141,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tick-Tock Club",
"Description": "Arkham. Portal. Future.",
"GMNotes": "{\n \"id\": \"87026\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Spade|Portal\",\n \"connections\": \"Plus|Diamond|Tindalos\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Spade|Portal\",\n \"connections\": \"Plus|Diamond|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558119,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb6a7c",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.637197,
"posZ": -0.0300002266,
"rotX": 359.9201,
"rotY": 270.003479,
"rotZ": 0.01683479,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miskatonic University",
"Description": "Arkham. Portal. Future.",
"GMNotes": "{\n \"id\": \"87028\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond|Portal\",\n \"connections\": \"Spade|Apostrophe|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond|Portal\",\n \"connections\": \"Spade|Apostrophe|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558121,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "4eaf63",
"Name": "Custom_PDF",
"Transform": {
"posX": -0.104480237,
"posY": 1.4814992,
"posZ": -23.8319683,
"rotX": -1.33381263E-07,
"rotY": 269.9765,
"rotZ": 6.33146158E-08,
"scaleX": 3.0,
"scaleY": 1.0,
"scaleZ": 3.0
},
"Nickname": "Machinations Through Time",
"Description": "Scenario Guide",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 1.0,
"g": 1.0,
"b": 1.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"CustomPDF": {
"PDFUrl": "http://cloud-3.steamusercontent.com/ugc/1849293764609945265/691B3D8CEE6885DA30D6C8E66688AB87757F955B/",
"PDFPassword": "",
"PDFPage": 0,
"PDFPageOffset": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "51589f",
"Name": "Card",
"Transform": {
"posX": -3.95600486,
"posY": 1.59660506,
"posZ": -10.4411621,
"rotX": -3.82429675E-07,
"rotY": 269.9999,
"rotZ": 4.350379E-07,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Scenario",
"Description": "Machinations Through Time",
"GMNotes": "{\"type\":\"ScenarioReference\",\"class\":\"Mythos\",\"tokens\":{\"back\":{\"Cultist\":{\"description\":\"-2. If you are at Tindalos, you automatically fail.\",\"modifier\":-2},\"Elder Thing\":{\"description\":\"-4. If you fail, deal 1 damage or 1 horror to an Ally asset at your location.\",\"modifier\":-4},\"Skull\":{\"description\":\"-X. X is 2 plus the number of story cards in the victory display.\",\"modifier\":-999},\"Tablet\":{\"description\":\"-3 (-6 instead if a Scientist asset is at your location).\",\"modifier\":-3}},\"front\":{\"Cultist\":{\"description\":\"-1. If you are at Tindalos, you automatically fail.\",\"modifier\":-1},\"Elder Thing\":{\"description\":\"-3. If you fail, deal 1 damage or 1 horror to an Ally asset at your location.\",\"modifier\":-3},\"Skull\":{\"description\":\"-X. X is 1 plus the number of story cards in the victory display.\",\"modifier\":-999},\"Tablet\":{\"description\":\"-2 (-4 instead if a Scientist asset is at your location).\",\"modifier\":-2}}}}}",
"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": 558100,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "58e74a",
"Name": "Bag",
"Transform": {
"posX": 3.690735,
"posY": 1.29646492,
"posZ": -33.91264,
"rotX": -8.488493E-08,
"rotY": 89.99922,
"rotZ": 1.72623129E-06,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Single Group Mode",
"Description": "Machinations Through Time",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "function 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 onload(saved_data)\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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"03695f\":{\"lock\":false,\"pos\":{\"x\":-26.3214,\"y\":1.6522,\"z\":16.1205},\"rot\":{\"x\":0.5085,\"y\":269.9946,\"z\":0.0169}},\"093faf\":{\"lock\":false,\"pos\":{\"x\":-26.6548,\"y\":1.6186,\"z\":0.0779},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"13c10f\":{\"lock\":false,\"pos\":{\"x\":-39.8751,\"y\":1.6348,\"z\":-7.5896},\"rot\":{\"x\":359.9201,\"y\":270.0081,\"z\":0.0169}},\"15f916\":{\"lock\":false,\"pos\":{\"x\":-20.0003,\"y\":1.6138,\"z\":15.3193},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"1bdb68\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6316,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.92}},\"2aff00\":{\"lock\":false,\"pos\":{\"x\":-20.3302,\"y\":1.6268,\"z\":11.6529},\"rot\":{\"x\":359.9201,\"y\":269.9973,\"z\":0.0168}},\"389723\":{\"lock\":false,\"pos\":{\"x\":-43.37,\"y\":1.6555,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9922,\"z\":0.0169}},\"405fe5\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9968,\"z\":0.0168}},\"5140fa\":{\"lock\":false,\"pos\":{\"x\":-11.8026,\"y\":1.6071,\"z\":-15.1593},\"rot\":{\"x\":359.9201,\"y\":269.9991,\"z\":0.0168}},\"51a054\":{\"lock\":false,\"pos\":{\"x\":-43.37,\"y\":1.6408,\"z\":-3.83},\"rot\":{\"x\":359.9832,\"y\":0.0012,\"z\":359.9201}},\"5e925f\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9978,\"z\":0.0168}},\"66a3d9\":{\"lock\":false,\"pos\":{\"x\":-26.7521,\"y\":1.6312,\"z\":-3.9383},\"rot\":{\"x\":359.9201,\"y\":269.993,\"z\":0.0168}},\"7039ea\":{\"lock\":false,\"pos\":{\"x\":-11.8225,\"y\":1.6308,\"z\":-8.4515},\"rot\":{\"x\":359.9201,\"y\":270.0127,\"z\":0.0168}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-26.8443,\"y\":1.6212,\"z\":7.7746},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"7cd3fa\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6325,\"z\":15.1901},\"rot\":{\"x\":359.9201,\"y\":269.9969,\"z\":0.0167}},\"7ec142\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6234,\"z\":15.19},\"rot\":{\"x\":359.9201,\"y\":269.9928,\"z\":0.0168}},\"8d1e7a\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6178,\"z\":11.46},\"rot\":{\"x\":0.0168,\"y\":179.9996,\"z\":0.0799}},\"8e3380\":{\"lock\":false,\"pos\":{\"x\":-15.4114,\"y\":1.4149,\"z\":-10.0902},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.92}},\"8f998b\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9953,\"z\":0.0168}},\"9e3f22\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6202,\"z\":-11.51},\"rot\":{\"x\":0.0169,\"y\":179.9737,\"z\":0.0799}},\"a5d119\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6394,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9861,\"z\":0.0169}},\"a6b729\":{\"lock\":false,\"pos\":{\"x\":-19.9422,\"y\":1.6115,\"z\":7.5721},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"b4679b\":{\"lock\":false,\"pos\":{\"x\":-39.9403,\"y\":1.6372,\"z\":0.0087},\"rot\":{\"x\":0.0799,\"y\":89.9997,\"z\":359.9831}},\"b6c3a5\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6349,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9907,\"z\":0.0169}},\"bbaef4\":{\"lock\":false,\"pos\":{\"x\":-30.2242,\"y\":1.6225,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":179.9992,\"z\":0.0799}},\"c1186b\":{\"lock\":false,\"pos\":{\"x\":-11.8446,\"y\":1.6299,\"z\":-11.8867},\"rot\":{\"x\":359.9201,\"y\":270.0229,\"z\":0.0168}},\"c3cd55\":{\"lock\":false,\"pos\":{\"x\":-30.2244,\"y\":1.6327,\"z\":-15.28},\"rot\":{\"x\":359.9201,\"y\":269.9838,\"z\":0.0169}},\"c56b51\":{\"lock\":false,\"pos\":{\"x\":-15.3292,\"y\":1.4137,\"z\":-13.897},\"rot\":{\"x\":359.9832,\"y\":0.0009,\"z\":359.92}},\"ccd93d\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":179.9991,\"z\":0.0799}},\"cf8d9e\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9905,\"z\":0.0169}},\"d9a022\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6087,\"z\":11.46},\"rot\":{\"x\":0.0168,\"y\":179.9997,\"z\":0.0799}},\"dd3162\":{\"lock\":false,\"pos\":{\"x\":-17.1201,\"y\":1.6212,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":269.9958,\"z\":0.0168}},\"e1116a\":{\"lock\":false,\"pos\":{\"x\":-36.7733,\"y\":1.6441,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9954,\"z\":0.0168}},\"e50e9d\":{\"lock\":false,\"pos\":{\"x\":-40.0263,\"y\":1.6498,\"z\":-3.616},\"rot\":{\"x\":359.9201,\"y\":269.9902,\"z\":0.0169}},\"e52b9c\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9962,\"z\":0.0168}},\"efe0dd\":{\"lock\":false,\"pos\":{\"x\":-25.3445,\"y\":1.6501,\"z\":1.5014},\"rot\":{\"x\":359.9202,\"y\":270.004,\"z\":359.0058}},\"f6e60b\":{\"lock\":false,\"pos\":{\"x\":-26.4476,\"y\":1.6161,\"z\":-7.6052},\"rot\":{\"x\":359.9201,\"y\":270.0095,\"z\":0.0169}},\"fb6a7c\":{\"lock\":false,\"pos\":{\"x\":-43.3701,\"y\":1.6533,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":269.9971,\"z\":0.0168}},\"fd6c1b\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9908,\"z\":0.0169}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "03695f",
"Name": "Card",
"Transform": {
"posX": -26.3214,
"posY": 1.65222609,
"posZ": 16.1205025,
"rotX": 0.508531332,
"rotY": 269.994568,
"rotZ": 0.0168577824,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nikola Tesla",
"Description": "Renowned Inventor",
"GMNotes": "{\n \"id\": \"87014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Scientist. Ally. Past.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558002,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2aff00",
"Name": "Card",
"Transform": {
"posX": -20.3302,
"posY": 1.6268338,
"posZ": 11.6529,
"rotX": 359.9201,
"rotY": 269.997253,
"rotZ": 0.016843481,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Noble Legacy (Past)",
"Description": "",
"GMNotes": "{\n \"id\": \"87006\",\n \"type\": \"Story\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558105,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "389723",
"Name": "Card",
"Transform": {
"posX": -43.37,
"posY": 1.65552771,
"posZ": -0.0300002173,
"rotX": 359.9201,
"rotY": 269.992249,
"rotZ": 0.0168504417,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Docks",
"Description": "Arkham. Portal. Future.",
"GMNotes": "{\n \"id\": \"87027\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Spade|Portal\",\n \"connections\": \"Plus|Diamond|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Spade|Portal\",\n \"connections\": \"Plus|Diamond|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558120,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "405fe5",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.62581253,
"posZ": -7.70000029,
"rotX": 359.9201,
"rotY": 269.996826,
"rotZ": 0.016844105,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tick-Tock Club",
"Description": "Arkham. Portal. Present.",
"GMNotes": "{\n \"id\": \"87017\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Present.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Clover|Portal\",\n \"connections\": \"SlantedEquals|Circle|Tindalos\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Clover|Portal\",\n \"connections\": \"SlantedEquals|Circle|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558113,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5140fa",
"Name": "Card",
"Transform": {
"posX": -11.802599,
"posY": 1.60706282,
"posZ": -15.1592989,
"rotX": 359.9201,
"rotY": 269.998962,
"rotZ": 0.01684105,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edwin Bennet",
"Description": "",
"GMNotes": "{\n \"id\": \"87036\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558126,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e925f",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.6189239,
"posZ": -0.03000029,
"rotX": 359.9201,
"rotY": 269.997833,
"rotZ": 0.01684268,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tindalos",
"Description": "Past. Present. Future.",
"GMNotes": "{\n \"id\": \"87005\",\n \"type\": \"Location\",\n \"traits\": \"Past. Present. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tindalos\",\n \"connections\": \"Portal\"\n },\n \"locationBack\": {\n \"icons\": \"Tindalos\",\n \"connections\": \"Portal\"\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558104,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "66a3d9",
"Name": "Card",
"Transform": {
"posX": -26.7521,
"posY": 1.63120663,
"posZ": -3.93830037,
"rotX": 359.9201,
"rotY": 269.993042,
"rotZ": 0.0168493539,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Noble Legacy (Present)",
"Description": "",
"GMNotes": "{\n \"id\": \"87015\",\n \"type\": \"Story\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558111,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7039ea",
"Name": "Deck",
"Transform": {
"posX": -11.8225,
"posY": 1.63082981,
"posZ": -8.451501,
"rotX": 359.9201,
"rotY": 270.0127,
"rotZ": 0.0168234445,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thomas Corrigans",
"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": [
558306,
558303,
558300
],
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "26f1b0",
"Name": "Card",
"Transform": {
"posX": 7.98594427,
"posY": 1.48411727,
"posZ": 0.5877834,
"rotX": 359.920471,
"rotY": 270.0129,
"rotZ": 0.0144246556,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thomas Corrigan",
"Description": "Cofounder of Corrigan Industries",
"GMNotes": "{\n \"id\": \"87030\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Future.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558306,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "1d52ec",
"Name": "Card",
"Transform": {
"posX": 7.591571,
"posY": 1.52095127,
"posZ": 0.425787151,
"rotX": 359.925262,
"rotY": 270.0054,
"rotZ": 0.006543193,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thomas Corrigan",
"Description": "Preeminent Astrophysicist",
"GMNotes": "{\n \"id\": \"87021\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Present.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558303,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5c881c",
"Name": "Card",
"Transform": {
"posX": 8.066602,
"posY": 1.56016314,
"posZ": 0.5943791,
"rotX": 359.9195,
"rotY": 270.000275,
"rotZ": 0.01667011,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thomas Corrigan",
"Description": "Physics Student",
"GMNotes": "{\n \"id\": \"87012\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Past.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558300,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69,
"posY": 1.56,
"posZ": 14.24,
"rotX": 0,
"rotY": 225,
"rotZ": 0,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/2038485431565955058/F72FECE5488594A28292C06997A2E28A8B8961C5/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
},
"ContainedObjects": [
{
"GUID": "fb4fff",
"Name": "Card",
"Transform": {
"posX": 1.69642222,
"posY": 3.67013884,
"posZ": 14.2788363,
"rotX": 359.948059,
"rotY": 224.998062,
"rotZ": 0.05831878,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dimensional Beam Machine",
"Description": "",
"GMNotes": "{\n \"id\": \"87032\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Item. Science. Tool. Future.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558008,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "df5ca4",
"Name": "Card",
"Transform": {
"posX": 1.69641364,
"posY": 3.669967,
"posZ": 14.2788277,
"rotX": 359.9746,
"rotY": 224.99794,
"rotZ": 0.06738667,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Corrigan Industries",
"Description": "Arkham. Future.",
"GMNotes": "{\n \"id\": \"87029\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Apostrophe\",\n \"connections\": \"Diamond\"\n },\n \"locationBack\": {\n \"icons\": \"Apostrophe\",\n \"connections\": \"Diamond\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558122,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "7cd3fa",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.63253772,
"posZ": 15.1901,
"rotX": 359.920135,
"rotY": 269.996948,
"rotZ": 0.0167094432,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Docks",
"Description": "Arkham. Portal. Past.",
"GMNotes": "{\n \"id\": \"87009\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass|Portal\",\n \"connections\": \"Star|Triangle|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass|Portal\",\n \"connections\": \"Star|Triangle|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558108,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7ec142",
"Name": "Card",
"Transform": {
"posX": -17.1201,
"posY": 1.62339711,
"posZ": 15.1900005,
"rotX": 359.9201,
"rotY": 269.9928,
"rotZ": 0.0168498587,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham Gazette",
"Description": "Arkham. Portal. Past.",
"GMNotes": "{\n \"id\": \"87007\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star|Portal\",\n \"connections\": \"Hourglass|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Star|Portal\",\n \"connections\": \"Hourglass|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558106,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8e3380",
"Name": "Bag",
"Transform": {
"posX": -15.4114,
"posY": 1.414946,
"posZ": -10.0902042,
"rotX": 359.983154,
"rotY": 0.00114606915,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Plots",
"Description": "Shuffle and draw!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "332ee8",
"Name": "Bag",
"Transform": {
"posX": -15.5025816,
"posY": 3.49479461,
"posZ": -9.716563,
"rotX": 0.7836026,
"rotY": 359.991119,
"rotZ": 0.182434022,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anomalies in Spacetime",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "670d4e",
"Name": "Custom_Model_Infinite_Bag",
"Transform": {
"posX": 12.5681572,
"posY": 3.640144,
"posZ": -15.9976635,
"rotX": 359.2146,
"rotY": 270.004272,
"rotZ": 359.4252,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "Horror tokens",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.192488372,
"g": 0.248136282,
"b": 0.4512195
},
"LayoutGroupSortIndex": 0,
"Value": 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://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068501357109766/6D35F3D98A4C89696895FACA788F54005B1688D3/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 7,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "36be72",
"Name": "Custom_Token",
"Transform": {
"posX": -26.4036713,
"posY": 1.41001534,
"posZ": 15.7281322,
"rotX": 5.372964E-06,
"rotY": 0.0300562512,
"rotZ": 1.32273317E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5c2361",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.210006,
"posZ": 15.9442654,
"rotX": -2.02706469E-05,
"rotY": 270.015259,
"rotZ": 2.20759175E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163230/ED46F8BBAEDB4D3C96C654D48C56110D35F3F54F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "3a3415",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.210006,
"posZ": 15.9442368,
"rotX": -1.04253941E-05,
"rotY": 270.015137,
"rotZ": 1.02804506E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357162977/E5D453CC14394519E004B4F8703FC425A7AE3D6C/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "4a91a8",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.9442348,
"rotX": 1.89065361E-06,
"rotY": 270.01532,
"rotZ": 1.59575811E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164483/5E22FEAE253AE65BDE3FA09E4EE7133569F7E194/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "887aae",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.9442024,
"rotX": -3.432232E-05,
"rotY": 270.016,
"rotZ": -3.73151761E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164251/34DC7172A2B433047DA853796DB52AECE019F99F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"6": {
"GUID": "baa831",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000624,
"posZ": 15.94415,
"rotX": -2.49414188E-05,
"rotY": 270.0157,
"rotZ": 2.92043842E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164030/0A12FD352F28A560EA7E7952D8CA618A5245F1E0/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"7": {
"GUID": "da94da",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.944108,
"rotX": -2.33948358E-05,
"rotY": 270.015656,
"rotZ": 2.18774017E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357114485/8B2B8A9F61CC2D8C1F10977ABDB4BA2423AD143F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2e1687",
"Name": "Custom_Token",
"Transform": {
"posX": -27.753376,
"posY": 1.210006,
"posZ": 15.9440966,
"rotX": -1.57902083E-08,
"rotY": 270.016541,
"rotZ": -2.19759459E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163806/F397C22A8DDB8F22E08E42E6449C3B5D8CFDB313/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "a6f1e0",
"Name": "Custom_Token",
"Transform": {
"posX": -27.753376,
"posY": 1.21000612,
"posZ": 15.9440622,
"rotX": -2.09277514E-05,
"rotY": 270.016724,
"rotZ": 4.970206E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357110165/AD791E6817304851C0ABD7AE97AA60326AC14538/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "91c720",
"Name": "Card",
"Transform": {
"posX": -10.0845184,
"posY": 3.680854,
"posZ": -7.51579046,
"rotX": 359.858368,
"rotY": 269.998962,
"rotZ": 0.82205075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anomalies in Spacetime",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87038\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558128,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "db1382",
"Name": "Bag",
"Transform": {
"posX": -15.24036,
"posY": 3.491202,
"posZ": -9.594643,
"rotX": 0.8969983,
"rotY": 359.991241,
"rotZ": 359.6962,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Abomination",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "969e90",
"Name": "Card",
"Transform": {
"posX": 10.172575,
"posY": 3.55303621,
"posZ": -10.7987614,
"rotX": 359.8438,
"rotY": 270.0051,
"rotZ": 359.246582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tyr'thrha",
"Description": "Arch-Lord of Tindalos",
"GMNotes": "{\n \"id\": \"87043\",\n \"type\": \"Enemy\",\n \"traits\": \"Ancient One. Tindalos. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558311,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ed625",
"Name": "Card",
"Transform": {
"posX": -13.5271053,
"posY": 3.69311619,
"posZ": -4.279647,
"rotX": 359.849152,
"rotY": 270.00058,
"rotZ": 359.2451,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Abomination",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87042\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558130,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "f69f43",
"Name": "Bag",
"Transform": {
"posX": -15.5124292,
"posY": 3.499862,
"posZ": -10.1907692,
"rotX": 359.7986,
"rotY": -0.00089598936,
"rotZ": 0.253433853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Troubles",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dbf09c",
"Name": "Deck",
"Transform": {
"posX": 8.816529,
"posY": 3.57813263,
"posZ": -6.507375,
"rotX": 359.541779,
"rotY": 269.97467,
"rotZ": 358.976654,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gangs",
"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": [
558310,
558310,
558310
],
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c330c3",
"Name": "Card",
"Transform": {
"posX": 8.227613,
"posY": 1.516042,
"posZ": 4.87732935,
"rotX": 358.9031,
"rotY": 269.9687,
"rotZ": 0.214684114,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d28f0f",
"Name": "Card",
"Transform": {
"posX": 8.301361,
"posY": 1.57807636,
"posZ": 5.08355856,
"rotX": 359.642639,
"rotY": 269.999817,
"rotZ": 0.18169032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af3173",
"Name": "Card",
"Transform": {
"posX": 7.88701439,
"posY": 1.61188483,
"posZ": 4.97303629,
"rotX": 359.51004,
"rotY": 270.000183,
"rotZ": 0.184052512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a0dc53",
"Name": "Card",
"Transform": {
"posX": 8.774647,
"posY": 3.563054,
"posZ": -6.963924,
"rotX": 357.9572,
"rotY": 270.0186,
"rotZ": 1.36968613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Sadie Sheldon",
"Description": "Bootlegging Kingpin",
"GMNotes": "{\n \"id\": \"87040\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558309,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "114e6d",
"Name": "Card",
"Transform": {
"posX": -11.6782608,
"posY": 3.69640017,
"posZ": -1.74573541,
"rotX": 359.850342,
"rotY": 269.9991,
"rotZ": 0.473690122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Troubles",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87039\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558129,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "8f998b",
"Name": "Card",
"Transform": {
"posX": -36.7732,
"posY": 1.646329,
"posZ": -0.0300003588,
"rotX": 359.9201,
"rotY": 269.9953,
"rotZ": 0.0168462545,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham Advertiser",
"Description": "Arkham. Portal. Future.",
"GMNotes": "{\n \"id\": \"87025\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Plus|Portal\",\n \"connections\": \"Spade|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Plus|Portal\",\n \"connections\": \"Spade|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558118,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5d119",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.63943052,
"posZ": 7.5700016,
"rotX": 359.9201,
"rotY": 269.986084,
"rotZ": 0.0168590024,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childhood Home",
"Description": "Arkham. Past.",
"GMNotes": "{\n \"id\": \"87011\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Triangle\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Triangle\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558110,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b6c3a5",
"Name": "Card",
"Transform": {
"posX": -30.2244,
"posY": 1.634943,
"posZ": -7.700001,
"rotX": 359.9201,
"rotY": 269.990662,
"rotZ": 0.0168525968,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miskatonic University",
"Description": "Arkham. Portal. Present.",
"GMNotes": "{\n \"id\": \"87019\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Present.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Circle|Portal\",\n \"connections\": \"Clover|Crescent|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Circle|Portal\",\n \"connections\": \"Clover|Crescent|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558115,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c1186b",
"Name": "Deck",
"Transform": {
"posX": -11.8446007,
"posY": 1.629851,
"posZ": -11.8867006,
"rotX": 359.9201,
"rotY": 270.022827,
"rotZ": 0.0168093275,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mary Zielinskis",
"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": [
558307,
558304,
558301
],
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "2d3e06",
"Name": "Card",
"Transform": {
"posX": 13.0077133,
"posY": 1.49018133,
"posZ": -1.87249923,
"rotX": 359.919373,
"rotY": 269.981323,
"rotZ": 359.297455,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mary Zielinski",
"Description": "Cofounder of Corrigan Industries",
"GMNotes": "{\n \"id\": \"87031\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Future.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558307,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "87790a",
"Name": "Card",
"Transform": {
"posX": 12.9137344,
"posY": 1.53053141,
"posZ": -1.540919,
"rotX": 359.945526,
"rotY": 270.000153,
"rotZ": 359.3955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mary Zielinski",
"Description": "Distinguished Chemist",
"GMNotes": "{\n \"id\": \"87022\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Present.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558304,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "24b236",
"Name": "Card",
"Transform": {
"posX": 13.0941277,
"posY": 1.55228078,
"posZ": -2.30871773,
"rotX": 359.9192,
"rotY": 269.998169,
"rotZ": 0.0174659472,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mary Zielinski",
"Description": "Chemistry Student",
"GMNotes": "{\n \"id\": \"87013\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Past.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558301,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "c3cd55",
"Name": "Card",
"Transform": {
"posX": -30.2244,
"posY": 1.63271523,
"posZ": -15.2800016,
"rotX": 359.9201,
"rotY": 269.983826,
"rotZ": 0.0168621186,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ye Olde Magick Shoppe",
"Description": "Arkham. Present.",
"GMNotes": "{\n \"id\": \"87020\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Present.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Circle\"\n },\n \"locationBack\": {\n \"icons\": \"Crescent\",\n \"connections\": \"Circle\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558116,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c56b51",
"Name": "Bag",
"Transform": {
"posX": -15.3291988,
"posY": 1.41371286,
"posZ": -13.897,
"rotX": 359.983154,
"rotY": 0.000910494768,
"rotZ": 359.920044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Machinations",
"Description": "Shuffle and draw!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e0fb02",
"Name": "Card",
"Transform": {
"posX": 3.87712884,
"posY": 3.63323021,
"posZ": -3.03211331,
"rotX": 357.737762,
"rotY": 269.989441,
"rotZ": 0.6550677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Bitter Rivalry",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87033\",\n \"type\": \"Story\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558123,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d974ae",
"Name": "Card",
"Transform": {
"posX": 3.447058,
"posY": 3.66432643,
"posZ": -3.009003,
"rotX": 359.759827,
"rotY": 269.9989,
"rotZ": 0.689906955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Redeem a Former Colleague",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87034\",\n \"type\": \"Story\",\n \"traits\": \"Machination.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558124,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "746c67",
"Name": "Card",
"Transform": {
"posX": 3.3177073,
"posY": 3.6745522,
"posZ": -2.1865716,
"rotX": 359.581543,
"rotY": 269.97998,
"rotZ": 0.246279523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Uneasy Alliance",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87035\",\n \"type\": \"Story\",\n \"traits\": \"Machination.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558125,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "cf8d9e",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.63030028,
"posZ": 7.56999969,
"rotX": 359.9201,
"rotY": 269.990479,
"rotZ": 0.0168529768,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miskatonic University",
"Description": "Arkham. Portal. Past.",
"GMNotes": "{\n \"id\": \"87010\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle|Portal\",\n \"connections\": \"Hourglass|Heart|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle|Portal\",\n \"connections\": \"Hourglass|Heart|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558109,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dd3162",
"Name": "Card",
"Transform": {
"posX": -17.1201,
"posY": 1.62115765,
"posZ": 7.57,
"rotX": 359.9201,
"rotY": 269.9958,
"rotZ": 0.0168456938,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "O'Malley's Watch Shop",
"Description": "Arkham. Portal. Past.",
"GMNotes": "{\n \"id\": \"87008\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass|Portal\",\n \"connections\": \"Star|Triangle|Tindalos\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Hourglass|Portal\",\n \"connections\": \"Star|Triangle|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558107,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e1116a",
"Name": "Card",
"Transform": {
"posX": -36.7733,
"posY": 1.644075,
"posZ": -7.700001,
"rotX": 359.9201,
"rotY": 269.995361,
"rotZ": 0.0168461427,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tick-Tock Club",
"Description": "Arkham. Portal. Future.",
"GMNotes": "{\n \"id\": \"87026\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Spade|Portal\",\n \"connections\": \"Plus|Diamond|Tindalos\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Spade|Portal\",\n \"connections\": \"Plus|Diamond|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558119,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e50e9d",
"Name": "Card",
"Transform": {
"posX": -40.0263,
"posY": 1.64981127,
"posZ": -3.61600041,
"rotX": 359.9201,
"rotY": 269.990173,
"rotZ": 0.0168533027,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Noble Legacy (Future)",
"Description": "",
"GMNotes": "{\n \"id\": \"87024\",\n \"type\": \"Story\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558117,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "e52b9c",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.637197,
"posZ": -0.0300003439,
"rotX": 359.9201,
"rotY": 269.996155,
"rotZ": 0.0168450288,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Docks",
"Description": "Arkham. Portal. Present.",
"GMNotes": "{\n \"id\": \"87018\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Present.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Clover|Portal\",\n \"connections\": \"SlantedEquals|Circle|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Clover|Portal\",\n \"connections\": \"SlantedEquals|Circle|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558114,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "efe0dd",
"Name": "Card",
"Transform": {
"posX": -25.3445,
"posY": 1.65013659,
"posZ": 1.50140047,
"rotX": 359.9202,
"rotY": 270.004028,
"rotZ": 359.005829,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ezra Graves",
"Description": "Professor of the Arcane",
"GMNotes": "{\n \"id\": \"87023\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Scientist. Ally. Present.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558005,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fb6a7c",
"Name": "Card",
"Transform": {
"posX": -43.3701,
"posY": 1.65327382,
"posZ": -7.70000172,
"rotX": 359.9201,
"rotY": 269.997131,
"rotZ": 0.0168436784,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miskatonic University",
"Description": "Arkham. Portal. Future.",
"GMNotes": "{\n \"id\": \"87028\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Diamond|Portal\",\n \"connections\": \"Spade|Apostrophe|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Diamond|Portal\",\n \"connections\": \"Spade|Apostrophe|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558121,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fd6c1b",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.62806761,
"posZ": -0.03000141,
"rotX": 359.9201,
"rotY": 269.990753,
"rotZ": 0.0169113036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham Advertiser",
"Description": "Arkham. Portal. Present.",
"GMNotes": "{\n \"id\": \"87016\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Present.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"SlantedEquals|Portal\",\n \"connections\": \"Clover|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"SlantedEquals|Portal\",\n \"connections\": \"Clover|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558112,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "84bdea",
"Name": "Bag",
"Transform": {
"posX": -0.869425952,
"posY": 1.29646444,
"posZ": -30.0373058,
"rotX": 6.5097214E-07,
"rotY": 89.9994659,
"rotZ": 2.08751244E-05,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Epic Multiplayer Mode (Past)",
"Description": "Machinations Through Time",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "function 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 onload(saved_data)\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 if next(memoryList) == nil then\r\n createSetupButton()\r\n else\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.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\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()\r\n createSetupActionButtons()\r\nend\r\n\r\n--Creates selection buttons on objects\r\nfunction createButtonsOnAllObjects()\r\n local howManyButtons = 0\r\n for _, obj in ipairs(getAllObjects()) 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.25 * 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\r\n objPos.z = objPos.z * globalScaleFactor\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) 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=1000, width=1000,\r\n color={0.75,0.25,0.25,0.6},\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()\r\n self.createButton({\r\n label=\"Cancel\", click_function=\"buttonClick_cancel\", function_owner=self,\r\n position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Submit\", click_function=\"buttonClick_submit\", function_owner=self,\r\n position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100,\r\n font_size=250, color={0,0,0}, font_color={1,1,1}\r\n })\r\n self.createButton({\r\n label=\"Reset\", click_function=\"buttonClick_reset\", function_owner=self,\r\n position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, 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)\r\n local color = {0,1,0,0.6}\r\n if memoryList[obj.getGUID()] == 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 memoryList[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 self.editButton({index=index, color=color})\r\n memoryList[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 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\nend\r\n\r\n--Saves selections\r\nfunction buttonClick_submit()\r\n if next(memoryList) == nil then\r\n broadcastToAll(\"You cannot submit without any selections.\", {0.75, 0.25, 0.25})\r\n else\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 end\r\nend\r\n\r\n--Resets bag to starting status\r\nfunction buttonClick_reset()\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,0.3,-2}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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,0.3,-2.8}, rotation={0,180,0}, height=350, width=800,\r\n font_size=250, 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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800,\r\n font_size=250, color={0,0,0}, font_color={1,1,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,\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 deltaPos = {}\r\n local bounds = obj.getBounds()\r\n deltaPos.x = (p2.x-p1.x)\r\n deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y)\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\n--Coroutine delay, in seconds\r\nfunction wait(time)\r\n local start = os.time()\r\n repeat coroutine.yield(0) until os.time() > start + time\r\nend\r\n\r\n--Duplicates a table (needed to prevent it making reference to the same objects)\r\nfunction duplicateTable(oldTable)\r\n local newTable = {}\r\n for k, v in pairs(oldTable) do\r\n newTable[k] = v\r\n end\r\n return newTable\r\nend\r\n\r\n--Moves scripted highlight from all objects\r\nfunction removeAllHighlights()\r\n for _, obj in ipairs(getAllObjects()) do\r\n obj.highlightOff()\r\n end\r\nend\r\n\r\n--Round number (num) to the Nth decimal (dec)\r\nfunction round(num, dec)\r\n local mult = 10^(dec or 0)\r\n return math.floor(num * mult + 0.5) / mult\r\nend\r\n",
"LuaScriptState": "{\"ml\":{\"7a167a\":{\"lock\":false,\"pos\":{\"x\":1.69,\"y\":1.56,\"z\":14.24},\"rot\":{\"x\":0,\"y\":225,\"z\":0}},\"072fbb\":{\"lock\":false,\"pos\":{\"x\":-20.3801,\"y\":1.6098,\"z\":-0.1917},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"13e04b\":{\"lock\":false,\"pos\":{\"x\":-20.2416,\"y\":1.6108,\"z\":3.8065},\"rot\":{\"x\":0.0684,\"y\":135,\"z\":0.0446}},\"247783\":{\"lock\":false,\"pos\":{\"x\":-27.0348,\"y\":1.6203,\"z\":3.7345},\"rot\":{\"x\":359.9554,\"y\":224.9999,\"z\":0.0684}},\"24b236\":{\"lock\":false,\"pos\":{\"x\":-12.6513,\"y\":1.6092,\"z\":-11.8982},\"rot\":{\"x\":359.9201,\"y\":270.0228,\"z\":0.0168}},\"2aff00\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6212,\"z\":7.57},\"rot\":{\"x\":359.9201,\"y\":270.0008,\"z\":0.0168}},\"2ff632\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6133,\"z\":-3.83},\"rot\":{\"x\":0.0168,\"y\":179.9999,\"z\":0.0799}},\"4e4431\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6156,\"z\":3.86},\"rot\":{\"x\":0.0168,\"y\":180,\"z\":0.0799}},\"5c881c\":{\"lock\":false,\"pos\":{\"x\":-12.6574,\"y\":1.61,\"z\":-9.3698},\"rot\":{\"x\":359.9201,\"y\":270.0006,\"z\":0.0168}},\"5e8ad3\":{\"lock\":false,\"pos\":{\"x\":-16.06,\"y\":1.4158,\"z\":-10.2892},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.92}},\"7234af\":{\"lock\":false,\"pos\":{\"x\":-33.7148,\"y\":1.6285,\"z\":-0.0583},\"rot\":{\"x\":359.9201,\"y\":270.0097,\"z\":0.0169}},\"728ad5\":{\"lock\":false,\"pos\":{\"x\":-26.0819,\"y\":1.6507,\"z\":6.874},\"rot\":{\"x\":0.5673,\"y\":270.0005,\"z\":0.0169}},\"7cd3fa\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6303,\"z\":7.57},\"rot\":{\"x\":359.9203,\"y\":270.0037,\"z\":0.0177}},\"7ec142\":{\"lock\":false,\"pos\":{\"x\":-17.12,\"y\":1.6189,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":0.0168}},\"941182\":{\"lock\":false,\"pos\":{\"x\":-23.6765,\"y\":1.6281,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":270,\"z\":180.0168}},\"a5d119\":{\"lock\":false,\"pos\":{\"x\":-36.7732,\"y\":1.6463,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9926,\"z\":0.0169}},\"bab30c\":{\"lock\":false,\"pos\":{\"x\":-27.0471,\"y\":1.6191,\"z\":-0.1135},\"rot\":{\"x\":359.9201,\"y\":270.0096,\"z\":0.0169}},\"cb48cf\":{\"lock\":false,\"pos\":{\"x\":-12.6396,\"y\":1.6084,\"z\":-14.4579},\"rot\":{\"x\":359.9201,\"y\":269.9979,\"z\":0.0168}},\"cf8d9e\":{\"lock\":false,\"pos\":{\"x\":-30.2243,\"y\":1.6372,\"z\":-0.03},\"rot\":{\"x\":359.9201,\"y\":269.9825,\"z\":0.0169}},\"d0f869\":{\"lock\":false,\"pos\":{\"x\":-16.0456,\"y\":1.4148,\"z\":-13.4382},\"rot\":{\"x\":359.9832,\"y\":0.0008,\"z\":359.92}},\"d3c46f\":{\"lock\":false,\"pos\":{\"x\":-20.0498,\"y\":1.6082,\"z\":-4.1147},\"rot\":{\"x\":359.9554,\"y\":225.0002,\"z\":0.0684}},\"dd3162\":{\"lock\":false,\"pos\":{\"x\":-23.6766,\"y\":1.6258,\"z\":-7.7},\"rot\":{\"x\":359.9201,\"y\":270.0089,\"z\":0.0168}},\"f620a8\":{\"lock\":false,\"pos\":{\"x\":-26.9527,\"y\":1.6179,\"z\":-3.8696},\"rot\":{\"x\":0.0684,\"y\":135.0002,\"z\":0.0446}}}}",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "7a167a",
"Name": "Custom_Model_Bag",
"Transform": {
"posX": 1.69,
"posY": 1.56,
"posZ": 14.24,
"rotX": 0,
"rotY": 225,
"rotZ": 0,
"scaleX": 2.0,
"scaleY": 2.0,
"scaleZ": 2.0
},
"Nickname": "Set-aside",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.0,
"g": 0.0,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"CustomMesh": {
"MeshURL": "http://cloud-3.steamusercontent.com/ugc/2038485431565955058/F72FECE5488594A28292C06997A2E28A8B8961C5/",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960553/C518D80E31E27DB23EEAC8CF9253E59798865790/",
"NormalURL": "http://cloud-3.steamusercontent.com/ugc/764975951334960069/E70E4A58A1B7827F1E5E2AF9FF44DF0BD5DA33F7/",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 6,
"CastShadows": true
},
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"PhysicsMaterial": {
"StaticFriction": 0.6,
"DynamicFriction": 0.6,
"Bounciness": 0.0,
"FrictionCombine": 0,
"BounceCombine": 0
},
"Rigidbody": {
"Mass": 1.375,
"Drag": 5.0,
"AngularDrag": 5.0,
"UseGravity": true
}
},
{
"GUID": "24b236",
"Name": "Card",
"Transform": {
"posX": -12.6513,
"posY": 1.60920465,
"posZ": -11.898201,
"rotX": 359.9201,
"rotY": 270.0228,
"rotZ": 0.0168078747,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mary Zielinski",
"Description": "Chemistry Student",
"GMNotes": "{\n \"id\": \"87013\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Past.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558301,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2aff00",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.62115753,
"posZ": 7.57,
"rotX": 359.9201,
"rotY": 270.0008,
"rotZ": 0.0168386251,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Noble Legacy (Past)",
"Description": "",
"GMNotes": "{\n \"id\": \"87006\",\n \"type\": \"Story\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558105,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5c881c",
"Name": "Card",
"Transform": {
"posX": -12.6573992,
"posY": 1.60995626,
"posZ": -9.36980152,
"rotX": 359.9201,
"rotY": 270.0006,
"rotZ": 0.01683871,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Thomas Corrigan",
"Description": "Physics Student",
"GMNotes": "{\n \"id\": \"87012\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally. Past.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558300,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "5e8ad3",
"Name": "Bag",
"Transform": {
"posX": -16.0183353,
"posY": 1.41574979,
"posZ": -10.2349939,
"rotX": 359.9825,
"rotY": 359.548035,
"rotZ": 359.920166,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Plots",
"Description": "Shuffle and draw!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "82e7a7",
"Name": "Bag",
"Transform": {
"posX": -16.2143536,
"posY": 3.497735,
"posZ": -10.0047264,
"rotX": 0.520085037,
"rotY": 359.992126,
"rotZ": 0.4296628,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anomalies in Spacetime",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "670d4e",
"Name": "Custom_Model_Infinite_Bag",
"Transform": {
"posX": 12.5681572,
"posY": 3.640144,
"posZ": -15.9976635,
"rotX": 359.2146,
"rotY": 270.004272,
"rotZ": 359.4252,
"scaleX": 0.8,
"scaleY": 1.0,
"scaleZ": 0.8
},
"Nickname": "Horror tokens",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.192488372,
"g": 0.248136282,
"b": 0.4512195
},
"LayoutGroupSortIndex": 0,
"Value": 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://pastebin.com/raw/ALrYhQGb",
"DiffuseURL": "http://cloud-3.steamusercontent.com/ugc/1758068501357109766/6D35F3D98A4C89696895FACA788F54005B1688D3/",
"NormalURL": "",
"ColliderURL": "",
"Convex": true,
"MaterialIndex": 1,
"TypeIndex": 7,
"CastShadows": true
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "36be72",
"Name": "Custom_Token",
"Transform": {
"posX": -26.4036713,
"posY": 1.41001534,
"posZ": 15.7281322,
"rotX": 5.372964E-06,
"rotY": 0.0300562512,
"rotZ": 1.32273317E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163535/6D9E0756503664D65BDB384656AC6D4BD713F5FC/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"States": {
"2": {
"GUID": "5c2361",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.210006,
"posZ": 15.9442654,
"rotX": -2.02706469E-05,
"rotY": 270.015259,
"rotZ": 2.20759175E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163230/ED46F8BBAEDB4D3C96C654D48C56110D35F3F54F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"3": {
"GUID": "3a3415",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.210006,
"posZ": 15.9442368,
"rotX": -1.04253941E-05,
"rotY": 270.015137,
"rotZ": 1.02804506E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357162977/E5D453CC14394519E004B4F8703FC425A7AE3D6C/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"4": {
"GUID": "4a91a8",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.9442348,
"rotX": 1.89065361E-06,
"rotY": 270.01532,
"rotZ": 1.59575811E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164483/5E22FEAE253AE65BDE3FA09E4EE7133569F7E194/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"5": {
"GUID": "887aae",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.9442024,
"rotX": -3.432232E-05,
"rotY": 270.016,
"rotZ": -3.73151761E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164251/34DC7172A2B433047DA853796DB52AECE019F99F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"6": {
"GUID": "baa831",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000624,
"posZ": 15.94415,
"rotX": -2.49414188E-05,
"rotY": 270.0157,
"rotZ": 2.92043842E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357164030/0A12FD352F28A560EA7E7952D8CA618A5245F1E0/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"7": {
"GUID": "da94da",
"Name": "Custom_Token",
"Transform": {
"posX": -27.7533741,
"posY": 1.21000612,
"posZ": 15.944108,
"rotX": -2.33948358E-05,
"rotY": 270.015656,
"rotZ": 2.18774017E-06,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357114485/8B2B8A9F61CC2D8C1F10977ABDB4BA2423AD143F/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"8": {
"GUID": "2e1687",
"Name": "Custom_Token",
"Transform": {
"posX": -27.753376,
"posY": 1.210006,
"posZ": 15.9440966,
"rotX": -1.57902083E-08,
"rotY": 270.016541,
"rotZ": -2.19759459E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357163806/F397C22A8DDB8F22E08E42E6449C3B5D8CFDB313/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
"9": {
"GUID": "a6f1e0",
"Name": "Custom_Token",
"Transform": {
"posX": -27.753376,
"posY": 1.21000612,
"posZ": 15.9440622,
"rotX": -2.09277514E-05,
"rotY": 270.016724,
"rotZ": 4.970206E-05,
"scaleX": 0.25,
"scaleY": 1.0,
"scaleZ": 0.25
},
"Nickname": "Horror",
"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": false,
"Snap": false,
"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/1758068501357110165/AD791E6817304851C0ABD7AE97AA60326AC14538/",
"ImageSecondaryURL": "",
"ImageScalar": 1.0,
"WidthScale": 0.0,
"CustomToken": {
"Thickness": 0.1,
"MergeDistancePixels": 5.0,
"StandUp": false,
"Stackable": false
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
}
}
]
},
{
"GUID": "91c720",
"Name": "Card",
"Transform": {
"posX": -10.0845184,
"posY": 3.680854,
"posZ": -7.51579046,
"rotX": 359.858368,
"rotY": 269.998962,
"rotZ": 0.82205075,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Anomalies in Spacetime",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87038\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558128,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "db1382",
"Name": "Bag",
"Transform": {
"posX": -16.0240536,
"posY": 3.50168824,
"posZ": -10.1505423,
"rotX": 0.21768257,
"rotY": -0.00229754625,
"rotZ": -0.00223868573,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Abomination",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "969e90",
"Name": "Card",
"Transform": {
"posX": 10.172575,
"posY": 3.55303621,
"posZ": -10.7987614,
"rotX": 359.8438,
"rotY": 270.0051,
"rotZ": 359.246582,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tyr'thrha",
"Description": "Arch-Lord of Tindalos",
"GMNotes": "{\n \"id\": \"87043\",\n \"type\": \"Enemy\",\n \"traits\": \"Ancient One. Tindalos. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558311,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "8ed625",
"Name": "Card",
"Transform": {
"posX": -13.5271053,
"posY": 3.69311619,
"posZ": -4.279647,
"rotX": 359.849152,
"rotY": 270.00058,
"rotZ": 359.2451,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Unspeakable Abomination",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87042\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558130,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "4648d1",
"Name": "Bag",
"Transform": {
"posX": -15.8710613,
"posY": 3.49748373,
"posZ": -10.0271111,
"rotX": 0.5992982,
"rotY": -0.004333226,
"rotZ": 359.6061,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Troubles",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "dbf09c",
"Name": "Deck",
"Transform": {
"posX": 8.816529,
"posY": 3.57813263,
"posZ": -6.507375,
"rotX": 359.541779,
"rotY": 269.97467,
"rotZ": 358.976654,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gangs",
"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": [
558310,
558310,
558310
],
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "c330c3",
"Name": "Card",
"Transform": {
"posX": 8.227613,
"posY": 1.516042,
"posZ": 4.87732935,
"rotX": 358.9031,
"rotY": 269.9687,
"rotZ": 0.214684114,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d28f0f",
"Name": "Card",
"Transform": {
"posX": 8.301361,
"posY": 1.57807636,
"posZ": 5.08355856,
"rotX": 359.642639,
"rotY": 269.999817,
"rotZ": 0.18169032,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "af3173",
"Name": "Card",
"Transform": {
"posX": 7.88701439,
"posY": 1.61188483,
"posZ": 4.97303629,
"rotX": 359.51004,
"rotY": 270.000183,
"rotZ": 0.184052512,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Sheldon Gang",
"Description": "Humanoid. Criminal. Syndicate. Elite.",
"GMNotes": "{\n \"id\": \"87041\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate. Elite.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558310,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a0dc53",
"Name": "Card",
"Transform": {
"posX": 8.774647,
"posY": 3.563054,
"posZ": -6.963924,
"rotX": 357.9572,
"rotY": 270.0186,
"rotZ": 1.36968613,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Old Sadie Sheldon",
"Description": "Bootlegging Kingpin",
"GMNotes": "{\n \"id\": \"87040\",\n \"type\": \"Enemy\",\n \"traits\": \"Humanoid. Criminal. Syndicate.\",\n \"victory\": 0,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558309,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "114e6d",
"Name": "Card",
"Transform": {
"posX": -11.6782608,
"posY": 3.69640017,
"posZ": -1.74573541,
"rotX": 359.850342,
"rotY": 269.9991,
"rotZ": 0.473690122,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Mob Troubles",
"Description": "Plot.",
"GMNotes": "{\n \"id\": \"87039\",\n \"type\": \"Story\",\n \"traits\": \"Plot.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558129,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
}
]
},
{
"GUID": "728ad5",
"Name": "Card",
"Transform": {
"posX": -26.0819,
"posY": 1.65074575,
"posZ": 6.873999,
"rotX": 0.567266941,
"rotY": 270.000549,
"rotZ": 0.0169317983,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Nikola Tesla",
"Description": "Renowned Inventor",
"GMNotes": "{\n \"id\": \"87014\",\n \"type\": \"Asset\",\n \"class\": \"Neutral\",\n \"traits\": \"Scientist. Ally. Past.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558002,
"SidewaysCard": false,
"CustomDeck": {
"5580": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/EcbhVuh.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7cd3fa",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.6303221,
"posZ": 7.569999,
"rotX": 359.920319,
"rotY": 270.0037,
"rotZ": 0.0176923964,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "River Docks",
"Description": "Arkham. Portal. Past.",
"GMNotes": "{\n \"id\": \"87009\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass|Portal\",\n \"connections\": \"Star|Triangle|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Hourglass|Portal\",\n \"connections\": \"Star|Triangle|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558108,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7ec142",
"Name": "Card",
"Transform": {
"posX": -17.12,
"posY": 1.6189239,
"posZ": -0.0300001856,
"rotX": 359.9201,
"rotY": 270.0,
"rotZ": 0.01683974,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Arkham Gazette",
"Description": "Arkham. Portal. Past.",
"GMNotes": "{\n \"id\": \"87007\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Star|Portal\",\n \"connections\": \"Hourglass|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Star|Portal\",\n \"connections\": \"Hourglass|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558106,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "941182",
"Name": "Card",
"Transform": {
"posX": -23.6765,
"posY": 1.62806654,
"posZ": -0.02999972,
"rotX": 359.9201,
"rotY": 270.0,
"rotZ": 180.01683,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tindalos",
"Description": "Past. Present. Future.",
"GMNotes": "{\n \"id\": \"87005\",\n \"type\": \"Location\",\n \"traits\": \"Past. Present. Future.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Tindalos\",\n \"connections\": \"Portal\"\n },\n \"locationBack\": {\n \"icons\": \"Tindalos\",\n \"connections\": \"Portal\"\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558104,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a5d119",
"Name": "Card",
"Transform": {
"posX": -36.7732,
"posY": 1.646329,
"posZ": -0.0300003253,
"rotX": 359.9201,
"rotY": 269.992523,
"rotZ": 0.0168500654,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Childhood Home",
"Description": "Arkham. Past.",
"GMNotes": "{\n \"id\": \"87011\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Heart\",\n \"connections\": \"Triangle\"\n },\n \"locationBack\": {\n \"icons\": \"Heart\",\n \"connections\": \"Triangle\",\n \"uses\": [\n {\n \"countPerInvestigator\": 2,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558110,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cb48cf",
"Name": "Card",
"Transform": {
"posX": -12.6396,
"posY": 1.60843611,
"posZ": -14.457902,
"rotX": 359.9201,
"rotY": 269.9979,
"rotZ": 0.0168425739,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Edwin Bennet",
"Description": "",
"GMNotes": "{\n \"id\": \"87037\",\n \"type\": \"Asset\",\n \"traits\": \"Scientist. Ally.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Asset",
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558127,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "cf8d9e",
"Name": "Card",
"Transform": {
"posX": -30.2243,
"posY": 1.637197,
"posZ": -0.0300003421,
"rotX": 359.9201,
"rotY": 269.982544,
"rotZ": 0.0168639254,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Miskatonic University",
"Description": "Arkham. Portal. Past.",
"GMNotes": "{\n \"id\": \"87010\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Triangle|Portal\",\n \"connections\": \"Hourglass|Heart|Tindalos\"\n },\n \"locationBack\": {\n \"icons\": \"Triangle|Portal\",\n \"connections\": \"Hourglass|Heart|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 1,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558109,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d0f869",
"Name": "Bag",
"Transform": {
"posX": -16.04522,
"posY": 1.41513479,
"posZ": -13.4377794,
"rotX": 359.911438,
"rotY": 0.0152847264,
"rotZ": 359.859344,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Machinations",
"Description": "Shuffle and draw!",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.7058823,
"g": 0.366520882,
"b": 0.0
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": false,
"MaterialIndex": -1,
"MeshIndex": -1,
"Bag": {
"Order": 0
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "e0fb02",
"Name": "Card",
"Transform": {
"posX": 3.87712884,
"posY": 3.63323021,
"posZ": -3.03211331,
"rotX": 357.737762,
"rotY": 269.989441,
"rotZ": 0.6550677,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Bitter Rivalry",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87033\",\n \"type\": \"Story\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558123,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d974ae",
"Name": "Card",
"Transform": {
"posX": 3.447058,
"posY": 3.66432643,
"posZ": -3.009003,
"rotX": 359.759827,
"rotY": 269.9989,
"rotZ": 0.689906955,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Redeem a Former Colleague",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87034\",\n \"type\": \"Story\",\n \"traits\": \"Machination.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558124,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "746c67",
"Name": "Card",
"Transform": {
"posX": 3.3177073,
"posY": 3.6745522,
"posZ": -2.1865716,
"rotX": 359.581543,
"rotY": 269.97998,
"rotZ": 0.246279523,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Uneasy Alliance",
"Description": "Machination.",
"GMNotes": "{\n \"id\": \"87035\",\n \"type\": \"Story\",\n \"traits\": \"Machination.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"PlayerCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558125,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "dd3162",
"Name": "Card",
"Transform": {
"posX": -23.6766,
"posY": 1.62581253,
"posZ": -7.7,
"rotX": 359.9201,
"rotY": 270.008942,
"rotZ": 0.01682719,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "O'Malley's Watch Shop",
"Description": "Arkham. Portal. Past.",
"GMNotes": "{\n \"id\": \"87008\",\n \"type\": \"Location\",\n \"traits\": \"Arkham. Portal. Past.\",\n \"cycle\": \"Standalone\",\n \"locationFront\": {\n \"icons\": \"Hourglass|Portal\",\n \"connections\": \"Star|Triangle|Tindalos\"\n },\n \"locationBack\": {\n \"victory\": 1,\n \"icons\": \"Hourglass|Portal\",\n \"connections\": \"Star|Triangle|Tindalos\",\n \"uses\": [\n {\n \"countPerInvestigator\": 3,\n \"type\": \"Clue\",\n \"token\": \"clue\"\n }\n ]\n }\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"Location",
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": false,
"Hands": true,
"CardID": 558107,
"SidewaysCard": false,
"CustomDeck": {
"5581": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "a3def6",
"Name": "Deck",
"Transform": {
"posX": -3.928157,
"posY": 1.762794,
"posZ": 5.757248,
"rotX": -1.00819854E-07,
"rotY": 269.999878,
"rotZ": 180.0,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Encounter Deck",
"Description": "",
"GMNotes": "",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": false,
"SidewaysCard": false,
"DeckIDs": [
558325,
558325,
558325,
558324,
558324,
558323,
558323,
558323,
558322,
558322,
558321,
558320,
558320,
558320,
558319,
558319,
558318,
558318,
558318,
558317,
558317,
558317,
558316,
558316,
558315,
558314,
558313,
558313,
558313,
558313,
558312,
558312,
558312
],
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "a34581",
"Name": "Card",
"Transform": {
"posX": 8.545176,
"posY": 1.49102008,
"posZ": 26.6857853,
"rotX": 359.920654,
"rotY": 269.9914,
"rotZ": 0.0152567867,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vanishing History",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"87057\",\n \"type\": \"Treachery\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558325,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "14159b",
"Name": "Card",
"Transform": {
"posX": 8.709509,
"posY": 1.55376935,
"posZ": 26.7512646,
"rotX": 359.9367,
"rotY": 269.9809,
"rotZ": 1.52798319,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vanishing History",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"87057\",\n \"type\": \"Treachery\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558325,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "63f858",
"Name": "Card",
"Transform": {
"posX": 8.563186,
"posY": 1.55927825,
"posZ": 26.8609257,
"rotX": 359.934631,
"rotY": 269.999817,
"rotZ": 359.940155,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Vanishing History",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"87057\",\n \"type\": \"Treachery\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558325,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "ba9b37",
"Name": "Card",
"Transform": {
"posX": 8.780127,
"posY": 1.91023517,
"posZ": 26.7518883,
"rotX": 359.935822,
"rotY": 270.0005,
"rotZ": 17.93869,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Temporal Distortion",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"87056\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558324,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "77bd0e",
"Name": "Card",
"Transform": {
"posX": 8.676336,
"posY": 1.57847238,
"posZ": 26.951231,
"rotX": 359.935455,
"rotY": 269.999878,
"rotZ": 359.837036,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Temporal Distortion",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"87056\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558324,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d305ea",
"Name": "Card",
"Transform": {
"posX": 8.810962,
"posY": 1.58784389,
"posZ": 27.2260342,
"rotX": 359.9342,
"rotY": 269.999634,
"rotZ": 359.937347,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Open Portal",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"87055\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558323,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "a081a7",
"Name": "Card",
"Transform": {
"posX": 8.834192,
"posY": 1.622832,
"posZ": 26.91728,
"rotX": 359.9361,
"rotY": 269.9996,
"rotZ": 0.8213342,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Open Portal",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"87055\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558323,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "b9bfc9",
"Name": "Card",
"Transform": {
"posX": 8.81988049,
"posY": 1.63458455,
"posZ": 27.2537422,
"rotX": 359.9361,
"rotY": 269.99942,
"rotZ": 1.15597916,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Open Portal",
"Description": "Hazard.",
"GMNotes": "{\n \"id\": \"87055\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558323,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "27f227",
"Name": "Card",
"Transform": {
"posX": 8.991514,
"posY": 1.64239979,
"posZ": 27.2049332,
"rotX": 359.9361,
"rotY": 269.9994,
"rotZ": 0.83888483,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Merging Timelines",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"53076\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558322,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "098332",
"Name": "Card",
"Transform": {
"posX": 9.01658,
"posY": 1.79586148,
"posZ": 27.2368813,
"rotX": 359.936066,
"rotY": 269.9987,
"rotZ": 8.357436,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Merging Timelines",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"53076\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558322,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "664611",
"Name": "Card",
"Transform": {
"posX": 8.877771,
"posY": 1.63568568,
"posZ": 26.6634178,
"rotX": 359.936859,
"rotY": 269.9997,
"rotZ": 359.940216,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Lost in Time",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"04091\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558321,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2dbcde",
"Name": "Card",
"Transform": {
"posX": 9.154547,
"posY": 1.74253428,
"posZ": 26.5134048,
"rotX": 359.936768,
"rotY": 269.9946,
"rotZ": 5.687793,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "From All Angles",
"Description": "Terror.",
"GMNotes": "{\n \"id\": \"87052\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558320,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "122be0",
"Name": "Card",
"Transform": {
"posX": 9.140032,
"posY": 1.75474787,
"posZ": 27.0054646,
"rotX": 359.936,
"rotY": 269.998932,
"rotZ": 5.13529253,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "From All Angles",
"Description": "Terror.",
"GMNotes": "{\n \"id\": \"87052\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558320,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7a4d55",
"Name": "Card",
"Transform": {
"posX": 8.841413,
"posY": 1.66487885,
"posZ": 27.2005711,
"rotX": 359.9346,
"rotY": 269.999817,
"rotZ": 359.938477,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "From All Angles",
"Description": "Terror.",
"GMNotes": "{\n \"id\": \"87052\",\n \"type\": \"Treachery\",\n \"traits\": \"Terror.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558320,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dc734c",
"Name": "Card",
"Transform": {
"posX": 8.860115,
"posY": 1.97394431,
"posZ": 26.8405361,
"rotX": 359.935944,
"rotY": 270.000183,
"rotZ": 15.3934908,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dimensional Breach",
"Description": "Hazard. Power.",
"GMNotes": "{\n \"id\": \"87051\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard. Power.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558319,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "67d913",
"Name": "Card",
"Transform": {
"posX": 8.99501,
"posY": 1.77898967,
"posZ": 27.31535,
"rotX": 359.9361,
"rotY": 269.998749,
"rotZ": 4.50887537,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Dimensional Breach",
"Description": "Hazard. Power.",
"GMNotes": "{\n \"id\": \"87051\",\n \"type\": \"Treachery\",\n \"traits\": \"Hazard. Power.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558319,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2e2680",
"Name": "Card",
"Transform": {
"posX": 8.684407,
"posY": 1.78780437,
"posZ": 27.0868664,
"rotX": 359.936066,
"rotY": 270.0,
"rotZ": 4.46235371,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Broken Space",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"87050\",\n \"type\": \"Treachery\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558318,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "dfb8ff",
"Name": "Card",
"Transform": {
"posX": 8.556079,
"posY": 2.19837046,
"posZ": 26.6221275,
"rotX": 359.986877,
"rotY": 270.00354,
"rotZ": 25.9346485,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Broken Space",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"87050\",\n \"type\": \"Treachery\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558318,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "42c54e",
"Name": "Card",
"Transform": {
"posX": 8.530724,
"posY": 2.01292515,
"posZ": 27.0976429,
"rotX": 359.936035,
"rotY": 269.99646,
"rotZ": 15.3909044,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Broken Space",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"87050\",\n \"type\": \"Treachery\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558318,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "fce3e8",
"Name": "Card",
"Transform": {
"posX": 8.570437,
"posY": 1.72301817,
"posZ": 26.8751869,
"rotX": 359.935577,
"rotY": 270.000732,
"rotZ": 359.836853,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abducted",
"Description": "Scheme.",
"GMNotes": "{\n \"id\": \"87049\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558317,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "53a6e4",
"Name": "Card",
"Transform": {
"posX": 8.782794,
"posY": 1.82611823,
"posZ": 27.14632,
"rotX": 359.936066,
"rotY": 270.000031,
"rotZ": 4.45920467,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abducted",
"Description": "Scheme.",
"GMNotes": "{\n \"id\": \"87049\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558317,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c8455b",
"Name": "Card",
"Transform": {
"posX": 8.742197,
"posY": 2.299064,
"posZ": 26.9790287,
"rotX": 359.935852,
"rotY": 269.996948,
"rotZ": 29.8712616,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Abducted",
"Description": "Scheme.",
"GMNotes": "{\n \"id\": \"87049\",\n \"type\": \"Treachery\",\n \"traits\": \"Scheme.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558317,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "701656",
"Name": "Card",
"Transform": {
"posX": 8.828043,
"posY": 1.77687287,
"posZ": 26.9026241,
"rotX": 359.9361,
"rotY": 269.9996,
"rotZ": 0.820843935,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Tear in Time",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"04090\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558316,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "c18b28",
"Name": "Card",
"Transform": {
"posX": 8.822019,
"posY": 2.10292125,
"posZ": 26.7564831,
"rotX": 359.935822,
"rotY": 270.0005,
"rotZ": 17.94631,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "A Tear in Time",
"Description": "Hex.",
"GMNotes": "{\n \"id\": \"04090\",\n \"type\": \"Treachery\",\n \"class\": \"Mythos\",\n \"traits\": \"Hex.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558316,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "f82d38",
"Name": "Card",
"Transform": {
"posX": 8.720579,
"posY": 1.77086,
"posZ": 27.0908642,
"rotX": 359.933228,
"rotY": 270.00116,
"rotZ": 359.9393,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Tindalos Alpha",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"53077\",\n \"type\": \"Enemy\",\n \"class\": \"Mythos\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558315,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "030840",
"Name": "Card",
"Transform": {
"posX": 8.458466,
"posY": 1.788896,
"posZ": 26.922596,
"rotX": 359.936554,
"rotY": 270.0,
"rotZ": 0.005914597,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Many-Angled Thing",
"Description": "Monster. Extradimensional. Tindalos. Elite.",
"GMNotes": "{\n \"id\": \"87046\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Extradimensional. Tindalos. Elite.\",\n \"victory\": 1,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558314,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5846e",
"Name": "Card",
"Transform": {
"posX": 8.504526,
"posY": 1.79846168,
"posZ": 26.9124527,
"rotX": 359.936523,
"rotY": 270.0,
"rotZ": 0.006649029,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hound of Tindalos",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"87045\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558313,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d83cd5",
"Name": "Card",
"Transform": {
"posX": 8.633421,
"posY": 1.80003035,
"posZ": 27.1442051,
"rotX": 359.9368,
"rotY": 269.999573,
"rotZ": 359.8393,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hound of Tindalos",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"87045\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558313,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "d5846e",
"Name": "Card",
"Transform": {
"posX": 8.571039,
"posY": 1.83741462,
"posZ": 27.0488758,
"rotX": 359.935822,
"rotY": 270.0006,
"rotZ": 358.653168,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hound of Tindalos",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"87045\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558313,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "4c2bcc",
"Name": "Card",
"Transform": {
"posX": 8.407132,
"posY": 1.82772934,
"posZ": 26.91786,
"rotX": 359.9365,
"rotY": 269.999969,
"rotZ": 359.937744,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Hound of Tindalos",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"87045\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558313,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c13c8",
"Name": "Card",
"Transform": {
"posX": 8.586347,
"posY": 1.83832681,
"posZ": 27.3118038,
"rotX": 359.937134,
"rotY": 270.000061,
"rotZ": 359.858246,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ghastly Satyr",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"87044\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558312,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "168ea1",
"Name": "Card",
"Transform": {
"posX": 8.521696,
"posY": 1.93206453,
"posZ": 26.6711464,
"rotX": 359.937317,
"rotY": 269.997223,
"rotZ": 4.48583031,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ghastly Satyr",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"87044\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558312,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "2c13c8",
"Name": "Card",
"Transform": {
"posX": 8.506059,
"posY": 1.87479258,
"posZ": 26.94992,
"rotX": 359.936066,
"rotY": 270.0004,
"rotZ": 1.1227994,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Ghastly Satyr",
"Description": "Monster. Extradimensional. Tindalos.",
"GMNotes": "{\n \"id\": \"87044\",\n \"type\": \"Enemy\",\n \"traits\": \"Monster. Extradimensional. Tindalos.\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558312,
"SidewaysCard": false,
"CustomDeck": {
"5583": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609761078/E05F39D952FE0C4E6473E744D64221DD1150F00A/",
"BackURL": "https://i.imgur.com/sRsWiSG.jpg/",
"NumWidth": 7,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": false,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "b45b47",
"Name": "Deck",
"Transform": {
"posX": -2.724812,
"posY": 1.61355889,
"posZ": 0.373346031,
"rotX": 3.16554718E-07,
"rotY": 180.089539,
"rotZ": -1.21007974E-06,
"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": [
558202,
558201
],
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": "",
"ContainedObjects": [
{
"GUID": "b4ae27",
"Name": "Card",
"Transform": {
"posX": -2.724635,
"posY": 1.59899485,
"posZ": 0.373306245,
"rotX": 0.0167212579,
"rotY": 180.089645,
"rotZ": 0.0803925,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Time Marches On",
"Description": "Agenda 2",
"GMNotes": "{\n \"id\": \"87003\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 9,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558202,
"SidewaysCard": true,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "7afdc3",
"Name": "Card",
"Transform": {
"posX": -2.72471786,
"posY": 2.08908629,
"posZ": 0.373322964,
"rotX": 17.1085033,
"rotY": 180.020935,
"rotZ": 0.08226595,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Into the Void",
"Description": "Agenda 1",
"GMNotes": "{\n \"id\": \"87002\",\n \"type\": \"Agenda\",\n \"doomThreshold\": 9,\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558201,
"SidewaysCard": true,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
}
]
},
{
"GUID": "ba2e05",
"Name": "Card",
"Transform": {
"posX": -2.688495,
"posY": 1.59660506,
"posZ": -5.04841328,
"rotX": -1.2017928E-07,
"rotY": 180.027618,
"rotZ": 7.39492236E-08,
"scaleX": 1.0,
"scaleY": 1.0,
"scaleZ": 1.0
},
"Nickname": "Walking Through Time",
"Description": "Act 1",
"GMNotes": "{\n \"id\": \"87004\",\n \"type\": \"Act\",\n \"cycle\": \"Standalone\"\n}",
"AltLookAngle": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"ColorDiffuse": {
"r": 0.713235259,
"g": 0.713235259,
"b": 0.713235259
},
"Tags": [
"ScenarioCard"
],
"LayoutGroupSortIndex": 0,
"Value": 0,
"Locked": false,
"Grid": true,
"Snap": true,
"IgnoreFoW": false,
"MeasureMovement": false,
"DragSelectable": true,
"Autoraise": true,
"Sticky": true,
"Tooltip": true,
"GridProjection": false,
"HideWhenFaceDown": true,
"Hands": true,
"CardID": 558203,
"SidewaysCard": true,
"CustomDeck": {
"5582": {
"FaceURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763044/0F475102A523887989676CBCBDD8B26B23A1ECB9/",
"BackURL": "http://cloud-3.steamusercontent.com/ugc/1849293764609763665/1A80FA8767A78908D4DF695683E8D261DBE7B380/",
"NumWidth": 8,
"NumHeight": 4,
"BackIsHidden": true,
"UniqueBack": true,
"Type": 0
}
},
"LuaScript": "",
"LuaScriptState": "",
"XmlUI": ""
},
{
"GUID": "da395e",
"Name": "Custom_Tile",
"Transform": {
"posX": -3.59794879,
"posY": 1.58300042,
"posZ": -15.0785666,
"rotX": -2.06923232E-07,
"rotY": 270.030182,
"rotZ": 3.86129841E-07,
"scaleX": 2.2,
"scaleY": 1.0,
"scaleZ": 2.2
},
"Nickname": "Machinations Through Time",
"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 = 'Machinations'\r\n\r\nfunction onLoad()\r\n Global.call('createSetupButtons', {object=self, key=name})\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\r\n",
"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
}
}
]
}